Skip to content

wargames-cookbooks/dvwa

Repository files navigation

DVWA Cookbook

Deploy a Damn Vulnerable Web Application environment. Cookbook Version Build Status

Requirements

Platform

  • Ubuntu 16.04
  • Ubuntu 18.04
  • Debian 9
  • Debian 10

Cookbooks

Attributes

dvwa::default

Key Type Description
[dvwa][db][server] String Database server host (default: localhost)
[dvwa][db][name] String Database name (default: dvwa)
[dvwa][db][username] String Database user name (default: dvwa)
[dvwa][db][password] String Database user password (default: dvwa)
[dvwa][recaptcha][public_key] String Recaptcha public key (default: 6LfzKeUSAAAAABbGMjVS77HmkY7emIB9v5VGeEvb)
[dvwa][recaptcha][private_key] String Recaptcha private key (default: 6LfzKeUSAAAAAEPD91_3uUGaemNs9ZNehkccBOoF)
[dvwa][apache2][server_name] String Apache2 server name (default: dvwa)
[dvwa][apache2][server_aliases] Array Array of apache2 virtualhost aliases (default: [dvwa])
[dvwa][version] String DVWA version to deploy (default: master)
[dvwa][archive_url] String Archive URL to download DVWA (default: https://github.com/ethicalhack3r/DVWA/archive/)
[dvwa][path] String Path where application will be deployed (default: /opt/dvwa)
[dvwa][security_level] String DVWA default security level (default: high)

Usage

dvwa::default

Just include dvwa in your node's run_list:

{
  "name":"my_node",
  "run_list": [
    "recipe[dvwa]"
  ]
}

Running tests

  • First, install dependencies:
    bundle install

  • Run Checkstyle and ChefSpec:
    bundle exec rake

  • Run Kitchen tests:
    bundle exec rake kitchen

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (like add-component-x)
  3. Write you change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request using Github

License and Authors

Authors: Sliim sliim@mailoo.org

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.