CVE-2025-7749
BaseFortify
Publication date: 2025-07-17
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 |
|---|---|---|
| anisha | online_appointment_booking_system | 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-7749 is a critical SQL injection vulnerability in version 1.0 of the Online Appointment Booking System, specifically in the /admin/getmanagerregion.php file. The vulnerability occurs because the 'city' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code. This enables remote attackers to execute arbitrary SQL commands without authentication, potentially manipulating the database. [1, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow attackers to access sensitive data, modify or delete database records, and disrupt service availability. It compromises the confidentiality, integrity, and availability of the system, potentially leading to data leakage, data tampering, and full system compromise. Since no authentication is required, the attack can be performed remotely with ease. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by targeting the vulnerable endpoint /admin/getmanagerregion.php and testing the 'city' parameter for SQL injection. One method is using the sqlmap tool to automate detection, for example: sqlmap -u "http://target/admin/getmanagerregion.php" --data="city=Mumbai" --risk=3 --level=5. Additionally, Google dorking with queries like inurl:admin/getmanagerregion.php can help identify vulnerable targets. Proof-of-concept payloads include time-based blind SQL injection using MySQL's SLEEP function, e.g., city=Mumbai') AND (SELECT 4025 FROM (SELECT(SLEEP(5)))CtOL) AND ('KFjm'='KFjm to confirm the vulnerability by observing delayed responses. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate steps to mitigate this vulnerability include: 1) Replacing the affected component with an alternative product if possible, as no official patch is available. 2) Implementing prepared statements with parameter binding to separate SQL code from user input, preventing injection. 3) Applying strict input validation and filtering on the 'city' parameter to ensure inputs conform to expected formats. 4) Minimizing database user permissions by avoiding use of high-privilege accounts for routine operations. 5) Conducting regular security audits to detect and remediate vulnerabilities promptly. [1, 3, 2]