CVE-2025-8248
Unknown Unknown - Not Provided
BaseFortify

Publication date: 2025-07-28

Last updated on: 2026-04-29

Assigner: VulDB

Description
A vulnerability classified as critical was found in code-projects Online Ordering System 1.0. This vulnerability affects unknown code of the file /signup.php. The manipulation of the argument firstname leads to sql injection. The attack can be initiated 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-07-28
Last Modified
2026-04-29
Generated
2026-05-07
AI Q&A
2025-07-28
EPSS Evaluated
2026-05-05
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
fabian online_ordering_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?

CVE-2025-8248 is a critical SQL injection vulnerability in the Online Ordering System version 1.0, specifically in the /signup.php file. It occurs because the 'firstname' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code. This can lead to unauthorized access to the database, data leakage, data manipulation, and potentially full system compromise. The vulnerability can be exploited remotely without authentication. [1, 2, 3]


How can this vulnerability impact me? :

This vulnerability can severely impact you by allowing attackers to remotely execute arbitrary SQL commands on your database. This can result in unauthorized access to sensitive data, modification or deletion of data, data leakage, and disruption of service. It can compromise the confidentiality, integrity, and availability of your system, potentially leading to full system compromise or business continuity issues. [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 testing the /signup.php endpoint for SQL injection in the 'firstname' parameter. You can use tools like sqlmap to automate detection. Example sqlmap command: sqlmap -u "http://target.com/signup.php" --data="firstname=1111" --risk=3 --level=5 --technique=BEUST --dbms=MySQL. Additionally, manual testing can be done using payloads such as boolean-based blind SQL injection, error-based SQL injection, and time-based blind SQL injection in the firstname parameter. Example payloads include: 1) firstname=1111' RLIKE (SELECT (CASE WHEN (4518=4518) THEN 1111 ELSE 0x28 END)) AND 'zoeA'='zoeA 2) firstname=1111' AND GTID_SUBSET(CONCAT(0x7178707071,(SELECT (ELT(4708=4708,1))),0x7171706b71),4708) AND 'jpVU'='jpVU 3) firstname=1111' AND (SELECT 2834 FROM (SELECT(SLEEP(5)))pBmg) AND 'jedh'='jedh. Also, Google dorking such as searching for "inurl:signup.php" can help identify vulnerable targets. [2, 3]


What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation steps include: 1) Implement prepared statements with parameter binding to separate SQL code from user input, preventing injection. 2) Enforce strict input validation and filtering to ensure data conforms to expected formats. 3) Minimize database user privileges by avoiding use of high-privilege accounts (e.g., root or admin) for application database connections. 4) Conduct regular security audits to detect and address vulnerabilities promptly. If possible, replace the affected component with an alternative product as no known mitigations or countermeasures have been documented. These steps help secure the system and maintain data integrity. [1, 2, 3]


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