This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "WebGoat Installation"

From OWASP
Jump to: navigation, search
m (Installing on FreeBSD: code block)
m (Undid own damage; merged OS X subsection into parent; updated Linux and FreeBSD sections)
Line 16: Line 16:
  
 
==Installing to Windows ==
 
==Installing to Windows ==
# Rename Windows_WebGoat-x.x.zip to WebGoat.zip and unzip it to your working environment.
+
# Unzip WebGoat-OWASP_Standard-5.2.zip to your working environment.
 
# To start Tomcat, browse to the WebGoat directory unzipped above and double click "webgoat.bat"
 
# To start Tomcat, browse to the WebGoat directory unzipped above and double click "webgoat.bat"
 
# Start your browser and browse to: <u>http://localhost/WebGoat/attack</u> This link is case-sensitive. Make sure to use a large ‘W’ and ‘G’.
 
# Start your browser and browse to: <u>http://localhost/WebGoat/attack</u> This link is case-sensitive. Make sure to use a large ‘W’ and ‘G’.
  
 
==Installing to Linux ==
 
==Installing to Linux ==
# Download WebGoat-x.x.war and rename it as WebGoat.war.
+
<ol>
# Deploy WebGoat.war.
+
<li>Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.</li>
## Go to Tomcat default home page (likely http://localhost:port, where port may be 80, 8080, or 8180).
+
<li>Change "1.5" on lines 17, 19, and 23 of webgoat.sh to "1.6".</li>
## Click on Tomcat Manager.
+
<li>Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:</li>
## Select WebGoat.war as the application to deploy.
+
</ol>
 +
<ol type="a">
 +
:<li>on port 80 as root:</li>
 +
</ol>
 +
sudo sh webgoat.sh start80
 +
sudo sh webgoat.sh stop
 +
<ol type="a" start="2">
 +
:<li>or on port 8080:</li>
 +
</ol>
 +
sh webgoat.sh start8080
 +
sh webgoat.sh stop
  
 
==Installing to OS X (Tiger 10.4+) ==
 
==Installing to OS X (Tiger 10.4+) ==
# Rename Unix_WebGoat-x.x.zip to WebGoat.zip and unzip it to your working directory
+
<ol>
# Since the latest version runs on a privileged port, you will need to start/stop WebGoat as root.
+
<li>Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.</li>
 
+
<li>Change "1.5" on line 10 of webgoat.sh to "1.6".</li>
 +
<li>Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:</li>
 +
</ol>
 +
<ol type="a">
 +
:<li>on port 80 as root:</li>
 +
</ol>
 
  sudo sh webgoat.sh start80
 
  sudo sh webgoat.sh start80
 
  sudo sh webgoat.sh stop
 
  sudo sh webgoat.sh stop
 
+
<ol type="a" start="2">
An alternative would be to start it with "sh webgoat.sh start8080" that will start the tomcat on TCP-PORT 8080
+
:<li>or on port 8080:</li>
 
+
</ol>
===IMPORTANT NOTICE:===
+
sh webgoat.sh start8080
If you're running WebGoat v5.2 (which is built with Java v1.6) you have to change the webgoat.sh in line 10 from
+
  sh webgoat.sh stop
 
 
  JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Home
 
 
 
to
 
 
 
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
 
 
 
if you dont do so the Tomcat will fail to deploy the WebGoat.war and you will receive a HTTP-404-Error-Code when trying to start the App. (same issue on linux/other *nixes) I tested this with OSX Leopard 10.5.2 and now it works.
 
  
 
==Installing on FreeBSD ==
 
==Installing on FreeBSD ==
# Install Tomcat and Java from the ports collection
+
<ol>
 +
<li>Install Tomcat and Java from the ports collection:</li>
 +
</ol>
 
   cd /usr/ports/www/tomcat55
 
   cd /usr/ports/www/tomcat55
 
   sudo make install
 
   sudo make install
