mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
commit
5a461c3b8d
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/nosqli/default.nix
Normal file
25
pkgs/tools/security/nosqli/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "nosqli";
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Charlie-belmer";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "006z76v4a3pxzgnkj5nl0mrlsqmfgvg51w20dl118k2xa70zz63j";
|
||||
};
|
||||
|
||||
vendorSha256 = "01spdh2gbzp6yg2jbiwfnyhqb5s605hyfxhs0f9h4ps4qbi1h9cv";
|
||||
|
||||
meta = with lib; {
|
||||
description = "NoSql Injection tool for finding vulnerable websites using MongoDB";
|
||||
homepage = "https://github.com/Charlie-belmer/nosqli";
|
||||
license = with licenses; [ agpl3Plus ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -18228,6 +18228,8 @@ in
|
|||
|
||||
nix-tour = callPackage ../applications/misc/nix-tour {};
|
||||
|
||||
nosqli = callPackage ../tools/security/nosqli { };
|
||||
|
||||
nsd = callPackage ../servers/dns/nsd (config.nsd or {});
|
||||
|
||||
nsq = callPackage ../servers/nsq { };
|
||||
|
|
Loading…
Reference in a new issue