CVE-2025-6332
BaseFortify
Publication date: 2025-06-20
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 | directory_management_system | 2.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-6332 is a critical SQL injection vulnerability in PHPGurukul Directory Management System version 2.0. It exists in the /admin/manage-directory.php file, specifically involving the 'del' parameter. This parameter is used directly in SQL queries without proper sanitization or validation, allowing attackers to inject malicious SQL code. Exploiting this flaw enables attackers to manipulate SQL queries and perform unauthorized database operations remotely. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely execute arbitrary SQL commands on your database through the vulnerable 'del' parameter. This can lead to unauthorized access, modification, or deletion of sensitive data, compromising the confidentiality, integrity, and availability of your system. [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 file /admin/manage-directory.php and testing the 'del' parameter for SQL injection. Attackers may use Google dorking with the query 'inurl:admin/manage-directory.php' to identify vulnerable targets. To detect exploitation attempts or test the vulnerability, you can use tools like sqlmap targeting the URL with the 'del' parameter. For example, a command could be: sqlmap -u "http://target/admin/manage-directory.php?del=1" --batch --risk=3 --level=5. Additionally, monitoring web server logs for suspicious requests to /admin/manage-directory.php with unusual 'del' parameter values may help detect exploitation attempts. [2]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been reported for this vulnerability. The suggested immediate step is to replace the affected product, PHPGurukul Directory Management System version 2.0, with an alternative that is not vulnerable. Until a patch or fix is available, restricting access to the /admin/manage-directory.php file and monitoring for exploitation attempts may help reduce risk. [2]