mirror of
https://github.com/zarfadev/MobaXterm-Keygen.git
synced 2026-08-28 22:00:51 +00:00
41 lines
1.6 KiB
JavaScript
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();
|