dotfiles/home/modules/hacking.nix
2024-11-27 14:48:31 -08:00

36 lines
478 B
Nix

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