11 lines
222 B
Bash
Executable File
11 lines
222 B
Bash
Executable File
#!/usr/bin/expect -f
|
|
set timeout -1
|
|
spawn ssh -J wooo@192.168.0.110 wooo@192.168.0.188 "cat /home/wooo/deployments/agent-bounty-protocol/.env"
|
|
expect {
|
|
"*assword:*" {
|
|
send "0936223270\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|