31 lines
747 B
Nix
31 lines
747 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ffuf";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-m+L78fVsqntD7JfgWS9foUJUhIVr+CtJ6K8etsLuNzw=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU=";
|
|
|
|
meta = with lib; {
|
|
description = "Fast web fuzzer written in Go";
|
|
longDescription = ''
|
|
FFUF, or “Fuzz Faster you Fool” is an open source web fuzzing tool,
|
|
intended for discovering elements and content within web applications
|
|
or web servers.
|
|
'';
|
|
homepage = "https://github.com/ffuf/ffuf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|