- ID de l'analyse :
- 1bd339d4-d79f-4f4e-88c1-2e17f4841e2bTerminée
- URL soumise :
- https://gradient.dropgalaxy.top/connect/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 5 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 |
__cfQR | object |
__cfRLUnblockHandlers | boolean |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
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.0">
<title>CloudFlare - Verify that you are a human</title>
<link rel="shortcut icon" href="https://www.cloudflare.com/favicon.ico" type="image/x-icon">
<style>
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: Arial, Helvetica, sans-serif;
color: #000;
}
.main {
width: 600px;
height: 400px;
}
.logo {
width: 190px;
margin-bottom: 20px;
}
.logo img {
width: 100%;
height: auto;
object-fit: contain;
object-position: 0%;
}
.title {
font-weight: bold;
font-size: 16px;
color: inherit;
}
.subtitle {
font-size: 11px;
color: inherit;
opacity: 0.7;
}
.button {
height: 52px;
border: none;
padding: 4px 10px;
border-radius: 6px;
display: flex;
gap: 8px;
justify-content: center;
align-items: center;
cursor: pointer;
background-color: #fb923c;
font-size: 14px;
color: #fff;
transition: opacity 0.1s ease;
}
button:hover {
opacity: 0.8;
}
button:active {
opacity: 0.6;
}
.spinner {
display: none;
border: 3px solid rgba(0, 0, 0, 0.05);
width: 20px;
height: 20px;
border-radius: 100%;
border-left-color: #fff;
animation: spin 1s infinite linear;
}
.capcha-wrapper {
width: 200px;
margin-bottom: 32px;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(22, 22, 22);
color: #fff;
}
.logo img {
content:url("https://pnghq.com/wp-content/uploads/cloudflare-logo-png-image-1536x508.png");
}
}
@media (max-width: 599px) {
.main {
width: 300px;
height: 400px;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -25%);
}
}
</style>
</head>
<body>
<div class="main">
<div class="logo">
<img src="https://www.serviops.ca/wp-content/uploads/2015/11/Cloudflare_logo.svg_.png" alt="CloudFlare - Verify that you are a human" loading="lazy">
</div>
<p class="title">Please complete the following CAPTCHA security challenge to continue!</p>
<div class="capcha-wrapper">
<form method="post" id="capcha-form" data-delay="">
<button type="submit" class="button">
<div class="spinner"></div>
<span id="button-text">
I am not a bot </span>
</button>
</form>
</div>
<p class="title">Why do I see CAPTCHA challenges?</p>
<p class="subtitle">Due to current firewall security rules, you need to complete the CAPTCHA security challenge to continue access!</p>
<hr>
<p class="subtitle">Event ID: 83a099510ee18c46 • Your IP: 2a09:bac5:3129:e64::16f:90</p>
</div>
<script type="text/javascript">
const capchaForm = document.getElementById("capcha-form");
capchaForm.addEventListener("submit", (e) => {
if (capchaForm.hasAttribute("data-delay")) e.preventDefault();
const spinner = document.querySelector(".spinner");
const button = document.querySelector(".button");
const buttonText = document.querySelector("#button-text");
spinner.style.display = "block";
button.disabled = true;
buttonText.innerHTML = "Verifying your identity..."
setTimeout(() => {
capchaForm.removeAttribute("data-delay")
capchaForm.submit()
}, 1000);
})
</script>
</body></html>