Files
dotfiles/home/modules/hacking.nix
2025-11-22 23:02:49 -05:00

51 lines
677 B
Nix

{ lib, config, pkgs, ... }: {
# Hacking specific packages.
home.packages = with pkgs; [
# Utilities
rlwrap
openssl
inetutils
# Enumeration
nmap
ffuf
amass
rustscan
thc-hydra
burpsuite
feroxbuster
# Vulnerability Scanning
nikto
nuclei
wpscan
sqlmap
exploitdb
# Windows Exploitation
samba
remmina
openldap
responder
evil-winrm
cifs-utils
# Reverse Engineering
gdb
yara
strace
ghidra
exiftool
pwntools
flare-floss
# Wordlists
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
];
}