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

53 lines
1 KiB
Nix
Raw Normal View History

2021-10-06 04:16:18 +00:00
{ pkgs }:
2021-10-04 05:48:11 +00:00
let
proxybrowser = pkgs.writeShellScriptBin "proxybrowser" ''
exec ${pkgs.ungoogled-chromium}/bin/chromium \
--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
pkgs.symlinkJoin {
name = "security-toolbox";
paths = with pkgs;
[
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-10-04 05:48:11 +00:00
net-snmp
nmap
openvpn
proxybrowser
remmina
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
];
}