天天看点

端口探测

#!/bin/bash

i=1

while true

do

    test=`nmap mapi.alipay.com -p 443 | grep https | grep -v grep`

    echo "$i $test"

    i=`expr $i + 1`

    sleep 1

done

     本文转自1321385590 51CTO博客,原文链接:http://blog.51cto.com/linux10000/1955379,如需转载请自行联系原作者