|
var err error |
|
|
|
/*func init() { |
|
DB, err = database.Connect() |
|
if err != nil { |
|
log.Println(err.Error()) |
|
} |
|
}*/ |
|
|
|
func createUsersTable() error { |
|
|
Filename: github.com/govwa/vulnerability/sqli/function.go
Line: 41
CWE: 89 (Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection'))
This database query contains a SQL injection flaw. The call to database::sql::DB::Query() 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 Query() contains tainted data from the variable getProfileSql. The tainted data originated from an earlier call to net.http.Request.FormValue. 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
govwa//setup/function.go
Lines 36 to 46 in 709b347
Filename: github.com/govwa/vulnerability/sqli/function.go
Line: 41
CWE: 89 (Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection'))
This database query contains a SQL injection flaw. The call to database::sql::DB::Query() 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 Query() contains tainted data from the variable getProfileSql. The tainted data originated from an earlier call to net.http.Request.FormValue. 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