Commit f701bbc1 authored by ibuler's avatar ibuler

[Update] 修改telnet正则判断

parent 57e5c0a1
...@@ -183,13 +183,13 @@ class TelnetConnection: ...@@ -183,13 +183,13 @@ class TelnetConnection:
r'incorrect|failed|失败|错误', re.I r'incorrect|failed|失败|错误', re.I
) )
self.username_pattern = re.compile( self.username_pattern = re.compile(
r'login:\s*$|username:\s*$|用户名:\s*$|账\s*号:\s*$', re.I r'login:?\s*$|username:?\s*$|用户名:?\s*$|账\s*号:?\s*$', re.I
) )
self.password_pattern = re.compile( self.password_pattern = re.compile(
r'password:\s*$|passwd:\s*$|密\s*码:\s*$', re.I r'Password:?\s*$|passwd:?\s*$|密\s*码:?\s*$', re.I
) )
self.success_pattern = re.compile( self.success_pattern = re.compile(
r'Last\s*login|success|成功', re.I r'Last\s*login|success|成功|#|\$', re.I
) )
def get_socket(self): def get_socket(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment