nixos-config/shells/ctf.nix

61 lines
862 B
Nix
Raw Normal View History

2023-10-14 00:09:22 +02:00
let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
in { pkgs ? import <nixpkgs> {} }:
2023-08-21 23:54:18 +02:00
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
python3
(with python3Packages; [
beautifulsoup4
numpy
pillow
pwntools
pycryptodome
requests
])
nodejs
php
bat
binwalk
coreutils
gnugrep
gnutar
ripgrep
curl
2023-09-13 23:20:31 +02:00
#sxiv
feh
2023-08-21 23:54:18 +02:00
ghidra
2023-09-13 23:20:31 +02:00
pwninit
2023-08-21 23:54:18 +02:00
metasploit
2023-09-13 23:20:31 +02:00
sqlmap
2023-08-21 23:54:18 +02:00
exiftool
steghide
# stegsolve
dig
nmap
rustscan
2023-12-17 01:05:34 +01:00
thc-hydra
2023-08-21 23:54:18 +02:00
# davtest
# cadaver
httpie
2023-08-21 23:54:18 +02:00
john
2023-12-17 01:05:34 +01:00
hashcat
2023-10-14 00:09:22 +02:00
] ++ lib.optionals (pkgs.stdenv.isLinux) [
sage
gdb
pwndbg
ropgadget
wireshark
tcpdump
2023-08-21 23:54:18 +02:00
];
2023-08-21 23:54:18 +02:00
}