Minor fixes
removed many System.out.printlns delete extra solutions directory - wrong location added 5.2 credits git-svn-id: http://webgoat.googlecode.com/svn/trunk/webgoat@344 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
@ -89,8 +89,8 @@ public class BlindSqlInjection extends LessonAdapter
|
||||
ResultSet.CONCUR_READ_ONLY);
|
||||
ResultSet answer_results = answer_statement.executeQuery(answer_query);
|
||||
answer_results.first();
|
||||
System.out.println("Account: " + accountNumber);
|
||||
System.out.println("Answer : " + answer_results.getString(1));
|
||||
//System.out.println("Account: " + accountNumber);
|
||||
//System.out.println("Answer : " + answer_results.getString(1));
|
||||
if (accountNumber.toString().equals(answer_results.getString(1)))
|
||||
{
|
||||
makeSuccess(s);
|
||||
@ -233,7 +233,7 @@ public class BlindSqlInjection extends LessonAdapter
|
||||
super.handleRequest(s);
|
||||
} catch (Exception e)
|
||||
{
|
||||
System.out.println("Exception caught: " + e);
|
||||
//System.out.println("Exception caught: " + e);
|
||||
e.printStackTrace(System.out);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user