Results 1 to 4 of 4

Thread: Who can help me out with login source?

  1. #1
    VitaminX's Avatar
    Joined
    Sep 2013
    Posts
    741
    Userbars
    5
    Thanks
    416
    Thanked
    632/340
    DL/UL
    36/0
    Mentioned
    166 times
    Time Online
    93d 23h 10m
    Avg. Time Online
    35m

    Question Who can help me out with login source?

    Hello all, again :'D

    What I need is, some info from the Neo login portal (neopets.com/login).
    Preferred would be a person with 2 accounts (1 with a working password, and 1 with a working password + b-day verification). Since I have 0 accounts atm, I can't check myself.

    What I want to know if there is a string of text in the source, that IS on the successfully logged in page as well as in the you need to enter a birthday page.
    This string of code can NOT be on the wrong password page.

    Kind of hard to explain, but yah, that's what I need lmao.

    Cheers!

  2. #2
    Reemer's Avatar
    Joined
    Dec 2011
    Posts
    639
    Userbars
    8
    Thanks
    364
    Thanked
    446/256
    DL/UL
    39/0
    Mentioned
    203 times
    Time Online
    4d 13h 48m
    Avg. Time Online
    1m
    Code:
    If InStr(1, strHTML, "badpassword") Then
    check = False
    lststatus.AddItem ("Account " & user & "had the wrong password.")
      lblstatus.Caption = "Invalid Password/Username"
    ElseIf InStr(1, strHTML, "This account has been") Then
      check = False
      lststatus.AddItem ("Account " & user & "has been frozen.")
      lblstatus.Caption = "Sorry, This Account Has Been Frozen"
    ElseIf InStr(1, strHTML, "Update Account") Then
      check = False
      lststatus.AddItem ("Account " & user & " needs to be updated.")
      lblstatus.Caption = "Sorry, This Account Has Been Lawyerbotted"
    ElseIf InStr(1, strHTML, "failed_bday") Then
      check = True
      lststatus.AddItem ("Account " & user & " needs to be Bday cracked.")
      lblstatus.Caption = "Sorry, This Account Hasn't Been Logged in"
      ElseIf InStr(1, strHTML, "petcentral") Then
      check = True

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

    VitaminX (03-12-2014)

  4. #3
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,756
    Userbars
    176
    Thanks
    5,936
    Thanked
    33,184/6,625
    DL/UL
    23/36
    Mentioned
    3,871 times
    Time Online
    564d 11h 47m
    Avg. Time Online
    3h 13m
    Also for the successful login, if your http wrapper doesn't handle redirects then you are going to be checking the headers (check for this string "HTTP/1.1 302 Found")
    (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.
    ------------------------


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

    VitaminX (03-12-2014)

  6. #4
    VitaminX's Avatar
    Joined
    Sep 2013
    Posts
    741
    Userbars
    5
    Thanks
    416
    Thanked
    632/340
    DL/UL
    36/0
    Mentioned
    166 times
    Time Online
    93d 23h 10m
    Avg. Time Online
    35m
    Thanks a lot both, that was really helpful!

Posting Permissions

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