-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkgs.nix
110 lines (103 loc) · 1.42 KB
/
pkgs.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
inputs,
pkgs,
...
}: let
packages = {
general = with pkgs; [
git
python3
wget
curl
htop
ripgrep
file
zsh
netcat-gnu
wordlists
unrar
unzip
p7zip
zip
cabextract
freerdp3
remmina
tigervnc
samba
openvpn
util-linux
vim
wireguard-go
wireguard-tools
xrdp
dos2unix
screen
tmux
];
cracking = with pkgs; [
thc-hydra
hashcat
hashcat-utils
john
];
exploits = with pkgs; [
metasploit
pwntools
exploitdb
go-exploitdb
sploitscan
];
web = with pkgs; [
ffuf
dirb
wfuzz
gobuster
wpscan
nikto
knockpy
subfinder
burpsuite
caido
sqlmap
katana
wapiti
];
network = with pkgs; [
wireshark
wireshark-cli
tcpdump
smbmap
rustscan
nmap
];
reverse = with pkgs; [
checksec
bingrep
binwalk
radare2
unicorn
gdb
gef
pwndbg
ghidra-bin
binsider
];
forensics = with pkgs; [
stegseek
foremost
autopsy
binwalk
exiftool
git-secret
];
windows = with pkgs; [
enum4linux-ng
mimikatz
powersploit
nbtscan
bloodhound
netexec
];
};
in
packages