nixos-config/shells/ctf.nix

57 lines
731 B
Nix
Raw Normal View History

2023-08-21 23:54:18 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
python3
(with python3Packages; [
beautifulsoup4
numpy
pillow
pwntools
pycryptodome
requests
])
nodejs
php
bat
binwalk
coreutils
gnugrep
gnutar
ripgrep
curl
2023-08-21 23:54:18 +02:00
ghidra
pwntools
metasploit
exiftool
steghide
# stegsolve
dig
nmap
rustscan
# davtest
# cadaver
httpie
2023-08-21 23:54:18 +02:00
john
] ++ lib.optionals (pkgs.stdenv.isLinux) [
sage
2023-08-21 23:54:18 +02:00
gdb
pwndbg
ropgadget
ropper
hashcat
sxiv
wireshark
tcpdump
2023-08-21 23:54:18 +02:00
];
2023-08-21 23:54:18 +02:00
}