Files
MobaXterm-Keygen/js/alert.js
T
Miguel Villegas 5d3a2fc0a6 Initial commit
2025-11-19 13:00:37 -05:00

41 lines
1.6 KiB
JavaScript

var estiloConsola = `
font-size: 16px;
font-family: "Courier New", monospace;
color: red;
white-space: pre;
`;
var estiloZarfala = `
color: red;
white-space: pre;
`;
var mensajeZarfala = `
@@@@@@@@ @@@@@@ @@@@@@@ @@@@@@@@ @@@@@@ @@@ @@@@@@
@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@ @@@@@@@@
@@! @@! @@@ @@! @@@ @@! @@! @@@ @@! @@! @@@
!@! !@! @!@ !@! @!@ !@! !@! @!@ !@! !@! @!@
@!! @!@!@!@! @!@!!@! @!!!:! @!@!@!@! @!! @!@!@!@!
!!! !!!@!!!! !!@!@! !!!!!: !!!@!!!! !!! !!!@!!!!
!!: !!: !!! !!: :!! !!: !!: !!! !!: !!: !!!
:!: :!: !:! :!: !:! :!: :!: !:! :!: :!: !:!
:: :::: :: ::: :: ::: :: :: ::: :: :::: :: :::
: :: : : : : : : : : : : : : : :: : : : : :
`;
function mostrarMensaje() {
console.clear();
console.log('%c' + mensajeZarfala, estiloZarfala);
console.log("%cSTOP!", "color:red;font-size:xx-large;font-weight:bold;"),
console.log(`%cThis is a browser feature intended for developers. Do not enter or paste code which you don't understand. It may allow attackers to steal your information or impersonate you. See https://en.wikipedia.org/wiki/Self-XSS for more details`, "font-size:large;"),
localStorage.do_NOT_share_jwt || localStorage.setItem("do_NOT_share_jwt", "do NOT share the JWT value. someone could steal your account");
}
var intermitente = true;
setInterval(function () {
mostrarMensaje();
intermitente = !intermitente;
}, 1000);
mostrarMensaje();