# You will be required to manually download the Java JDK to install it.  Instructions are given by the ports system about when and how to do this.  The URL looks like this:
+
<ol start="2">
http://www.FreeBSDFoundation.org/cgi-bin/download?download=diablo-caffe-freebsd6-i386-1.5.0_07-b01.tar.bz2
+
<li>You will be required to manually [http://www.FreeBSDFoundation.org/cgi-bin/download?download=diablo-caffe-freebsd6-i386-1.5.0_07-b01.tar.bz2 download the Java JDK] to install it.  Instructions are given by the ports system about when and how to do this.</li>
# Rename Unix_WebGoat-x.x.zip to WebGoat.zip and unzip it to your working directory.
+
<li>Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.</li>
# Since the latest version runs on a privileged port, you will need to start/stop WebGoat as root.
+
<li>Change "1.5" on lines 17, 19, and 23 of webgoat.sh to "1.6".</li>
 
+
</ol>
  sudo sh webgoat.sh start
+
<ol start="5">
 +
<li>Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:</li>
 +
</ol>
 +
<ol type="a">
 +
:<li>on port 80 as root:</li>
 +
</ol>
 +
  sudo sh webgoat.sh start80
 
  sudo sh webgoat.sh stop
 
  sudo sh webgoat.sh stop
 +
<ol type="a" start="2">
 +
:<li>or on port 8080:</li>
 +
</ol>
 +
sh webgoat.sh start8080
 +
sh webgoat.sh stop
  
 
==Running ==
 
==Running ==

Revision as of 22:57, 16 January 2009

<webgoat/>WebGoat User Guide Table of Contents

WebGoat is a platform independent environment. It utilizes Apache Tomcat and the JAVA development environment. Installers are provided for Microsoft Windows and UN*X environments, together with notes for installation on other platforms.

Installing Java and Tomcat

Note: This may no longer be necessary for v5.

Installing Java

  1. Install and deploy the approprite version from http://java.sun.com/downloads/ (1.4.1 or later)

Installing Tomcat

  1. Install and deploy core Tomcat from http://tomcat.apache.org/download-55.cgi

Installing to Windows

  1. Unzip WebGoat-OWASP_Standard-5.2.zip to your working environment.
  2. To start Tomcat, browse to the WebGoat directory unzipped above and double click "webgoat.bat"
  3. Start your browser and browse to: http://localhost/WebGoat/attack This link is case-sensitive. Make sure to use a large ‘W’ and ‘G’.

Installing to Linux

  1. Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.
  2. Change "1.5" on lines 17, 19, and 23 of webgoat.sh to "1.6".
  3. Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:
  1. on port 80 as root:
sudo sh webgoat.sh start80
sudo sh webgoat.sh stop
  1. or on port 8080:
sh webgoat.sh start8080
sh webgoat.sh stop

Installing to OS X (Tiger 10.4+)

  1. Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.
  2. Change "1.5" on line 10 of webgoat.sh to "1.6".
  3. Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:
  1. on port 80 as root:
sudo sh webgoat.sh start80
sudo sh webgoat.sh stop
  1. or on port 8080:
sh webgoat.sh start8080
sh webgoat.sh stop

Installing on FreeBSD

  1. Install Tomcat and Java from the ports collection:
 cd /usr/ports/www/tomcat55
 sudo make install
  1. You will be required to manually download the Java JDK to install it. Instructions are given by the ports system about when and how to do this.
  2. Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.
  3. Change "1.5" on lines 17, 19, and 23 of webgoat.sh to "1.6".
  1. Since the latest version runs on a privileged port, you will need to start/stop WebGoat & Tomcat either:
  1. on port 80 as root:
sudo sh webgoat.sh start80
sudo sh webgoat.sh stop
  1. or on port 8080:
sh webgoat.sh start8080
sh webgoat.sh stop

Running

  1. Start your browser and browse to: http://localhost/WebGoat/attack. Notice the capital 'W' and 'G'
  2. Login in as: user = guest, password = guest

Building

Skip these instructions if you are only interested in running WebGoat.

WebGoat is built using eclipse WTP 1.5.x. Please read the instructions at Goodle code to build the WebGoat application.

Return to the WebGoat User Guide Table of Contents