mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 08:10:58 +00:00
Merge branch '2.0' into 3.0
This commit is contained in:
commit
a0405d4816
@ -1096,6 +1096,14 @@ class SSH2
|
|||||||
*/
|
*/
|
||||||
private $regenerate_decompression_context = false;
|
private $regenerate_decompression_context = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Smart multi-factor authentication flag
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
* @access private
|
||||||
|
*/
|
||||||
|
private $smartMFA = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default Constructor.
|
* Default Constructor.
|
||||||
*
|
*
|
||||||
@ -2163,11 +2171,59 @@ class SSH2
|
|||||||
return $this->login_helper($username);
|
return $this->login_helper($username);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
while (count($args)) {
|
||||||
|
if (!$this->auth_methods_to_continue || !$this->smartMFA) {
|
||||||
|
$newargs = $args;
|
||||||
|
$args = [];
|
||||||
|
} else {
|
||||||
|
$newargs = [];
|
||||||
|
foreach ($this->auth_methods_to_continue as $method) {
|
||||||
|
switch ($method) {
|
||||||
|
case 'publickey':
|
||||||
|
foreach ($args as $key => $arg) {
|
||||||
|
if ($arg instanceof PrivateKey || $arg instanceof Agent) {
|
||||||
|
$newargs[] = $arg;
|
||||||
|
unset($args[$key]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'keyboard-interactive':
|
||||||
|
$hasArray = $hasString = false;
|
||||||
foreach ($args as $arg) {
|
foreach ($args as $arg) {
|
||||||
|
if ($hasArray || is_array($arg)) {
|
||||||
|
$hasArray = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if ($hasString || is_string($arg)) {
|
||||||
|
$hasString = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($hasArray && $hasString) {
|
||||||
|
foreach ($args as $key => $arg) {
|
||||||
|
if (is_array($arg)) {
|
||||||
|
$newargs[] = $arg;
|
||||||
|
break 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 'password':
|
||||||
|
foreach ($args as $key => $arg) {
|
||||||
|
$newargs[] = $arg;
|
||||||
|
unset($args[$key]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($newargs as $arg) {
|
||||||
if ($this->login_helper($username, $arg)) {
|
if ($this->login_helper($username, $arg)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5085,4 +5141,20 @@ class SSH2
|
|||||||
{
|
{
|
||||||
return $this->auth_methods_to_continue;
|
return $this->auth_methods_to_continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enables "smart" multi-factor authentication (MFA)
|
||||||
|
*/
|
||||||
|
public function enableSmartMFA()
|
||||||
|
{
|
||||||
|
$this->smartMFA = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables "smart" multi-factor authentication (MFA)
|
||||||
|
*/
|
||||||
|
public function disableSmartMFA()
|
||||||
|
{
|
||||||
|
$this->smartMFA = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user