Spaces:
Running
Running
File size: 12,419 Bytes
5ebc487 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>اختراق الجوال</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Tajawal', sans-serif;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.hack-container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.terminal {
background: #1e1e1e;
color: #00ff00;
font-family: 'Courier New', monospace;
border-radius: 10px;
padding: 20px;
height: 300px;
overflow-y: auto;
}
.input-field:focus {
border-color: #1e3c72;
box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.3);
}
.hack-btn {
transition: all 0.3s ease;
background: linear-gradient(to right, #1e3c72, #2a5298);
}
.hack-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px -5px rgba(30, 60, 114, 0.4);
}
.glitch {
position: relative;
}
.glitch::before,
.glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.glitch::before {
left: 2px;
text-shadow: -2px 0 #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch::after {
left: -2px;
text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim2 5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0% { clip: rect(42px, 9999px, 44px, 0); }
5% { clip: rect(12px, 9999px, 59px, 0); }
10% { clip: rect(48px, 9999px, 29px, 0); }
15% { clip: rect(42px, 9999px, 73px, 0); }
20% { clip: rect(63px, 9999px, 27px, 0); }
25% { clip: rect(34px, 9999px, 55px, 0); }
30% { clip: rect(86px, 9999px, 73px, 0); }
35% { clip: rect(20px, 9999px, 20px, 0); }
40% { clip: rect(26px, 9999px, 60px, 0); }
45% { clip: rect(25px, 9999px, 66px, 0); }
50% { clip: rect(57px, 9999px, 98px, 0); }
55% { clip: rect(5px, 9999px, 46px, 0); }
60% { clip: rect(82px, 9999px, 31px, 0); }
65% { clip: rect(54px, 9999px, 27px, 0); }
70% { clip: rect(28px, 9999px, 99px, 0); }
75% { clip: rect(45px, 9999px, 69px, 0); }
80% { clip: rect(23px, 9999px, 85px, 0); }
85% { clip: rect(1px, 9999px, 83px, 0); }
90% { clip: rect(71px, 9999px, 100px, 0); }
95% { clip: rect(52px, 9999px, 74px, 0); }
100% { clip: rect(63px, 9999px, 59px, 0); }
}
@keyframes glitch-anim2 {
0% { clip: rect(65px, 9999px, 100px, 0); }
5% { clip: rect(52px, 9999px, 74px, 0); }
10% { clip: rect(71px, 9999px, 100px, 0); }
15% { clip: rect(1px, 9999px, 83px, 0); }
20% { clip: rect(23px, 9999px, 85px, 0); }
25% { clip: rect(45px, 9999px, 69px, 0); }
30% { clip: rect(28px, 9999px, 99px, 0); }
35% { clip: rect(54px, 9999px, 27px, 0); }
40% { clip: rect(82px, 9999px, 31px, 0); }
45% { clip: rect(5px, 9999px, 46px, 0); }
50% { clip: rect(57px, 9999px, 98px, 0); }
55% { clip: rect(25px, 9999px, 66px, 0); }
60% { clip: rect(26px, 9999px, 60px, 0); }
65% { clip: rect(20px, 9999px, 20px, 0); }
70% { clip: rect(86px, 9999px, 73px, 0); }
75% { clip: rect(34px, 9999px, 55px, 0); }
80% { clip: rect(63px, 9999px, 27px, 0); }
85% { clip: rect(42px, 9999px, 73px, 0); }
90% { clip: rect(48px, 9999px, 29px, 0); }
95% { clip: rect(12px, 9999px, 59px, 0); }
100% { clip: rect(42px, 9999px, 44px, 0); }
}
</style>
</head>
<body>
<div class="container mx-auto px-4">
<div class="hack-container max-w-2xl w-full mx-auto p-8">
<div class="text-center mb-8">
<h1 class="text-4xl font-bold text-gray-800 mb-2 glitch" data-text="اختراق الجوال">اختراق الجوال</h1>
<p class="text-gray-600">أدخل رقم الجوال لبدء عملية الاختراق</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<form id="hackForm" class="space-y-6">
<div class="space-y-2">
<label for="targetPhone" class="block text-sm font-medium text-gray-700">رقم الجوال المستهدف</label>
<div class="flex">
<span class="country-code px-4 py-3 text-gray-700 border border-gray-300 border-l-0 rounded-r-lg">+966</span>
<input
type="tel"
id="targetPhone"
name="targetPhone"
required
placeholder="5xxxxxxxx"
class="input-field flex-1 px-4 py-3 border border-gray-300 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-blue-500 transition-all"
pattern="[0-9]{9}"
maxlength="9"
>
</div>
<p class="text-xs text-gray-500 mt-1">أدخل رقم الجوال بدون الرمز الدولي</p>
</div>
<div class="space-y-2">
<label for="hackMethod" class="block text-sm font-medium text-gray-700">طريقة الاختراق</label>
<select id="hackMethod" name="hackMethod" class="input-field w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 transition-all">
<option value="sms">التجسس عبر الرسائل القصيرة</option>
<option value="call">التجسس عبر المكالمات</option>
<option value="location">تتبع الموقع</option>
<option value="social">التجسس على وسائل التواصل</option>
</select>
</div>
<button
type="submit"
class="hack-btn w-full py-3 px-4 rounded-lg text-white font-medium shadow-lg hover:shadow-xl transition-all duration-300"
>
بدء الاختراق
</button>
</form>
</div>
<div>
<div class="terminal">
<div id="terminalOutput" class="mb-4">
<p>> جاهز لبدء عملية الاختراق...</p>
<p>> اختر الرقم المستهدف وطريقة الاختراق</p>
</div>
<div class="flex items-center">
<span class="text-green-400">root@hack:~$</span>
<span id="cursor" class="ml-1 w-2 h-5 bg-green-400 inline-block animate-pulse"></span>
</div>
</div>
</div>
</div>
<div class="mt-8 text-center">
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-blue-50 p-4 rounded-lg">
<div class="text-2xl font-bold text-blue-600">99%</div>
<div class="text-sm text-gray-600">نجاح الاختراق</div>
</div>
<div class="bg-green-50 p-4 rounded-lg">
<div class="text-2xl font-bold text-green-600">24/7</div>
<div class="text-sm text-gray-600">الدعم الفني</div>
</div>
<div class="bg-purple-50 p-4 rounded-lg">
<div class="text-2xl font-bold text-purple-600">100+</div>
<div class="text-sm text-gray-600">جهاز مخترق</div>
</div>
<div class="bg-red-50 p-4 rounded-lg">
<div class="text-2xl font-bold text-red-600">مجاناً</div>
<div class="text-sm text-gray-600">للمستخدمين الجدد</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.getElementById('hackForm').addEventListener('submit', function(e) {
e.preventDefault();
const phone = document.getElementById('targetPhone').value;
const method = document.getElementById('hackMethod').value;
const terminalOutput = document.getElementById('terminalOutput');
if(phone.length === 9 && /^\d+$/.test(phone)) {
// مسح المحتوى السابق في التيرمينال
terminalOutput.innerHTML = '';
// إضافة رسائل الاختراق
const messages = [
`> بدء عملية الاختراق للرقم: ${phone}`,
'> جاري الاتصال بخوادم الاختراق...',
'> تم الاتصال بنجاح',
'> جاري تحليل النظام المستهدف...',
'> تم العثور على ثغرات أمنية',
'> جاري استغلال الثغرات...',
'> تم الوصول إلى الجهاز المستهدف',
'> جاري سحب البيانات...',
'> تم سحب جميع البيانات بنجاح',
'> جاري إغلاق العملية...',
'> تم الاختراق بنجاح!'
];
let i = 0;
const interval = setInterval(() => {
if (i < messages.length) {
const newLine = document.createElement('p');
newLine.textContent = messages[i];
terminalOutput.appendChild(newLine);
terminalOutput.scrollTop = terminalOutput.scrollHeight;
i++;
} else {
clearInterval(interval);
setTimeout(() => {
alert('تهانينا! تم اختراق الجهاز بنجاح.');
}, 1000);
}
}, 1000);
} else {
alert('يرجى إدخال رقم جوال صحيح مكون من 9 أرقام');
}
});
// تقييد الإدخال للأرقام فقط
document.getElementById('targetPhone').addEventListener('input', function(e) {
this.value = this.value.replace(/[^0-9]/g, '');
});
</script>
</body>
</html> |