您好,登錄后才能下訂單哦!
Centos7中怎么搭建一個dvwa攻防演練系統,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
[root@centos7 ~]# vim /etc/sysconfig/selinux
=后面改為disabled
:wq保存并退出
把機器重啟:[root@centos7 ~]# reboot
[root@centos7 ~]# yum -y install httpd php php-mysql php-gd mariadb-server [root@centos7 ~]# systemctl start httpd #啟動http 服務。 [root@centos7 ~]# systemctl enable httpd #設置 http 服務開機自啟。 [root@centos7 ~]# systemctl start mariadb #啟動 mariadb 服務。 [root@centos7 ~]# systemctl enable mariadb #設置 mariadb 服務開機自啟。 [root@centos7 ~]# systemctl disable firewalld && systemctl stop firewalld && systemctl status firewalld #關閉防火墻
[root@centos7 ~]# mysqladmin -u root password "123456"
驗證一下能不能進去:
[root@centos7 ~]# mysql -u root -p123456 MariaDB [(none)]> \q
解壓 DVWA-master.zip 程序包,并指定解壓后存放路徑為/var/www/html/
[root@centos7 ~]# unzip -d /var/www/html/ DVWA-master.zip [root@centos7 ~]# cd /var/www/html/ [root@centos7 ~]# mv DVWA-master dvwa #修改名稱 DVWA-master 為 dvwa [root@centos7 ~]# chown -R apache. /var/www/html/dvwa/ #修改文件主、組為 apache 用戶 [root@centos7 ~]# cd dvwa/config/
#切換到 dvwa/config/目錄下
復制 config.inc.php.dist 文件,并命令為 config.inc.php:
[root@centos7config]# cp config.inc.php.dist config.inc.php
[root@centos7config]# vim config.inc.php #編輯 config.inc.php 文件,修改如下:
修改第 21 行內容,改成自己的 mysql 的 root 用戶密碼
$_DVWA[ 'db_password' ] = 'p@ssw0rd';
修改為:
$_DVWA[ 'db_password' ] = '123456';
(用戶也建議改成root)
修改第 29、30 行內容:
$_DVWA[ 'recaptcha_public_key' ] = ''; $_DVWA[ 'recaptcha_private_key' ] = '';
添加上谷歌開源免費驗證碼 reCAPTCHA 的公鑰和私鑰
$_DVWA[ 'recaptcha_public_key' ] = '6LfUZr4UAAAAACs5S68EfL7A7WXjNHAqyWnZwIch'; $_DVWA[ 'recaptcha_private_key' ] = '6LfUZr4UAAAAACMgFi7Qh7yPvWLtq0LV_zIBYWa8';
[root@centos7config]# vim /etc/php.ini
末行模式下輸入:set nu顯示行數,跳轉到815行(命令行模式按815,再按G就可以跳轉),修改文件中的第 815 行的內容,原 Off,改為 On:
allow_url_include = Off
改為:
allow_url_include = On [root@centos7config]# systemctl restart httpd
http://********/dvwa/setup.php(此處的*****為你的centos7的IP地址)
跳到登錄頁面。
登錄:用戶為:admin 密碼:password
登錄進去,看到這樣的界面,說明搭建好了!大功告成!可以開始練習web滲透了!!!!
關于Centos7中怎么搭建一個dvwa攻防演練系統問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。