首页 > 编程语言 > 详细

python_端口扫描

时间:2020-06-02 23:21:30      阅读:48      评论:0      收藏:0      [点我收藏+]
client.py
import socket


def get_ip_status(ip, port):
    sk= socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        sk.connect((ip, port))
        # print(‘{0} port {1} is open‘.format(ip, port))
        return True
    except Exception as err:
        # print(‘{0} port {1} is not open‘.format(ip, port))
        return False
    finally:
        sk.close()


if __name__ == ‘__main__‘:
    host = ‘127.0.0.1‘
    for port in range(9000, 9010):
        if get_ip_status(host, port):
            print(‘{0} port {1} is open‘.format(host, port))
        else:
            print(‘{0} port {1} is not open‘.format(host, port))
server.py
import socket

sk=socket.socket()
sk.bind(("127.0.0.1",9005))
sk.listen()

conn,_ = sk.accept()  # 开启端口

python_端口扫描

原文:https://www.cnblogs.com/Collin-pxy/p/13034421.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!