forked from mirrors/nixpkgs
urlhunter: init at 0.1.1
This commit is contained in:
parent
d9dba88d08
commit
90dc95e41e
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/security/urlhunter/default.nix
Normal file
29
pkgs/tools/security/urlhunter/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "urlhunter";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "utkusen";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ph0pwfd8bb5499bsx3bd8sqhn69y00zk32ayc3n61gpcc6rmvn7";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "165kplaqigis0anafvzfqzwc3jjhsn2mwgf4phb4ck75n3yf85ys";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Recon tool that allows searching shortened URLs";
|
||||||
|
longDescription = ''
|
||||||
|
urlhunter is a recon tool that allows searching on URLs that are
|
||||||
|
exposed via shortener services such as bit.ly and goo.gl.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/utkusen/urlhunter";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8488,6 +8488,8 @@ in
|
||||||
|
|
||||||
urjtag = callPackage ../tools/misc/urjtag { };
|
urjtag = callPackage ../tools/misc/urjtag { };
|
||||||
|
|
||||||
|
urlhunter = callPackage ../tools/security/urlhunter { };
|
||||||
|
|
||||||
urlwatch = callPackage ../tools/networking/urlwatch { };
|
urlwatch = callPackage ../tools/networking/urlwatch { };
|
||||||
|
|
||||||
valum = callPackage ../development/web/valum { };
|
valum = callPackage ../development/web/valum { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue