Install DVWA on Kali Linux 2017.2
Install DVWA on Kali Linux 2017.2
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 classroom environment.
Requirement:
Command
mysql -u root -p password
create user DVWA;
grant all on dvwa.* to DVWA@localhost identified by ‘your_password’;
flush privileges;
GRANT ALL ON dvwa.* TO ‘dvwa’@’%’;
FLUSH PRIVILEGES;