dotfiles/home/modules/hacking.nix
2025-02-16 22:18:36 -08:00

43 lines
560 B
Nix

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