CVE-2025-10836
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 |
|---|---|---|
| mayurik | pet_grooming_management_software | 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?
CVE-2025-10836 is a critical SQL injection vulnerability in SourceCodester Pet Grooming Management Software 1.0, specifically in the /admin/print1.php file. It occurs due to improper handling of the 'ID' parameter, allowing remote attackers to manipulate SQL queries without authentication. This enables attackers to execute arbitrary SQL commands, potentially compromising the system's confidentiality, integrity, and availability. [1]
How can this vulnerability impact me? :
This vulnerability can allow remote attackers to execute arbitrary SQL commands on the affected system without authentication. This can lead to unauthorized access to sensitive data, data modification, or deletion, and potentially disrupt the availability of the system. Because the exploit is publicly available and easily exploitable remotely, it poses a significant security risk. [1]
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/print1.php and testing the 'ID' parameter for SQL injection. One method is to use Google dorking with the query "inurl:admin/print1.php" to identify potentially vulnerable targets. For direct testing, you can use tools like curl or sqlmap to send crafted requests to the URL with manipulated 'ID' parameters to observe if SQL injection is possible. Example command with curl: curl "http://targetsite.com/admin/print1.php?ID=1' OR '1'='1". Alternatively, sqlmap can be used as: sqlmap -u "http://targetsite.com/admin/print1.php?ID=1" --batch --dbs to automate detection. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product, as no known mitigations or vendor fixes are available. Additionally, restricting access to the /admin/print1.php endpoint via network controls such as firewalls or VPNs can reduce exposure. Monitoring and blocking suspicious requests targeting the 'ID' parameter may also help. Ultimately, upgrading to a patched or secure version when available is recommended. [1]