TheWebCHanger

Supreme// @author TheSupremeHackerr

  1. // ==UserScript==
  2. // @name TheWebCHanger
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.2
  5. // @description Supreme// @author TheSupremeHackerr
  6. // @match *://*/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. function cambiarColores() {
  14. const colores = ['#ff0000', '#00ff00', '#0000ff', '#ffff00', '#ff00ff', '#ff8800', '#00ffff', '#ff0080', '#8000ff', '#80ff00', '#ffcc00', '#ff66cc', '#66ffcc'];
  15. const elementos = document.querySelectorAll('*');
  16.  
  17. setInterval(() => {
  18. elementos.forEach(elemento => {
  19. const colorAleatorio = colores[Math.floor(Math.random() * colores.length)];
  20. elemento.style.backgroundColor = colorAleatorio;
  21. elemento.style.color = '#ffffff';
  22. });
  23. }, 100);
  24. }
  25.  
  26. function discoConsole() {
  27. let colors = ['#ff0000', '#00ff00', '#0000ff', '#ffff00', '#ff00ff', '#ff8800', '#00ffff', '#ff0080', '#8000ff', '#80ff00', '#ffcc00', '#ff66cc', '#66ffcc'];
  28. let colorIndex = 0;
  29.  
  30. setInterval(() => {
  31. console.log('%c HACKEADO!!! AJAJAJJAJAJAJAJAJAJAJAJAJAJA', `color: ${colors[colorIndex]}; font-size: 25px; font-weight: bold; background:black; padding:5px;`);
  32. colorIndex = (colorIndex + 1) % colors.length;
  33. }, 50);
  34. }
  35.  
  36. function generarBSOD() {
  37. let bsod = document.getElementById('fake-bsod');
  38. if (!bsod) {
  39. bsod = document.createElement('div');
  40. bsod.id = 'fake-bsod';
  41. bsod.style.position = 'fixed';
  42. bsod.style.top = '0';
  43. bsod.style.left = '0';
  44. bsod.style.width = '100vw';
  45. bsod.style.height = '100vh';
  46. bsod.style.backgroundImage = "url('https://upload.wikimedia.org/wikipedia/commons/f/f7/Windows_10_%26_11_BSOD_%28new_version%29.png')";
  47. bsod.style.backgroundSize = 'cover';
  48. bsod.style.backgroundPosition = 'center';
  49. bsod.style.zIndex = '9999';
  50. document.body.appendChild(bsod);
  51. const audioFiles = [
  52. 'https://www.myinstants.com/media/sounds/windows-error.mp3',
  53. 'https://www.myinstants.com/media/sounds/screaming-goat.mp3',
  54. 'https://www.myinstants.com/media/sounds/vine-boom.mp3'
  55. ];
  56. const randomAudio = new Audio(audioFiles[Math.floor(Math.random() * audioFiles.length)]);
  57. randomAudio.loop = false;
  58. randomAudio.play();
  59. }
  60. const bsodInterval = setInterval(() => {
  61. const colorAleatorio = ['#ff0000', '#00ff00', '#0000ff', '#ffff00', '#ff00ff', '#ff8800', '#00ffff', '#ff0080', '#8000ff', '#80ff00', '#ffcc00', '#ff66cc', '#66ffcc'][Math.floor(Math.random() * 13)];
  62. bsod.style.backgroundColor = colorAleatorio;
  63. }, 100);
  64.  
  65. setTimeout(() => {
  66. clearInterval(bsodInterval);
  67. if (bsod) {
  68. bsod.remove();
  69. }
  70. }, 3000);
  71. }
  72.  
  73. function generarIframes() {
  74. setInterval(() => {
  75. for (let i = 0; i < 5; i++) {
  76. const iframe = document.createElement('iframe');
  77. iframe.style.position = 'absolute';
  78. iframe.style.width = '120px';
  79. iframe.style.height = '60px';
  80. iframe.style.left = `${Math.random() * window.innerWidth}px`;
  81. iframe.style.top = `${Math.random() * window.innerHeight}px`;
  82. iframe.style.border = '3px solid red';
  83. iframe.style.background = 'black';
  84. iframe.style.color = 'white';
  85. iframe.style.zIndex = '9999';
  86. iframe.srcdoc = '<body style="background:black; color:red; font-size:14px; font-weight:bold; text-align:center;">🔥HACKEADO🔥<br>JAJAJAJAJA</body>';
  87. document.body.appendChild(iframe);
  88. setTimeout(() => {
  89. iframe.remove();
  90. }, 4000);
  91. }
  92. }, 150);
  93. }
  94.  
  95. // Ejecutar todas las funciones
  96. discoConsole();
  97. cambiarColores();
  98. generarIframes();
  99. setInterval(generarBSOD, 6000);
  100. })();