CVE-2025-10826
BaseFortify
Publication date: 2025-09-23
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 |
|---|---|---|
| campcodes | online_beauty_parlor_management_system | 1.0 |
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?
This vulnerability is a SQL Injection flaw in Campcodes Online Beauty Parlor Management System version 1.0, specifically in the file /admin/sales-reports-detail.php. It occurs due to improper handling of the fromdate and todate parameters, allowing an attacker to inject malicious SQL code remotely. This can lead to unauthorized access or manipulation of the system's database. [1, 2]
How can this vulnerability impact me? :
The vulnerability can impact you by compromising the confidentiality, integrity, and availability of the system's data. An attacker can remotely exploit this flaw to access or manipulate sensitive information in the database, potentially leading to data breaches, unauthorized data modification, or disruption of service. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable endpoint `/admin/sales-reports-detail.php` and testing the `fromdate` and `todate` parameters for SQL injection. One method to identify vulnerable targets is using Google Dorking with the query `inurl:admin/sales-reports-detail.php`. For direct testing, you can use curl or similar tools to send crafted requests to the parameters and observe for SQL error messages or unexpected behavior. Example command: `curl -G 'http://target/admin/sales-reports-detail.php' --data-urlencode 'fromdate=2025-09-01' --data-urlencode "todate=2025-09-30'` and then try injecting SQL payloads such as `' OR '1'='1` in the parameters to check for injection. Monitoring network traffic for unusual or malformed requests targeting these parameters may also help detect exploitation attempts. [2, 1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable `/admin/sales-reports-detail.php` endpoint, such as limiting it to trusted IP addresses or requiring stronger authentication. Since no known countermeasures or patches are published, it is recommended to replace or remove the affected component or product. Additionally, implementing web application firewall (WAF) rules to detect and block SQL injection attempts targeting the `fromdate` and `todate` parameters can help reduce risk. Monitoring logs for suspicious activity and disabling or restricting the vulnerable functionality until a fix is available are also advised. [2]