From 91d0bd076efee5824023c474d858d9cd299d61b2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 16 Jun 2022 10:47:49 +0200 Subject: [PATCH 1/2] python310Packages.threat9-test-bed: init at 0.6.0 --- .../threat9-test-bed/default.nix | 65 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 67 insertions(+) create mode 100644 pkgs/development/python-modules/threat9-test-bed/default.nix diff --git a/pkgs/development/python-modules/threat9-test-bed/default.nix b/pkgs/development/python-modules/threat9-test-bed/default.nix new file mode 100644 index 000000000000..35d5f1389fd1 --- /dev/null +++ b/pkgs/development/python-modules/threat9-test-bed/default.nix @@ -0,0 +1,65 @@ +{ lib +, buildPythonPackage +, click +, faker +, fetchFromGitHub +, flask +, gunicorn +, pyopenssl +, pytestCheckHook +, pythonOlder +, setuptools-scm +, requests +}: + +buildPythonPackage rec { + pname = "threat9-test-bed"; + version = "0.6.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "threat9"; + repo = pname; + rev = "v${version}"; + hash = "sha256-0YSjMf2gDdrvkDaT77iwfCkiDDXKHnZyI8d7JmBSuCg="; + }; + + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools-scm + ]; + + propagatedBuildInputs = [ + click + faker + flask + gunicorn + pyopenssl + requests + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ + "threat9_test_bed" + ]; + + disabledTests = [ + # Assertion issue with the response codes + "test_http_service_mock" + "tests_http_service_mock" + "test_http_service_mock_random_port" + ]; + + meta = with lib; { + description = "Module for adding unittests.mock as view functions"; + homepage = "https://github.com/threat9/threat9-test-bed"; + license = licenses.bsd3; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 872a35c0d357..a696f04de6e3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10462,6 +10462,8 @@ in { threadpoolctl = callPackage ../development/python-modules/threadpoolctl { }; + threat9-test-bed = callPackage ../development/python-modules/threat9-test-bed { }; + three-merge = callPackage ../development/python-modules/three-merge { }; thrift = callPackage ../development/python-modules/thrift { }; From 6cb0c166400f816ef6de9741aa03952bc1c37d0c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 16 Jun 2022 11:52:16 +0200 Subject: [PATCH 2/2] routersploit: init at unstable-2021-02-06 --- pkgs/tools/security/routersploit/default.nix | 56 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 58 insertions(+) create mode 100644 pkgs/tools/security/routersploit/default.nix diff --git a/pkgs/tools/security/routersploit/default.nix b/pkgs/tools/security/routersploit/default.nix new file mode 100644 index 000000000000..e2a511c811b1 --- /dev/null +++ b/pkgs/tools/security/routersploit/default.nix @@ -0,0 +1,56 @@ +{ lib +, fetchFromGitHub +, python3 +}: + +python3.pkgs.buildPythonApplication rec { + pname = "routersploit"; + version = "unstable-2021-02-06"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "threat9"; + repo = pname; + rev = "3fd394637f5566c4cf6369eecae08c4d27f93cda"; + hash = "sha256-IET0vL0VVP9ZNn75hKdTCiEmOZRHHYICykhzW2g3LEg="; + }; + + propagatedBuildInputs = with python3.pkgs; [ + future + paramiko + pycryptodome + pysnmp + requests + setuptools + ]; + + checkInputs = with python3.pkgs; [ + pytest-xdist + pytestCheckHook + threat9-test-bed + ]; + + postInstall = '' + mv $out/bin/rsf.py $out/bin/rsf + ''; + + pythonImportsCheck = [ + "routersploit" + ]; + + pytestFlagsArray = [ + "-n" + "$NIX_BUILD_CORES" + # Run the same tests as upstream does in the first round + "tests/core/" + "tests/test_exploit_scenarios.py" + "tests/test_module_info.py" + ]; + + meta = with lib; { + description = "Exploitation Framework for Embedded Devices"; + homepage = "https://github.com/threat9/routersploit"; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1271dded51a3..e1d42fdb1b68 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4320,6 +4320,8 @@ with pkgs; roundcubePlugins = dontRecurseIntoAttrs (callPackage ../servers/roundcube/plugins { }); + routersploit = callPackage ../tools/security/routersploit { }; + routinator = callPackage ../servers/routinator { inherit (darwin.apple_sdk.frameworks) Security; };