Advertisement
As9Lor

Untitled

Jul 1st, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. Imports System.IO
  2. Imports System.Net
  3. Imports System.Text
  4. Imports System.Threading
  5. Module Turbo
  6. ' _ __ ____ __ _
  7. ' / | / )/ \/ / / / / / / / | / / / /
  8. ' / /| | / / / / / / / / / / / / /| | / /_/ /
  9. ' / _ |/ /_/ / /_/ / /_/ / /___/ /___/ _ |/ /
  10. '/_/ |_/_____/_____/\____/_____/_____/_/ |_/_/ /_/
  11. '
  12. Dim Email As String
  13. Dim Password As String
  14. Dim Target As String
  15. Dim count As Integer
  16. Sub Main()
  17. Dim a As WebClient = New WebClient
  18. Dim q As String = a.DownloadString("https://pastebin.com/raw/C1BAwvmK")
  19. Console.Title = "NT"
  20. Console.ForegroundColor = ConsoleColor.DarkRed
  21. Console.WriteLine(q)
  22. Console.WriteLine()
  23. Console.ForegroundColor = ConsoleColor.Gray
  24. Console.WriteLine("- Enter Email")
  25. Email = Console.ReadLine
  26. Console.WriteLine("- Enter Target")
  27. Target = Console.ReadLine
  28. Console.WriteLine("- Enter Password")
  29. Password = Console.ReadLine
  30. Console.WriteLine("- Status")
  31.  
  32. Dim s As Thread = New Thread(AddressOf wait)
  33. s.Start()
  34. End Sub
  35. Public Function wait()
  36. create()
  37. count += 1
  38. Console.Title = "NT [ " & count & " ]"
  39. Dim ppp As Thread = New Thread(AddressOf wait)
  40. ppp.Start()
  41. End Function
  42. Function create()
  43. On Error Resume Next
  44. Dim quiien As WebClient = New WebClient
  45. Dim ajsjs As String = quiien.DownloadString("http://www.instagram.com/" + Target)
  46. If ajsjs.Contains("Sorry, this page isn't available.") Then
  47. Dim obj2 As Object
  48. Dim container As CookieContainer
  49. Dim s As String = String.Concat(New String() {"email=", Email, "&password=", Password, "&username=", Target, "&first_name=By Abdullah"})
  50. Dim bytes As Byte() = New UTF8Encoding().GetBytes(s)
  51. Dim request As HttpWebRequest = DirectCast(WebRequest.Create("https://www.instagram.com/accounts/web_create_ajax/"), HttpWebRequest)
  52. request.Headers.Add("X-CSRFToken", "fXBVtChihbe85esQXWCwBl2e0jdL")
  53. request.ContentType = "application/x-www-form-urlencoded"
  54. request.Headers.Add("X-Instagram-AJAX", "1")
  55. request.Headers.Add("X-Requested-With", "XMLHttpRequest")
  56. request.Headers.Add("Cookie", "mid=WUu3OAAEAAHpFJhNoBD3_UpEAMVC; js_datr=JbBhWCXpCLhu_i0Hy89QBFIG; csrftoken=fXBVtChihbe85esQXWCwBl2e0jdL; ig_pr=1.25; ig_vw=1525; ig_dru_dismiss=1485866364904; ig_aib_du=1487800189834; js_reg_ext_ref=http%3A%2F%2Fhelp.instagram.com; js_reg_fb_ref=https%3A%2F%2Fwww.facebook.com%2Fhelp%2Finstagram%2Fcontact%2F1652567838289083; js_reg_fb_gate=https%3A%2F%2Fwww.facebook.com%2Fhelp%2Finstagram%2F292478487812558; wd=1525x724; dpr=1.25")
  57. request.Method = "POST"
  58. request.KeepAlive = True
  59. request.CookieContainer = container
  60. request.Referer = "https://www.instagram.com/"
  61. request.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729)"
  62. request.ContentLength = bytes.Length
  63. Dim requestStream As Stream = request.GetRequestStream
  64. requestStream.Write(bytes, 0, bytes.Length)
  65. requestStream.Close()
  66. Dim response As HttpWebResponse = DirectCast(request.GetResponse, HttpWebResponse)
  67. Dim reader As New StreamReader(response.GetResponseStream)
  68. If reader.ReadToEnd.Contains("""account_created"": true") Then
  69. Console.ForegroundColor = ConsoleColor.DarkGreen
  70. Console.WriteLine("Success !")
  71. Else
  72. End If
  73. End If
  74. End Function
  75.  
  76. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement