Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-25892

CVE-2026-25892: Adminer DOS Vulnerability

CVE-2026-25892 is a denial of service vulnerability in Adminer that exploits the version check mechanism through missing origin validation. This article covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25892 Overview

CVE-2026-25892 is an improper input validation vulnerability affecting Adminer, the popular open-source database management software. The vulnerability exists in Adminer's version check mechanism where the ?script=version endpoint lacks proper origin validation and accepts POST data from any source. An attacker can exploit this by sending a version[] parameter which PHP converts to an array, causing openssl_verify() to receive an array instead of a string, resulting in a TypeError that returns HTTP 500 errors to all users.

Critical Impact

This denial of service vulnerability allows unauthenticated remote attackers to make Adminer completely unavailable to all legitimate users by triggering persistent HTTP 500 errors through a simple malformed POST request.

Affected Products

  • Adminer v5.4.1 and earlier versions
  • All Adminer installations using the default version check mechanism
  • Self-hosted Adminer deployments with the ?script=version endpoint accessible

Discovery Timeline

  • 2026-02-09 - CVE CVE-2026-25892 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25892

Vulnerability Analysis

This vulnerability stems from a type confusion issue in PHP's handling of POST parameters combined with missing origin validation on a critical endpoint. Adminer implements a version check mechanism where adminer.org sends signed version information via JavaScript postMessage, which the browser then POSTs to the ?script=version endpoint. The fundamental security flaw is that this endpoint does not validate the origin of incoming POST requests, allowing any source to submit data.

When an attacker submits the version parameter as an array (using version[] syntax), PHP automatically converts this to an array data type. The openssl_verify() function, which expects a string argument for signature verification, receives this array instead. This type mismatch causes PHP to throw a TypeError exception. The unhandled exception results in an HTTP 500 Internal Server Error response that persists across subsequent page loads for all users, effectively creating a denial of service condition.

Root Cause

The root cause of CVE-2026-25892 is twofold: first, the ?script=version endpoint lacks proper origin validation, accepting POST data from any source rather than only from trusted adminer.org origins. Second, there is no input type validation to ensure the version parameter is a string before passing it to openssl_verify(). This combination of CWE-20 (Improper Input Validation) allows attackers to inject malformed data that triggers type confusion in cryptographic verification functions.

Attack Vector

The attack can be executed remotely over the network without any authentication or user interaction. An attacker simply needs to craft a POST request to the vulnerable Adminer instance's ?script=version endpoint with a malformed version[] parameter. This can be accomplished through a simple HTTP POST request from any location that can reach the target Adminer installation. The attack requires no privileges and has no complexity barriers, making it trivially exploitable once a vulnerable Adminer instance is identified.

The exploitation flow involves:

  1. Attacker identifies an Adminer installation running version 5.4.1 or earlier
  2. Attacker sends a POST request to target-adminer/?script=version with version[] as a parameter
  3. PHP converts version[] to an array
  4. On next page load, openssl_verify() receives an array instead of expected string
  5. TypeError is thrown, resulting in HTTP 500 error for all users

Detection Methods for CVE-2026-25892

Indicators of Compromise

  • HTTP 500 errors occurring persistently on Adminer pages after a POST request to ?script=version
  • Unusual POST requests to the ?script=version endpoint from non-adminer.org sources
  • PHP error logs showing TypeError exceptions in openssl_verify() calls
  • Multiple requests with version[] array parameters in web server access logs

Detection Strategies

  • Monitor web server access logs for POST requests to ?script=version containing array parameters like version[]
  • Configure PHP error logging to capture TypeError exceptions and alert on openssl_verify() failures
  • Implement web application firewall (WAF) rules to detect and block requests with array parameter injection patterns
  • Set up uptime monitoring for Adminer endpoints to detect sudden HTTP 500 error conditions

Monitoring Recommendations

  • Enable verbose logging on the web server hosting Adminer to capture all POST request parameters
  • Configure SIEM rules to correlate ?script=version endpoint access with subsequent HTTP 500 errors
  • Implement alerting for any PHP TypeError exceptions in application logs
  • Monitor for availability degradation of Adminer services as an early warning sign

How to Mitigate CVE-2026-25892

Immediate Actions Required

  • Upgrade Adminer to version 5.4.2 immediately, which includes the fix for this vulnerability
  • If immediate upgrade is not possible, restrict access to the ?script=version endpoint via web server configuration
  • Review web server logs for any evidence of exploitation attempts
  • Consider temporarily disabling the version check functionality until patching is complete

Patch Information

The vulnerability has been addressed in Adminer version 5.4.2. The fix is available through the GitHub Release v5.4.2. The specific commit addressing this issue can be reviewed at the GitHub Commit Update. Additional details about the vulnerability are documented in the GitHub Security Advisory GHSA-q4f2-39gr-45jh.

Workarounds

  • Block POST requests to the ?script=version endpoint at the web server or reverse proxy level
  • Implement origin validation at the web server level to only accept requests from adminer.org
  • Deploy a web application firewall rule to reject requests containing version[] array parameters
  • Temporarily disable or remove the version check functionality by modifying Adminer configuration
bash
# Apache configuration to block vulnerable endpoint
<Location "/?script=version">
    <LimitExcept GET>
        Require all denied
    </LimitExcept>
</Location>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAdminer

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.97%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Commit Update

  • GitHub Release v5.4.2

  • GitHub Security Advisory GHSA-q4f2-39gr-45jh
  • Related CVEs
  • CVE-2021-21311: Adminer SSRF Vulnerability

  • CVE-2021-29625: Adminer Database Management XSS Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English