-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpentest_script.sh
279 lines (232 loc) · 6.64 KB
/
pentest_script.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#!/bin/bash
# Usage function
usage() {
echo "Usage: $0 <target_ip>"
exit 1
}
# Check if the target IP is provided as a command-line argument
if [ $# -ne 1 ]; then
usage
fi
# Get the target IP from the command-line argument
target_ip=$1
# Output directory to save the logs
output_dir="pentest_logs"
mkdir -p "$output_dir"
# Function to handle errors and save logs with timestamps
run_cmd() {
command="$1"
log_file="$2"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Running: $command" >> "$log_file"
if ! eval "$command" >> "$log_file" 2>&1; then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Error: Failed to run '$command'" >> "$log_file"
fi
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Completed: $command" >> "$log_file"
}
# Nessus Vulnerability Scanner
nessus_scan() {
log_file="$output_dir/nessus-scan.txt"
nessus_cmd="nessus -T HTML -r $output_dir/Nessus-Report.html $target_ip"
run_cmd "$nessus_cmd" "$log_file"
}
# nmap
nmap_scan() {
log_file="$output_dir/nmap-scan.txt"
nmap_cmd="nmap -T4 -A -v -oN $log_file $target_ip"
run_cmd "$nmap_cmd" "$log_file"
}
# Nikto
nikto_scan() {
log_file="$output_dir/nikto-scan.txt"
nikto_cmd="nikto -h $target_ip"
run_cmd "$nikto_cmd" "$log_file"
}
# Dirbuster / Dirb / Dirsearch
dir_scan() {
log_file="$output_dir/dir-scan.txt"
dirbuster_cmd="dirbuster -u http://$target_ip -l dirbuster_medium.txt -r -z -e php"
dirb_cmd="dirb http://$target_ip /usr/share/dirb/wordlists/common.txt"
dirsearch_cmd="python3 dirsearch.py -u http://$target_ip -w /usr/share/dirbuster/wordlists/directory-list-2.3-medium.txt"
run_cmd "$dirbuster_cmd" "$log_file" &
run_cmd "$dirb_cmd" "$log_file" &
run_cmd "$dirsearch_cmd" "$log_file" &
wait
}
# sqlmap
sqlmap_scan() {
log_file="$output_dir/sqlmap-scan.txt"
sqlmap_cmd="sqlmap -u 'http://$target_ip/index.php?id=1' --batch"
run_cmd "$sqlmap_cmd" "$log_file"
}
# BeEF
beef_start() {
log_file="$output_dir/beef-log.txt"
beef_cmd="beef-xss"
run_cmd "$beef_cmd" "$log_file"
}
# Metasploit
metasploit_start() {
log_file="$output_dir/metasploit-log.txt"
metasploit_cmd="msfconsole"
run_cmd "$metasploit_cmd" "$log_file"
}
# Qualys SSL Scanner
qualys_scan() {
log_file="$output_dir/qualys-scan.txt"
qualys_cmd="sslyze --regular $target_ip"
run_cmd "$qualys_cmd" "$log_file"
}
# BuiltWith / whatweb
builtwith_scan() {
log_file="$output_dir/builtwith-scan.txt"
builtwith_cmd="whatweb -v http://$target_ip"
run_cmd "$builtwith_cmd" "$log_file"
}
# Run the scans and save the logs using parallel processing
run_parallel() {
echo "Starting security scans..."
# Scans that can run independently in parallel
nessus_scan &
nmap_scan &
nikto_scan &
dir_scan &
wait
# Scans that should run sequentially
sqlmap_scan
beef_start
metasploit_start
qualys_scan
builtwith_scan
}
# Redirect output to /dev/null for faster execution of independent scans
run_parallel > /dev/null 2>&1 &
# Show progress while waiting for scans to complete
progress_pid=$!
progress_interval=0.5
echo "Progress: "
while kill -0 "$progress_pid" >/dev/null 2>&1; do
echo -n "#"
sleep "$progress_interval"
done
echo " Done"
# Save the script to a compiled, obfuscated file
shc -f "$0" -o pentest_script
# Perform vulnerability scanning on the script
grep -rE '(eval|shc)' "$0" > bug.txt
echo "All scans completed. Results saved in the $output_dir directory."
#!/bin/bash
# Usage function
usage() {
echo "Usage: $0 <target_ip>"
exit 1
}
# Check if the target IP is provided as a command-line argument
if [ $# -ne 1 ]; then
usage
fi
# Get the target IP from the command-line argument
target_ip=$1
# Output directory to save the logs
output_dir="pentest_logs"
mkdir -p "$output_dir"
# Function to handle errors and save logs with timestamps
run_cmd() {
command="$1"
log_file="$2"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Running: $command" >> "$log_file"
if ! eval "$command" >> "$log_file" 2>&1; then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Error: Failed to run '$command'" >> "$log_file"
fi
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Completed: $command" >> "$log_file"
}
# Nessus Vulnerability Scanner
nessus_scan() {
log_file="$output_dir/nessus-scan.txt"
nessus_cmd="nessus -T HTML -r $output_dir/Nessus-Report.html $target_ip"
run_cmd "$nessus_cmd" "$log_file"
}
# nmap
nmap_scan() {
log_file="$output_dir/nmap-scan.txt"
nmap_cmd="nmap -T4 -A -v -oN $log_file $target_ip"
run_cmd "$nmap_cmd" "$log_file"
}
# Nikto
nikto_scan() {
log_file="$output_dir/nikto-scan.txt"
nikto_cmd="nikto -h $target_ip"
run_cmd "$nikto_cmd" "$log_file"
}
# Dirbuster / Dirb / Dirsearch
dir_scan() {
log_file="$output_dir/dir-scan.txt"
dirbuster_cmd="dirbuster -u http://$target_ip -l dirbuster_medium.txt -r -z -e php"
dirb_cmd="dirb http://$target_ip /usr/share/dirb/wordlists/common.txt"
dirsearch_cmd="python3 dirsearch.py -u http://$target_ip -w /usr/share/dirbuster/wordlists/directory-list-2.3-medium.txt"
run_cmd "$dirbuster_cmd" "$log_file" &
run_cmd "$dirb_cmd" "$log_file" &
run_cmd "$dirsearch_cmd" "$log_file" &
wait
}
# sqlmap
sqlmap_scan() {
log_file="$output_dir/sqlmap-scan.txt"
sqlmap_cmd="sqlmap -u 'http://$target_ip/index.php?id=1' --batch"
run_cmd "$sqlmap_cmd" "$log_file"
}
# BeEF
beef_start() {
log_file="$output_dir/beef-log.txt"
beef_cmd="beef-xss"
run_cmd "$beef_cmd" "$log_file"
}
# Metasploit
metasploit_start() {
log_file="$output_dir/metasploit-log.txt"
metasploit_cmd="msfconsole"
run_cmd "$metasploit_cmd" "$log_file"
}
# Qualys SSL Scanner
qualys_scan() {
log_file="$output_dir/qualys-scan.txt"
qualys_cmd="sslyze --regular $target_ip"
run_cmd "$qualys_cmd" "$log_file"
}
# BuiltWith / whatweb
builtwith_scan() {
log_file="$output_dir/builtwith-scan.txt"
builtwith_cmd="whatweb -v http://$target_ip"
run_cmd "$builtwith_cmd" "$log_file"
}
# Run the scans and save the logs using parallel processing
run_parallel() {
echo "Starting security scans..."
# Scans that can run independently in parallel
nessus_scan &
nmap_scan &
nikto_scan &
dir_scan &
wait
# Scans that should run sequentially
sqlmap_scan
beef_start
metasploit_start
qualys_scan
builtwith_scan
}
# Redirect output to /dev/null for faster execution of independent scans
run_parallel > /dev/null 2>&1 &
# Show progress while waiting for scans to complete
progress_pid=$!
progress_interval=0.5
echo "Progress: "
while kill -0 "$progress_pid" >/dev/null 2>&1; do
echo -n "#"
sleep "$progress_interval"
done
echo " Done"
# Save the script to a compiled, obfuscated file
shc -f "$0" -o pentest_script
# Perform vulnerability scanning on the script
grep -rE '(eval|shc)' "$0" > bug.txt
echo "All scans completed. Results saved in the $output_dir directory."