dotfiles/home/hacking.nix
Random936 f025393d6f Revert "Switched back to stable following issues (WIP)"
This reverts commit 8c932c039884fa7b4653530203da54355c093f5f.
2024-09-23 18:43:17 -07:00

32 lines
410 B
Nix

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