uncover: init at 0.0.6
This commit is contained in:
parent
95e054f03c
commit
8115591a4f
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/security/uncover/default.nix
Normal file
31
pkgs/tools/security/uncover/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "uncover";
|
||||||
|
version = "0.0.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "projectdiscovery";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-iWSaNfRZJ59C7DWsPett9zM6hi/kOtpxlkw2haMeuaY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-M50pQJCzEXSBXUsjwxlM8s1WgcPwZgBpArUExLP+bRY=";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21548,6 +21548,8 @@ with pkgs;
|
||||||
buildGoModule = buildGo117Module;
|
buildGoModule = buildGo117Module;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
uncover = callPackage ../tools/security/uncover { };
|
||||||
|
|
||||||
unibilium = callPackage ../development/libraries/unibilium { };
|
unibilium = callPackage ../development/libraries/unibilium { };
|
||||||
|
|
||||||
unicap = callPackage ../development/libraries/unicap {};
|
unicap = callPackage ../development/libraries/unicap {};
|
||||||
|
|
Loading…
Reference in a new issue