CVE-2025-7491
BaseFortify
Publication date: 2025-07-12
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 |
|---|---|---|
| phpgurukul | vehicle_parking_management_system | 1.13 |
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 the PHPGurukul Vehicle Parking Management System version 1.13, specifically in the file /admin/manage-outgoingvehicle.php. It occurs because the 'del' parameter is used directly in SQL queries without proper sanitization or validation, allowing attackers to inject malicious SQL code remotely. This can lead to unauthorized manipulation of the database. [1, 2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow attackers to perform unauthorized database operations such as accessing sensitive data, tampering with data, gaining full system control, and causing service disruptions. This poses severe security and operational risks including data leakage, data integrity compromise, and potential denial of service. [2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'del' parameter in the /admin/manage-outgoingvehicle.php file for SQL injection. A time-based blind SQL injection payload such as `del=4' RLIKE SLEEP(5)--` can be used to check for delays indicating vulnerability. Additionally, the sqlmap tool can be used to automate detection by targeting the URL with the vulnerable parameter. Google dorking with the query `inurl:admin/manage-outgoingvehicle.php` can help identify potentially vulnerable targets on the network. [2, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product if possible. If replacement is not feasible, apply the following: use prepared statements with parameter binding to separate SQL code from user input; implement strict input validation and filtering on the 'del' parameter to ensure it conforms to expected formats; and restrict database user permissions to the minimum necessary, avoiding high-privilege accounts for routine operations. These steps help prevent SQL injection exploitation and protect system security and data integrity. [2, 3]