…… 13 # Please use a database dedicated to DVWA. 14 $_DVWA = array(); 15 $_DVWA[ 'db_server' ] = '127.0.0.1'; 16 $_DVWA[ 'db_database' ] = 'dvwa'; 17 $_DVWA[ 'db_user' ] = 'root'; 18 $_DVWA[ 'db_password' ] = 'toor'; 19 20 # Only used with PostgreSQL/PGSQL database selection. 21 $_DVWA[ 'db_port '] = '5432'; 22 #$_DVWA[ 'db_port '] = '3690'; 23 # ReCAPTCHA settings 24 # Used for the 'Insecure CAPTCHA' module 25 # You'll need to generate your own keys at: https://www.google.com/recaptcha/admin/create 26 $_DVWA[ 'recaptcha_public_key' ] = '6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg'; 27 $_DVWA[ 'recaptcha_private_key' ] = '6LdK7xITAzzAAL_uw9YXVUOPoIHPZLfw2K1n5NVQ'; 28 29 # Default security level 30 # Default value for the secuirty level with each session. 31 # The default is 'impossible'. You may wish to set this to either 'low', 'medium', 'high' or impossible'. 32 $_DVWA[ 'default_security_level' ] = 'low'; 33 34 # Default PHPIDS status 35 # PHPIDS status with each session. :wq ……