Flake lock file updates:
• Updated input 'nixpkgs':
'github:NixOS/nixpkgs/d233902339c02a9c334e7e593de68855ad26c4cb?narHash=sha256-30sZNZoA1cqF5JNO9fVX%2BwgiQYjB7HJqqJ4ztCDeBZE%3D' (2026-05-15)
→ 'github:NixOS/nixpkgs/e9a7635a57597d9754eccebdfc7045e6c8600e6b?narHash=sha256-u6WU/yd/o8iYQrHX3RAwO1hYa3LkoSL%2BWNQD0rJfJZQ%3D' (2026-05-29)
67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{
|
|
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
|
|
];
|
|
};
|
|
});
|
|
}
|
|
|