-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathessentials.sh
More file actions
47 lines (29 loc) · 1.6 KB
/
Copy pathessentials.sh
File metadata and controls
47 lines (29 loc) · 1.6 KB
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
#!/bin/bash
echo "[+] Installing Kali Essentials"
sudo apt update
sudo apt-get install seclists powershell dirsearch gobuster snmp-mibs-downloader netexec ghidra
download-mibs
mkdir /opt/essentials
mkdir /opt/essentials/wordlists
mkdir /opt/essentials/shells
mkdir /opt/essentials/linuxPE
mkdir /opt/essentials/windowsPE
cd /opt/essentials;
git clone https://github.com/swisskyrepo/PayloadsAllTheThings;
cd /opt/essentials/wordlists
wget https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt;
mv /usr/share/seclists/ .
cd /opt/essentials/shells;
git clone https://github.com/pentestmonkey/php-reverse-shell
wget https://raw.githubusercontent.com/ivan-sincek/php-reverse-shell/master/src/reverse/php_reverse_shell.php -O PHPuniversal.php
cd /opt/essentials/linuxPE
wget https://github.com/DominicBreuker/pspy/releases/download/v1.2.1/pspy64s;
wget https://raw.githubusercontent.com/mzet-/linux-exploit-suggester/master/linux-exploit-suggester.sh -O les.sh
wget https://github.com/peass-ng/PEASS-ng/releases/download/20240804-31b931f7/linpeas.sh
cd /opt/essentials/windowsPE
wget https://github.com/peass-ng/PEASS-ng/releases/download/20240804-31b931f7/winPEASany.exe
wget https://github.com/peass-ng/PEASS-ng/releases/download/20240804-31b931f7/winPEAS.bat
wget https://github.com/peass-ng/PEASS-ng/releases/download/20240804-31b931f7/winPEASx64.exe
git clone https://github.com/ParrotSec/mimikatz
echo "[+] You can find all tools inside /opt/essentials directory"
echo "[+] DONT FORGET to edit the /etc/snmp/snmp.conf configuration file to deactivate the line that starts with the word mibs."