-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexploitation.sh
executable file
·49 lines (44 loc) · 1.48 KB
/
exploitation.sh
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
#!/usr/bin/bash
cat << "EOF"
___ _ _ _ _ _ ___ _ _
| __|_ ___ __| |___(_) |_ __ _| |_(_)___ _ _ / __| __ _ _(_)_ __| |_ ___
| _|\ \ / '_ \ / _ \ | _/ _` | _| / _ \ ' \ \__ \/ _| '_| | '_ \ _(_-<
|___/_\_\ .__/_\___/_|\__\__,_|\__|_\___/_||_| |___/\__|_| |_| .__/\__/__/
|_| |_|
EOF
echo "[+] List of all Exploitation Scripts. Please select any option:"
choise="Password-Sniffer Vulnerability-Scanner SSH-Brute-Force DDoS-Script 403-Bypass"
select option in $choise;
do
if [ $REPLY = 1 ];
then
echo "[+] Executing Password sniffer script..."
python3 exploitation-scripts/password-sniffer/password_sniffer.py
break
elif [ $REPLY = 2 ]
then
echo "[+] Executing Vulnerability scanner script..."
python3 exploitation-scripts/vulnerability-scanner/vulnerability_scanner.py
break
elif [ $REPLY = 3 ]
then
echo "[+] Executing SSH brute force script..."
python3 exploitation-scripts/ssh-brute-force/ssh_brute_force.py
break
elif [ $REPLY = 4 ]
then
echo "[+] Executing DDoS attack script..."
python3 exploitation-scripts/DDoS-Script/ddos_script.py
break
elif [ $REPLY = 5 ]
then
echo "[+] Executing 403 Bypass script..."
echo -e "[*] Please enter domain name: \c"
read bypass
echo ""
./exploitation-scripts/403-Bypasss/403_bypass.sh $bypass
break
else
echo "[!] Invalid option selected."
fi
done