中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

<script>網絡主機掃描(ping)

發布時間:2020-07-23 23:15:11 來源:網絡 閱讀:364 作者:xiaoqin00 欄目:網絡安全
#!/usr/bin/env python
#-*- coding: UTF-8 -*-
import platform
import sys
import os
import time
import thread


def get_os():
    # get os
    os = platform.system()
    if os == "Windows":
        return "n"
    else:
        return "c"

def ping_ip(ip_str):         #ping ip
    cmd = ["ping", "-{op}".format(op=get_os()),
           "1", ip_str]
    output = os.popen(" ".join(cmd)).readlines()
    flag = False
    for line in list(output):
        if not line:
            continue
        if str(line).upper().find("TTL") >= 0:
            flag = True
            break
    if flag:
        print "ip: %s is ok ***" % ip_str


def find_ip(ip_prefix):         #find all ip of the net
    for i in range(1, 256):
        ip = '%s.%s' % (ip_prefix, i)
        thread.start_new_thread(ping_ip, (ip,))
        time.sleep(0.3)

if __name__ == "__main__":
    print "start time %s" % time.ctime()
    commandargs = sys.argv[1:]
    args = "".join(commandargs)
    ip_prefix = '.'.join(args.split('.')[:-1])
    find_ip(ip_prefix)
    print "end time %s" % time.ctime()

<script>網絡主機掃描(ping)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五峰| 鲜城| 潜山县| 香河县| 巴彦淖尔市| 古蔺县| 陆河县| 乐清市| 广宗县| 陕西省| 邳州市| 随州市| 麟游县| 张北县| 柘荣县| 武汉市| 龙门县| 威远县| 崇阳县| 始兴县| 平江县| 徐闻县| 福安市| 镇江市| 铁岭县| 剑川县| 衡东县| 通榆县| 汝城县| 土默特左旗| 杭锦旗| 慈利县| 万州区| 图们市| 安岳县| 紫阳县| 宁德市| 开阳县| 阿克苏市| 全州县| 富宁县|