Windows下在xampp中配置DVWA

、将DVWA压缩包解压,改名为dvwa,然后移入xampp/htdocs下(如图)
Windows下在xampp中配置DVWA_第1张图片
、随后访问dvwa
中文翻译:DVWA系统错误-配置文件没有找到。复制配置/ config.inc.php.dist到/ config.inc.php并配置您的环境。”
解决方法:在dvwa目录下,打开config目录,将其中的/config.inc.php.dist文件名改为/config.inc.php
在这里插入图片描述在这里插入图片描述
改为
在这里插入图片描述
、之后打开http://127.0.0.1:8088/dvwa,出现如下图所示
Windows下在xampp中配置DVWA_第2张图片
中文版:
Windows下在xampp中配置DVWA_第3张图片
、打开xampp里的php.ini,修改上图中红标配置文件,之后重启apache服务器
allow_url_include=On

、打开刚刚修改后的config.inc.php文件

$_DVWA[ 'db_password' ] = 'p@ssw0rd';

改为:

$_DVWA[ 'db_password' ] = '';
$_DVWA[ 'recaptcha_public_key' ]  = '';
$_DVWA[ 'recaptcha_private_key' ] = '';

改为:

$_DVWA[ 'recaptcha_public_key' ]  = '6LdK7xITAAzzAAJQTfL7fu6I-0aPl8KHHieAT_yJg';
$_DVWA[ 'recaptcha_private_key' ] = '6LdK7xITAzzAAL_uw9YXVUOPoIHPZLfw2K1n5NVQ';

Windows下在xampp中配置DVWA_第4张图片
、最后Create / Reset Datebase,登陆DVWA(默认账号:admin,默认密码:password)
Windows下在xampp中配置DVWA_第5张图片
、登陆成功
Windows下在xampp中配置DVWA_第6张图片

你可能感兴趣的:(DVWA)