CVE-2025-7798
BaseFortify
Publication date: 2025-07-18
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 |
|---|---|---|
| beijing_shenzhou_shihan_technology | multimedia_integrated_business_display_system | 8.2 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-7798 is a critical SQL injection vulnerability in Beijing Shenzhou Shihan Technology's Multimedia Integrated Business Display System up to version 8.2. It exists in the file /admin/system/structure/getdirectorydata/web/baseinfo/companyManage, where improper handling of the Struccture_ID parameter allows an attacker to inject malicious SQL commands. This flaw enables remote attackers to exploit the system without authentication, potentially accessing sensitive information. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing remote attackers to execute arbitrary SQL commands on the affected system, leading to unauthorized access to sensitive data, compromising confidentiality, integrity, and availability of the system. Since exploitation requires no authentication and a proof-of-concept exploit is publicly available, the risk of data breaches or system manipulation is significant. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the /admin/system/structure/getdirectorydata/web/baseinfo/companyManage endpoint for SQL injection via the Struccture_ID parameter. You can use tools like sqlmap to automate detection. For example, a command might be: sqlmap -u "http://target/admin/system/structure/getdirectorydata/web/baseinfo/companyManage?Struccture_ID=1" --batch --risk=3 --level=5. Additionally, monitoring for unusual database errors or unexpected behavior when this parameter is manipulated may indicate exploitation attempts. [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable endpoint, applying input validation and sanitization on the Struccture_ID parameter, and monitoring for exploitation attempts. Since no known mitigations or patches are available, consider replacing the affected product or disabling the vulnerable functionality until a fix is provided. Also, limit network exposure of the affected system to trusted users only. [2]