- ID da verificação
- 8afa5295-5246-41fa-966a-37549223c112Concluído
- URL enviado:
- https://topgunrealestateagent.com/Z3JlZy5vZ3VjaGlAcmVpbWFnaW5lZHBhcmtpbmcuY29t
- Relatório concluído:
Ligações · 0 encontradas
As ligações de saída identificadas na página
Variáveis JavaScript · 12 encontradas
Variáveis JavaScript globais carregadas no objeto janela de uma página são variáveis declaradas fora das funções e acessíveis de qualquer parte do código dentro do âmbito atual
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
_0x5861 | function |
_0x44cf | function |
_0x5cf4 | function |
prefillEmail | function |
_0x13e3 | function |
extractedEmail | string |
Function | function |
Mensagens de registo da consola · 22 encontradas
Mensagens registadas na consola web
Tipo | Categoria | Registo |
---|---|---|
error | network |
|
log | other |
|
log | other |
|
warning | other |
|
log | other |
|
log | other |
|
log | other |
|
error | network |
|
debug | javascript |
|
log | other |
|
log | other |
|
log | other |
|
error | network |
|
error | other |
|
log | other |
|
error | network |
|
error | other |
|
log | other |
|
log | other |
|
log | other |
|
log | other |
|
log | javascript |
|
HTML
O corpo HTML em bruto da página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image CAPTCHA</title>
<style>
/* Centering the container for target and options */
body, html {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
font-family: Arial, sans-serif;
}
/* Container to hold target image and options */
.captcha-container {
text-align: center;
}
/* Styling for the target image */
#target-image {
display: block;
margin: 0 auto;
transform: rotate(15deg); /* For the rotated effect */
max-width: 100px;
}
/* Flex container for image options */
#image-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
.captcha-option {
/*border: 2px solid black;*/
padding: 5px;
border-radius: 0px;
width: 100px;
height: auto;
cursor: pointer;
transition: border 0.3s;
}
.captcha-option:hover {
/*border: 2px solid #007BFF;*/
}
/* Skeleton placeholders */
.skeleton {
width: 100px;
height: 100px;
background-color: #e0e0e0;
border-radius: 8px;
margin: 5px;
animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
0% {
background-color: #e0e0e0;
}
50% {
background-color: #f0f0f0;
}
100% {
background-color: #e0e0e0;
}
}
/* Styling for larger screens (768px and up) */
@media (min-width: 768px) {
#image-options {
display: flex;
flex-direction: row;
justify-content: center;
gap: 15px;
}
}
/* Styling for smaller screens (below 768px) */
@media (max-width: 767px) {
#image-options {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
#target-image {
margin: 20px auto;
}
.captcha-option {
width: 80px;
height: auto;
}
}
/* Hide honeypot field */
.honeypot {
display: none;
}
/* Loading spinner */
#loading {
display: none;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="captcha-container">
<img id="target-image" src="" alt="">
<p>If you are human, click on the similar image</p>
<div id="image-options">
<!-- Skeleton placeholders for loading -->
<div class="skeleton"></div>
<div class="skeleton"></div>
<div class="skeleton"></div>
<div class="skeleton"></div>
<div class="skeleton"></div>
<div class="skeleton"></div>
</div>
<div id="loading">
<p></p>
</div>
<!-- Hidden honeypot field -->
<input type="text" name="honeypot" class="honeypot" value="">
</div>
<script src="captcha.js"></script> <!-- Link to the external JavaScript file -->
</body></html>