DrupalCMS

CVE-2026-55806

MEDIUM · 5.9 CVSS v3.1 Published 2026-07-10
Fix available
A fix is available. Upgrade to 10.5.12 / 10.6.11 or later.
See remediation →
68/100
Remediation priority · Elevated
Remotely reachable No privileges Zero-click 6 weeks old

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
URL Redirection to Untrusted Site ('Open Redirect') vulnerability in Drupal Drupal core allows Content Spoofing. This issue affects Drupal core versions: from 0.0.0 to 10.5.12, from 10.6.0 to 10.6.11, from 11.2.0 to 11.2.14, from 11.3.0 to 11.3.12, from 0.0.0 to 11.0.*, from 0.0.0 to 11.1.*.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

Drupal core contains an open redirect vulnerability where unsanitized user input in URL parameters allows attackers to craft malicious links that redirect users to arbitrary external websites. Combined with content spoofing capabilities, this enables phishing attacks where victims believe they are visiting a trusted Drupal site.

MitigationUpdate Drupal core to versions 10.5.13+, 10.6.12+, 11.2.15+, 11.3.13+, or 11.4.0+ to receive the patch. Implement URL validation to ensure redirects only point to internal relative paths or an explicit allowlist of trusted domains.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
DrupalCMS
Affected:< 10.5.12>= 10.6.0, < 10.6.11>= 11.0.0, < 11.2.14>= 11.3.0, < 11.3.12

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
High
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Determine installed Drupal core version
    Check the CHANGELOG.txt file in the Drupal root directory for the version number at the top, or run 'drush status' and look for 'Drupal version', or access /admin/reports/status in the browser
    Affected if The installed version falls within the affected ranges: < 10.5.12, >= 10.6.0 < 10.6.11, >= 11.0.0 < 11.2.14, or >= 11.3.0 < 11.3.12
  2. Identify redirect URL parameters in use
    Search Drupal configuration and custom modules for code handling 'destination', 'redirect', or 'url' query parameters that might pass user input to header redirects. Check the sites/default/files directory and any custom modules in modules/custom/ for redirect-related code.
    Affected if The site uses any module or custom code that takes user-controlled URL parameters and passes them to drupal_goto(), $response->headers->set() for Location, or similar redirect functions without validation.
  3. Review redirect validation logic
    Examine Drupal core and any custom code for redirect destination validation. Look for calls to user_input() or $_GET values being used in redirect destinations without filtering. Check if the code validates that redirects stay within the site or use an allowlist.
    Affected if Redirect functionality allows arbitrary external URLs without validating they are internal paths or on an explicit allowlist of trusted domains.
  4. Check for exposed redirect endpoints
    Test by attempting a URL like /node?destination=http://example.com or /user/login?destination=http://evil.com to see if the site redirects to the external domain. Use a browser or curl to observe the Location header in the response.
    Affected if The site redirects to arbitrary external domains specified in URL parameters.

A user is affected if their Drupal core version is in the affected ranges AND the site uses functionality that processes user-supplied URL parameters for redirects without validating they point only to internal paths or an allowlisted domain.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Upgrade available Upgrade to 10.5.12 / 10.6.11 / 11.2.14 or later
Fixed in 10.5.1210.6.1111.2.14
Interim mitigation

Update Drupal core to versions 10.5.13+, 10.6.12+, 11.2.15+, 11.3.13+, or 11.4.0+ to receive the patch. Implement URL validation to ensure redirects only point to internal relative paths or an explicit allowlist of trusted domains.

Recommended fix High confidence

Drupal 10.6.11+ or 11.3.12+ (latest stable release recommended)

  1. 1. Identify your current Drupal core version by running `drush status` or checking the CHANGELOG.txt file in your Drupal root directory.
  2. 2. Determine which upgrade path applies based on your current version: If running 10.5.x, upgrade to 10.5.12 or later; if running 10.6.x, upgrade to 10.6.11 or later; if running 11.0.x or 11.1.x, upgrade to 11.2.14 or later; if running 11.2.x, upgrade to 11.2.14 or later; if running 11.3.x, upgrade to 11.3.12 or later.
  3. 3. Create a complete backup of your Drupal site database and files before proceeding.
  4. 4. Update Drupal core using your preferred method: via Composer (`composer require drupal/core:^10.6.11 --with-all-dependencies` or `^11.3.12`), or by downloading the appropriate tar.gz from drupal.org and following the core update procedure.
  5. 5. Run database updates after the code is updated: `drush updatedb` or via the web interface at /update.php.
  6. 6. Clear all caches: `drush cr` or through the admin interface.
  7. 7. Verify the update was successful and test that the open redirect vulnerability is no longer present.
Caveat Review release notes for your target version to check for deprecated code or API changes that may affect custom modules or themes; major version upgrades (e.g., 10.x to 11.x) may require additional migration steps

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Drupal Scoped from the published advisory
  • Consultation2.0 h
  • Implementation2.0 h
  • Testing2.0 h
  • Review / QA1.0 h
7.0 hours of engineering $1,240
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,984.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-55806 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-55806 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data