-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnm4p_HTTPenum.sh
More file actions
31 lines (21 loc) · 860 Bytes
/
Copy pathnm4p_HTTPenum.sh
File metadata and controls
31 lines (21 loc) · 860 Bytes
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
#!/bin/bash
#Nmap HTTP enumeration
#interact script is base on the results
#feel free to change the script
#-----------------------------------------------------------------------------------
echo "WELCOME"
echo " "
#-----------------------------------------------------------------------------------
echo "Target Ip: "
read Target
#------------------------------------------------------------------------------------
#quick scan to check port 80
echo "Nmap will do a recon scan"
sudo nmap -F -sV -T5 "$Target"
#-------------------------------------------------------------------------------------
http_enum_script="http-enum"
echo "Nmap will check port 80"
echo " "
echo "using script $http_enum_script"
sudo nmap -sV -p 80 --script "$http_enum_script" "$Target"
#------------------------------------------------------------------------------------