CxTomer / JavaVulnerableLab

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

CX Second_Order_SQL_Injection @ src/main/webapp/admin/adminlogin.jsp [refs/heads/master] #41

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

Second_Order_SQL_Injection issue exists @ src/main/webapp/admin/adminlogin.jsp in branch refs/heads/master

The application's stmt.executeUpdate method executes an SQL query with BinaryExpr, at line 31 of src\main\webapp\vulnerability\csrf\change-info.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. The attacker may be able to write arbitrary data to the database, which is then retrieved by the application with rs in rs=stmt.executeQuery method at line 19 of src\main\webapp\admin\adminlogin.jsp. This data then flows through the code, until it is used directly in the SQL query without sanitization, and then submitted to the database server for execution. This may enable a Second-Order SQL Injection attack.

Severity: High

CWE:89

Vulnerability details and guidance

Checkmarx

Training Recommended Fix

Lines: 19


Code (Line #19):

                                   rs=stmt.executeQuery("select * from users where username='"+user+"' and password='"+pass+"' and privilege='admin'");

github-actions[bot] commented 2 years ago

Issue still exists.