mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
sslstrip: init at 2.0
Tool for exploiting SSL stripping attacks https://github.com/L1ghtn1ng/sslstrip
This commit is contained in:
parent
62748bdf42
commit
636d8a7bbb
50
pkgs/by-name/ss/sslstrip/package.nix
Normal file
50
pkgs/by-name/ss/sslstrip/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user