Advertisement
Guest User

Untitled

a guest
Apr 16th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.59 KB | None | 0 0
  1. def register(self):
  2.     r = self.session.get('https://legacy.hackerexperience.com')
  3.     print(r) #Had to print shit, for no errors
  4.     #Here your 2captcha thing, please set g-recaptcha-response
  5.     username = "randominputplease"
  6.     password = "randominputplease"
  7.     email = "randominputplease" + "%40mailinator.com"
  8.     recaptcharesponse = "ur response"
  9.     payload = "username=" + username + "&password=" + password + "&email=" + email +"&g-recaptcha-response="+ recaptcharesponse + "&terms=1"
  10.     self.session.post('https://legacy.hackerexperience.com/register', data=payload)
  11. register("self")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement