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 端口扫描的主要内容,如果未能解决你的问题,请参考以下文章

扫描端口占用情况的python脚本

python实现端口状态扫描

Python-通过调用Nmap来进行端口扫描

端口扫描器--利用python的nmap模块

Python脚本--端口扫描器

Python3实现TCP端口扫描