Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7179881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:13:52+00:00 2026-05-28T17:13:52+00:00

I have a somewhat hack-ish question and I’m intrigued as to how I would

  • 0

I have a somewhat hack-ish question and I’m intrigued as to how I would do the following (if even possible):

Basically, to give a bit of context, I had an account on a site a few years ago and had a username and password for the portal to log in and see all my information/transcript/etc. I haven’t connected since I stopped using it a couple years ago by I wanted to view the information that I submitted. Problem is, I can no longer remember the password (to a certain degree). And if I go the ‘forgot password’ route, it’s linked to a really old hotmail address which was deactivated a while back.

I’m aware that this will involve some sort of password crack and I don’t want to talk about ways to screw people and gain access to their accounts but it’s mine and I’m curious if this is possible.

Thing is, I have the username and I have the majority of the password, all except the final 2 numbers. I can’t remember them. I know I added 2 digits at the end because I was forced to (between 10 and 99).

So say my username was ‘johnsmith’ and my password was ‘eatdog##’, is there a way to create a form and loop it over and over until the password is guessed correctly? I’m aware they might have some sort of protection against the amount of tries per ‘whatever amount of time’.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T17:13:53+00:00Added an answer on May 28, 2026 at 5:13 pm

    Considering you only need to iterate over < 100 different possibilities, this should be crackable.

    View the HTML source of the page that contains the login form and see which page the form submits to. Lets assume it is action.php. You will see something like this in the HTML source:

    <form id="login" action="action.php" method="post">

    Use cURL to make a POST request to action.php with your username and password as POST parameters (including anything else the form is posting). Do this in a loop with the password changing at each iteration.

    Your code should look something like this (in PHP)

    $username = "johnsmith";
    $pass_base = "eatdog";
    $url = "the url the form submits to";
    $failed = ""; //the response returned by the server when login fails
    
    for ($i=10; $i < 100; $i++)
    {
        $password = $pass_base . $i;
    
        $ch = curl_init();
        curl_setopt($ch,CURLOPT_URL,$url);
        curl_setopt($ch,CURLOPT_POST,true);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
    
        //set the POST parameters
    
        $data = curl_exec($ch);
        curl_close($ch);    
    
        if ($data != $failed)   //analyze the returned data
        {
            echo $password;     //this is your password
            break;
        }   
    }
    

    The above code is a PHP script. It WILL NOT run as is. I’ve only provided the meat of the script. You might have to do some basic initialization – hopefully you’re somewhat familiar with PHP.

    You can run it from your localhost (install WAMP). I’d estimate it shouldn’t take more than 5 min to run through all the passwords.

    This would only work if the login process isn’t specifically designed to stop brute force attacks. If it locks you out for x min after y unsuccessful logins, you’d have to sleep the PHP script after every y-1 attempts for sometime so as not to trigger the lockout.

    If it starts asking for captcha, the above script won’t work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have somewhat of a strange question that is not really technical, but I
I have a somewhat complicated question related to MySQL. This is the table I
I have somewhat of a knowledge of the PHP coding language and I would
I have somewhat of a thought question regarding jQuery Ajax. My question is this:
EDIT: I have somewhat distilled the question. mongo_documents = mongo_collection.find({medicalObjectId: 269}) print \n\n for
I'm still pretty new to programming so I have somewhat of a noob question.
I have somewhat interesting development situation. The client and deployment server are inside a
Does VS2008 have somewhat C++0x standard support? DUPLICATE Visual Studio support for new C
I have a somewhat messily-formatted Objective-C code base. Is there a way to have
I have a somewhat complicated branching structure at work (at least for me). It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.