- ID de l'analyse :
- 8afa5295-5246-41fa-966a-37549223c112Terminée
- URL soumise :
- https://topgunrealestateagent.com/Z3JlZy5vZ3VjaGlAcmVpbWFnaW5lZHBhcmtpbmcuY29t
- 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 |
_0x5861 | function |
_0x44cf | function |
_0x5cf4 | function |
prefillEmail | function |
_0x13e3 | function |
extractedEmail | string |
Function | function |
Messages de journal de console : 22 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
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
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>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>