From 1bcb2f653936daebc4c3d969d40953c6085f89de Mon Sep 17 00:00:00 2001 From: "rogan.dawes" Date: Wed, 11 Jul 2007 12:54:23 +0000 Subject: [PATCH] Add an SQL file to set up the Oracle DB and WebGoat user git-svn-id: http://webgoat.googlecode.com/svn/trunk@169 4033779f-a91e-0410-96ef-6bf7bf53c507 --- webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql diff --git a/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql b/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql new file mode 100755 index 000000000..e5ac117e6 --- /dev/null +++ b/ webgoat/main/project/WebContent/WEB-INF/webgoat_oracle.sql @@ -0,0 +1,6 @@ +DROP USER webgoat; +CREATE USER webgoat IDENTIFIED BY webgoat DEFAULT TABLESPACE users; +GRANT CONNECT, RESOURCE TO webgoat; +GRANT CREATE PROCEDURE TO webgoat; + +exit;