dotfiles/home/hacking.nix

32 lines
405 B
Nix

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