I decided I needed to start a blog so that I have an excuse to play around with things in order to have something to write about. My first set of posts are going to walk through breaking Damn Vulnerable Web App at various difficulty levels. DVWA is broken up into 8 vulnerability types, and can be set to 3 difficulty levels. There is also an option to turn on PHPIDS, which I may tackle in later posts.
I decided to start off with a nice easy Command Execution at LOW difficulty setting. We’re presented with a nice little Ping interface. First, we’ll try using it as designed:

This works out alright. I wonder what else this form will do…

Here we can see the working directory, and the username the process is running under, ad the process running as this user. What else can we glean?

Ok, so we can see the passwd file, but no shadow. I guess we don’t have root. How do we get around that?
I’ll look at trying to set up a backdoor or other interesting things to do next time.