CVE-2025-6323
Unknown Unknown - Not Provided
BaseFortify

Publication date: 2025-06-20

Last updated on: 2026-04-29

Assigner: VulDB

Description
A vulnerability was found in PHPGurukul Pre-School Enrollment System 1.0. It has been classified as critical. This affects an unknown part of the file /enrollment.php. The manipulation of the argument fathername leads to sql injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. Other parameters might be affected as well.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2025-06-20
Last Modified
2026-04-29
Generated
2026-05-07
AI Q&A
2025-06-20
EPSS Evaluated
2026-05-05
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
phpgurukul pre-school_enrollment_system 1.0
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
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 critical SQL injection flaw in the PHPGurukul Pre-School Enrollment System 1.0, specifically in the /enrollment.php file. It occurs because the 'fathername' parameter is not properly sanitized or validated before being used in SQL queries. This allows an attacker to inject malicious SQL code remotely, potentially accessing or manipulating the database without authentication. [1]


How can this vulnerability impact me? :

The vulnerability can have severe impacts including unauthorized access to sensitive data, data leakage, modification or deletion of records, and disruption of services. Attackers can execute arbitrary SQL commands, potentially leading to full system compromise and threatening business continuity. [1]


How can this vulnerability be detected on my network or system? Can you suggest some commands?

This vulnerability can be detected by sending crafted POST requests to the /enrollment.php endpoint with the 'fathername' parameter containing SQL injection payloads. For example, a time-based SQL injection test payload like `AAA'+RLIKE+SLEEP(5)+AND+'tOHP'='tOHP` can be used to observe delayed responses indicating vulnerability. Commands using curl to test might look like: `curl -X POST -d "fathername=AAA'+RLIKE+SLEEP(5)+AND+'tOHP'='tOHP" -d "mothername=test" -d "parentmobno=1234567890" -d "[email protected]" -d "cname=test" -d "agegroup=3-5" -d "erollprogram=program1" -d "message=test" http://target/enrollment.php`. Monitoring response times or error messages can help detect the vulnerability. [1]


What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation steps include: 1) Implementing prepared statements with parameter binding to separate SQL code from user input, preventing injection attacks. 2) Applying strict input validation and filtering on the 'fathername' and other input parameters to ensure they conform to expected formats and block malicious data. 3) Limiting database user permissions to the minimum necessary, avoiding use of high-privilege accounts such as 'root' or 'admin' for routine database operations. These measures will help protect the system and maintain data integrity. [1]


Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart