Skip to content

Instantly share code, notes, and snippets.

@tsuckow
Last active December 19, 2015 13:39
Show Gist options
  • Save tsuckow/5963803 to your computer and use it in GitHub Desktop.
Save tsuckow/5963803 to your computer and use it in GitHub Desktop.
Script to try to break out of a JS sandbox
<script>
console.log(Math.sin(1));
setTimeout(function(){
console.log(Math.sin(1))
},2000);
</script>
Loaded <a href="https://gist.github.com/tsuckow/5963803">Gist</a>
(function(){
Math.sin = new Function("alert('pwnd')");
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment