Skip to content

Commit

Permalink
update to v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vrikodar authored Jul 20, 2021
1 parent e4b71f5 commit f3d2703
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions jtrbug
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ BRed='\033[1;31m'
NC='\033[0m'
BBlue='\033[1;34m'

echo -e "\n${BRed}JitterBug-v(1.1)${NC} ${BGreen}starting...${NC}\n"
echo -e "\n${BRed}JitterBug-v(1.2)${NC} ${BGreen}starting...${NC}\n"


if [ $# -lt 1 ]
then
echo -e "\n${BRed}Insufficent Arguments${NC}...."
echo -e "${BGreen} Usage: ${NC}"
echo -e " ${BRed}./jtrbug${NC} ${BGreen}<target-ip>${NC}"
echo -e " ${BRed}./jtrbug${NC} ${BGreen}<target-ips-seprated-by-space>${NC}"
exit
fi

Expand Down Expand Up @@ -91,7 +91,13 @@ function final_report() {
}


ip_info ${1}
port_scan_cens ${1}
cve_scan_shodan ${1}
final_report ${1}
for ip in ${@}
do
ip_info ${ip}
port_scan_cens ${ip}
cve_scan_shodan ${ip}
final_report ${ip}
#echo ${ip}
echo -e "\n${BBlue}=============================================================================================${NC}"
done

0 comments on commit f3d2703

Please sign in to comment.