commit
2440d37c51
2 changed files with 56 additions and 0 deletions
54
pkgs/tools/security/boofuzz/default.nix
Normal file
54
pkgs/tools/security/boofuzz/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, python3
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "boofuzz";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jtpereyda";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "4WtTZ2S2rC2XXN0HbiEht9NW0JXcPnpp66AH67F88yk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
attrs
|
||||||
|
click
|
||||||
|
colorama
|
||||||
|
flask
|
||||||
|
funcy
|
||||||
|
future
|
||||||
|
psutil
|
||||||
|
pyserial
|
||||||
|
pydot
|
||||||
|
six
|
||||||
|
tornado
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = with python3.pkgs; [
|
||||||
|
mock
|
||||||
|
netifaces
|
||||||
|
pytest-bdd
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Tests require socket access
|
||||||
|
"test_raw_l2"
|
||||||
|
"test_raw_l3"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"boofuzz"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Network protocol fuzzing tool";
|
||||||
|
homepage = "https://github.com/jtpereyda/boofuzz";
|
||||||
|
license = with licenses; [ gpl2Plus ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3826,6 +3826,8 @@ with pkgs;
|
||||||
|
|
||||||
bomutils = callPackage ../tools/archivers/bomutils { };
|
bomutils = callPackage ../tools/archivers/bomutils { };
|
||||||
|
|
||||||
|
boofuzz= callPackage ../tools/security/boofuzz { };
|
||||||
|
|
||||||
bsdbuild = callPackage ../development/tools/misc/bsdbuild { };
|
bsdbuild = callPackage ../development/tools/misc/bsdbuild { };
|
||||||
|
|
||||||
bsdiff = callPackage ../tools/compression/bsdiff { };
|
bsdiff = callPackage ../tools/compression/bsdiff { };
|
||||||
|
|
Loading…
Reference in a new issue