dotfiles/home/modules/hacking.nix
2024-12-06 20:15:39 -08:00

40 lines
522 B
Nix

{ lib, config, pkgs, ... }: {
# Hacking specific packages.
home.packages = (with pkgs; [
gdb
yara
nmap
john
ffuf
amass
nikto
rlwrap
sqlmap
wpscan
ghidra
pwndbg
strace
strace
openssl
remmina
netexec
pwntools
rustscan
inetutils
wireshark
thc-hydra
exploitdb
responder
burpsuite
evil-winrm
feroxbuster
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
]);
}