From b481ed70e8f8ec0e58050e167598a5e383164bd6 Mon Sep 17 00:00:00 2001 From: Choe Hyeong Jin Date: Thu, 3 Oct 2019 17:01:35 +0900 Subject: [PATCH] Fix typo in SQL Injection(Introduction) (#675) Fix typo `date` to `data` which seems more appropriate in context. --- .../lessonPlans/en/SqlInjection_introduction_content12.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webgoat-lessons/sql-injection/src/main/resources/lessonPlans/en/SqlInjection_introduction_content12.adoc b/webgoat-lessons/sql-injection/src/main/resources/lessonPlans/en/SqlInjection_introduction_content12.adoc index 65f21db38..705d2817e 100644 --- a/webgoat-lessons/sql-injection/src/main/resources/lessonPlans/en/SqlInjection_introduction_content12.adoc +++ b/webgoat-lessons/sql-injection/src/main/resources/lessonPlans/en/SqlInjection_introduction_content12.adoc @@ -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. \ No newline at end of file +Warning: Only one of these fields is susceptible to SQL Injection. You need to find out which, to successfully retrieve all the data.