Files
dotfiles/home/modules/hacking.nix
2025-11-18 19:35:39 -05:00

45 lines
670 B
Nix

{ lib, config, pkgs, ... }:
#let mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; }; in
{
# Hacking specific packages.
home.packages = with pkgs; [
gdb
yara
nmap
ffuf
amass
nikto
samba
nuclei
rlwrap
sqlmap
wpscan
ghidra
strace
strace
openssl
remmina
pwntools
openldap
rustscan
inetutils
thc-hydra
exploitdb
responder
burpsuite
evil-winrm
cifs-utils
feroxbuster
flare-floss
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
];
#++ (with mypkgs; [
# binaryninja
#]);
}