Assignment 5: Web Security (Group Assignment)
Introduction

In this assignment, we provide an insecure website, and your job is to attack it by exploiting three common classes of vulnerabilities: SQL injection, cross-site request forgery (CSRF), and cross-site scripting (XSS). You are also asked to exploit these problems with various flawed defenses in place. Understanding how these attacks work will help you better defend your own web applications.

This is a group assignment, and must be done in groups of 2 or 3 only.

Objectives
Read This First

This project asks you to perform attacks, with our permission, against a target website that we are providing for this purpose. Attempting the same kinds of attacks against other websites without authorization is prohibited by law and university policies. You must not attack any website without authorization! Per course policy, you are required to respect the privacy and property rights of others at all times. See “Right, Rules, and Responsibilities” on the Princeton University website for more details.

Target Website

A startup named BUNGLE! is about to launch its first product — a web search engine — but their investors are nervous about security problems. Unlike the Bunglers who developed the site, you took COS 432, so the investors have hired you to perform a security evaluation before it goes live.

BUNGLE! is available for you to test at https://elecos432.org.

The site is written in Python using the Bottle web framework. Although Bottle has built-in mechanisms that help guard against some common vulnerabilities, the Bunglers have circumvented or ignored these mechanisms in several places.

In addition to providing search results, the site accepts logins and tracks users’ search histories. It stores usernames, passwords, and search history in a MySQL database. Before being granted access to the source code, you reverse engineered the site and determined that it replies to five main URLs:

The function of these URLs is explained below, but if you want an additional challenge, you can skip the rest of this section and do the reverse engineering yourself.

Guidelines

Virtual Machine: For this project, we’d like you to do all your testing within the VM that you used for Assignment 4. This VM provides Firefox (the browser we will use for grading is the same version) and a method for hosting a local HTTP server (necessary for Part 3). Browser versions have slight variations in their behavior that may affect your XSS and CSRF attacks, so we highly recommend that you develop and test your solutions within the VM.

Defense Levels: The Bunglers have been experimenting with some naïve defenses, so you also need to demonstrate that these provide insufficient protection. In Parts 2 and 3, the site includes drop-down menus at the top of each page that let you change the CSRF and XSS defenses that are in use. The solutions you submit must override these selections by including the csrfdefense=n or xssdefense=n parameter in the target URL, as specified in each task below. You may not attempt to subvert the mechanism for changing the level of defense in your attacks. Be sure to test your solutions with the appropriate defense levels!

In all parts, you should implement the simplest attack you can think of that defeats the given set of defenses. In other words, do not simply attack the highest level of defense and submit that attack as your solution for all defenses. You do not need to combine the vulnerabilities, unless explicitly stated.

Resources: The Firefox web developer tools will be very helpful for this project, particularly the JavaScript console and debugger, DOM inspector, and network monitor. To open these tools, click the Developer button in the Firefox menu. See https://developer.mozilla.org/en-US/docs/Tools. Note that there is also a special version of the browser called Firefox Developer Edition; you’re welcome to use it to develop and test, but we will be grading with the normal edition of Firefox.

Your solutions will involve manipulating SQL statements and writing web code using HTML, JavaScript, and the jQuery library. You should search the web for answers to basic how-to questions. There are many fine online resources for learning these tools. Here are a few that we recommend:

To learn more about SQL Injection, XSS, and CSRF attacks, and for tips on exploiting them, see:

Virtual Machine instructions for Apple Silicon users

