centos系统安装dvwn
时间: 2023-10-02 12:09:41 浏览: 180
安装DVWA需要以下步骤:
1. 首先,下载CentOS 7 Minimal版本,并安装VMware Workstation虚拟机软件。
2. 在VMware Workstation中新建虚拟机,选择典型模式,然后选择下载的CentOS 7镜像文件。
3. 根据设备的配置设置处理器、内存等相关信息,然后开启虚拟机。
4. 进入图形化安装CentOS界面,按照提示一步步完成安装,然后重启进入系统。
5. 配置CentOS 7的yum国内镜像源,可以使用以下命令:
```
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum clean all
yum makecache
```
6. 安装LAMP环境,包括Apache、PHP和MySQL。可以使用以下命令安装:
```
yum install httpd
yum install php php-mysql
yum install mysql-server
```
7. 启动Apache和MySQL服务,并设置为开机启动:
```
systemctl start httpd
systemctl start mysqld
systemctl enable httpd
systemctl enable mysqld
```
8. 下载DVWA,并解压文件到Apache的默认网站目录(通常是/var/www/html/):
```
wget https://github.com/ethicalhack3r/DVWA/archive/master.zip
unzip master.zip
mv DVWA-master /var/www/html/dvwa
```
9. 配置DVWA文件,包括MySQL数据库配置和reCAPTCHA配置。可以通过编辑/var/www/html/dvwa/config/config.inc.php文件进行配置。
10. 修改php.ini文件,确保以下设置正确:
```
allow_url_include = On
allow_url_fopen = On
magic_quotes_gpc = Off
session.auto_start = 0
```
11. 最后,通过浏览器访问http://localhost/dvwa来访问DVWA靶场。
阅读全文