websploit: init at 4.0.4

This commit is contained in:
Emily Trau 2022-08-02 23:53:26 +10:00
parent 438b4d6408
commit e943996962
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib, buildPythonApplication, fetchFromGitHub
, requests, scapy }:
buildPythonApplication rec {
pname = "websploit";
version = "4.0.4";
src = fetchFromGitHub {
owner = "f4rih";
repo = pname;
rev = version;
sha256 = "LpDfJmH2FbL37Fk86CAC/bxFqM035DBN6c6FPfGpaIw=";
};
propagatedBuildInputs = [
requests
scapy
];
# Project has no tests
doCheck = false;
meta = with lib; {
description = "A high level MITM framework";
homepage = "https://github.com/f4rih/websploit";
license = licenses.mit;
maintainers = with maintainers; [ emilytrau ];
};
}

View file

@ -31329,6 +31329,8 @@ with pkgs;
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
websploit = python3Packages.callPackage ../tools/security/websploit {};
webssh = with python3Packages; toPythonApplication webssh;
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};