CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2022-50807

The Phantom Menace: Dissecting the 'Fake' ConcreteCMS XPath Injection

Amit Schendel
Amit Schendel
Senior Security Researcher

Feb 18, 2026·5 min read·26 visits

Executive Summary (TL;DR)

CVE-2022-50807 is a **REJECTED** vulnerability originally claimed to be an XPath Injection in ConcreteCMS. In reality, it is a non-security bug where malformed URLs cause the caching driver to throw a verbose error (Information Disclosure) if debug mode is enabled. There is no actual injection or RCE risk.

A cautionary tale in vulnerability research: CVE-2022-50807 represents a classic false positive where a verbose error message was mistaken for a critical injection flaw. Originally reported as an XPath Injection in ConcreteCMS 9.1.3, this issue was later rejected by CNAs after analysis revealed it was merely a functional error triggering a stack trace in debug environments. This report dissects the confusion between 'application crash' and 'arbitrary code execution'.

The Hook: When a Bug Isn't a Feature (or a Vulnerability)

In the high-stakes world of bug bounty hunting and CVE chasing, there is a dangerous trap that ensnares even seasoned researchers: confirmation bias. You see a URL, you throw a single quote (') at it, the server screams in agony with a 500 Internal Server Error, and you immediately draft a report titled 'Critical Injection'. This is precisely what happened with CVE-2022-50807.

ConcreteCMS (formerly Concrete5) is a popular open-source CMS. In late 2022, a researcher claimed to have found an XPath Injection (CWE-643) in version 9.1.3. The claim was bold: by injecting boolean logic into the URL path, one could allegedly manipulate XML queries. The exploit made its way into Exploit-DB, a CVE ID was assigned, and scanners started flagging it.

But there was a catch. The 'exploit' didn't actually retrieve data. It didn't bypass authentication. It just made the server vomit a stack trace. This deep dive isn't about how to hack ConcreteCMS; it's a masterclass in reading stack traces and distinguishing between a security vulnerability and a code quality issue.

The 'Exploit': Boolean Voodoo

The original researcher, nu11secur1ty, provided a Proof of Concept (PoC) that looked suspiciously like a standard SQL injection fuzzer payload pasted into a URL path. The logic was that if the application processed the URL as an XPath query, injecting a TRUE condition would change the behavior.

The payload looked like this:

GET /concrete-cms-9.1.3/index.php/ccm50539478' or 4591=4591-- /assets/localization/moment/js HTTP/1.1
Host: target-host

To the untrained eye, this looks dangerous. You have the single quote to break syntax, the OR operator, a tautology (4591=4591), and the comment characters (--). When sent to a ConcreteCMS instance running in a development environment (like XAMPP), the server responded with a massive, detailed error page. The researcher saw the chaos and assumed valid injection. However, correlation does not imply causation.

The Analysis: Reading the Tea Leaves (Stack Traces)

So, what actually happened? Was the application blindly concatenating this URL into an XPath query? No. The stack trace, which was ironically included in the researcher's own report, tells the real story. The error wasn't an XML parsing failure; it was a file system inclusion error generated by the caching layer.

ConcreteCMS uses a library called Stash for caching. When a request comes in, the CMS often tries to map the URL path to a cache key or a localized resource. The relevant part of the stack trace looked something like this:

Whoops\Exception\ErrorException: include(): 
Failed opening 'C:/xampp/.../expensive...php' for inclusion
In Stash\Driver\FileSystem\NativeEncoder

The NativeEncoder in Stash was trying to handle the incoming path. The malformed URL—containing spaces, quotes, and dashes—likely confused the file system driver or resulted in a generated filename that was invalid or missing. The application didn't know how to handle the garbage input, so it threw an exception.

Because the target system was running with Debug Mode (Whoops handler) enabled, it displayed the exception. This is Information Disclosure, sure, but it is effectively "Debug Mode is on," not "XPath Injection."

The Verdict: Why It Was Rejected

A true injection vulnerability allows an attacker to alter the control flow of an application to execute unintended commands or retrieve unauthorized data. In this case, the attacker provided garbage, and the application threw an error saying, "I can't read this garbage."

There was no evidence that the boolean logic (4591=4591) was ever evaluated. You could likely have replaced that payload with GET /index.php/banana_pancake_recipe and received a similar 404 or 500 error depending on the routing configuration. The boolean operators were red herrings.

Consequently, the CVE was REJECTED and withdrawn. The CNA (VulnCheck) and the vendor correctly identified that this was a functional bug in how the router/cache handled invalid characters, magnified by a misconfigured server (Debug Mode). It serves as a reminder: Just because it breaks, doesn't mean it's pwned.

Mitigation: Silence is Golden

While this specific CVE is a dud, it highlights a critical configuration weakness that plagues many organizations: leaving Debug Mode on in production. The only reason the researcher knew the file paths (C:/xampp/htdocs/...) and the library versions was because the server told them.

To mitigate the risk of Information Disclosure (and to stop researchers from filing false positives against you):

  1. Disable Display Errors: In your php.ini, ensure display_errors = Off.
  2. Disable ConcreteCMS Debug: Go to the Dashboard -> System & Settings -> Environment -> Debug Settings and ensure "Hide errors from the visitor" is selected.
  3. Sanitize Inputs: While not an injection, it's bad practice for an application to crash on special characters. Ensure your routing layer handles 404s gracefully rather than bubbling up 500 exceptions for bad paths.

Technical Appendix

CVSS Score
0.0/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N

Affected Systems

ConcreteCMS 9.1.3 (specifically in Debug Mode)

Affected Versions Detail

Product
Affected Versions
Fixed Version
ConcreteCMS
PortlandLabs
= 9.1.3N/A
AttributeDetail
Vulnerability TypeInformation Disclosure (False Positive Injection)
Original CWECWE-643 (XPath Injection) - Incorrectly Assigned
Actual RiskPath Disclosure via Debug Trace
CVSS0.0 (Rejected)
StatusREJECTED
VectorNetwork (URL Path)

MITRE ATT&CK Mapping

T1592Gather Victim Host Information
Reconnaissance
CWE-643
Improper Neutralization of Data within XPath Expressions ('XPath Injection')

The software uses external input to build an XPath query to a database or XML file, but it does not neutralize or incorrectly neutralizes that input. (Note: This was the claimed weakness, not the actual flaw.)

Known Exploits & Detection

Exploit-DBProof of Concept demonstrating the 500 error trigger

Vulnerability Timeline

Vulnerability reported by nu11secur1ty
2022-11-08
Exploit-DB PoC published
2022-11-28
GitHub Advisory withdrawn
2022-12-05
NVD formally lists as REJECTED
2026-01-13

References & Sources

  • [1]Exploit-DB Entry (PoC)
  • [2]NVD Record (Rejected)
  • [3]GitHub Advisory (Withdrawn)

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•1 day ago•CVE-2026-11748
6.9

CVE-2026-11748: Unauthenticated LDAP Injection in Central Dogma Server Authentication

An LDAP injection vulnerability exists in the centraldogma-server-auth-shiro module of LY Corporation Central Dogma before version 0.84.0. The search logic dynamically constructs LDAP search filters by interpolating user-provided usernames without escaping RFC 4515 metacharacters. Unauthenticated remote attackers can leverage this flaw to bypass authentication, enumerate directory hierarchies, and access unauthorized resources.

Alon Barad
Alon Barad
9 views•6 min read
•1 day ago•CVE-2026-11746
9.4

CVE-2026-11746: Use of Hard-coded ZooKeeper Replication Secret 'ch4n63m3' in Central Dogma Server

CVE-2026-11746 is a critical vulnerability in Central Dogma Server prior to version 0.84.0, where an embedded ZooKeeper replication secret silently falls back to a publicly known, hard-coded default string ('ch4n63m3'). Remote attackers with access to the replication network can authenticate as legitimate cluster peers, potentially leading to unauthorized data exposure, state manipulation, or complete cluster takeover.

Amit Schendel
Amit Schendel
7 views•6 min read
•1 day ago•CVE-2026-56665
4.2

CVE-2026-56665: Logical Validation Bypass in ZITADEL External JWT Identity Provider

A logical verification flaw in ZITADEL's external JWT Identity Provider validation allows attackers to bypass session expiration checks. If an incoming JWT lacks the 'exp' claim, the system skips validation entirely, creating an indefinitely valid session. This issue has been addressed in versions 3.4.12 and 4.15.2.

Alon Barad
Alon Barad
7 views•7 min read
•1 day ago•CVE-2026-59149
6.5

CVE-2026-59149: Sibling Directory Path Traversal in Mockoon Backend Server

CVE-2026-59149 identifies a directory traversal vulnerability in `@mockoon/commons-server`, the backend mock-server library powering the Mockoon application. The flaw occurs in the path containment validation logic used during raw file response generation. An unauthenticated attacker can exploit this weakness to retrieve arbitrary files from sibling directories sharing a common prefix with the designated static base directory.

Amit Schendel
Amit Schendel
9 views•5 min read
•1 day ago•CVE-2026-59148
8.8

CVE-2026-59148: Unauthenticated Administrative API and CORS Misconfiguration in Mockoon

An in-depth analysis of CVE-2026-59148, a high-severity flaw in Mockoon where unauthenticated administrative endpoints and a wildcard Cross-Origin Resource Sharing (CORS) policy allow remote execution, state poisoning, and credential theft.

Alon Barad
Alon Barad
11 views•6 min read
•1 day ago•CVE-2026-56666
4.8

CVE-2026-56666: Account Takeover via Improper Email Verification in ZITADEL Federated Identity Handler

An improper authentication vulnerability (CWE-287) in ZITADEL's external identity provider handler before version 4.15.3 allows remote attackers to perform complete account takeover. When auto-linking by email is enabled, ZITADEL verifies that the local target account has a verified email address but fails to verify if the external provider confirmed ownership of that same email. Attackers can exploit this by registering an unverified account with a victim's email address on a permissive external provider, leading to unauthorized account binding and persistent access.

Amit Schendel
Amit Schendel
7 views•7 min read