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.
make sure you subscribe to my RSS feed!
[…] This post was mentioned on Twitter by Mourad ben lakhoua and SecureTechnology, Andréz Lamouroux. Andréz Lamouroux said: Recover Email Client lost passwords http://bit.ly/dC7u0n […]
[…] services such as FTP the most important to change the script according to the desired protocol. Recover Email Client lost passwords | SecTechno There comes a time in life where everything […]
Recover Email Client lost passwords | SecTechno http://su.pr/2jOijd #pop3 #honeypot
RT @MBenLakhoua: RT @sectechno: Recover Email Client lost passwords with a simple script http://bit.ly/9ZKhza #security #infosec
RT @zythom: RT @abcdelasecurite: Récupération de mot de passe local d'un compte email en POP avec un script perl http://goo.gl/6Qqr
RT @abcdelasecurite: Récupération de mot de passe local d'un compte email en POP avec un script perl http://goo.gl/6Qqr
RT @gleborek: RT @abcdelasecurite: Récupération de mot de passe local d'un compte email en POP avec un script perl http://goo.gl/6Qqr
RT @abcdelasecurite: Récupération de mot de passe local d'un compte email en POP avec un script perl http://goo.gl/6Qqr
RT @sectechno Recover Email Client lost passwords http://www.sectechno.com/2010/05/09/recover-email-client-lost-passwords/
Récupération de mot de passe local d'un compte email en POP avec un script perl http://goo.gl/6Qqr
RT @sectechno: Recover Email Client lost passwords with a simple script http://bit.ly/9ZKhza #security #infosec
Recover Email Client lost passwords with a simple script http://www.sectechno.com/2010/05/09/recover-email-client-lost-passwords/