mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #184832 from emilytrau/websploit
websploit: init at 4.0.4
This commit is contained in:
commit
1104032049
29
pkgs/tools/security/websploit/default.nix
Normal file
29
pkgs/tools/security/websploit/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user