mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
|
{ pkgs, unstable }:
|
||
|
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
|
||
|
net-snmp
|
||
|
nmap
|
||
|
openvpn
|
||
|
proxybrowser
|
||
|
remmina
|
||
|
socat
|
||
|
thc-hydra
|
||
|
webshells
|
||
|
weevely
|
||
|
wfuzz
|
||
|
|
||
|
unstable.exploitdb
|
||
|
unstable.metasploit
|
||
|
|
||
|
(burpsuite.overrideAttrs (_: { meta = { }; }))
|
||
|
(unstable.postman.overrideAttrs (_: { meta = { }; }))
|
||
|
];
|
||
|
}
|