mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 21:17:53 +00:00
SSH2: make login() return false if no valid auth methods are found
This commit is contained in:
parent
e0068833b5
commit
649661cd5e
@ -2314,6 +2314,10 @@ class Net_SSH2
|
||||
}
|
||||
}
|
||||
|
||||
if (!count($newargs)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
foreach ($newargs as $arg) {
|
||||
if ($this->_login_helper($username, $arg)) {
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user