52 lines
668 B
Nix
52 lines
668 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
python3
|
||
|
(with python3Packages; [
|
||
|
beautifulsoup4
|
||
|
numpy
|
||
|
pillow
|
||
|
pwntools
|
||
|
pycryptodome
|
||
|
requests
|
||
|
])
|
||
|
|
||
|
nodejs
|
||
|
php
|
||
|
#sage
|
||
|
|
||
|
# neovim
|
||
|
bat
|
||
|
binwalk
|
||
|
coreutils
|
||
|
gnugrep
|
||
|
gnutar
|
||
|
ripgrep
|
||
|
|
||
|
# gdb
|
||
|
# pwndbg
|
||
|
ghidra
|
||
|
pwntools
|
||
|
ropgadget
|
||
|
## ropper
|
||
|
|
||
|
metasploit
|
||
|
|
||
|
exiftool
|
||
|
steghide
|
||
|
# stegsolve
|
||
|
#gimp
|
||
|
#sxiv
|
||
|
#audacity
|
||
|
|
||
|
#wireshark
|
||
|
dig
|
||
|
nmap
|
||
|
rustscan
|
||
|
|
||
|
## hashcat
|
||
|
john
|
||
|
|
||
|
];
|
||
|
}
|