天天看點

端口探測

#!/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,如需轉載請自行聯系原作者