码迷,mamicode.com
首页 > 其他好文 > 详细

<script>网络主机扫描(ping)

时间:2017-04-18 22:26:57      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:扫描

#!/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()

技术分享

本文出自 “天下皆白,哼” 博客,请务必保留此出处http://xiaoqin00.blog.51cto.com/10468367/1917168

<script>网络主机扫描(ping)

标签:扫描

原文地址:http://xiaoqin00.blog.51cto.com/10468367/1917168

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!