Merge pull request #184832 from emilytrau/websploit

websploit: init at 4.0.4
This commit is contained in:
Jonas Heinrich 2022-08-21 08:53:09 +02:00 committed by GitHub
commit 1104032049
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -31563,6 +31563,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 {};