Skip to content

Commit 8f72a43

Browse files
committed
test without -vv
1 parent 281d5de commit 8f72a43

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

OSIRA

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 04f166f588977a6af1912d0fb893b528af01d58c
1+
Subproject commit bf6583bf9cfe7818a102971ee8516cd3d1a44451

cleanrf.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env bash
22

33
echo "Clears report folder for files"
4+
echo " "
45
ls -l report/*.*
6+
echo " "
57
read -p "Are you sure you wish to continue? (yes/y): "
68
response=${response:l} #tolower
79
if [[ $response =~ ^(yes|y| ) ]] || [[ -z $response ]]; then

waes.sh

+19-16
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
#===============================================================================
1111

1212

13+
# vars
1314
VERSION="0.0.3b"
14-
# Where to find vulners.nse :
15-
VULNERSDIR="nmap-vulners"
16-
SECLISTDIR="SecLists"
17-
REPORTDIR="report" # report directory
15+
VULNERSDIR="nmap-vulners" # Where to find vulners.nse
16+
REPORTDIR="report" # /report directory
1817
TOOLS=( "nmap" "nikto" "uniscan" "gobuster" "dirb" "whatweb" )
18+
# SECLISTDIR="SecLists"
1919

20+
#banner / help message
2021
echo ""
2122
echo -e "\e[00;32m#############################################################\e[00m"
2223
echo ""
@@ -98,32 +99,34 @@ fi
9899
echo -e "Target: $2 "
99100

100101
# Whatweb
101-
echo -e "[+] Looking up "$2" with whatweb"
102+
echo -e "\e[00;32m [+] Looking up "$2" with whatweb" "\e[00m"
102103
whatweb -a3 $2 | tee ${REPORTDIR}/$2_whatweb.txt
103104

104-
echo -e "[+] OSIRA on:" $2
105+
echo -e "\e[00;32m [+] OSIRA on:" $2 "\e[00m"
105106
OSIRA/osira.sh -u $2 | tee ${REPORTDIR}/$2_osira.txt
106107
mv $2.txt ${REPORTDIR}/$2_osira.txt
107108

108109
# nmap
109-
echo -e "[+] nmap with standard scripts (-sC) on $2"
110-
nmap -sSCV -Pn -T4 -vv $2 -oA ${REPORTDIR}/$2_nmap_sSCV
111-
echo -e "[+] nmap with http-enum on $2"
112-
nmap -sSV -Pn -O -T4 -vv --script http-enum $2 -oA ${REPORTDIR}/$2_nmap_http-enum
113-
echo -e "[+] nmap with various HTTP vuln nse scripts on $2"
114-
nmap -sSV -Pn -T4 -vv --script "http-*" $2 -oA ${REPORTDIR}/$2_nmap_http-va
115-
echo -e "[+] nmap with vulners on $2"
116-
nmap -sSV -Pn -A -T4 -vv --script ${VULNERSDIR}/vulners.nse $2 -oA ${REPORTDIR}/$2_nmap_vulners
110+
echo -e "\e[00;32m [+] nmap with standard scripts (-sC) on $2" "\e[00m"
111+
nmap -sSCV -Pn -T4 $2 -oA ${REPORTDIR}/$2_nmap_sSCV
112+
echo -e "\e[00;32m [+] nmap with http-enum on $2" "\e[00m"
113+
nmap -sSV -Pn -O -T4 --script http-enum $2 -oA ${REPORTDIR}/$2_nmap_http-enum
114+
echo -e "\e[00;32m [+] nmap with various HTTP vuln nse scripts on $2" "\e[00m"
115+
nmap -sSV -Pn -T4 --script "http-*" $2 -oA ${REPORTDIR}/$2_nmap_http-va
116+
echo -e "\e[00;32m [+] nmap with vulners on $2" "\e[00m"
117+
echo ${VULNERSDIR}"/vulners.nse"
118+
nmap -sV -Pn -O -T4 --script ${VULNERSDIR}/vulners.nse $2 --script-args mincvss=5-0 -oA ${REPORTDIR}/$2_nmap_vulners
117119

118120
# nikto
119-
echo -e "[+] nikto on $2"
121+
echo -e "\e[00;32m [+] nikto on $2" "\e[00m"
120122
nikto -h $2 -C all -ask no -evasion A | tee $REPORTDIR/$2_nikto.txt
121123

122124
# uniscan
123-
echo -e "[+] uniscan on $2"
125+
echo -e "\e[00;32m [+] uniscan of $2" "\e[00m"
124126
uniscan -u $2 -qweds | tee $REPORTDIR/$2_uniscan.txt
125127

126128
# Supergobuster: gobuster + dirb
129+
echo -e "\e[00;32m [+] super go busting $2" "\e[00m"
127130
./supergobuster.sh $2 | tee $REPORTDIR/$2_supergobust.txt
128131

129132
echo -e "\e[00;32m [+] WAES is done. Find results in:" ${REPORTDIR} "\e[00m"

0 commit comments

Comments
 (0)