kali/flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/a8d610af3f1a5fb71e23e08434d8d61a466fc942?narHash=sha256-v5afmLjn/uyD9EQuPBn7nZuaZVV9r%2BJerayK/4wvdWA%3D' (2025-11-20)
  → 'github:NixOS/nixpkgs/d233902339c02a9c334e7e593de68855ad26c4cb?narHash=sha256-30sZNZoA1cqF5JNO9fVX%2BwgiQYjB7HJqqJ4ztCDeBZE%3D' (2026-05-15)
This commit is contained in:
Tibo De Peuter 2026-05-20 14:15:16 +02:00
parent daa76ca5d8
commit cdf05e946c
No known key found for this signature in database
GPG key ID: 9187B5FA0F4B6F6D
2 changed files with 16 additions and 3 deletions

6
kali/flake.lock generated
View file

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1763618868, "lastModified": 1778869304,
"narHash": "sha256-v5afmLjn/uyD9EQuPBn7nZuaZVV9r+JerayK/4wvdWA=", "narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a8d610af3f1a5fb71e23e08434d8d61a466fc942", "rev": "d233902339c02a9c334e7e593de68855ad26c4cb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -17,24 +17,37 @@
in { in {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
burpsuite
dirb # Web content scanner dirb # Web content scanner
enum4linux-ng # Windows/Samba enumeration tool
exiftool
exploitdb # Archive of public exploits and corresponding vulnerable software exploitdb # Archive of public exploits and corresponding vulnerable software
feroxbuster # Recursive content discovery tool
gdb
ghidra-bin # Software Reverse Engineering ghidra-bin # Software Reverse Engineering
hashcat # Password cracking
hash-identifier hash-identifier
john # Password cracker john # Password cracker
ltrace # Library call tracer ltrace # Library call tracer
metasploit # collection of exploits metasploit # collection of exploits
nikto # Web server scanner nikto # Web server scanner
nmap # Network discovery nmap # Network discovery
protobuf
pwntools
smbclient-ng # SMB smbclient-ng # SMB
social-engineer-toolkit social-engineer-toolkit
steghide
strace # System call tracer strace # System call tracer
thc-hydra # Logon cracker thc-hydra # Logon cracker
(wordlists.override { lists = with pkgs; [ (wordlists.override { lists = with pkgs; [
nmap
rockyou rockyou
seclists
wfuzz
]; }) ]; })
tmux
steam-run steam-run
]; ];
}; };