X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person.php;h=629edd67d2f7f26db18b17ceea50eeac96a1b4b1;hb=54fe24a4cd94d465ef1508219b477b02e58b2989;hp=c673992d31c8ee6b94a7d6ccfe47d737882c7a2d;hpb=345d66c3d3455811b938a16a8d51877fae630119;p=Pman.Core diff --git a/DataObjects/Core_person.php b/DataObjects/Core_person.php index c673992d..629edd67 100644 --- a/DataObjects/Core_person.php +++ b/DataObjects/Core_person.php @@ -291,12 +291,12 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject } - // local auth - - $default_admin = false; - if (!empty($ff->Pman['local_autoauth']) && - ($ff->Pman['local_autoauth'] === true) && - (!empty($_SERVER['SERVER_ADDR'])) && - ( + $auto_auth_allow = false; + if (!empty($ff->Pman['local_autoauth']) && $ff->Pman['local_autoauth'] === true) { + $auto_auth_allow = true; + } + if ( + (!empty($_SERVER['SERVER_ADDR'])) && ( $_SERVER['SERVER_ADDR'] == '127.0.0.1' && $_SERVER['REMOTE_ADDR'] == '127.0.0.1' @@ -306,8 +306,19 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $_SERVER['SERVER_ADDR'] == '::1' && $_SERVER['REMOTE_ADDR'] == '::1' ) - ) - ) { + + ){ + $auto_auth_allow = true; + } + + + if (empty($_SERVER['PATH_INFO']) || $_SERVER['PATH_INFO'] == '/Login') { + $auto_auth_allow = false; + } + + // local auth - + $default_admin = false; + if ($auto_auth_allow) { $group = DB_DataObject::factory('core_group'); $group->get('name', 'Administrators'); @@ -329,7 +340,8 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $u = DB_DataObject::factory($this->tableName()); $ff = HTML_FlexyFramework::get(); - if (!empty($ff->Pman['local_autoauth']) && + if (!empty($ff->Pman['local_autoauth']) && + ($ff->Pman['local_autoauth'] === true) && (!empty($_SERVER['SERVER_ADDR'])) && ( ( @@ -520,10 +532,9 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject function checkTwoFactorAuthentication($val) { - // also used in login - return true; + // also used in login require_once 'System.php'; if( @@ -539,7 +550,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject return false; } - $cmd = "{$oathtool} --totp --base32 {$this->oath_key}"; + $cmd = "{$oathtool} --totp --base32 " . escapeshellarg($this->oath_key); $password = exec($cmd); @@ -678,12 +689,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $s = DB_DataObject::Factory('core_setting'); $oath_require = $s->lookup('core', 'two_factor_authentication_requirement'); - - if(!empty($oath_require) && $oath_require->val == 0) { - $aur['require_oath'] = 0; - } - - // $aur['require_oath'] = !empty($oath_require) || $oath_require->val == 0 ? 0 : 1; + $aur['require_oath'] = $oath_require ? $oath_require->val : 0; return $aur; }