nixos-config/pkgs/security-toolbox/default.nix

89 lines
1.4 KiB
Nix
Raw Normal View History

2021-11-01 18:45:18 +00:00
{ symlinkJoin
, writeShellScriptBin
2021-11-02 18:46:18 +00:00
, chromium
2021-11-01 18:45:18 +00:00
, binutils
, bridge-utils
, dhcpdump
, dirb
, exiftool
, gef
, ghidra-bin
, gobuster
, iptables-nftables-compat
, macchanger
, masscan
, metasploit
2021-11-08 05:48:57 +00:00
, msfpc
2021-11-01 18:45:18 +00:00
, net-snmp
, nmap
, openvpn
2022-04-20 04:10:16 +00:00
, pwndbg
2021-11-01 18:45:18 +00:00
, remmina
2021-11-18 05:17:43 +00:00
, security-wordlists
2021-11-01 18:45:18 +00:00
, socat
, thc-hydra
, webshells
, weevely
, wfuzz
, burpsuite
, postman
}:
2021-10-04 05:48:11 +00:00
let
2021-11-01 18:45:18 +00:00
proxybrowser = writeShellScriptBin "proxybrowser" ''
2021-11-02 18:46:18 +00:00
exec ${chromium}/bin/chromium \
2021-10-04 05:48:11 +00:00
--disable-background-networking \
--disable-default-apps \
--disable-plugins-discovery \
--disk-cache-size=0 \
--ignore-certificate-errors \
--no-default-browser-check \
--no-experiments \
--no-first-run \
--no-pings \
--no-service-autorun \
--user-data-dir="$HOME/.proxybrowser" \
--proxy-server="localhost:8080" \
--proxy-bypass-list='<-loopback>'
'';
in
2021-11-01 18:45:18 +00:00
symlinkJoin {
2021-10-04 05:48:11 +00:00
name = "security-toolbox";
2021-11-01 18:45:18 +00:00
paths =
2021-10-04 05:48:11 +00:00
[
2021-11-01 18:45:18 +00:00
proxybrowser
2021-10-04 05:48:11 +00:00
binutils
bridge-utils
dhcpdump
dirb
exiftool
gef
ghidra-bin
gobuster
iptables-nftables-compat
macchanger
masscan
2021-10-06 04:16:18 +00:00
metasploit
2021-11-08 05:48:57 +00:00
msfpc
2021-10-04 05:48:11 +00:00
net-snmp
nmap
openvpn
2022-04-20 04:10:16 +00:00
pwndbg
2021-10-04 05:48:11 +00:00
remmina
2021-11-18 05:17:43 +00:00
security-wordlists
2021-10-04 05:48:11 +00:00
socat
thc-hydra
webshells
weevely
wfuzz
(burpsuite.overrideAttrs (_: { meta = { }; }))
2021-10-06 04:16:18 +00:00
(postman.overrideAttrs (_: { meta = { }; }))
2021-10-04 05:48:11 +00:00
];
2021-11-02 02:21:01 +00:00
meta.platforms = [ "x86_64-linux" ];
2021-10-04 05:48:11 +00:00
}