From 043c0e5926fc012816b18292b3e886deb7ddf199 Mon Sep 17 00:00:00 2001 From: "rogan.dawes" Date: Wed, 18 Jul 2007 13:37:58 +0000 Subject: [PATCH] Remove Microsoft quotes git-svn-id: http://webgoat.googlecode.com/svn/trunk@203 4033779f-a91e-0410-96ef-6bf7bf53c507 --- .../org/owasp/webgoat/lessons/SQLInjection/SQLInjection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/SQLInjection/SQLInjection.java b/ webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/SQLInjection/SQLInjection.java index 5ea0195e8..8a4f49331 100644 --- a/ webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/SQLInjection/SQLInjection.java +++ b/ webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/SQLInjection/SQLInjection.java @@ -150,7 +150,7 @@ public class SQLInjection extends GoatHillsFinancial { instructions = "Use String SQL Injection to bypass authentication. " + "Use SQL injection to log in as the boss ('Neville') without using the correct password. " - + "Verify that Neville’s profile can be viewed and that all functions are available (including Search, Create, and Delete)."; + + "Verify that Neville's profile can be viewed and that all functions are available (including Search, Create, and Delete)."; } else if (STAGE2.equals(stage)) { @@ -168,7 +168,7 @@ public class SQLInjection extends GoatHillsFinancial { instructions = "Block SQL Injection using a Parameterized Query.
" + "Implement a fix to block SQL injection into the relevant parameter. " - + "Repeat stage 3. Verify that access to Neville’s profile is properly blocked."; + + "Repeat stage 3. Verify that access to Neville's profile is properly blocked."; } }