Merge pull request #24936 from owncloud/2fa-block-ocs

block OCS if 2FA challenge needs to be solved first
This commit is contained in:
Vincent Petry 2016-06-02 14:55:34 +02:00
commit 53398b5146
1 changed files with 4 additions and 0 deletions

View File

@ -341,6 +341,10 @@ class OC_API {
// reuse existing login
$loggedIn = \OC::$server->getUserSession()->isLoggedIn();
if ($loggedIn === true) {
if (\OC::$server->getTwoFactorAuthManager()->needsSecondFactor()) {
// Do not allow access to OCS until the 2FA challenge was solved successfully
return false;
}
$ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false;
if ($ocsApiRequest) {