{ description = '' ''; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; in { devShells.default = pkgs.mkShell { packages = with pkgs; [ # Hardware hacking arduino-ide avrdude imsprog minicom screen # Software hacking binwalk burpsuite dig dirb # Web content scanner enum4linux-ng # Windows/Samba enumeration tool exiftool exploitdb # Archive of public exploits and corresponding vulnerable software feroxbuster # Recursive content discovery tool gdb ghidra-bin # Software Reverse Engineering hashcat # Password cracking hash-identifier john # Password cracker ltrace # Library call tracer metasploit # collection of exploits nikto # Web server scanner nmap # Network discovery protobuf pwntools smbclient-ng # SMB social-engineer-toolkit steghide strace # System call tracer thc-hydra # Logon cracker tshark (wordlists.override { lists = with pkgs; [ nmap rockyou seclists wfuzz ]; }) tmux steam-run ]; }; }); }