Firing Range Documentation

repository·master·Indexed 23 days ago

https://github.com/google/firing-range

A security testing platform providing a synthetic web application environment with various vulnerabilities, designed for testing the effectiveness of web application security scanners.

Tokens
309
Snippets
1
Records
2
Agent score
31%

What's inside Firing Range

  1. Install Firing Range locally

    master

    To run Firing Range on your local machine, you need git and ant installed, along with the App Engine SDK for Java. Follow these steps:

    1. Install dependencies: sudo apt-get install git ant.
    2. Download and unzip the App Engine SDK for Java.
    3. Clone the repository: git clone https://github.com/google/firing-range.git.
    4. Configure the appengine.sdk property in build.xml to point to your unpacked App Engine SDK directory (if it is not in the default ../../ location).
    5. Run the application using Ant: ant runserver.

    The application will be available at http://localhost:8080.

    sudo apt-get install git ant
    
    mkdir github && cd github
    git clone https://github.com/google/firing-range.git
    cd firing-range
    
    # Note: Ensure build.xml 'appengine.sdk' property is set correctly
    
    ant runserver