forked from SyedShehzadGillani/PentestBuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpentestbuddy.sh
50 lines (44 loc) · 1.45 KB
/
pentestbuddy.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
50
#!/bin/bash
COLOR=$((RANDOM % 8+30))
echo -e "
==============================================================================
\e[1;${COLOR}m ____ __ __ ____ __ __
/ __ \___ ____ / /____ _____/ /_/ __ )__ ______/ /___/ /_ __
/ /_/ / _ \/ __ \/ __/ _ \/ ___/ __/ __ / / / / __ / __ / / / /
/ ____/ __/ / / / /_/ __(__ ) /_/ /_/ / /_/ / /_/ / /_/ / /_/ /
/_/ \___/_/ /_/\__/\___/____/\__/_____/\__,_/\__,_/\__,_/\__, /
/____/
\e[0m
===============================================================================
-: Team Pak Cyber Squad :-
-: Zuck Rajput & AkDevil hunter :-
< https://pakcybersquad.blogspot.com/ >
< https://facebook.com/PakCyberSquad/ >
"
read -p "Command: " Command
if [ "$Command" == "start" ];
then
echo "Started Successfully!"
read -p "URL: " url
echo "=> URL To Be Tested: ${url}"
echo "
==========================================
=> Attack Started!
-> IP : $(dig +short ${url})
-> Name Servers: $(dig +short ns ${url})
==========================================
=> Starting Nmap...
$(nmap ${url})
^_^ Nmap Scan Done..
=> Starting Sublist3r
"
cd Sublist3r && python sublist3r.py --domain $url
echo "
^_^ Sublist3r Scan Done!
=> Searching For Vulnerabilities...
"
nikto -h $url
echo "Vulnerabilities Searched!"
else
echo "Something Wrent Wrong! Reloading Scipt.." && ./pentestbuddy.sh
fi