From 900a22231600530ee823a1925b2fa8b492b784d4 Mon Sep 17 00:00:00 2001 From: "rogan.dawes" Date: Thu, 10 Jan 2008 10:13:21 +0000 Subject: [PATCH] Change the default webgoat password Add an underscore to the password to allow us to keep the same password across multiple platforms, including those that enforce password quality (e.g. SQL Server) git-svn-id: http://webgoat.googlecode.com/svn/trunk@239 4033779f-a91e-0410-96ef-6bf7bf53c507 --- webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql b/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql index 9894eb2a7..5fbd63029 100755 --- a/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql +++ b/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql @@ -1,5 +1,5 @@ DROP USER webgoat_guest CASCADE; -CREATE USER webgoat_guest IDENTIFIED BY webgoat DEFAULT TABLESPACE users; +CREATE USER webgoat_guest IDENTIFIED BY _webgoat DEFAULT TABLESPACE users; GRANT CONNECT, RESOURCE TO webgoat_guest; GRANT CREATE PROCEDURE TO webgoat_guest;