CVE-2025-10828
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-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-10828 is a SQL Injection vulnerability in SourceCodester Pet Grooming Management Software version 1.0, specifically in the /admin/edit.php file. The vulnerability occurs because the 'id' parameter is not properly sanitized, allowing an attacker to inject malicious SQL code. This can lead to unauthorized manipulation of the backend database. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely exploit the software to access, modify, or manipulate the backend database without authorization. It affects the confidentiality, integrity, and availability of the system, potentially leading to data breaches or disruption of services. [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 script /admin/edit.php and testing the 'id' parameter for SQL injection. One method is to use Google dorking with the query "inurl:admin/edit.php" to identify potentially vulnerable targets. For direct testing, you can use tools like sqlmap or manual curl commands to inject SQL payloads into the 'id' parameter and observe the response for SQL errors or unexpected behavior. Example command: curl "http://targetsite.com/admin/edit.php?id=1' OR '1'='1". Additionally, automated vulnerability scanners that test for SQL injection on parameters can be used. [2]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been identified for this vulnerability. The suggested immediate step is to replace the affected software (SourceCodester Pet Grooming Management Software version 1.0) with an alternative product that is not vulnerable. Until a patch or fix is available, restricting access to the /admin/edit.php script and monitoring for suspicious activity may help reduce risk. [2]