2022-08-11 08:43:57 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "uncover";
|
2023-01-08 12:45:37 +00:00
|
|
|
version = "1.0.2";
|
2022-08-11 08:43:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-01-08 12:45:37 +00:00
|
|
|
hash = "sha256-yyx7gkOUQibcrMCEeeSeHtnKlxSnd/i6c1pq1V6hzA4=";
|
2022-08-11 08:43:57 +00:00
|
|
|
};
|
|
|
|
|
2023-01-08 12:45:37 +00:00
|
|
|
vendorHash = "sha256-xB1JJIM/aro1Hk4JIwpR6WV6V+5hO9T3yWokxbybRXU=";
|
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";
|
2022-12-07 09:52:36 +00:00
|
|
|
changelog = "https://github.com/projectdiscovery/uncover/releases/tag/v${version}";
|
2022-08-11 08:43:57 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|