mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-22 10:32:10 +00:00
9 lines
154 B
Python
9 lines
154 B
Python
|
|
import pexpect
|
||
|
|
|
||
|
|
p = pexpect.spawn(["login"])
|
||
|
|
p.expect("login:")
|
||
|
|
p.sendline("wrong")
|
||
|
|
p.expect("Password:")
|
||
|
|
p.sendline("wrong")
|
||
|
|
p.expect("Login incorrect")
|