Login password for Owaspbwa DVWA

Source: Internet
Author: User

Download the owasp BWA (broken Web application) of the virtual machine, starting from the DVWA to practice, but the first step of the login interface username and password is not what is said on the Internet admin and password, Even the DVWA installation documentation is incorrectly given to the admin and password. After a few twists and turns to find the login interface password has changed to the admin, keep forgetting.

  1. See login.php under DVWA's web directory/OWASPBWA/OWASPBWA-SVN/VAR/WWW/DVWA in BWA target drone, discover the MD5 value of PHP calculation password at login, and connect to MySQL database in the background.

  2. Check the/owaspbwa/owaspbwa-svn/var/www/dvwa/config/config.inc.php configuration file and learn that the user name, database name and password for MySQL connection are DVWA

  3. Go to MySQL database: Mysql-u dvwa-p. After entering DVWA, connect to MySQL at the MySQL prompt and enter

    Use DVWA;

    Show tables; See the Users table, and then

    select * from Users; Can see the user named Admin, its password for 21232F297A57A5A743894A0E4A801FC3, fortunately this MD5 is relatively simple, Google it can know is the MD5 value of admin, Use the Python statement hashlib.md5 (' admin '). Hexdigest () can also be easily verified. Therefore, the username and password of the Dvwa login interface should all be admin.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.