Checkmarx-jharris / JavaVulnerableLab

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

CX SQL_Injection @ src/main/webapp/changeCardDetails.jsp [master] #5

Open jharriscx opened 3 years ago

jharriscx commented 3 years ago

SQL_Injection issue exists @ src/main/webapp/changeCardDetails.jsp in branch master

The application's stmt.executeUpdate method executes an SQL query with executeUpdate, at line 43 of src\main\webapp\changeCardDetails.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 ""cardno""; this input is then read by the cardno=request.getParameter method at line 37 of src\main\webapp\changeCardDetails.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

Checkmarx

Training Recommended Fix

Lines: 37 38 39


Code (Line #37):

        String cardno=request.getParameter("cardno");

Code (Line #38):

        String cvv=request.getParameter("cvv");

Code (Line #39):

        String expirydate=request.getParameter("expirydate");

jharriscx commented 3 years ago

Issue still exists.

jharriscx commented 3 years ago

Issue still exists.

jharriscx commented 3 years ago

Issue still exists.

jharriscx commented 3 years ago

Issue still exists.