Skip to content

Instantly share code, notes, and snippets.

View NBG0x1's full-sized avatar
💭
В теории нет разницы между теорией и практикой, а на практике есть.

ilya lutkov "NBG0x1" NBG0x1

💭
В теории нет разницы между теорией и практикой, а на практике есть.
View GitHub Profile
@NBG0x1
NBG0x1 / xss.js
Created December 16, 2017 23:59 — forked from claudijd/xss.js
An adaption of NVisium's xssValidator Burp Extension to support an offline mode
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.
@claudijd
claudijd / xss.js
Created September 16, 2014 21:29
An adaption of NVisium's xssValidator Burp Extension to support an offline mode
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.