Fix typo in SQL Injection(Introduction) (#675)

Fix typo `date` to `data` which seems more appropriate in context.
This commit is contained in:
Choe Hyeong Jin 2019-10-03 17:01:35 +09:00 committed by René Zubcevic
parent fd7fb4cfbc
commit b481ed70e8

View File

@ -6,6 +6,6 @@ The query in the code builds a dynamic query as seen in the previous example. T
"select * from user_data where Login_Count = " + Login_Count + " and USERID = " + User_ID;
--------------------------------------------------
Using the two Input Fields below, try to retrieve all the date from the users table.
Using the two Input Fields below, try to retrieve all the data from the users table.
Warning: Only one of these fields is susceptible to SQL Injection. You need to find out which, to successfully retrieve all the data.
Warning: Only one of these fields is susceptible to SQL Injection. You need to find out which, to successfully retrieve all the data.