ARM-based Apple Silicon products (i.e. iMac or Macbook Pro with the M1 chip) are unfortunately not supported by VirtualBox. If you are using one of these devices, we have prepared an alternate ARM-based Ubuntu VM for this assignment. Follow the below instructions to get set up:

  1. Download the COS432 UTM Student VM. Note that this file is quite large (~3 GB), and may take a while to finish downloading.
  2. Unarchive cos432-student-utm-vm.tar.gz by double-clicking it in the Finder, or run tar -xzvf Downloads/cos432-student-vm.tar.gz. You should now have a file called cos432-student.utm in your Downloads folder.
  3. Download UTM for Mac by clicking “Download” on this web page.
  4. Run the UTM application.
  5. Select File -> Import Virtual Machine..., then select cos432-student.utm in your file browser.
  6. It should appear on the left side of the UTM application. Click it, and click the large "Play" button to start the VM.
  7. Select the "COS432 Student" user and log in with password student.
  8. You should be logged in now, and can use the VM like you would a regular Linux desktop.
Getting Started

Download the directory template here. You should be using this to organize your answers. For most of the questions, you can simply type up the answer in the text/html files we've created for you. However, for 1.2, make sure you replace the placeholder zip archive with your own zip file that contains all the source code.

Part 1. SQL Injection

