mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
edit some security tools
This commit is contained in:
parent
1bca91dbda
commit
0e842d4978
1 changed files with 6 additions and 11 deletions
|
@ -10,26 +10,15 @@ in
|
||||||
config = lib.mkIf cfg {
|
config = lib.mkIf cfg {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
binutils
|
binutils
|
||||||
bridge-utils
|
|
||||||
burpsuite
|
burpsuite
|
||||||
dhcpdump
|
|
||||||
dirb
|
|
||||||
exiftool
|
exiftool
|
||||||
feroxbuster
|
feroxbuster
|
||||||
ffuf
|
|
||||||
gef
|
|
||||||
ghidra-bin
|
ghidra-bin
|
||||||
gobuster
|
|
||||||
iptables-nftables-compat
|
|
||||||
macchanger
|
|
||||||
masscan
|
masscan
|
||||||
metasploit
|
metasploit
|
||||||
msfpc
|
msfpc
|
||||||
net-snmp
|
|
||||||
nmap
|
nmap
|
||||||
openvpn
|
openvpn
|
||||||
postman
|
|
||||||
pwndbg
|
|
||||||
remmina
|
remmina
|
||||||
seclists
|
seclists
|
||||||
socat
|
socat
|
||||||
|
@ -37,8 +26,14 @@ in
|
||||||
webshells
|
webshells
|
||||||
weevely
|
weevely
|
||||||
wfuzz
|
wfuzz
|
||||||
|
|
||||||
|
(runCommand "gdb" { } "install -D ${gef}/bin/gef $out/bin/gdb")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.bash.interactiveShellInit = ''
|
||||||
|
alias feroxbuster="feroxbuster --no-state"
|
||||||
|
'';
|
||||||
|
|
||||||
system.activationScripts.seclists = ''
|
system.activationScripts.seclists = ''
|
||||||
mkdir -m 0755 -p /usr/share
|
mkdir -m 0755 -p /usr/share
|
||||||
ln -sf /run/current-system/sw/share/seclists /usr/share/
|
ln -sf /run/current-system/sw/share/seclists /usr/share/
|
||||||
|
|
Loading…
Reference in a new issue