open ports

master
zeus 2020-08-26 11:56:53 +02:00
parent 1cf8b7f36a
commit 57a2af6552
1 changed files with 3 additions and 0 deletions

View File

@ -11,3 +11,6 @@ cat file.xml | sed -n -e 's/.*<ns5\:Daten\ xmime\:contentType\=\"application\/pd
# prettify PATH-Output:
echo $PATH | sed s/\:/\\n/g
# check for open ports on target
for i in 80 443; do echo -e '\x1dclose\x0d' | telnet google.com $i >/dev/null; echo "$i : $?"; done