Город МОСКОВСКИЙ
00:04:44

How to Install DVWA in Kali Linux -DVWA tutorial

Аватар
SQL и MySQL Работа с множественными соединениями и подзапросами
Просмотры:
54
Дата загрузки:
08.12.2023 07:33
Длительность:
00:04:44
Категория:
Лайфстайл

Описание

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is damn vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, help web developers better understand the processes of securing web applications and aid teachers/students to teach/learn web application security in a class room environment.It is a best platform to practice web application hacking and security.


1. Download DVWA :

pentestal0ne@kali:/# wget http://downloads.sourceforge.net/project/dvwa/DVWA-1.0.7.zip? r=&ts=1410092252

or you can also use web browser to download :

http://sourceforge.net/projects/dvwa/files/latest/download


2. Unzip download file

pentestal0ne@kali:/# unzip DVWA-1.0.7.zip


4. Set permission of DVWA into 755


pentestal0ne@kali:/# chmod -R 755 /var/www/dvwa and hit enter


9. Now Create Database for dvwa

pentestal0ne@kali:/# service apache2 start && service mysql start
pentestal0ne@kali:/# mysql
pentestal0ne@kali:/# show databases;
pentestal0ne@kali:/# create database dwva
pentestal0ne@kali:/# exit

→ If you want to exit terminal type exit and hit enter( or Ctrl+D)

10. Open Your Internet Browser and type:
http://127.0.0.1/dvwa
or: http://localhost/dvwa

the default username and password of dvwa is:
admin password

Рекомендуемые видео