Please see Lecture Slides from Wednesday nights for information on now to obtain a VM. We now also have an OVA version available in the same directory.
...
- Log into the VM using
sysadminas the user and result of the following as the password:Code Block $ echo "buy it, use it, break it, fix it" | awk -F, '{print $3 $4}' | awk '{print $1 $2 $3 $4 $5}' See VM Network Configuration for how to configure your networking
.
- Start Apache by running
sudo /etc/init.d/apache2 start - Go to
http://ctf-portal.ctf.csail.mit.edu- you should be able to see your Wordpress site.
- If you want to tinker with things, look at the following places
/usr/share/wordpressis a fairly standard Ubuntu installation of Wordpress- Web root is located in
/srv/www/ctf-portal.ctf.csail.mit.edu/and points to the installation above - Plugins and such go into
/usr/share/wordpress/wp-content/plugins - All these directories are owned by
root:www-data, so you'll need to become one of those users to explore. The simplest way is to run
and enter the password above - this makes youCode Block sudo su
root. Alternatively, you could run
to become theCode Block sudo su www-data
www-datauser.