1

我有使用 telnet 并且需要登录的代码。如果登录不正确,则向控制台返回“登录不正确”。我想捕捉这个异常并跳过它,这样它就不会停止程序。我试过的如下:

try:
    session.write("username".encode('ascii') + b"\r")
    session.write("password".encode('ascii') + b"\r")
    ***this is the point where the console will return "Incorrect login"***
except sys.stdout == "Incorrect login":
    print(sys.stdout)
    pass
else:
    **Rest of the code**

似乎它永远不会捕获此输出,继续执行我的代码并最终导致索引错误(因为我没有登录所需的数据)。我尝试搜索但没有运气。任何帮助,将不胜感激。我正在运行 python 3.3,并且仍在学习。谢谢!

编辑:这是 telnet 显示的内容

login: badusername
password: **blank b/c it is a pw field**
Login incorrect

login: 

Edit2:所有代码到 else (为保密而编辑)

import telnetlib, time
import sys, string, socket
import cx_Oracle

sql = "select column from table" 
con = cx_Oracle.connect("login info blah...")
cur = con.cursor()
cur.execute(sql)
row = cur.fetchone()
rows = cur.fetchall()

def Tup():
    return (rows)

cur.close()
con.close()

i = 0

while i < len(rows):   
    host    = Tup()[i][0]
    timeout = 120
    print(host + ' =', end = ' ')
    try:
        session = telnetlib.Telnet(host, 23, timeout)
    except:
        out = open("Data.txt",'a')
        out.write(host + " = FAILED\n")
        print("FAILED")
    else:        
    try:
        session.write("username".encode('ascii') + b"\r")
        session.write("pass".encode('ascii') + b"\r")
    except sys.stdout == "Incorrect login":
        print(sys.stdout)
        pass
    else:
4

3 回答 3

2

看一下[subprocess][1]模块,它包含一个check_output将执行命令的输出作为字符串返回的方法。

尝试这个。您可能需要更改一些语法细节...

PROMPT = '$' # or '#' or '%', the shell prompt
TIMEOUT = 3

try:
    session.read_until(b"login:")
    session.write("username".encode('ascii') + b"\r")

    session.read_until(b"password:")
    session.write("password".encode('ascii') + b"\r")
    login_result = session.read_until(PROMPT, TIMEOUT) # This will make it put whatever is printed till PROMPT into login_result. if it takes more than TIMEOUT seconds, you can assume login failed (since PROMPT never came up)
    ***this is the point where the console will return "Incorrect login"***

    if(login_result[-1] != PROMPT):    # change this -1 to -2 or -3 if the output is trailed by a newline
        raise Exception

except Exception:
    print("Login Failure")
    pass

else:
    **Rest of the code**
于 2013-05-02T15:16:41.263 回答
0

如果你看一下 python 'telnetlib.py' 代码,你会看到一个名为 'expect()' 的方法。你可以试试看它是否能帮助你完成工作。请记住,它需要一个正则表达式列表,因此请相应地设计您的搜索字符串。

由于您使用的是 telnetlib,如果您还没有偶然发现这个技巧(我确实使用了 telnetlib 很长时间而没有注意到它),请尝试将 telnet.debuglevel 设置为非零。它可以帮助您窥探低级别的数据流量。

编辑:

好吧,我发现自己有一些时间,所以我能够创建和测试一些演示代码。首先,要知道,作为初学者,您选择通过玩 telnetlib 并期望潜入编码池的“更深”端。它们并不难,但由于 telnet 的奥秘和屏幕抓取的“艺术”,它们很乏味。不适合心软的人。

所以这是我的剪辑。我在我们的一台本地服务器上对此进行了测试,并且能够更改为无效密码以验证代码确实检测到“登录失败”情况。您很可能需要为您的应用程序调整此代码。

#!/usr/bin/python3

import telnetlib

TARGET_NAME = "<insert yours here>"
USER_NAME   = "<insert yours here>"
USER_PW     = "<insert yours here>"

session = telnetlib.Telnet(host=TARGET_NAME)

session.debuglevel = 1

session.write("\n\n".encode('ascii'))

index, match_obj, text = session.expect(["login: ".encode('ascii')])
if match_obj:
    print("DBG: Sending user name")
    session.write((USER_NAME + '\r').encode('ascii'))

index, match_obj, text = session.expect(["Password:".encode('ascii')])
if match_obj:
    print("DBG: Sending password")
    session.write((USER_PW + '\r').encode('ascii'))


print("Checking for failed login")
index, match_obj, text = session.expect(["Login incorrect".encode('ascii')], timeout=3)

if match_obj:
    print("Login failed")
else:
    print("Well, at least we didn't see, 'Login failed'")

为了更好地理解这里发生了什么,请查看 telnetlib 源代码。您会注意到,expect() 方法返回三个值:找到文本的位置的索引、匹配对象和到该点读取的文本。我利用了以前的正则表达式经验,匹配对象将根据是否找到匹配来评估为布尔值。您可能希望使用返回值的一些其他组合来确定期望调用找到的确切内容。再次,乏味,但并不困难。

于 2013-05-02T16:20:18.917 回答
-1
username = input("Enter user name")
password = input("Enter password")

try:
    session.write(str(username).encode('ascii') + b"\r")
    session.write(str(password).encode('ascii') + b"\r")
    ***this is the point where the console will return "Incorrect login"***
except Exception as e:
    print "exception raised"
    pass
else:
    **Rest of the code**
于 2013-05-02T15:12:36.060 回答