CxTomer / JavaVulnerableLab

lab
GNU General Public License v2.0
0 stars 1 forks source link

CX SQL_Injection @ src/main/webapp/vulnerability/Injection/orm.jsp [refs/heads/master] #33

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

SQL_Injection issue exists @ src/main/webapp/vulnerability/Injection/orm.jsp in branch refs/heads/master

The application's session.createQuery method executes an SQL query with createQuery, at line 11 of src\main\webapp\vulnerability\Injection\orm.jsp. The application constructs this SQL query by embedding an untrusted string into the query without proper sanitization. The concatenated string is submitted to the database, where it is parsed and executed accordingly. An attacker would be able to inject arbitrary syntax and data into the SQL query, by crafting a malicious payload and providing it via the input ""id""; this input is then read by the out.print method at line 50 of src\main\webapp\vulnerability\Injection\orm.jsp. This input then flows through the code, into a query and to the database server - without sanitization. This may enable an SQL Injection attack.

Severity: High

CWE:89

Vulnerability details and guidance

Checkmarx

Training Recommended Fix

Lines: 50


Code (Line #50):

        out.print(queryUsers(ormSession,request.getParameter("id")));

github-actions[bot] commented 2 years ago

Issue still exists.