Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. @echo off
  2. title Exploit file cleanup - MFSiNC
  3.  
  4. if exist "hl2.exe" (
  5. cd "garrysmod"
  6. )
  7.  
  8. if not exist steam.inf (
  9. echo.
  10. echo You're running this from the wrong place!
  11. echo.
  12. echo Put this file in your garrysmod folder, either server or client, and re-run it.
  13. echo.
  14. echo.
  15. pause
  16. exit
  17. )
  18.  
  19. echo.
  20. echo This will remove the files used in the exploit/virus.
  21. echo.
  22. echo To see exactly what will be removed, open this batch file with Notepad.
  23. echo.
  24. pause
  25.  
  26. echo Cleaning..
  27.  
  28. taskkill /F /IM hl2.exe > nul
  29. taskkill /F /IM srcds.exe > nul
  30.  
  31.  
  32.  
  33. ::Files, clientside
  34. if exist "engine_win32.dll" (
  35. attrib -h "engine_win32.dll"
  36. del /F /Q "engine_win32.dll"
  37. )
  38.  
  39. if exist "materials\cooltexture.vtf" (
  40. del /F /Q "materials\cooltexture.vtf"
  41. )
  42.  
  43. if exist "bin\game_shader_generic_engine.dll" (
  44. attrib -h "bin\game_shader_generic_engine.dll"
  45. del /F /Q "bin\game_shader_generic_engine.dll"
  46. )
  47.  
  48. if exist "download\engine_win32.dll" (
  49. attrib -h "download\engine_win32.dll"
  50. del /F /Q "download\engine_win32.dll"
  51. )
  52.  
  53. ::Dir
  54. if exist "download\cfg" (
  55. RD /S /Q "download\cfg"
  56. )
  57.  
  58.  
  59.  
  60. ::Files, serverside
  61. if exist "lua\autorun\server\default.lua" (
  62. attrib -h "lua\autorun\server\default.lua"
  63. del /F /Q "lua\autorun\server\default.lua"
  64. )
  65.  
  66.  
  67.  
  68. echo.
  69. echo Done.
  70. echo.
  71. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement