2022-08-11 10:43:57 +02:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "uncover";
|
2022-10-25 09:52:39 +02:00
|
|
|
version = "0.0.9";
|
2022-08-11 10:43:57 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-10-25 09:52:39 +02:00
|
|
|
hash = "sha256-bYSqfxjJGue+7gPr8XgkcPF7UUuKWmLuQO07KCJp4jY=";
|
2022-08-11 10:43:57 +02:00
|
|
|
};
|
|
|
|
|
2022-10-25 09:52:39 +02:00
|
|
|
vendorSha256 = "sha256-FG0pqzSoqT/KjTOjXidAGjSABMFWgChJJYOhBfyzM7w=";
|
2022-08-11 10:43:57 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|