2022-08-11 08:43:57 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "uncover";
|
2022-12-07 07:04:33 +00:00
|
|
|
version = "1.0.1";
|
2022-08-11 08:43:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-12-07 07:04:33 +00:00
|
|
|
hash = "sha256-N2560u3rkLhB9wL48hLzrw8NksXruGQuvjQGvVFOxsk=";
|
2022-08-11 08:43:57 +00:00
|
|
|
};
|
|
|
|
|
2022-12-07 07:04:33 +00:00
|
|
|
vendorSha256 = "sha256-71tXOm444xmRuOkw7Sa1T0afrZowvhreiwIxwlAeK6A=";
|
2022-08-11 08:43:57 +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";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|