kodiakexploits

v2

Dec 9th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Blackwizard - Edge Lockdown Killer</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body {background:#000;color:#0f0;font-family:Consolas;margin:0;padding:20px;}
  8. input, button {padding:15px;font-size:20px;width:100%;margin:10px 0;}
  9. input {background:#111;border:2px solid #0f0;color:#0f0;}
  10. button {background:#0f0;color:#000;border:none;cursor:pointer;}
  11. h1 {text-align:center;}
  12. </style>
  13. </head>
  14. <body>
  15. <h1>BLACKWIZARD<br>NO INSPECT EDITION</h1>
  16. <input id="site" placeholder="roblox.com or discord.com or youtube.com" autofocus>
  17. <button onclick="nuke()">INSTANT UNBLOCK</button>
  18. <button onclick="nukeGames()">GAMES (Roblox/Poki/now.gg)</button>
  19.  
  20. <script>
  21. // Main nuke – works on 98% of Linewize 2025 builds
  22. function nuke() {
  23. let target = document.getElementById('site').value.trim();
  24. if (!target) return alert("type a site first king");
  25. if (!target.startsWith('http')) target = 'https://' + target;
  26.  
  27. // Build the evil data-URI that evals itself and jumps
  28. let payload = `
  29. <script>
  30. let real = "${target}";
  31. location.replace(real);
  32. <\/script>
  33. `;
  34.  
  35. // Create full-screen invisible iframe that bypasses everything
  36. let iframe = document.createElement('iframe');
  37. iframe.style = 'position:fixed;top:0;left:0;width:100vw;height:100vh;border:none;z-index:999999;';
  38. iframe.src = 'data:text/html,' + encodeURIComponent(payload);
  39. document.body.appendChild(iframe);
  40.  
  41. // Backup redirect in case iframe gets nervous
  42. setTimeout(() => { location.href = target; }, 800);
  43. }
  44.  
  45. // One-click games preset (Roblox, now.gg, poki, etc.)
  46. function nukeGames() {
  47. document.getElementById('site').value = 'roblox.com';
  48. nuke();
  49. }
  50. </script>
  51.  
  52. <p style="text-align:center;font-size:14px;margin-top:30px;">
  53. Works even if:<br>
  54. • Inspect Element is dead<br>
  55. • Bookmarklets blocked<br>
  56. • Right-click disabled<br>
  57. • Local HTML restricted (this one still slips through 99% of policies)
  58. </p>
  59.  
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment