Python 多線程C段掃描、檢測 Ping掃描腳本的實(shí)現(xiàn)
我就廢話不多說了,大家還是直接看代碼吧~
import subprocess as pimport timeimport threadingfrom queue import Queuedef check_ip(ip): w=p.Popen(’ping -n 2 ’+ip,shell=True,stdout=p.PIPE,stderr=p.PIPE,encoding=’gbk’) result=w.stdout.read() # print(result) if ’TTL’ in result:print(ip,’is Up’)def main(): q=Queue() threads=[] threads_count=255 ips = ’39.156.69.’ for i in range(1,255): q.put(ips+str(i)) # print(q.get()) for i in range(threads_count): t=threading.Thread(target=check_ip,args=(q.get(),)) t.start() threads.append(t) time.sleep(0.2) for i in threads: i.join() print(’all done’)if __name__ == ’__main__’: main()
補(bǔ)充知識(shí):python并發(fā)掃描存活主機(jī)
看代碼吧~
import subprocessimport osimport time def ping(host): rc=subprocess.call(’ping -c2 %s &> /dev/null’ % host,shell=True) if rc == 0: print(’%s:up’% host) else: print(’%s:down’% host)if __name__ == ’__main__’: ips=[’176.130.10.%s’ % i for i in range(1,255)] for i in ips: pid=os.fork() if pid==0: ping(i) exit(0)
以上這篇Python 多線程C段掃描、檢測 Ping掃描腳本的實(shí)現(xiàn)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. UTF8轉(zhuǎn)成GB2312亂碼問題解決方案2. Java進(jìn)行Appium自動(dòng)化測試的實(shí)現(xiàn)3. php中PHPUnit框架實(shí)例用法4. 詳細(xì)總結(jié)Java for循環(huán)的那些坑5. css進(jìn)階學(xué)習(xí) 選擇符6. ajax實(shí)現(xiàn)頁面的局部加載7. 詳解CSS偽元素的妙用單標(biāo)簽之美8. 如何利用Python matplotlib繪制雷達(dá)圖9. 新手學(xué)python應(yīng)該下哪個(gè)版本10. Spring中@Value讀取properties作為map或list的操作

網(wǎng)公網(wǎng)安備