dimihycks / WebGoat

WebGoat is a deliberately insecure application
https://owasp.org/www-project-webgoat/
Other
0 stars 0 forks source link

CX SQL_Injection @ src/main/java/org/owasp/webgoat/lessons/sqlinjection/advanced/SqlInjectionChallenge.java [main] #15

Closed dimihycks closed 1 year ago

dimihycks commented 1 year ago

SQL_Injection issue exists @ src/main/java/org/owasp/webgoat/lessons/sqlinjection/advanced/SqlInjectionChallenge.java in branch main

The application's registerNewUser method executes an SQL query with executeQuery, at line 69 of src\main\java\org\owasp\webgoat\lessons\sqlinjection\advanced\SqlInjectionChallenge.java. 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 username_reg; this input is then read by the registerNewUser method at line 57 of src\main\java\org\owasp\webgoat\lessons\sqlinjection\advanced\SqlInjectionChallenge.java. This input then flows through the code, into a query and to the database server - without sanitization.This may enable an SQL Injection attack.Similarity ID: 917031700

Severity: High

CWE:89

Vulnerability details and guidance

Checkmarx

Training Recommended Fix

Lines: 57


Code (Line #57):

@RequestParam String username_reg,

dimihycks commented 1 year ago

Issue still exists.