From 948cc33549d64065d7d91724de153ebf330635e1 Mon Sep 17 00:00:00 2001 From: agryphus Date: Tue, 16 Apr 2024 11:12:53 -0400 Subject: [PATCH] Add more tools --- nixos/.config/nixos/profiles/offsec.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/.config/nixos/profiles/offsec.nix b/nixos/.config/nixos/profiles/offsec.nix index 841c77d..4c679a5 100644 --- a/nixos/.config/nixos/profiles/offsec.nix +++ b/nixos/.config/nixos/profiles/offsec.nix @@ -2,7 +2,18 @@ { environment.systemPackages = with pkgs; [ - nmap + evil-winrm # WinRM shell, for interacting with Windows machines + feroxbuster # Directory enumerator, for Local File Inclusion exploits + hashcat # Password hash-cracker. More GPU optimized than John + inetutils # Provides common network programs (telnet, ftp, hostname, ...) + john # John the Ripper, password hash-cracking utility + mariadb # Tools for MySQL + nmap # Network mapper, scans ports of target machine + openvpn # Virtual private network + redis # Interact with redis caches + responder # LLMNR, NBT-NS, and MDNS poisoner, rogue authentication server + samba # Talk to SMB services (Microsoft's file sharing protocol) + wordlists # Common wordlists, for dictionary attacks and the such ]; }