Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuraju authored Aug 23, 2016
1 parent 06a1113 commit e9732ed
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#! /bin/bash

while IFS='' read -r i; do
echo "For IP ==> $i"
printf "\n\n testssl $i\n\n"
./testssl $i
printf "\n\n nc $i 80\n\n"
nc $i 80 #copy this and paste GET / HTTP/1.1
printf "\n\n ssh root@$i\n\n"
ssh root@$i
printf "\n\n cisco-torch $i \n\n"
cisco-torch -A $i
printf "\n\n nc $i 21 \n\n"
nc $i 21
printf "\n\n nc $i 25 \n\n"
nc $i 25

done < "$1"

0 comments on commit e9732ed

Please sign in to comment.