CVE-2025-11317
BaseFortify
Publication date: 2025-10-06
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 |
|---|---|---|
| tipray | data_leakage_prevention_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-11317 is a SQL Injection vulnerability in version 1.0 of the Tipray Data Leakage Prevention System. It occurs in the function findRolePage within the file findSingConfigPage.do due to improper handling of the 'sort' argument. This allows an attacker to inject malicious SQL code remotely without authentication, potentially manipulating or accessing the system's database unauthorizedly. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely execute SQL Injection attacks on the system, leading to unauthorized access, manipulation, or compromise of enterprise data. It affects the confidentiality, integrity, and availability of the system, potentially exposing sensitive information or disrupting normal operations. [1, 2]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
This vulnerability compromises the confidentiality, integrity, and availability of data managed by the affected system, which can lead to violations of data protection regulations such as GDPR and HIPAA that require safeguarding sensitive information. Exploitation could result in unauthorized data disclosure or alteration, thus negatively impacting compliance with these standards. [2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring for unusual or suspicious HTTP requests targeting the findSingConfigPage.do endpoint, specifically those manipulating the 'sort' parameter to inject SQL code. Network intrusion detection systems (NIDS) or web application firewalls (WAF) can be configured to alert on SQL injection patterns in requests to this endpoint. Additionally, manual testing using tools like curl or sqlmap against the findSingConfigPage.do interface with crafted 'sort' parameters can help identify if the system is vulnerable. Example command using curl: curl -G 'http://<target>/findSingConfigPage.do' --data-urlencode "sort=' OR '1'='1". Using sqlmap: sqlmap -u "http://<target>/findSingConfigPage.do?sort=1" --risk=3 --level=5 --batch. These commands attempt to exploit the SQL injection to confirm vulnerability. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting or blocking access to the findSingConfigPage.do endpoint from untrusted networks, implementing web application firewall (WAF) rules to detect and block SQL injection attempts targeting the 'sort' parameter, and monitoring logs for suspicious activity. Since no official patch or vendor response is available, it is recommended to replace the affected Tipray Data Leakage Prevention System version 1.0 with an alternative product if possible. Additionally, applying network segmentation and limiting exposure of the vulnerable system can reduce risk. [2]