This file contains 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
var DEBUG = false | |
// Create xss object that will be used to track XSS information | |
var xss = new Object(); | |
xss.value = 0; | |
xss.msg = ""; | |
/** | |
* parse incoming HTTP responses that are provided via BURP intruder. | |
* data is base64 encoded to prevent issues passing via HTTP. |
This file contains 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
var DEBUG = false | |
// Create xss object that will be used to track XSS information | |
var xss = new Object(); | |
xss.value = 0; | |
xss.msg = ""; | |
/** | |
* parse incoming HTTP responses that are provided via BURP intruder. | |
* data is base64 encoded to prevent issues passing via HTTP. |