Results 1 to 2 of 2

Thread: Create Flight rising account [Python]

  1. #1
    Josh's Avatar
    Joined
    Dec 2011
    Posts
    415
    Userbars
    2
    Thanks
    25
    Thanked
    378/143
    DL/UL
    82/6
    Mentioned
    120 times
    Time Online
    17d 9h 48m
    Avg. Time Online
    5m

    Create Flight rising account [Python]

    Yes, this does still work, even with registration closed.

    Code:
    import urllib2, urllib
    
    username="meeps"
    passw="somepassword"
    firstname="Josh"
    lastname="Josh"
    email="[email protected]"
    month="1" #Birthday month
    day="2" #Birthday day
    year="1980" #birthday year
    
    data=[('reg_username',username),('reg_pass1',passw),('reg_pass2',passw),('reg_fname',firstname),('reg_lname',lastname),('reg_email',email),('m',month),('d',day),('y',year),('accept','yes')]    
    data=urllib.urlencode(data)
    path='http://flightrising.com/includes/ol/register.php'    
    req=urllib2.Request(path, data)
    req.add_header("Content-type", "application/x-www-form-urlencoded")
    page=urllib2.urlopen(req).read()
    print page
    To use this:
    Windows -
    (you need an account to see links)

    1) Install that.
    2) Save code as something.py
    3) Right click file and go to "Edit with IDLE"
    4) Change the values
    5) Run > Run module
    Last edited by Josh; 02-05-2014 at 02:23 AM.

  2. The Following 2 Users Say Thank You to Josh For This Useful Post:

    mt5o5bd (02-05-2014),Wenis (02-05-2014)

  3. #2
    Josh's Avatar
    Joined
    Dec 2011
    Posts
    415
    Userbars
    2
    Thanks
    25
    Thanked
    378/143
    DL/UL
    82/6
    Mentioned
    120 times
    Time Online
    17d 9h 48m
    Avg. Time Online
    5m
    Update:
    This is now patched.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •