Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: [Python] NeoAccount Class (include AMF requests)

  1. #11
    txtsd's Avatar
    Joined
    Dec 2012
    Posts
    642
    Userbars
    7
    Thanks
    538
    Thanked
    327/146
    DL/UL
    60/2
    Mentioned
    91 times
    Time Online
    31d 8h 56m
    Avg. Time Online
    10m
    Quote Originally Posted by Infamous Joe View Post
    Nah, that's like asking me if I know the URL to auction an item from my inventory for example.
    Oh, my bad I figured it was something you've dealt with before.

  2. #12

    Joined
    Jun 2012
    Posts
    131
    Userbars
    1
    Thanks
    21
    Thanked
    50/22
    DL/UL
    37/0
    Mentioned
    22 times
    Time Online
    4d 17h 8m
    Avg. Time Online
    1m
    Quote Originally Posted by txtsd View Post
    Oh, my bad I figured it was something you've dealt with before.
    From the HTML source you can tell the keys you are looking for are 'dob_m', 'dob_d' and 'dob_y'. You should be able to login to a birthday locked account using this:

    Code:
    self.post('/login.phtml', {'username': 'user',
                               'password': 'pass',
                               'destination': "/index.phtml",
                               'dob_m': '01',
                               'dob_y': '1990',
                               'dob_d': '02'}, readable = False)
    In the example above the username is user, the password is pass and the birthday is January 2nd, 1990.


  3. The Following User Says Thank You to ikakk For This Useful Post:

    txtsd (04-03-2014)

  4. #13

    Joined
    Oct 2012
    Posts
    197
    Userbars
    2
    Thanks
    11
    Thanked
    87/50
    DL/UL
    18/0
    Mentioned
    30 times
    Time Online
    5d 9h 44m
    Avg. Time Online
    1m
    I really recommend just using Fiddler or Charles and look at the raw requests and responses and learning how they work, they're actually not that hard. Once you understand it gets much easier.
    If my post helped please send $2,000,000 via PayPal!

  5. The Following User Says Thank You to Celestial For This Useful Post:

    txtsd (04-03-2014)

  6. #14
    Zachafer's Avatar
    Joined
    Dec 2011
    Posts
    1,235
    Userbars
    11
    Thanks
    769
    Thanked
    1,466/678
    DL/UL
    98/0
    Mentioned
    512 times
    Time Online
    24d 13h 9m
    Avg. Time Online
    8m
    Quote Originally Posted by Celestial View Post
    I really recommend just using Fiddler or Charles and look at the raw requests and responses and learning how they work, they're actually not that hard. Once you understand it gets much easier.
    Live HTTP Headers add-on for FF can help you a great deal as well.

  7. The Following User Says Thank You to Zachafer For This Useful Post:

    txtsd (04-03-2014)

  8. #15

    Joined
    Oct 2012
    Posts
    197
    Userbars
    2
    Thanks
    11
    Thanked
    87/50
    DL/UL
    18/0
    Mentioned
    30 times
    Time Online
    5d 9h 44m
    Avg. Time Online
    1m
    Quote Originally Posted by Zachafer View Post
    Live HTTP Headers add-on for FF can help you a great deal as well.
    Yup, though if you get into something really complex you may want to view all the data and possibly even the hex values to properly emulate it.

    Maybe not so much for neopets, but I've had some cases in which I've had to take extreme measures.
    If my post helped please send $2,000,000 via PayPal!

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

    txtsd (04-03-2014),Zachafer (01-14-2013)

  10. #16

    Joined
    Jul 2015
    Posts
    1
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    DL/UL
    9/0
    Mentioned
    Never
    Time Online
    5h 16m
    Avg. Time Online
    N/A
    This python script that was written in 2012 and it used Firefox 15.0.1 as the user-agent when nowadays we are at v40.
    I wonder how safe it is since the majority of neopets scripts (or at least the ones I've seen) seem to still use this script untouched, wouldn't it be easy for TNT to be extra careful when people keep using this two years old version of Firefox? I think it may aid them into discovering who's cheating.
    Anyway, is there some obscure reason for this choice that I'm unaware of, or it's just as I said that it was the last version at the moment the script was written and nobody cared to update it?

  11. #17
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,722
    Userbars
    166
    Thanks
    5,906
    Thanked
    33,077/6,608
    DL/UL
    23/36
    Mentioned
    3,867 times
    Time Online
    563d 5h 25m
    Avg. Time Online
    3h 13m
    Quote Originally Posted by Auroz View Post
    This python script that was written in 2012 and it used Firefox 15.0.1 as the user-agent when nowadays we are at v40.
    I wonder how safe it is since the majority of neopets scripts (or at least the ones I've seen) seem to still use this script untouched, wouldn't it be easy for TNT to be extra careful when people keep using this two years old version of Firefox? I think it may aid them into discovering who's cheating.
    Anyway, is there some obscure reason for this choice that I'm unaware of, or it's just as I said that it was the last version at the moment the script was written and nobody cared to update it?
    Most of the time it's as easy as updating the user agent in the code. but yeah you should always have updated user agents being sent from botting.


    Sent from my iPhone using Tapatalk
    (you need an account to see links)
    (you need an account to see links)(you need an account to see links)

    ------------------------
    [02/24/2013] Stealth CORE is made into the first standalone Neopets auto-player.
    ------------------------


Posting Permissions

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