Advertisement
Guest User

CP

a guest
May 3rd, 2016
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. Private Sub bw_DoWork(sender As Object, e As DoWorkEventArgs)
  2. errorcode = 0
  3. If Globals.CheckForInternetConnection() = False Then
  4. errorcode = -1
  5. Return
  6. End If
  7. Dim check1 As String
  8. Dim check2 As String
  9. 'check1 = Globals.getHTMLPOST(XORDecryption("312871", "59464C4742091E1D5A42481D455D575A505D48535B545E465F464B195E41561D5458505754406744425F1E5E5750585D525A5D545A1D415A48"), "email=" & TextBox1.Text)
  10. check1 = Globals.getHTMLPOST("http://player-haters.com/loader/logincheck.php", "email=" & TextBox1.Text)
  11. Select Case check1
  12. Case 0
  13. errorcode = 1
  14. TextBox2.Text = ""
  15. Return
  16. Case 1
  17. Case Else
  18. errorcode = 2
  19. Return
  20. End Select
  21. If TextBox1.Text = "" Or TextBox2.Text = "" Then
  22. errorcode = 3
  23. Else
  24. 'check2 = Globals.getHTMLPOST(XORDecryption("F9DF2D", "51303242377C166B24473D684D2B295F2528402525512B335730351C2B345E6B2A5D25225C361941372A162C315B2025512125596A365134"), "email=" & TextBox1.Text)
  25. check2 = Globals.getHTMLPOST("http://player-haters.com/loader/hwidcheck.php", "email=" & TextBox1.Text)
  26. If check2 = "0" Then
  27. 'Globals.getHTMLPOST(XORDecryption("2E3429", "2D4740424A086A1C5647401C315C5B5F585C3C52575156472B47471C5640221C585D585620416B414A5E6A5B435B5D512D56575917422D43"), "email=" & TextBox1.Text & "&hwid=" & Globals.hwid)
  28. Globals.getHTMLPOST("http://player-haters.com/loader/hwidcheck.php", "email=" & TextBox1.Text & "&hwid=" & Globals.hwid)
  29. errorcode = 4
  30. Return
  31. ElseIf check2 = Globals.hwid Then
  32. Else
  33. errorcode = 5
  34. Return
  35. End If
  36. Dim hash As String
  37. 'hash = Md5FromString(Globals.getHTMLPOST(XORDecryption("4CB2AA", "2B364631320E6C6D5034381A372D5D2C205A3A2351222E412D36416F2E46246D5E2E205026306D3232586C2A53222A582A31466F315C337D5F24355C2C260F2624401C31532D35"), "email=" & TextBox1.Text & "&hwid=" & check2) & TextBox2.Text)
  38. hash = Md5FromString(Globals.getHTMLPOST("http://player-haters.com/loader/hacklist.php?method=get_salt", "email=" & TextBox1.Text & "&hwid=" & check2) & TextBox2.Text)
  39. 'loaderid = Globals.getHTMLPOST(XORDecryption("B68165", "5E4C45464678191753434C6C42575E5B542C4F5952555A37584C42185A3051175D595426534A6E45462E19545E57512744674353526C465041"), "email=" & TextBox1.Text & "&pass=" & hash)
  40. loaderid = Globals.getHTMLPOST("http://player-haters.com/loader/loader_reg.php", "email=" & TextBox1.Text & "&pass=" & hash)
  41. 'ids = Globals.getHTMLPOST(XORDecryption("EFB77A", "2E364347327F696D5542386B322D585A202B3F2354542E30283644192E37216D5B582021233068443229692E5850282B252A52542A6B362A47"), "email=" & TextBox1.Text & "&pass=" & hash & "&id=" & loaderid)
  42. ids = Globals.getHTMLPOST("http://player-haters.com/loader/logincheck.php", "email=" & TextBox1.Text & "&pass=" & hash & "&id=" & loaderid)
  43. Select Case loaderid
  44. Case 0
  45. errorcode = 6
  46. Return
  47. End Select
  48. Select Case ids
  49. Case -1
  50. errorcode = 7
  51. Return
  52. Case 0
  53. errorcode = 8
  54. Return
  55. Case -2
  56. errorcode = 9
  57. Return
  58. Case Else
  59. Threading.Thread.Sleep(100)
  60. End Select
  61. End If
  62. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement