码迷,mamicode.com
首页 > 编程语言 > 详细

利用Python原始库完成一个端口扫描的功能

时间:2019-09-19 19:37:34      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:功能   get   def   imp   import   nec   close   try   finally   

利用Python原始库完成一个端口扫描的功能


import socket
 
def get_ip_status(ip,port):
    server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        server.connect((ip,port))
        print('{0} port {1} is open'.format(ip, port))
    except Exception as err:
        print('{0} port {1} is not open'.format(ip,port))
    finally:
        server.close()


get_ip_status("192.168.221.133",22)

利用Python原始库完成一个端口扫描的功能

标签:功能   get   def   imp   import   nec   close   try   finally   

原文地址:https://www.cnblogs.com/17bdw/p/11551752.html

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