Deploy a Damn Vulnerable Web Application environment.
Ubuntu 16.04
Ubuntu 18.04
Debian 9
Debian 10
apache2
- https://supermarket.chef.io/cookbooks/apache2php
- https://supermarket.chef.io/cookbooks/phpmariadb
- https://supermarket.chef.io/cookbooks/mariadb
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 ) |
Just include dvwa
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[dvwa]"
]
}
-
First, install dependencies:
bundle install
-
Run Checkstyle and ChefSpec:
bundle exec rake
-
Run Kitchen tests:
bundle exec rake kitchen
- Fork the repository on Github
- Create a named feature branch (like
add-component-x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
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.