mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
msfpc: init
This commit is contained in:
parent
dc329de80b
commit
eb6dda4f44
3 changed files with 25 additions and 1 deletions
|
@ -12,7 +12,8 @@ rec
|
|||
binaryninja = pkg ./binary-ninja-personal { };
|
||||
commander-x16 = pkg ./commander-x16 { };
|
||||
gef = pkg ./gef { };
|
||||
security-toolbox = pkg ./security-toolbox { inherit gef webshells weevely; };
|
||||
msfpc = pkg ./msfpc { };
|
||||
security-toolbox = pkg ./security-toolbox { inherit gef msfpc webshells weevely; };
|
||||
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
|
||||
stretchy-spaces = pkg ./stretchy-spaces { };
|
||||
webshells = pkg ./webshells { };
|
||||
|
|
21
pkgs/msfpc/default.nix
Normal file
21
pkgs/msfpc/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, metasploit
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "msfpc";
|
||||
version = "2021.01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "g0tmi1k";
|
||||
repo = "msfpc";
|
||||
rev = "8007ef2142e43dc5e97edf84f40ac012f94a3e8f";
|
||||
sha256 = "/FNhQcjIEIzB+wRKF2e3eYEnuVrl0egBZvjZidCwvHg=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -D ${src}/msfpc.sh $out/bin/msfpc
|
||||
sed 's|## msfvenom installed?|PATH="$PATH:${metasploit}/bin"|' -i $out/bin/msfpc
|
||||
'';
|
||||
}
|
|
@ -13,6 +13,7 @@
|
|||
, macchanger
|
||||
, masscan
|
||||
, metasploit
|
||||
, msfpc
|
||||
, net-snmp
|
||||
, nmap
|
||||
, openvpn
|
||||
|
@ -64,6 +65,7 @@ symlinkJoin {
|
|||
macchanger
|
||||
masscan
|
||||
metasploit
|
||||
msfpc
|
||||
net-snmp
|
||||
nmap
|
||||
openvpn
|
||||
|
|
Loading…
Reference in a new issue