VYPR
High severityNVD Advisory· Published Nov 28, 2023· Updated Aug 2, 2024

Pimcore Admin UI has Two Factor Authentication disabled for non admin security firewalls

CVE-2023-49075

Description

The Admin Classic Bundle provides a Backend UI for Pimcore. AdminBundle\Security\PimcoreUserTwoFactorCondition introduced in v11 disable the two factor authentication for all non-admin security firewalls. An authenticated user can access the system without having to provide the two factor credentials. This issue has been patched in version 1.2.2.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
pimcore/admin-ui-classic-bundlePackagist
< 1.2.21.2.2

Affected products

1

Patches

1
e412b0597830

Fix 2FA authentication for firewalls other than admin (#345)

1 file changed · +2 1
  • src/Security/PimcoreUserTwoFactorCondition.php+2 1 modified
    @@ -27,8 +27,9 @@ class PimcoreUserTwoFactorCondition implements TwoFactorConditionInterface
     {
         public function shouldPerformTwoFactorAuthentication(AuthenticationContextInterface $context): bool
         {
    +        //return true for performing two factor for firewalls other than admin
             if ($context->getFirewallName() !== 'pimcore_admin') {
    -            return false;
    +            return true;
             }
     
             $user = $context->getUser();
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

6

News mentions

0

No linked articles in our index yet.