blob: 86253bcf65c9dfd16ba85ce9d7febe9469d3659b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/usr/bin/expect
set timeout 10
expect_after default {puts "\nFAIL"; exit 1}
spawn /bin/bash
expect "# "
send "strace -s 1000 -o /tmp/login.strace login\r"
expect " login: "
send "myuser\r"
expect "Password: "
send "myuserF00barbaz\r"
expect "Password: "
send "myuserF00barbaz\r"
expect "$ "
send "# expect uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
expect "$ "
send "id\r"
expect "uid=424242(myuser) gid=424242(myuser) groups=424242(myuser)\r"
expect "$ "
send "exit\r"
exit 0
|