Adds regex for stdout needed for changing root password and regex for stderr catching problems with the password. (#31955)
This commit is contained in:
parent
3c271e6bf6
commit
bb4b98a82e
1 changed files with 3 additions and 1 deletions
|
@ -30,7 +30,8 @@ class TerminalModule(TerminalBase):
|
|||
terminal_stdout_re = [
|
||||
re.compile(br"[\r\n]?(?:\([^\)]+\)){,5}(?:>|#) ?$"),
|
||||
re.compile(br"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"),
|
||||
re.compile(br"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$")
|
||||
re.compile(br"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$"),
|
||||
re.compile(br"(?:new|confirm) password:")
|
||||
]
|
||||
|
||||
terminal_stderr_re = [
|
||||
|
@ -40,6 +41,7 @@ class TerminalModule(TerminalBase):
|
|||
re.compile(br"invalid input", re.I),
|
||||
re.compile(br"(?:incomplete|ambiguous) command", re.I),
|
||||
re.compile(br"connection timed out", re.I),
|
||||
re.compile(br"the new password was not confirmed", re.I),
|
||||
re.compile(br"[^\r\n]+ not found", re.I),
|
||||
re.compile(br"'[^']' +returned error code: ?\d+"),
|
||||
re.compile(br"[^\r\n]\/bin\/(?:ba)?sh")
|
||||
|
|
Loading…
Reference in a new issue