【工作常用代码集】批量Telnet远端端口

作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/

__author__ = gnuhpc

import telnetlib,socket

IP={}

def parseTel(line):
    parseArray = line.split()
    IP[parseArray[0]]=parseArray[1]

with open("tel.lst") as f:
    for line in f:
        parseTel(line)

for (ip,port) in  IP.items():
    try:
        tn = telnetlib.Telnet(ip,port,1)
        tn.close()
    except socket.error, why:
        print ip,port,why

【工作常用代码集】批量Telnet远端端口,布布扣,bubuko.com

【工作常用代码集】批量Telnet远端端口

上一篇:html5学习篇:05:论道html电子书-第一章


下一篇:Apache启用GZIP压缩网页传输方法