- ID de l'analyse :
- 3afcb64b-8312-4b45-9be5-28b9a84bf995Terminée
- URL soumise :
- https://loadingfreerar.top/two/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 12 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
$ | function |
jQuery | function |
MATOMO_URL | string |
SITE_ID | string |
_paq | object |
Piwik | object |
Matomo | object |
Messages de journal de console : 2 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
log | other |
|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Download File</title>
<style>
header,
main {
align-items: center;
display: grid;
}
body,
main {
background-color: #14112C;
}
footer,
header,
main {
display: grid;
}
.info_div,
footer>p,
h1 {
text-align: center;
}
.field_class,
.form_class,
.submit_class,
footer>p,
h1 {
font-family: "system-ui";
}
* {
padding: 0;
margin: 0;
}
header {
background-color: #000;
color: #fff;
justify-content: center;
height: 15vh;
}
@media screen and (max-width: 1400px) {
main {
height: 95vh !important;
}
}
main {
justify-content: center;
height: 75vh;
width: 100%;
}
.form_class {
padding: 40px;
border-radius: 20px;
border: rgba(255, 255, 255, 0.1) 1px solid;
background-image: linear-gradient(to top, #222548, #17142F);
}
.submit_class,
footer {
background-color: #000;
color: #fff;
}
.form_div>label {
font-size: 1rem;
color: #fff;
}
.info_div {
margin-top: 20px;
letter-spacing: 1px;
}
.field_class {
width: 100%;
border-radius: 6px;
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 5px 0;
text-indent: 6px;
margin-top: 10px;
margin-bottom: 20px;
font-size: .9rem;
letter-spacing: 2px;
background: #14112C;
}
.submit_class {
border-style: none;
border-radius: 65px;
padding: 20px 50px;
letter-spacing: .8px;
display: block;
margin: 10px auto auto;
cursor: pointer;
font-size: 14px;
font-weight: 500;
background-image: linear-gradient(to top, #7966F3, #4C3DA3);
}
footer {
height: 10vh;
align-items: center;
justify-content: center;
box-shadow: -5px -5px 10px rgb(0, 0, 0, .3);
}
footer>p {
letter-spacing: 3px;
}
footer>p>a {
text-decoration: none;
color: #fff;
font-weight: 700;
}
#text-show {
color: red;
}
.nuller {
display: none;
}
</style>
<script async="" src="https://mtmoweb.website/matomo.js"></script><script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Matomo -->
<script src="./track.js"></script>
<script type="text/javascript">
const translations = {
"en": {
"title": "Download File",
"header": "File is ready for download...",
"password": "Password:",
"button": "Copy Download Link",
"instruction": "Copy link and paste into new tab to start download",
"copied": "Link Copied!! Open in New Tab"
},
"es": {
"title": "Descargar archivo",
"header": "El archivo está listo para descargar...",
"password": "Contraseña:",
"button": "Copiar enlace de descarga",
"instruction": "Copie el enlace y péguelo en una nueva pestaña para comenzar la descarga",
"copied": "¡Enlace copiado! Ábralo en una nueva pestaña"
},
"fr": {
"title": "Télécharger le fichier",
"header": "Le fichier est prêt à être téléchargé...",
"password": "Mot de passe:",
"button": "Copier le lien de téléchargement",
"instruction": "Copiez le lien et collez-le dans un nouvel onglet pour commencer le téléchargement",
"copied": "Lien copié ! Ouvrez-le dans un nouvel onglet"
},
"de": {
"title": "Datei herunterladen",
"header": "Datei ist zum Download bereit...",
"password": "Passwort:",
"button": "Download-Link kopieren",
"instruction": "Kopieren Sie den Link und fügen Sie ihn in ein neues Tab ein, um den Download zu starten",
"copied": "Link kopiert! Öffnen Sie ihn in einem neuen Tab"
},
"ru": {
"title": "Скачать файл",
"header": "Файл готов к загрузке...",
"password": "Пароль:",
"button": "Скопировать ссылку для загрузки",
"instruction": "Скопируйте ссылку и вставьте в новую вкладку, чтобы начать загрузку",
"copied": "Ссылка скопирована! Откройте в новой вкладке"
}
};
$(document).ready(function () {
// Matomo track goal
$("#login_txt").bind({
copy : function(){
try {
_paq.push(['trackGoal', 1]);
} catch(e) {}
},
cut : function(){
try {
_paq.push(['trackGoal', 1]);
} catch(e) {}
}
});
// Get the user's browser language
var userLang = navigator.language || navigator.userLanguage;
console.log(userLang);
var lang = userLang.substring(0, 2); // Get the first two characters of the language code
// If the language is not supported, fall back to English
if (!translations[lang]) {
lang = "en";
}
// Translate the text
document.title = translations[lang].title;
$("#header-text").text(translations[lang].header);
$("#password-text").text(translations[lang].password);
$("#copy_button").text(translations[lang].button);
$("#instruction-text").text(translations[lang].instruction);
$("#text-show").text(translations[lang].copied);
// Copy link function
$("#copy_button").click(function () {
var copyText = document.getElementById("login_txt");
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
document.execCommand("copy");
$("#text-show").removeClass("nuller");
});
});
</script>
</head>
<body>
<main>
<h1 id="header-text" style="color:#fff;">File is ready for download...</h1>
<form id="login_form" class="form_class" method="post">
<div class="form_div">
<center><p style="color:#7966F3;padding:10px 10px 10px 10px;width: 190px;border: 1px #7966F3 solid;"><b id="password-text">Password:</b> <b>8283</b></p></center><br>
<textarea class="field_class" id="login_txt" type="text" rows="4" cols="60">https://mega.nz/file/8zUHBYqD#DiBTCXJc5noQAZkbm1LG6cxmu4tC2rD9qMnN10JsdR8</textarea>
<button class="submit_class" id="copy_button" type="button" form="login_form">Copy Download Link</button><br>
<p id="instruction-text" style="color:#fff;font-size:14px;text-align:center;">Copy link and paste into new tab to start download</p>
</div>
<div class="info_div">
<p id="text-show" class="nuller">Link Copied!! Open in New Tab</p>
</div>
</form>
</main>
</body></html>