当前位置:网站首页>DVWA installation tutorial (understand what you don't understand · in detail)
DVWA installation tutorial (understand what you don't understand · in detail)
2022-07-30 06:32:00 【m0_67401382】
There was a little problem when I installed it myself. Now I will share the steps that have been successful. Follow the rookie and never lose contact~~~~
First of all, the environment is matched, and the win10 system is used here.
https://www.xp.cn/###Official website download
I am using the latest version here.
After the download is complete, install it without a brain (of course, it is no problem to choose a disk), and then test whether it is successful or not.
After startup, log in to the website 127.0.0.1 or the local address to view.(successful)
The environment is successfully set up, and the next step is DVWA
You can search online directly, the link is provided here
DVWA - Damn Vulnerable Web Application direct download
When decompressing, pay attention to put the files in the phpstudy WWW directory (that is, the root directory)
Enter the directory and open the config folder, there will be a config.inc.php.dist file, copy this file and paste it in this directory and delete .dist
Edit this file
User and password must be changed to root. Here we can see that our key is gone. It may be used in subsequent experiments. We need to complete it, otherwise there will be a missing error later, and some relatedThe experiment cannot be started, save it after modification
DVWA reCAPTCHAkey: Missing solution_?RBPi' Blog-CSDN blog_dvwa key### can refer to here
I will also list the key of the big guy here
Site key:
6LdJJlUUAAAAAH1Q6cTpZRQ2Ah8VpyzhnffD0mBb
Secret key:
6LdJJlUUAAAAAM2a3HrgzLczqdYp4g05EqDs-W4K
Then try to log in, the address of your own directory is like this:
127.0.0.1/DVWA-master will be a bit slow, and it will enter the login interface by itself later.Default user/password admin /password
Login was successful and there were no missing errors.But we also found that there is a PHP function allow_url_include: Disabled error.
The following prompts that we need to turn on, but there is a problem here. Most people are looking for the php.ini file in the DWVA-master directory.This is not right, it's already On here, just search the upper level of the root.
Pay attention to the path, it is the folder of the php version number.
Open, find the two codes that are prompted
Modify and save and log in again to see.
Resolve the settlement....
If you find it helpful, please click your thumbs up.Xiaobai leads Xiaobai on the road, never get lost!!!
边栏推荐
猜你喜欢
随机推荐
最新Redistemplate配置及使用,附带操作工具类,测试类
自定义异常类的使用
搞懂redux一篇就够了
cJSON开源项目详细解剖
MySQL存储引擎
npm run serve启动报错npm ERR Missing script “serve“
强国杯初赛WP
C语言入门(前期准备工作)——超级详细的建议和教学,带你顺利跨越编程门槛
[网鼎杯 2020 青龙组]AreUSerialz
P3 元宝第六单元笔记
文件上传漏洞的绕过
最新版redis6.3.2下载安装
phpok网站漏洞利用分析
C语言(1)
函数(c语言)
volatility内存取证----命令演示
反序列化字符逃逸
awd——waf部署
秒杀项目的总结及面试常见问题
208.实现Trie树(字典树与哈希表实现)