jbruinaud / WebGoatNet

WebGoat .Net for demos
0 stars 0 forks source link

CX SQL_Injection @ WebGoatCoins/MainPage.aspx.cs [master] #205

Open jbruinaud opened 4 years ago

jbruinaud commented 4 years ago

SQL_Injection issue exists @ WebGoatCoins/MainPage.aspx.cs in branch master

The application's GetCustomerDetails method executes an SQL query with da, at line 215 of App_Code\DB\MySqlDbProvider.cs. 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 would be able to inject arbitrary data into the SQL query, by simply altering the user input Value, which is read by the Page_Load method at line 22 of WebGoatCoins\MainPage.aspx.cs. This input then flows through the code to the database server, without sanitization. This may enable an SQL Injection attack.

Severity: High

CWE:89

Checkmarx

Lines: 27


Code (Line #27):

                string customerNumber = Request.Cookies["customerNumber"].Value;