Skip to content

Commit

Permalink
Bash Port Scan Added
Browse files Browse the repository at this point in the history
Bash Port Scan Added
  • Loading branch information
1nPr0c committed Feb 15, 2015
1 parent 564bb03 commit 7af7da2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cheatsheet_BashScripting.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,9 @@ fi
for host in $(cat hosts.txt)
do
command $host
done
done

[+] One Liners

Port Scan:
for port in $(cat Ports.txt); do nc -nzv 192.168.0.1 $port & sleep 0.5; done

0 comments on commit 7af7da2

Please sign in to comment.