From 636d8a7bbb068ed240a5c4f1faeb7391911b7d89 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 18 Mar 2024 10:58:02 +0100 Subject: [PATCH] sslstrip: init at 2.0 Tool for exploiting SSL stripping attacks https://github.com/L1ghtn1ng/sslstrip --- pkgs/by-name/ss/sslstrip/package.nix | 50 ++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 pkgs/by-name/ss/sslstrip/package.nix diff --git a/pkgs/by-name/ss/sslstrip/package.nix b/pkgs/by-name/ss/sslstrip/package.nix new file mode 100644 index 000000000000..c9ad3406667f --- /dev/null +++ b/pkgs/by-name/ss/sslstrip/package.nix @@ -0,0 +1,50 @@ +{ lib +, fetchFromGitHub +, python3 +}: + +python3.pkgs.buildPythonApplication rec { + pname = "sslstrip"; + version = "2.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "L1ghtn1ng"; + repo = "sslstrip"; + rev = "refs/tags/${version}"; + hash = "sha256-iPWpbRmAUf0Yf5MDlpln1JLBxMIdmr/Ggk2ZGeQzm8s="; + }; + + postPatch = '' + # https://github.com/L1ghtn1ng/sslstrip/pull/58 + substituteInPlace setup.py \ + --replace-fail "README" "README.md" + ''; + + nativeBuildInputs = with python3.pkgs; [ + setuptools + ]; + + propagatedBuildInputs = with python3.pkgs; [ + cryptography + pyopenssl + service-identity + twisted + ]; + + # Project has no test + doCheck= false; + + pythonImportsCheck = [ + "sslstrip" + ]; + + meta = with lib; { + description = "Tool for exploiting SSL stripping attacks"; + homepage = "https://github.com/L1ghtn1ng/sslstrip"; + changelog = "https://github.com/L1ghtn1ng/sslstrip/releases/tag/${version}"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ fab ]; + mainProgram = "sslstrip"; + }; +}