Recover Email Client lost passwords
Register

We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!


Results 1 to 2 of 2
  1. #1

    Join Date
    Sep 2010
    Location
    Untraceable
    Posts
    60

    Default Recover Email Client lost passwords

    There are several method for recovering email password locally, you can search the configuration file manually or using different applications but in most cases the password is encrypted which can make it hard to decrypt.
    Some password recovery applications do not work with the antiviruses such as Openpass ,Passview or Recover. Here is a good and fast way to do that:
    1- Open your notepad and create a simple Fake POP3 server, over this server you will be able to get your password.
    #! / Usr / bin / perl
    # run a fake pop3 service
    use IO:: Socket;
    $|++; # using socket and cuts buffering
    $ Sock = IO:: Socket:: INET-> new (Listen => 10, LocalPort => 110, Proto => ‘tcp’, Reuse => 1) | | “Cant open port: $! \ N”; # Create a socket on port number 110 at the local machine
    while ($ client = $ sock-> accept ()) (
    while (1) (# We hear of new clients and enter into an infinite loop at each new connection
    $ Client-> send (“+ OK Fake POP Service ready \ n”); # Banner
    $ Stat = $ client-> recv ($ data, 1024);
    $ Client-> send (“+ OK Password? \ N”);
    $ Stat = $ client-> recv ($ data, 1024); # organize the exchange of data according to RFC1939
    (Undef, $ data) = split (”, $ data);
    print “Password is \” $ data \ “\ n”; # Separates the password and write it on the console
    close ($ client); # Close Client session and exit
    exit;
    )
    )
    2. Changing the client host’s mail server to a local address or other that runs the fake pop3 script.
    3. Run the fake script and start the process of getting new emails. As a result – you will receive your password in plain-text, on the console.
    By the way, you can use the same script to other services such as FTP the most important to change the script according to the desired protocol.






    Recover Email Client lost passwords | SecTechno


  2. To remove ads become VIP. Inquire about advertising here.
  3. #2

    Join Date
    Aug 2010
    Location
    In front of PC
    Posts
    777

    Default

    Nice to know all the things, but sadly this thing will not work in 90% of the vases as the whole code is dependent on the cache of the clients.. If the cache is cleared by some one, one can't recover any single password.

Similar Threads

  1. i forget BCG password and the email
    By gijoegy7 in forum Help
    Replies: 10
    Last Post: April 1st, 2011, 04:11 AM
  2. Recover lost data from iPod Touch
    By Latvic in forum Help
    Replies: 5
    Last Post: March 28th, 2011, 07:40 PM
  3. Remove/Recover BIOS password
    By Lord3King in forum Computers
    Replies: 6
    Last Post: October 19th, 2010, 05:28 AM
  4. how to recover password on waffles.fm
    By mayafx in forum Help
    Replies: 3
    Last Post: July 26th, 2010, 01:27 PM
  5. Easily Recover lost Serial Numbers!
    By thedeh in forum Software
    Replies: 2
    Last Post: October 12th, 2009, 03:34 PM

Tags for this Thread

Posting Permissions

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