Created
October 9, 2016 13:45
-
-
Save xsscx/f727bb1abdd726c0ddff340b03fa73fd to your computer and use it in GitHub Desktop.
Inject Javascript to Proxy to set Debugging Config for Burp Suite | Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTMLImageElement.prototype.__defineSetter__('src', function(val){debugger;}); | |
Object.defineProperty(Object.prototype, | |
'top', | |
{enumerable:false, set: function(value){ | |
if(parseInt(value)<0)debugger; | |
}} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment