Merge pull request #125583 from fabaff/kiterunner
kiterunner: init at 1.0.2
This commit is contained in:
commit
afe29f185a
39
pkgs/tools/security/kiterunner/default.nix
Normal file
39
pkgs/tools/security/kiterunner/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kiterunner";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "assetnote";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "084jywgqjj2hpaprdcb9a7i8hihphnfil0sx3wrlvjpa8sk0z1mw";
|
||||
};
|
||||
|
||||
vendorSha256 = "1nczzzsnh38qi949ki5268y39ggkwncanc1pv7727qpwllzl62vy";
|
||||
|
||||
preBuild = ''
|
||||
buildFlagsArray+=("-ldflags" "-s -w -X github.com/assetnote/kiterunner/cmd/kiterunner/cmd.Version=${version}")
|
||||
'';
|
||||
|
||||
subPackages = [ "./cmd/kiterunner" ];
|
||||
|
||||
# Test data is missing in the repo
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Contextual content discovery tool";
|
||||
longDescription = ''
|
||||
Kiterunner is a tool that is capable of not only performing traditional
|
||||
content discovery at lightning fast speeds, but also bruteforcing routes
|
||||
and endpoints in modern applications.
|
||||
'';
|
||||
homepage = "https://github.com/assetnote/kiterunner";
|
||||
license = with licenses; [ agpl3Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -6097,6 +6097,8 @@ in
|
||||
|
||||
kismet = callPackage ../applications/networking/sniffers/kismet { };
|
||||
|
||||
kiterunner = callPackage ../tools/security/kiterunner { };
|
||||
|
||||
klick = callPackage ../applications/audio/klick { };
|
||||
|
||||
klystrack = callPackage ../applications/audio/klystrack { };
|
||||
|
Loading…
Reference in New Issue
Block a user