CVE-2026-3319
Reflected XSS in Cradle eCommerce Demo Platform
Publication date: 2026-05-11
Last updated on: 2026-05-11
Assigner: Spanish National Cybersecurity Institute, S.A. (INCIBE)
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| cradle | ecommerce | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-79 | The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
Attack-Flow Graph
AI Powered Q&A
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability is a Reflected Cross-Site Scripting (XSS) issue in the /collection/ endpoint of the Cradle eCommerce platform's demo version. Detection involves testing this endpoint by injecting typical XSS payloads into user-controlled input parameters and observing if the input is insecurely reflected in the HTML output.
Common commands or methods to detect this vulnerability include using curl or browser-based tools to send requests with XSS payloads and checking the response for reflected scripts.
- Example curl command to test for reflected XSS: curl -i 'http://target-site/collection/?input=<script>alert(1)</script>'
- Use browser developer tools to inspect the response HTML for reflected input without proper encoding or sanitization.
How can this vulnerability impact me? :
Exploitation of this vulnerability allows an attacker to execute arbitrary JavaScript code in the victim's browser. This can lead to various impacts such as theft of sensitive information (like cookies or session tokens), performing actions on behalf of the user without their consent, or redirecting the user to malicious sites.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include avoiding use of the vulnerable demo version of the Cradle eCommerce platform and applying any available patches or updates that fix the reflected XSS vulnerability.
Additionally, implement input validation and output encoding on the /collection/ endpoint to prevent execution of arbitrary JavaScript code.
If patching is not immediately possible, consider disabling or restricting access to the vulnerable endpoint to reduce exposure.
Can you explain this vulnerability to me?
This vulnerability is a Reflected Cross-Site Scripting (XSS) issue found in the latest demo version of the Cradle eCommerce platform. It occurs because user-controlled input is insecurely reflected in the HTML output at the /collection/ endpoint. This means that an attacker can inject malicious JavaScript code that will be executed in the context of the victim's browser.