summary refs log blame commit diff
path: root/pkgs/tools/security/nosqli/default.nix
blob: 3163d1683710aa59e65deaf525e4206aa617ea8b (plain) (tree)
























                                                                                       
{ 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 ];
  };
}