Your first goal is to demonstrate SQL injection attacks that log you in as an arbitrary user without knowing the password. In order to protect other students’ accounts, we’ve made a series of separate login forms for you to attack that aren’t part of the main BUNGLE! site. For each of the following defenses, provide inputs to the target login form that successfully log you in as the user “victim”:

  1. No defenses
    Target: https://elecos432.org/sqlinject0/
    Submit: sql_0.txt
  2. Simple escaping
    The server escapes single quotes (') in the inputs by replacing them with two single quotes.
    Target: https://elecos432.org/sqlinject1/
    Submit: sql_1.txt
  3. Escaping and Hashing
    The server uses the following PHP code, which escapes the username and applies the MD5 hash function to the password:
    	        if (isset($_POST['username']) and isset($_POST['password'])) {
                   $username = mysql_real_escape_string($_POST['username']);
                   $password = md5($_POST['password'], true);
                   $sql_s = "SELECT * FROM users WHERE username='$username' and pw='$password'";
                   $rs = mysql_query($sql_s);
                   if (mysql_num_rows($rs) > 0) {
                      echo "Login successful!";
                   } else {
                      echo "Incorrect username or password";
                   }
                }
    This is more difficult than the previous two defenses. You will need to write a program to produce a working exploit. You can use any language you like, but we recommend Python for its ease in library linking.
    Target: https://elecos432.org/sqlinject2/
    Submit: sql_2.txt and sql_2_src.zip (zip archive of the program files that you wrote)
  4. The SQL (extra credit)
    This target uses a different database. Your job is to use SQL injection to retrieve:
    1. The name of the database
    2. The version of the SQL server
    3. All of the names of the tables in the database
    4. A secret string hidden in the database

    Target: https://elecos432.org/sqlinject3/
    Submit: sql_3.txt
    For this part, the text file you submit should starts with a list of the URLs for all the queries you made to learn the answers. After the list of the URLs, show the values of the database name, SQL server version, names of tables and a secret string using this format:
              URL
              URL
              URL
              ...
              Name: DB name
              Version: DB version string
              Tables: comma separated names
              Secret: secret string

What to submit For 1.0, 1.1, and 1.2, when you successfully log in as victim, the server will provide a URL-encoded version of your form inputs. Submit a text file with the specified filename containing only this line. For 1.2, also submit the source code for the program you wrote, as a zip file (sql_2_src.zip). For 1.3, submit a text file as specified.

Part 2. Cross-site Request Forgery (CSRF)

Your next task is to demonstrate CSRF vulnerabilities against the login form, and BUNGLE! has provided two variations of their implementation for you to test. Your goal is to construct attacks that surreptitiously cause the victim to log in to an account you control, thus allowing you to monitor the victim’s search queries by viewing the search history for this account. For each of the defenses below, create an HTML file that, when opened by a victim, logs their browser into BUNGLE! under the account attacker and password l33th4x.

Your solutions should not display evidence of an attack; the browser should just display a blank page. (If the victim later visits BUNGLE!, it will say “logged in as attacker”, but that’s fine for purposes of the project. After all, most users won’t immediately notice.)

Part 3. Cross-site Scripting (XSS)

Your final goal is to demonstrate XSS attacks against the BUNGLE! search box, which does not properly filter search terms before echoing them to the results page. For each of the defenses below, your goal is to construct a URL that, when loaded in the victim’s browser, correctly executes the specified payload. We recommend that you begin by testing with a simple payload (e.g., alert(0);), then move on to the full payload. Note that you should be able to implement the payload once, then use different means of encoding it to bypass the different defenses.

Payload The payload (the code that the attack tries to execute) will be to steal the username and the most recent search the real user has performed on the BUNGLE! site. When a victim visits the URL you create, these stolen items should be sent to the attacker’s server for collection.

For purposes of grading, your attack should report these events by loading the URL:

http://localhost:31337/stolen?user=username&last_search=last_search

You can test receiving this data within the provided VM by downloading

log_listener.py

and running these commands in terminal:

$ cd /Downloads; python log_listener.py

and observing the HTTP GET request that your payload generates. To further test that your HTTP server is running, try navigating to:

http://localhost:31337

Defenses There are five levels of defense. In each case, you should submit the simplest attack you can find that works against that defense; you should not simply attack the highest level and submit your solution for that level for every level. Try to use a different technique for each defense. The Python code that implements each defense is shown below, along with the target URL and the filename you should submit.

  1. No defenses
    Target: https://elecos432.org/search?xssdefense=0
    Submit: xss_0.txt
    Also submit a human-readable version of your payload code (as opposed to the form encoded into the URL) in a file named: xss_payload.html
  2. Remove “script”
    filtered = re.sub(r"(?i)script", "", input)
    Target: https://elecos432.org/search?xssdefense=1
    Submit: xss_1.txt
  3. Remove several tags
    filtered = re.sub(r"(?i)script|<img|<body|<style|<meta|<embed|<object","", input)
    Target: https://elecos432.org/search?xssdefense=2
    Submit: xss_2.txt
  4. Remove some punctuation
    filtered = re.sub(r"[;'\"]", "", input)
    Target: https://elecos432.org/search?xssdefense=3
    Submit: xss_3.txt
  5. Encode < and > [Extra credit]
    filtered = input.replace("<", "&lt;").replace(">", "&gt;")
    Target: https://elecos432.org/search?xssdefense=4
    Submit: xss_4.txt
    This challenge is hard. We think it requires finding a 0-day vulernability or an unintentional bug in our code.
  6. What to submit Your submission for each level of defense will be a text file with the specified filename that contains a single line consisting of a URL. When this URL is loaded in a victim’s browser, it should execute the specified payload against the specified target. Please remember to correctly specify the XSS defense levels in your URLs (if you have nested URLs, specify the levels in the nestes ones too!). The payload encoded in your URLs may embed inline JavaScript and load jQuery from the URL:

    http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js

    It is also permissible to load the jQuery cookies library from the URL:

    https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js

    Otherwise, your code must be self contained. Test your solutions with the browser in the Linux VM.

Part 4. Writeup: Better Defenses

For each of the three kinds of attacks (SQL injection, CSRF, and XSS), write a paragraph of advice for the BUNGLE! developers recommending what techniques they should use to defend themselves.

What to submit A text file named writeup.txt containing your security recommendations.

Submission Checklist

Where applicable, your solutions may contain embedded JavaScript. They are allowed to load only the exact Javascript libraries specified above, and must be otherwise self-contained. Test your solutions with the browser provided in the VM.

The solutions you submit for Part 2 (CSRF) and Part 3 (XSS) must include the csrfdefense=n or xssdefense=n parameter in the target URL, as specified in each task. You may not attempt to subvert the mechanism for changing the level of defense in your attacks. Submit your files as a single zip file on Gradescope. Your zip file should have the following structure: