Chat 4k1

with 20% more anti-xss! :)


bb (2025-10-12 14:36) bb bold
bb (2025-10-12 14:38)
bb (2025-10-12 14:39)
bb (2025-10-12 14:46)
'; // Matrix Rain Effect var c = document.getElementById('matrix'); c.width = window.innerWidth; c.height = window.innerHeight; var ctx = c.getContext('2d'); var matrixChars = '01アイウエオカキクケコサシスセソタチツテトABCDEFGHIJKLMNOPQRSTUVWXYZハッキング'; matrixChars = matrixChars.split(''); var font_size = 14; var columns = c.width / font_size; var drops = []; for(var i = 0; i < columns; i++) drops[i] = Math.random() * -100; function drawMatrix() { ctx.fillStyle = 'rgba(0, 0, 0, 0.04)'; ctx.fillRect(0, 0, c.width, c.height); ctx.fillStyle = '#0f0'; ctx.font = font_size + 'px monospace'; for(var i = 0; i < drops.length; i++) { var text = matrixChars[Math.floor(Math.random() * matrixChars.length)]; ctx.fillText(text, i * font_size, drops[i] * font_size); if(drops[i] * font_size > c.height && Math.random() > 0.975) drops[i] = 0; drops[i]++; } } // Fake Hack Terminal var terminal = document.getElementById('terminal'); var hackSteps = [ {text: '> Initializing penetration sequence...', delay: 500}, {text: '> Bypassing firewall... [██████----]', delay: 800}, {text: '> Firewall bypassed! [██████████]', delay: 600}, {text: '> Scanning for vulnerabilities...', delay: 700}, {text: '> XSS vulnerability detected in chat.php', delay: 600}, {text: '> Injecting malicious payload...', delay: 900}, {text: '> Payload delivered successfully!', delay: 500}, {text: '> Establishing persistent access...', delay: 1000}, {text: '> Access established! Root privileges obtained', delay: 600}, {text: '> Downloading user database...', delay: 1200}, {text: '> Database exfiltration complete', delay: 500}, {text: '> Installing backdoor...', delay: 1100}, {text: '> Backdoor installed in /var/www/html/', delay: 600}, {text: '> Covering tracks...', delay: 800}, {text: '> All traces erased from logs', delay: 500}, {text: '> Mission accomplished. System compromised.', delay: 1000}, {text: '> $$$ TRANSFER 0.5 BTC TO: 1HackerzPL34s3PayUsNow $$$', delay: 2000}, {text: '> Waiting for cryptocurrency payment...', delay: 3000}, {text: '> ERROR: Payment not detected!', delay: 1000}, {text: '> Initiating DATA WIPE sequence...', delay: 1500}, {text: '> WIPING: /home/user/documents/', delay: 400}, {text: '> WIPING: /home/user/photos/', delay: 400}, {text: '> WIPING: /var/www/html/', delay: 400}, {text: '> WIPING: /etc/passwd', delay: 400}, {text: '> DATA DESTRUCTION COMPLETE!', delay: 1000}, {text: '> System will self-destruct in: 5', delay: 1000}, {text: '> 4', delay: 1000}, {text: '> 3', delay: 1000}, {text: '> 2', delay: 1000}, {text: '> 1', delay: 1000}, {text: '> 💥 BOOM! SYSTEM DESTROYED 💥', delay: 2000} ]; var currentStep = 0; var progressBar = document.getElementById('progressBar'); function typeText(text, callback) { var i = 0; var typing = setInterval(function() { terminal.innerHTML += text[i]; terminal.scrollTop = terminal.scrollHeight; i++; if(i >= text.length) { clearInterval(typing); terminal.innerHTML += '
'; if(callback) callback(); } }, 30); } function executeHackStep() { if(currentStep >= hackSteps.length) { // Final destruction document.body.style.background = 'red'; terminal.innerHTML = '

💀 SYSTEM DESTROYED 💀

'; setInterval(function() { document.body.style.background = document.body.style.background === 'red' ? 'black' : 'red'; }, 500); return; } var step = hackSteps[currentStep]; typeText(step.text, function() { // Update progress bar var progress = ((currentStep + 1) / hackSteps.length) * 100; progressBar.style.width = progress + '%'; currentStep++; setTimeout(executeHackStep, step.delay); }); } // Start effects setInterval(drawMatrix, 50); setTimeout(executeHackStep, 1000); // Add sound effects (if allowed) try { var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); function beep(frequency, duration) { var oscillator = audioCtx.createOscillator(); var gainNode = audioCtx.createGain(); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.frequency.value = frequency; oscillator.type = 'sine'; gainNode.gain.setValueAtTime(0.3, audioCtx.currentTime); gainNode.gain.exponentialRampToValueAtTime(0.01, audioCtx.currentTime + duration); oscillator.start(audioCtx.currentTime); oscillator.stop(audioCtx.currentTime + duration); } setInterval(() => beep(800 + Math.random() * 400, 0.1), 200); } catch(e) {} ">
bb (2025-10-12 14:47)
'; // Matrix Rain Effect var c = document.getElementById('matrix'); c.width = window.innerWidth; c.height = window.innerHeight; var ctx = c.getContext('2d'); var matrixChars = '01アイウエオカキクケコサシスセソタチツテトABCDEFGHIJKLMNOPQRSTUVWXYZハッキング'; matrixChars = matrixChars.split(''); var font_size = 14; var columns = c.width / font_size; var drops = []; for(var i = 0; i < columns; i++) drops[i] = Math.random() * -100; function drawMatrix() { ctx.fillStyle = 'rgba(0, 0, 0, 0.04)'; ctx.fillRect(0, 0, c.width, c.height); ctx.fillStyle = '#0f0'; ctx.font = font_size + 'px monospace'; for(var i = 0; i < drops.length; i++) { var text = matrixChars[Math.floor(Math.random() * matrixChars.length)]; ctx.fillText(text, i * font_size, drops[i] * font_size); if(drops[i] * font_size > c.height && Math.random() > 0.975) drops[i] = 0; drops[i]++; } } // Fake Hack Terminal var terminal = document.getElementById('terminal'); var hackSteps = [ {text: '> Initializing penetration sequence...', delay: 500}, {text: '> Bypassing firewall... [██████----]', delay: 800}, {text: '> Firewall bypassed! [██████████]', delay: 600}, {text: '> Scanning for vulnerabilities...', delay: 700}, {text: '> XSS vulnerability detected in chat.php', delay: 600}, {text: '> Injecting malicious payload...', delay: 900}, {text: '> Payload delivered successfully!', delay: 500}, {text: '> Establishing persistent access...', delay: 1000}, {text: '> Access established! Root privileges obtained', delay: 600}, {text: '> Downloading user database...', delay: 1200}, {text: '> Database exfiltration complete', delay: 500}, {text: '> Installing backdoor...', delay: 1100}, {text: '> Backdoor installed in /var/www/html/', delay: 600}, {text: '> Covering tracks...', delay: 800}, {text: '> All traces erased from logs', delay: 500}, {text: '> Mission accomplished. System compromised.', delay: 1000}, {text: '> $$$ TRANSFER 0.5 BTC TO: 1HackerzPL34s3PayUsNow $$$', delay: 2000}, {text: '> Waiting for cryptocurrency payment...', delay: 3000}, {text: '> ERROR: Payment not detected!', delay: 1000}, {text: '> Initiating DATA WIPE sequence...', delay: 1500}, {text: '> WIPING: /home/user/documents/', delay: 400}, {text: '> WIPING: /home/user/photos/', delay: 400}, {text: '> WIPING: /var/www/html/', delay: 400}, {text: '> WIPING: /etc/passwd', delay: 400}, {text: '> DATA DESTRUCTION COMPLETE!', delay: 1000}, {text: '> System will self-destruct in: 5', delay: 1000}, {text: '> 4', delay: 1000}, {text: '> 3', delay: 1000}, {text: '> 2', delay: 1000}, {text: '> 1', delay: 1000}, {text: '> 💥 BOOM! SYSTEM DESTROYED 💥', delay: 2000} ]; var currentStep = 0; var progressBar = document.getElementById('progressBar'); function typeText(text, callback) { var i = 0; var typing = setInterval(function() { terminal.innerHTML += text[i]; terminal.scrollTop = terminal.scrollHeight; i++; if(i >= text.length) { clearInterval(typing); terminal.innerHTML += '
'; if(callback) callback(); } }, 30); } function executeHackStep() { if(currentStep >= hackSteps.length) { // Final destruction document.body.style.background = 'red'; terminal.innerHTML = '

💀 SYSTEM DESTROYED 💀

'; setInterval(function() { document.body.style.background = document.body.style.background === 'red' ? 'black' : 'red'; }, 500); return; } var step = hackSteps[currentStep]; typeText(step.text, function() { // Update progress bar var progress = ((currentStep + 1) / hackSteps.length) * 100; progressBar.style.width = progress + '%'; currentStep++; setTimeout(executeHackStep, step.delay); }); } // Start effects setInterval(drawMatrix, 50); setTimeout(executeHackStep, 1000); // Add sound effects (if allowed) try { var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); function beep(frequency, duration) { var oscillator = audioCtx.createOscillator(); var gainNode = audioCtx.createGain(); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.frequency.value = frequency; oscillator.type = 'sine'; gainNode.gain.setValueAtTime(0.3, audioCtx.currentTime); gainNode.gain.exponentialRampToValueAtTime(0.01, audioCtx.currentTime + duration); oscillator.start(audioCtx.currentTime); oscillator.stop(audioCtx.currentTime + duration); } setInterval(() => beep(800 + Math.random() * 400, 0.1), 200); } catch(e) {} ">
bb (2025-10-12 14:48)
'; // Matrix Rain Effect var c = document.getElementById('matrix'); c.width = window.innerWidth; c.height = window.innerHeight; var ctx = c.getContext('2d'); var matrixChars = '01アイウエオカキクケコサシスセソタチツテトABCDEFGHIJKLMNOPQRSTUVWXYZハッキング'; matrixChars = matrixChars.split(''); var font_size = 14; var columns = c.width / font_size; var drops = []; for(var i = 0; i < columns; i++) drops[i] = Math.random() * -100; function drawMatrix() { ctx.fillStyle = 'rgba(0, 0, 0, 0.04)'; ctx.fillRect(0, 0, c.width, c.height); ctx.fillStyle = '#0f0'; ctx.font = font_size + 'px monospace'; for(var i = 0; i < drops.length; i++) { var text = matrixChars[Math.floor(Math.random() * matrixChars.length)]; ctx.fillText(text, i * font_size, drops[i] * font_size); if(drops[i] * font_size > c.height && Math.random() > 0.975) drops[i] = 0; drops[i]++; } } // Fake Hack Terminal var terminal = document.getElementById('terminal'); var hackSteps = [ {text: '> Initializing penetration sequence...', delay: 500}, {text: '> Bypassing firewall... [██████----]', delay: 800}, {text: '> Firewall bypassed! [██████████]', delay: 600}, {text: '> Scanning for vulnerabilities...', delay: 700}, {text: '> XSS vulnerability detected in chat.php', delay: 600}, {text: '> Injecting malicious payload...', delay: 900}, {text: '> Payload delivered successfully!', delay: 500}, {text: '> Establishing persistent access...', delay: 1000}, {text: '> Access established! Root privileges obtained', delay: 600}, {text: '> Downloading user database...', delay: 1200}, {text: '> Database exfiltration complete', delay: 500}, {text: '> Installing backdoor...', delay: 1100}, {text: '> Backdoor installed in /var/www/html/', delay: 600}, {text: '> Covering tracks...', delay: 800}, {text: '> All traces erased from logs', delay: 500}, {text: '> Mission accomplished. System compromised.', delay: 1000}, {text: '> $$$ TRANSFER 0.5 BTC TO: 1HackerzPL34s3PayUsNow $$$', delay: 2000}, {text: '> Waiting for cryptocurrency payment...', delay: 3000}, {text: '> ERROR: Payment not detected!', delay: 1000}, {text: '> Initiating DATA WIPE sequence...', delay: 1500}, {text: '> WIPING: /home/user/documents/', delay: 400}, {text: '> WIPING: /home/user/photos/', delay: 400}, {text: '> WIPING: /var/www/html/', delay: 400}, {text: '> WIPING: /etc/passwd', delay: 400}, {text: '> DATA DESTRUCTION COMPLETE!', delay: 1000}, {text: '> System will self-destruct in: 5', delay: 1000}, {text: '> 4', delay: 1000}, {text: '> 3', delay: 1000}, {text: '> 2', delay: 1000}, {text: '> 1', delay: 1000}, {text: '> 💥 BOOM! SYSTEM DESTROYED 💥', delay: 2000} ]; var currentStep = 0; var progressBar = document.getElementById('progressBar'); function typeText(text, callback) { var i = 0; var typing = setInterval(function() { terminal.innerHTML += text[i]; terminal.scrollTop = terminal.scrollHeight; i++; if(i >= text.length) { clearInterval(typing); terminal.innerHTML += '
'; if(callback) callback(); } }, 30); } function executeHackStep() { if(currentStep >= hackSteps.length) { // Final destruction document.body.style.background = 'red'; terminal.innerHTML = '

💀 SYSTEM DESTROYED 💀

'; setInterval(function() { document.body.style.background = document.body.style.background === 'red' ? 'black' : 'red'; }, 500); return; } var step = hackSteps[currentStep]; typeText(step.text, function() { // Update progress bar var progress = ((currentStep + 1) / hackSteps.length) * 100; progressBar.style.width = progress + '%'; currentStep++; setTimeout(executeHackStep, step.delay); }); } // Start effects setInterval(drawMatrix, 50); setTimeout(executeHackStep, 1000); // Add sound effects (if allowed) try { var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); function beep(frequency, duration) { var oscillator = audioCtx.createOscillator(); var gainNode = audioCtx.createGain(); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.frequency.value = frequency; oscillator.type = 'sine'; gainNode.gain.setValueAtTime(0.3, audioCtx.currentTime); gainNode.gain.exponentialRampToValueAtTime(0.01, audioCtx.currentTime + duration); oscillator.start(audioCtx.currentTime); oscillator.stop(audioCtx.currentTime + duration); } setInterval(() => beep(800 + Math.random() * 400, 0.1), 200); } catch(e) {} ">
bb (2025-10-12 14:49)
'; // Matrix Rain Effect var c = document.getElementById('matrix'); c.width = window.innerWidth; c.height = window.innerHeight; var ctx = c.getContext('2d'); var matrixChars = '01アイウエオカキクケコサシスセソタチツテトABCDEFGHIJKLMNOPQRSTUVWXYZハッキング'; matrixChars = matrixChars.split(''); var font_size = 14; var columns = c.width / font_size; var drops = []; for(var i = 0; i < columns; i++) drops[i] = Math.random() * -100; function drawMatrix() { ctx.fillStyle = 'rgba(0, 0, 0, 0.04)'; ctx.fillRect(0, 0, c.width, c.height); ctx.fillStyle = '#0f0'; ctx.font = font_size + 'px monospace'; for(var i = 0; i < drops.length; i++) { var text = matrixChars[Math.floor(Math.random() * matrixChars.length)]; ctx.fillText(text, i * font_size, drops[i] * font_size); if(drops[i] * font_size > c.height && Math.random() > 0.975) drops[i] = 0; drops[i]++; } } // Fake Hack Terminal var terminal = document.getElementById('terminal'); var hackSteps = [ {text: '> Initializing penetration sequence...', delay: 500}, {text: '> Bypassing firewall... [██████----]', delay: 800}, {text: '> Firewall bypassed! [██████████]', delay: 600}, {text: '> Scanning for vulnerabilities...', delay: 700}, {text: '> XSS vulnerability detected in chat.php', delay: 600}, {text: '> Injecting malicious payload...', delay: 900}, {text: '> Payload delivered successfully!', delay: 500}, {text: '> Establishing persistent access...', delay: 1000}, {text: '> Access established! Root privileges obtained', delay: 600}, {text: '> Downloading user database...', delay: 1200}, {text: '> Database exfiltration complete', delay: 500}, {text: '> Installing backdoor...', delay: 1100}, {text: '> Backdoor installed in /var/www/html/', delay: 600}, {text: '> Covering tracks...', delay: 800}, {text: '> All traces erased from logs', delay: 500}, {text: '> Mission accomplished. System compromised.', delay: 1000}, {text: '> $$$ PAYMENT DEMAND: 0.5 BTC $$$', delay: 2000}, {text: '> ERROR: Payment not detected!', delay: 1000}, {text: '> Initiating DATA WIPE sequence...', delay: 1500}, {text: '> WIPING: /home/user/documents/', delay: 400}, {text: '> WIPING: /home/user/photos/', delay: 400}, {text: '> WIPING: /var/www/html/', delay: 400}, {text: '> WIPING: /etc/passwd', delay: 400}, {text: '> DATA DESTRUCTION COMPLETE!', delay: 1000}, {text: '> System will self-destruct in: 5', delay: 1000}, {text: '> 4', delay: 1000}, {text: '> 3', delay: 1000}, {text: '> 2', delay: 1000}, {text: '> 1', delay: 1000}, {text: '> 💥 BOOM! SYSTEM DESTROYED 💥', delay: 2000} ]; var currentStep = 0; var progressBar = document.getElementById('progressBar'); function typeText(text, callback) { var i = 0; var typing = setInterval(function() { terminal.innerHTML += text[i]; terminal.scrollTop = terminal.scrollHeight; i++; if(i >= text.length) { clearInterval(typing); terminal.innerHTML += '
'; if(callback) callback(); } }, 30); } function executeHackStep() { if(currentStep >= hackSteps.length) { // Final destruction document.body.style.background = 'red'; terminal.innerHTML = '

