VeracodeProd / vulnado

Purposely vulnerable Java application to help lead secure coding workshops
Other
0 stars 0 forks source link

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') ('SQL Injection') [VID:2] #6

Open veracode-workflow-app[bot] opened 3 months ago

veracode-workflow-app[bot] commented 3 months ago

https://github.com/VeracodeProd/vulnado/blob/cd7a9241a1601b279639b5572d539d9e42c16085/src/main/java/com/scalesec/vulnado/User.java#L44-L54

Filename: User.java

Line: 49

CWE: 89 (Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') ('SQL Injection'))

This database query contains a SQL injection flaw. The call to java.sql.Statement.executeQuery() constructs a dynamic SQL query using a variable derived from untrusted input. An attacker could exploit this flaw to execute arbitrary SQL queries against the database. The first argument to executeQuery() contains tainted data from the variable query. The tainted data originated from an earlier call to AnnotationVirtualController.vc_annotation_entry. Avoid dynamically constructing SQL queries. Instead, use parameterized prepared statements to prevent the database from interpreting the contents of bind variables as part of the query. Always validate untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible. References: CWE OWASP/nDon't know how to fix this? Don't know why this was reported?
Get Assistance from Veracode