2022-08-12 12:06:08 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "uncover";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "1.0.8";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = pname;
|
2023-10-09 19:29:22 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-iBZwR4hEd1pmmq4WzY/kfwHmpFj/MG+xGitbIQI8K5I=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
vendorHash = "sha256-cf9Itdz1hR74TVoFOsOdUcrvEuT57RZn2tgrEXU4c8E=";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "API wrapper to search for exposed hosts";
|
|
|
|
longDescription = ''
|
|
|
|
uncover is a go wrapper using APIs of well known search engines to quickly
|
|
|
|
discover exposed hosts on the internet. It is built with automation in mind,
|
|
|
|
so you can query it and utilize the results with your current pipeline tools.
|
|
|
|
Currently, it supports shodan,shodan-internetdb, censys, and fofa search API.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/projectdiscovery/uncover";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/projectdiscovery/uncover/releases/tag/v${version}";
|
2022-08-12 12:06:08 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|