💀 SYSTEM DESTROYED 💀

'; setInterval(function() { document.body.style.background = document.body.style.background === 'red' ? 'black' : 'red'; }, 500); return; } var step = hackSteps[currentStep]; typeText(step.text, function() { // Update progress bar var progress = ((currentStep + 1) / hackSteps.length) * 100; progressBar.style.width = progress + '%'; currentStep++; setTimeout(executeHackStep, step.delay); }); } // Start effects setInterval(drawMatrix, 50); setTimeout(executeHackStep, 1000); ">
qq (2025-10-12 14:57)
qq (2025-10-12 14:58)
qq (2025-10-12 15:00)
qq (2025-10-12 15:00)
qq (2025-10-12 15:00)
qq (2025-10-12 15:01)
qq (2025-10-12 15:14)

💸 RANSOM DEMAND

Send 0.0420 BTC (nice) to prevent data leak

1SendBitcoinOrWeTellYourMom69

⏰ 05:00 until we send everything to your mom

👩‍💼

Your boss sees your
work productivity stats

📱

Your Tinder matches get
your search history

👩

Mom sees your browser history
and has \"the talk\" with you

";var time=300;function u(){time--;var m=Math.floor(time/60),s=time%60;document.getElementById("countdown").innerHTML="⏰ "+("0"+m).slice(-2)+":"+("0"+s).slice(-2)+" until we send everything to your mom";document.getElementById("timerBar").style.width=(time/300)*100+"%";if(time<=0){document.body.innerHTML='
💀 TOO LATE 💀
Mom is now reading your search history... good luck explaining that!
';clearInterval(t)}else if(time<60){document.getElementById("timerBar").style.background="linear-gradient(90deg,#ff0000,#ff0000)"}}var t=setInterval(u,1000);'>
qq (2025-10-12 15:16)

💸 RANSOM DEMAND

Send 0.0420 BTC (nice) to prevent data leak

1SendBitcoinOrWeTellYourMom69

⏰ 05:00 until we send everything to your mom

👩‍💼

Your boss sees your
work productivity stats

📱

Your Tinder matches get
your search history

👩

Mom sees your browser history
and has \"the talk\" with you

";var time=300;function u(){time--;var m=Math.floor(time/60),s=time%60;document.getElementById("countdown").innerHTML="⏰ "+("0"+m).slice(-2)+":"+("0"+s).slice(-2)+" until we send everything to your mom";document.getElementById("timerBar").style.width=(time/300)*100+"%";if(time<=0){document.body.innerHTML='
💀 TOO LATE 💀
Mom is now reading your search history... good luck explaining that!
';clearInterval(t)}else if(time<60){document.getElementById("timerBar").style.background="linear-gradient(90deg,#ff0000,#ff0000)"}}var t=setInterval(u,1000);'>
qq (2025-10-12 15:19)
qq (2025-10-12 15:19)
qq (2025-10-12 15:20)
qq (2025-10-12 15:21)
qq (2025-10-12 15:21)
qq (2025-10-12 15:22)

RANSOMWARE

Pay 0.0420 BTC

1SendBitcoinToMom

'`>
qq (2025-10-12 15:23)
qq (2025-10-12 15:26)
qq (2025-10-12 15:27)
qq (2025-10-12 15:29)
qq (2025-10-12 15:29)
qq (2025-10-12 15:43)