Xname
V2EX  ›  问与答

求一款扫描软件,固定 IP 端,扫描开放 80 端口的那种软件???

  •  
  •   Xname · Aug 20, 2016 · 3095 views
    This topic created in 3556 days ago, the information mentioned may be changed or developed.

    例如设置 ip 173.133.133.1 - 137.133.133.255

    扫描段内所有 IP 把开发 80 端口的 ip 列出。是否有这样的软件呢,

    求大神推荐一下。

    感激不尽!~

    9 replies    2016-08-21 11:19:15 +08:00
    Xname
        1
    Xname  
    OP
       Aug 20, 2016
    如果服务器禁 PING 是否也能扫描出来?
    ehs2013
        2
    ehs2013  
       Aug 20, 2016
    zmap
    Xname
        3
    Xname  
    OP
       Aug 20, 2016
    @ehs2013 可以给个下载地址 或者官方网站吗
    got
        4
    got  
       Aug 20, 2016
    masscan
    c0nnax
        5
    c0nnax  
       Aug 20, 2016 via Android
    angryipscaner
    jsonzz
        6
    jsonzz  
       Aug 20, 2016
    from threading import Thread, activeCount
    import socket
    def test_port(dst,port):

    cli_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

    indicator = cli_sock.connect_ex((dst, port))
    if indicator == 0:
    print(str(dst)+":"+str(port))
    cli_sock.close()


    if __name__=='__main__':

    for i in range(1,256):
    dst = '173.133.133.%s'%i
    Thread(target = test_port, args = (dst, 80)).start()

    google 搜的,稍微改了下,符合你的需求
    wayslog
        7
    wayslog  
       Aug 20, 2016 via Android
    nmap
    gotounix
        8
    gotounix  
       Aug 20, 2016
    nmap -sS 173.133.133.1/24 -p 80
    Xname
        9
    Xname  
    OP
       Aug 21, 2016
    @jsonzz 不会用啊亲
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2841 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 46ms · UTC 15:26 · PVG 23:26 · LAX 08:26 · JFK 11:26
    ♥ Do have faith in what you're doing.