python 端口扫描
Posted 田云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 端口扫描相关的知识,希望对你有一定的参考价值。
备份
>>> from socket import socket >>> def scan_address(host, port): s = socket() s.settimeout(3) try: s.connect((host, port)) except: return False s.close() return True >>> scan_address(‘localhost‘, 5432) True
以上是关于python 端口扫描的主要内容,如果未能解决你的问题,请参考以下文章