From a1ed4ebc4cdefe7ce956301f1464ca3809dccfe1 Mon Sep 17 00:00:00 2001 From: Hadi Date: Mon, 20 Apr 2026 14:21:44 +0200 Subject: [PATCH] add list & tools Signed-off-by: Hadi --- home/programs/group/cybersecurity.nix | 46 ++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/home/programs/group/cybersecurity.nix b/home/programs/group/cybersecurity.nix index 1da152a..7532aba 100644 --- a/home/programs/group/cybersecurity.nix +++ b/home/programs/group/cybersecurity.nix @@ -1,6 +1,6 @@ { pkgs-stable, - inputs, + pkgs, ... }: { home.packages = with pkgs-stable; [ @@ -8,6 +8,15 @@ nmap john hashcat + metasploit + haiti + hydra + dnsrecon + whois + dig + nosqli + jwt-cli + nuclei # Web caido @@ -24,4 +33,39 @@ mariadb redis ]; + + home.file = { + "Cyber/wordlists/seclists" = { + source = pkgs.fetchFromGitHub { + owner = "danielmiessler"; + repo = "SecLists"; + rev = "47aa98053fce8670c6489e4f6fb57dc34881d8bd"; + hash = "sha256-ojXLB/TXap1Qi0MtV5/WJlJpjNIDYx/sLY2KHm0uFKI="; + }; + }; + + "Cyber/wordlists/fuzz4bounty" = { + source = pkgs.fetchFromGitHub { + owner = "0xPugal"; + repo = "fuzz4bounty"; + rev = "a805f6b434033f054312da0ddc2bc3021cc9a3b0"; + hash = "sha256-wMhx1CcxIyw2E7gJXQxXAFc7m5nYt0FXNkoTZqFMQh4="; + }; + }; + + # RULES + "Cyber/wordlists/rules/oneruletorulethemstill".source = pkgs.fetchFromGitHub { + owner = "stealthsploit"; + repo = "oneruletorulethemstill"; + rev = "4bfb7322e189305b5f35bb7fcd4e9cc233c3d3c6"; + hash = "sha256-h7MeymIXS/6wlPRt4lzsIEqOOssP0lDx9nQip65cwZw="; + }; + + "Cyber/wordlists/rules/best64.rule" = { + source = pkgs.fetchurl { + url = "https://raw.githubusercontent.com/CarlosLannister/OwadeReborn/refs/heads/master/owade/fileAnalyze/hashcatLib/best64.rule%7E"; + hash = "sha256-T0XkMHJZQiy63/j25nGTkaiDFjc+blmgEVGTAFgVylU="; + }; + }; + }; }