Without any preface, let me get straight to the point. In this tutorial, we will be installing Damn Vulnerable Web Application (DVWA)Â on a Ubuntu virtual machine. Our attacker machine would be Kali Linux, which is also installed as a virtual machine (or virtual box). The host can be any OS, and doesn’t matter since we won’t be using it at all. An alternate configuration is when your host is either Kali or Ubuntu, in which case you need only one VM, to install their the other OS. Alternatively, you could just use a single Kali machine both as attacker as well as victim (running the vulnerable application). However, that makes things less realistic.
Contents
Pre-requisites
Installing DVWA
Disclaimer : No cool stuff in this tutorial, just straightforward installation.
Pre-requisites
You need to have Kali Linux (rolling release) and Ubuntu (I’m using 16.04) up and running. If you aren’t familiar with virtual machines and stuff, then take a break of a few days, get familiar with them, install and run a few Linux (any flavour) VMs, drink some coffee, etc. Once you’re comfortable with virtual machines (and have Kali & Ubuntu up nd running), proceed onward.
You also need some minimal knowledge of linux, networking, and web applications. As an exercise, you could try getting some free web host (a pathetic one will suffice, since you are only doing this for learning and won’t need anyone to use your website), and deploy a wordpress site. Tinker around the website, install themes and stuff to get a feel for it. Then, go one step further and deploy a wordpress instance on your linux virtual machine. This time, don’t use the wordpress UI to do things, but instead try and figure out stuff manually. Install themes, modules, etc. on your own by placing them in the correct directory. Just tinker away, in short, till you have some level of familiarity with web applications.Now, you are familiar with web apps, virtual machines, and linux (not networking though). The task above were pretty simple but for now you can move ahead with the tutorial with the given amount of expertise. Also, the pre-reqs listed above are for the entire web pentesting series, and most probably you’ll be able to follow this tutorial without completing some of them, since this is the first and very basic installation tutorial.
Important: Make sure you use the same version of stuff as me. This will avoid scenarios where our systems behave differently (in which case you’ll have to use google-fu to figure our how to deal with unexpected stuff happening).Ubuntu Version – 16.04.1 LTSXAMPP Version – 7.1.1 (you’ll install this later in the tut)
Installing DVWA
This is a fairly simple procedure. Â Below are screenshots with explanation. At the end of the tutorial, I have listed commands that you need to type to get all this done (you can simply copy paste the commands). The unnecessary steps are not present in list of commands (in screenshots they are there to enhance your understanding oh what’s going on).Overview-
First we will download DVWA.
Then we read it’s doc and find out what to do.
After reading doc, we realize we need to install XAMPP, we do that.
After installing XAMPP, we test if it works by starting it and opening localhost on our machine.
Once we’re sure that XAMPP works, we will proceed and copy DVWA files to htdocs folder of XAMPP.
Now we check if localhost/DVWA-master leads us to the vulnerable app. If it does, then we did everything right.
Navigate to the extracted archive. Get a lay of the land. You’ll find that there is documentation available in docs folder.
Here is the relevant section of the documentation. We need to install XAMPP. You can get it to workwith any other equivalent software bundle, but for ease, let’s stick to the recommended way.
Proceed to download the XAMPP bundle. I went with the latest version (going with latest versionposes a slight problem for us, while DVWA is flawed, our PHP version is perfectly patched. For now, let’signore this. If this cause hinderance at a later stage, then we’ll deal with it)
Navigate to downloads directory and run the installer for XAMPP
Realise that you forgot to run the installer as root! (kudos if you ran as root and didn’t make thesame mistake as me)
Run installer as root
It’s a simple installer. You’d know what to do.
Wait for it to finish.
Start the XAMPP server (note that the directory is lampp in linux systems)
Check if your server is running by typing 127.0.0.1 or localhost on your browser. XAMPP is now upand running properly. Let’s run our vulnerable app on XAMPP now.
As suggested by the documentation, we simply move our folder into the htdocs directory.
Open the localhost/DVWA-master URL and you’ll see that everything works as expected. Our initialsetup is successfully done.
There is still further configuration to be done, but I don’t want to extend the tutorial any further. After the next section, there is link to part 2 of this series.
Commands
For below commands to work, ensure the following-
xampp-linux-x64-VERSION-installer.run – this file downloaded and is located in Downloads folder
DWVA-master directory is located in home folder (the archive to be downloaded and extracted to obtain this directory).
Replace VERSION with the version you have downloaded (7.1.1.0 in my case)
Here are the commands-
cd ~/Downloads
chmod a+x xampp-linux-x64-VERSION-installer.run
cd ~
sudo ./xampp-linux-x64-VERSION-installer.run
sudo mv ~/DWVA-master/ /opt/lampp/htdocs/
Part 2 : fixing the problems and finishing the configuration. Here’s the link –
Extras
Read about localhost (what does this URL signify – 127.0.0.1)
Commands used – ls, cd, mv, sudo. Use man pages to find out what these mean (eg. type man mv into the terminal)