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
(Building)
(Fixed link to Google code to point to readme file, which contains build instructions)
Line 86: Line 86:
 
Skip these instructions if you are only interested in running WebGoat.
 
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 [http://webgoat.googlecode.com/svn/trunk/%20webgoat/main/HOW%20TO%20create%20the%20WebGoat%20workspace.txt Goodle code] to build the WebGoat application.
+
WebGoat is built using eclipse WTP 1.5.x.  Please read the instructions at [http://webgoat.googlecode.com/svn/trunk/webgoat/README.txt Goodle code] to build the WebGoat application.
[[category:FIXME|link not working]]
 
  
 
==Installing WAR file to existing Tomcat server==
 
==Installing WAR file to existing Tomcat server==

Revision as of 01:30, 19 July 2010

<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
      
    2. 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
      
    2. 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
    
  2. 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.
  3. Unzip WebGoat-OWASP_Standard-x.x.zip to your working directory.
  4. Change "1.5" on lines 17, 19, and 23 of webgoat.sh to "1.6".
  5. 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
      
    2. 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.

Installing WAR file to existing Tomcat server

Place the .war file in your Tomcat webapps directory (it will self extract). You'll need to resolve several issues that are outlined in the Webgoat FAQ.


Return to the WebGoat User Guide Table of Contents