X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fagentlessd%2Fscripts%2Fssh.exp;h=a99fa973ec4a3971f371dcc7ded9c21dd50b2f15;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=238e373ebf6e6f08937202aa73e41058f9fb3c5d;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/agentlessd/scripts/ssh.exp b/src/agentlessd/scripts/ssh.exp index 238e373..a99fa97 100755 --- a/src/agentlessd/scripts/ssh.exp +++ b/src/agentlessd/scripts/ssh.exp @@ -1,23 +1,20 @@ #!/usr/bin/env expect -# @(#) $Id: ssh.exp,v 1.4 2009/06/24 17:06:21 dcid Exp $ # Agentless monitoring # # Copyright (C) 2009 Trend Micro Inc. # All rights reserved. -# +# # This program is a free software; you can redistribute it # and/or modify it under the terms of the GNU General Public -# License (version 3) as published by the FSF - Free Software +# License (version 2) as published by the FSF - Free Software # Foundation. - if {[string compare $pass "NOPASS"] == 0} { source $sshnopasssrc return } - expect { "WARNING: REMOTE HOST" { send_user "\nERROR: RSA host key for '$hostname' has changed. Unable to access.\n" @@ -25,7 +22,7 @@ expect { } "*sure you want to continue connecting*" { send "yes\r" - expect "* password:*" { + expect "*assword:*" { send "$pass\r" source $sshloginsrc } @@ -46,7 +43,7 @@ expect { send_user "\nERROR: Unable to connect to remote host: $hostname .\n" exit 1; } - "* password:*" { + "*assword:*" { send "$pass\r" source $sshloginsrc }