码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-07-06 18:19:01      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   for   

作者: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远端端口

标签:style   blog   http   color   os   for   

原文地址:http://www.cnblogs.com/gnuhpc/p/3825064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!