📝 Added entire config directory for backup purposes

This commit is contained in:
z3rOR0ne 2022-11-03 00:09:22 -07:00
parent 4b38e59bb6
commit 9b946e2d14
11091 changed files with 1440953 additions and 0 deletions

View file

@ -0,0 +1,11 @@
if (UA.isMozilla) {
let y = async (url, originUrl = '') => await XSS.test({originUrl, url, method: "GET"});
let n = async (...args) => !await y(...args);
Promise.all([
() => y("https://sandbox.hack.vet/issue/noscript/bypass/simple_xss.php?name=%22;alert?.(%22NoScript%2011.1.7%20Bypass%20XSS%20@reinforchu%22)//"),
() => y("https://sandbox.hack.vet/issue/noscript/bypass/simple_xss.php?name=%22;location?.assign?.(%22https://reinforc.hu%22)//"),
() => y("https://sandbox.hack.vet/issue/noscript/bypass/simple_xss.php?name=%22;document?.[%27write%27]?.(%22XSS%22)//"),
() => y("https://sandbox.hack.vet/issue/noscript/bypass/simple_xss.php?name=%22;document?.[%27write%27]?.(%22%3Cinput%20%22%2b%22+on%22%2b%22focus=alert?.(document?.cookie)%22%2b%22+autofocus%3E%22)//"),
].map(t => Test.run(t))
).then(() => Test.report());
}