dvwa updated
This commit is contained in:
parent
8f3c3af4fb
commit
c37af6fc80
84 changed files with 1873 additions and 605 deletions
|
|
@ -11,11 +11,14 @@ $DBMS = 'MySQL';
|
|||
# Database variables
|
||||
# WARNING: The database specified under db_database WILL BE ENTIRELY DELETED during setup.
|
||||
# Please use a database dedicated to DVWA.
|
||||
#
|
||||
# If you are using MariaDB then you cannot use root, you must use create a dedicated DVWA user.
|
||||
# See README.md for more information on this.
|
||||
$_DVWA = array();
|
||||
$_DVWA[ 'db_server' ] = '127.0.0.1';
|
||||
$_DVWA[ 'db_database' ] = 'dvwa';
|
||||
$_DVWA[ 'db_user' ] = 'root';
|
||||
$_DVWA[ 'db_password' ] = 'vulnerables';
|
||||
$_DVWA[ 'db_password' ] = 'p@ssw0rd';
|
||||
|
||||
# Only used with PostgreSQL/PGSQL database selection.
|
||||
$_DVWA[ 'db_port '] = '5432';
|
||||
|
|
@ -23,9 +26,8 @@ $_DVWA[ 'db_port '] = '5432';
|
|||
# ReCAPTCHA settings
|
||||
# Used for the 'Insecure CAPTCHA' module
|
||||
# You'll need to generate your own keys at: https://www.google.com/recaptcha/admin/create
|
||||
# Thanks to http://stackoverflow.com/questions/34274492/dvwa-setup-php-function-allow-url-include-disabled
|
||||
$_DVWA[ 'recaptcha_public_key' ] = '6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg';
|
||||
$_DVWA[ 'recaptcha_private_key' ] = '6LdK7xITAzzAAL_uw9YXVUOPoIHPZLfw2K1n5NVQ';
|
||||
$_DVWA[ 'recaptcha_public_key' ] = '';
|
||||
$_DVWA[ 'recaptcha_private_key' ] = '';
|
||||
|
||||
# Default security level
|
||||
# Default value for the secuirty level with each session.
|
||||
Loading…
Add table
Add a link
Reference in a new issue