Share Pastebin
Guest
Public paste!

ProBot KeyLogger Fix

By: a guest | Mar 11th, 2010 | Syntax: AutoIt | Size: 2.90 KB | Hits: 655 | Expires: Never
Copy text to clipboard
  1. #Region ;**** Directives For AutoIt3Wrapper ****
  2. #AutoIt3Wrapper_Icon=backup\Mask-Toy.ico
  3. #AutoIt3Wrapper_Res_Description=Warmonger
  4. #AutoIt3Wrapper_Res_Fileversion=0.0.1.0
  5. #AutoIt3Wrapper_Res_LegalCopyright=Copyright 2010 Warmonger
  6. #AutoIt3Wrapper_Res_Language=1033
  7. #EndRegion ;**** Directives For AutoIt3Wrapper ****
  8. #cs ----------------------------------------------------------------------------
  9.  
  10.  AutoIt Version: 3.3.4.0
  11.  Author:         Warmonger
  12.  
  13.  Script Function:
  14.         ProBot KeyLogger Fix
  15.  
  16. #ce ----------------------------------------------------------------------------
  17.  
  18. ; Script Start - Add your code below here
  19.  
  20. #include <ButtonConstants.au3>
  21. #include <GUIConstantsEx.au3>
  22. #include <StaticConstants.au3>
  23. #include <WindowsConstants.au3>
  24. #Region
  25. Opt("GUIOnEventMode", 1)
  26. $Form1 = GUICreate("ProBot KeyLogger Fix", 250, 66, 192, 124, BitOR($WS_SYSMENU,$WS_CAPTION,$WS_POPUP,$WS_POPUPWINDOW,$WS_BORDER,$WS_CLIPSIBLINGS))
  27. $Button1 = GUICtrlCreateButton("XP", 8, 32, 75, 25, $WS_GROUP)
  28. $Button2 = GUICtrlCreateButton("Vista", 88, 32, 75, 25, $WS_GROUP)
  29. $Button3 = GUICtrlCreateButton("7", 168, 32, 75, 25)
  30. $Label1 = GUICtrlCreateLabel("Select Your Operating System", 56, 8, 145, 17)
  31. GUICtrlSetOnEvent($Button1, "_Button1")
  32. GUICtrlSetOnEvent($Button2, "_Button2")
  33. GUICtrlSetOnEvent($Button3, "_Button3")
  34. GUISetOnEvent($GUI_EVENT_CLOSE, "_Close")
  35. GUISetState(@SW_SHOW)
  36. #EndRegion
  37.  
  38. While 1 = 1
  39.         Sleep(1000)
  40. WEnd
  41.  
  42. Func _Button1()
  43.         Do
  44.         If ProcessExists('rundll.exe') Then
  45.                 ProcessClose('rundll.exe')
  46.         EndIf
  47.         Until ProcessExists('rundll.exe') = False
  48.                 FileDelete(@AppDataDir & '\rundll.exe')
  49.                 FileDelete(@AppDataDir & '\drivers.log')
  50.                 MsgBox(48, "Please Wait...", 'Please Wait Atleast 5 Minutes For Fix To Let nt.dll Unload. You Will Be Prompted When Complete.', 5)
  51.                 Sleep(300000)
  52.                 FileDelete(@AppDataDir & '\nt.dll')
  53.                 MsgBox(48, 'Complete', 'Your PC Has Been Sucessfully Cleaned.')
  54. EndFunc
  55.  
  56. Func _Button2()
  57.         Do
  58.         If ProcessExists('rundll.exe') Then
  59.                 ProcessClose('rundll.exe')
  60.         EndIf
  61.         Until ProcessExists('rundll.exe') = False
  62.                 FileDelete(@AppDataDir & '\rundll.exe')
  63.                 FileDelete(@AppDataDir & '\drivers.log')
  64.                 MsgBox(48, "Please Wait...", 'Please Wait Atleast 5 Minutes For Fix To Let nt.dll Unload. You Will Be Prompted When Complete.', 5)
  65.                 Sleep(300000)
  66.                 FileDelete(@AppDataDir & '\nt.dll')
  67.                 MsgBox(48, 'Complete', 'Your PC Has Been Sucessfully Cleaned.')
  68. EndFunc
  69.        
  70. Func _Button3()
  71.         Do
  72.         If ProcessExists('rundll.exe') Then
  73.                 ProcessClose('rundll.exe')
  74.         EndIf
  75.         Until ProcessExists('rundll.exe') = False
  76.                 FileDelete(@AppDataDir & '\rundll.exe')
  77.                 FileDelete(@AppDataDir & '\drivers.log')
  78.                 MsgBox(48, "Please Wait...", 'Please Wait Atleast 5 Minutes For Fix To Let nt.dll Unload. You Will Be Prompted When Complete.', 5)
  79.                 Sleep(300000)
  80.                 FileDelete(@AppDataDir & '\nt.dll')
  81.                 MsgBox(48, 'Complete', 'Your PC Has Been Sucessfully Cleaned.')
  82. EndFunc
  83.  
  84. Func _Close()
  85.         Exit
  86. EndFunc