2021-01-10 17:30:15 +01:00
|
|
|
{
|
|
|
|
buildGoModule,
|
|
|
|
fetchFromGitHub,
|
2021-01-25 09:26:54 +01:00
|
|
|
lib,
|
2021-01-10 17:30:15 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "crlfuzz";
|
2021-04-04 17:49:57 +00:00
|
|
|
version = "1.4.1";
|
2021-01-10 17:30:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dwisiswant0";
|
2025-05-25 02:53:02 +02:00
|
|
|
repo = "crlfuzz";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2021-04-04 17:49:57 +00:00
|
|
|
sha256 = "sha256-rqhdxOQmZCRtq+IZygKLleb5GoKP2akyEc3rbGcnZmw=";
|
2021-01-10 17:30:15 +01:00
|
|
|
};
|
|
|
|
|
2023-09-12 22:44:46 -06:00
|
|
|
vendorHash = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU=";
|
2021-01-10 17:30:15 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-15 16:19:50 +07:00
|
|
|
meta = with lib; {
|
2021-01-10 17:30:15 +01:00
|
|
|
description = "Tool to scan for CRLF vulnerability";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "crlfuzz";
|
2021-01-10 17:30:15 +01:00
|
|
|
homepage = "https://github.com/dwisiswant0/crlfuzz";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|