From 94595a08337cf796e2c9453e12acee6b8e1f0af7 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sat, 22 Nov 2025 23:01:57 -0500 Subject: [PATCH] Organized hacking packages into categories --- home/modules/hacking.nix | 56 ++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 25 deletions(-) diff --git a/home/modules/hacking.nix b/home/modules/hacking.nix index 90484d4..b30619d 100644 --- a/home/modules/hacking.nix +++ b/home/modules/hacking.nix @@ -1,36 +1,45 @@ -{ lib, config, pkgs, ... }: -#let mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; }; in -{ +{ lib, config, pkgs, ... }: { # Hacking specific packages. home.packages = with pkgs; [ - gdb - yara + # Utilities + rlwrap + openssl + inetutils + + # Enumeration nmap ffuf amass - nikto - samba - nuclei - rlwrap - sqlmap - wpscan - ghidra - strace - strace - openssl - remmina - pwntools - openldap rustscan - inetutils thc-hydra - exploitdb - responder burpsuite + feroxbuster + + # Vulnerability Scanning + nikto + nuclei + wpscan + sqlmap + exploitdb + + # Windows Exploitation + samba + remmina + openldap + responder evil-winrm cifs-utils - feroxbuster + + # Reverse Engineering + gdb + yara + strace + ghidra + exiftool + pwntools flare-floss + + # Wordlists (wordlists.override { lists = with pkgs; [ rockyou @@ -38,7 +47,4 @@ ]; }) ]; - #++ (with mypkgs; [ - # binaryninja - #]); }