CVE-2025-12290
BaseFortify
Publication date: 2025-10-27
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| sui_shang_information_technology | suishang_enterprise-level_b2b2c_multi-user_mall_system | 1.0 |
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. |
| CWE-94 | The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-12290 is a reflected Cross-Site Scripting (XSS) vulnerability in the Suishang Enterprise-Level B2B2C Multi-User Mall System version 1.0. It occurs in the /i/359 endpoint, where insufficient input sanitization of parameters like "keywords" and "account" allows attackers to inject arbitrary JavaScript code. This malicious script is then reflected in the server's response and executed in the victim's browser, potentially leading to session hijacking, defacement, or other malicious actions. The vulnerability can be exploited remotely without authentication. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can allow attackers to execute arbitrary JavaScript in the context of users' browsers, which may lead to session hijacking, theft of sensitive session data, phishing attacks, or unauthorized actions performed on behalf of authenticated users. It compromises the integrity of user interactions and can result in significant security risks for users of the affected system. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted HTTP GET requests to the /i/359 endpoint with malicious payloads in the "account", "keywords", or "key_type" parameters and observing if the payload is reflected and executed in the response. For example, you can use curl to test the injection: curl -v "http://target-domain/i/359?account=<ScRiPt>alert(9927)</ScRiPt>" and check if the response contains the injected script tag. Additionally, web vulnerability scanners that test for reflected XSS can be used against the /i/359 endpoint focusing on these parameters. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implement server-side input sanitization and validation on all user-controlled inputs, especially the "account", "keywords", and "key_type" parameters, by rejecting inputs containing HTML or JavaScript syntax and enforcing a whitelist of allowed characters. 2) Apply output encoding to user-supplied data before rendering it in HTML to prevent script execution. 3) Deploy a strict Content Security Policy (CSP) header to restrict script execution to trusted sources, for example: Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none'; style-src 'self'; 4) If possible, consider replacing the affected product with a secure alternative, as no official vendor patch or response is available. [2, 3]