CVE-2018-18803
Description
Curriculum Evaluation System 1.0 allows SQL Injection via the login screen, related to frmCourse.vb and includes/user.vb.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Curriculum Evaluation System 1.0 is vulnerable to SQL injection in the login and search functions, enabling unauthenticated attackers to extract database contents.
Vulnerability
Curriculum Evaluation System version 1.0 contains two SQL injection vulnerabilities. The login function in includes/user.vb directly concatenates user-supplied username and password parameters into a SQL query without sanitization [1]. The search function in frmCourse.vb similarly concatenates the txtSearch.Text value into a LIKE query [1]. Both allow an attacker to inject arbitrary SQL commands.
Exploitation
An attacker can exploit the login injection by submitting a crafted username such as 'or 1=1 or ''=' with any password, bypassing authentication [1]. The search injection can be triggered by entering malicious SQL in the search textbox. The provided proof-of-concept demonstrates extracting the database version and current database name using a UNION-based injection [1]. No authentication is required for either attack vector.
Impact
Successful exploitation allows an attacker to bypass authentication and gain administrative access to the application. Additionally, the attacker can extract arbitrary data from the database, including user account details and course information. This could lead to full compromise of the application's data and functionality.
Mitigation
No official patch or updated version has been released by the vendor (SourceCodester) as of the publication date [1]. The application appears to be end-of-life. Mitigation requires manual code fixes: replace all dynamic SQL with parameterized queries or prepared statements. Input validation and escaping should be applied to all user-supplied data. Until such fixes are implemented, the application should not be exposed to untrusted networks.
AI Insight generated on May 26, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected products
1- Range: = 1.0
Patches
0No patches discovered yet.
Vulnerability mechanics
No source-code context for this CVE — mechanics is only generated when we can read the actual fix diff. Without that, the four sections (root cause, attack vector, affected code, fix) would be speculation rather than analysis.
References
2- www.exploit-db.com/exploits/45719/mitreexploitx_refsource_EXPLOIT-DB
- packetstormsecurity.com/files/150011/Curriculum-Evaluation-System-1.0-SQL-Injection.htmlmitrex_refsource_MISC
News mentions
0No linked articles in our index yet.