Meta Description" name="description" />
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<style>
body { background: #000; margin: 0; overflow: hidden; font-family: 'Courier New', monospace; }
canvas { display: block; position: absolute; top: 0; left: 0; z-index: 1; }
.content {
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
z-index: 10; color: #0f0; text-align: center; width: 90%;
}
#ascii-name {
font-size: 1.4vw; line-height: 1;
text-shadow: 0 0 20px #0f0; font-weight: 900;
animation: glitch 0.1s infinite alternate;
}
#message {
font-size: 4vw; font-weight: bold; display: none;
text-shadow: 0 0 30px #0f0; color: #0f0; direction: rtl;
}
#overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,1); z-index: 100;
display: flex; justify-content: center; align-items: center;
color: #0f0; font-size: 25px; cursor: pointer; border: 1px solid #0f0;
}
@keyframes glitch { 100% { transform: skew(3deg); opacity: 0.8; } }
</style>
</head>
<body>
<div id="overlay">[ CLICK TO EXECUTE PAYLOAD ]</div>
<canvas id="matrix"></canvas>
<div class="content">
<pre id="ascii-name">
██████╗ █████╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗
██╔══██╗ ██╔══██╗ ██╔══██╗ ██║ ██╔╝ ██╔══██╗ ╚════██║
██║ ██║ ███████║ ██████╔╝ █████╔╝ ██████╔╝ ██╔╝
██║ ██║ ██╔══██║ ██╔══██╗ ██╔═██╗ ██╔═══╝ ██╔╝
██████╔╝ ██║ ██║ ██║ ██║ ██║ ██╗ ██║ ██║
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
</pre>
<div id="message"></div>
</div>
<script>
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
const overlay = document.getElementById('overlay');
const ascii = document.getElementById('ascii-name');
const msgDiv = document.getElementById('message');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const codes = "0x5F61726B5F7037 ERROR_404_HACKED_BY_D_ARK_P7 101010101";
const charArray = codes.split("");
const fontSize = 18;
const columns = canvas.width / fontSize;
const drops = Array(Math.floor(columns)).fill(1);
function draw() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#0f0";
ctx.font = fontSize + "px monospace";
for (let i = 0; i < drops.length; i++) {
const text = charArray[Math.floor(Math.random() * charArray.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) drops[i] = 0;
drops[i]++;
}
}
function playHorrorSound() {
const audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// صوت طنين مرعب ومستمر
const mainOsc = audioCtx.createOscillator();
const mainGain = audioCtx.createGain();
mainOsc.type = 'sawtooth';
mainOsc.frequency.setValueAtTime(30, audioCtx.currentTime);
mainGain.gain.setValueAtTime(0.02, audioCtx.currentTime);
mainOsc.connect(mainGain); mainGain.connect(audioCtx.destination);
mainOsc.start();
// انتقال تلقائي بعد 5 ثوانٍ مع صوت تشويش
setTimeout(() => {
ascii.style.display = 'none';
msgDiv.style.display = 'block';
// صوت صرخة إلكترونية قصيرة عند الانتقال
const noise = audioCtx.createOscillator();
noise.type = 'square';
noise.frequency.setValueAtTime(800, audioCtx.currentTime);
noise.frequency.exponentialRampToValueAtTime(40, audioCtx.currentTime + 1);
const nGain = audioCtx.createGain();
nGain.gain.setValueAtTime(0.05, audioCtx.currentTime);
noise.connect(nGain); nGain.connect(audioCtx.destination);
noise.start(); noise.stop(audioCtx.currentTime + 1);
typeWriter("حسين مرحبا.. دورك قرب للاختراق من d_ark_p7");
}, 5000);
}
function typeWriter(text) {
let i = 0;
function typing() {
if (i < text.length) {
msgDiv.innerHTML += text.charAt(i);
i++;
setTimeout(typing, 120);
}
}
typing();
}
overlay.addEventListener('click', () => {
overlay.style.display = 'none';
setInterval(draw, 35);
playHorrorSound();
});
</script>
</body>
</html>
1
1
6KB
6KB
112.0ms
192.0ms
113.0ms