Skip to content

CX Second_Order_SQL_Injection @ src/main/webapp/admin/adminlogin.jsp [master] #22

@cx-tyler-agypt

Description

@cx-tyler-agypt

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

The application's rs=stmt.executeQuery method executes an SQL query with BinaryExpr, at line 14 of src\main\webapp\vulnerability\Messages.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

Internal 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'");

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions