feat(kali): Updates

This commit is contained in:
Tibo De Peuter 2026-02-23 09:58:23 +01:00
parent 15f618e8e9
commit 54abafd619
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -17,6 +17,7 @@
in { in {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
dig
dirb # Web content scanner dirb # Web content scanner
exploitdb # Archive of public exploits and corresponding vulnerable software exploitdb # Archive of public exploits and corresponding vulnerable software
ghidra-bin # Software Reverse Engineering ghidra-bin # Software Reverse Engineering
@ -30,6 +31,7 @@
social-engineer-toolkit social-engineer-toolkit
strace # System call tracer strace # System call tracer
thc-hydra # Logon cracker thc-hydra # Logon cracker
tshark
(wordlists.override { lists = with pkgs; [ (wordlists.override { lists = with pkgs; [
rockyou rockyou
@ -37,6 +39,13 @@
steam-run steam-run
]; ];
shellHook = ''
mkdir -p ~/Downloads/TryHackMe
cd $_
python -m venv .venv
source .venv/bin/activate
'';
}; };
}); });
} }