Files
dotfiles/home/modules/hacking.nix
2025-10-27 21:44:10 -04:00

44 lines
652 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
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
]) ++ (with mypkgs; [
binaryninja
]);
}