<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Reactive Software Blog</title>
	<link>http://blog.reactive-software.com</link>
	<description>...life is not just about software!</description>
	<pubDate>Tue, 07 Oct 2008 19:18:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Migrating from TheBat! to Mozilla Thunderbird by Eugene</title>
		<link>http://blog.reactive-software.com/migrating-from-thebat-to-mozilla-thuderbird/#comment-2534</link>
		<author>Eugene</author>
		<pubDate>Wed, 25 Jun 2008 14:29:15 +0000</pubDate>
		<guid>http://blog.reactive-software.com/migrating-from-thebat-to-mozilla-thuderbird/#comment-2534</guid>
		<description>The latest version of TheBat definitely has more features and is much more powerful. But at the moment I don't need more power than Thunderbird offers now. We get more than 30 support requests a day. Providing this support is comfortable enough using Thunderbird.
If the volume of support requests rises dramatically we will migrate the support line to one of the web-based ticket systems (e.g. TroubleTicket).</description>
		<content:encoded><![CDATA[<p>The latest version of TheBat definitely has more features and is much more powerful. But at the moment I don&#8217;t need more power than Thunderbird offers now. We get more than 30 support requests a day. Providing this support is comfortable enough using Thunderbird.<br />
If the volume of support requests rises dramatically we will migrate the support line to one of the web-based ticket systems (e.g. TroubleTicket).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Migrating from TheBat! to Mozilla Thunderbird by lami</title>
		<link>http://blog.reactive-software.com/migrating-from-thebat-to-mozilla-thuderbird/#comment-2533</link>
		<author>lami</author>
		<pubDate>Wed, 25 Jun 2008 13:46:38 +0000</pubDate>
		<guid>http://blog.reactive-software.com/migrating-from-thebat-to-mozilla-thuderbird/#comment-2533</guid>
		<description>Have you tried the latest TheBat version?  Do you think thunderbird is still the best email?</description>
		<content:encoded><![CDATA[<p>Have you tried the latest TheBat version?  Do you think thunderbird is still the best email?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Skype Password Recovery by Hagrinas</title>
		<link>http://blog.reactive-software.com/skype-password-recovery/#comment-2520</link>
		<author>Hagrinas</author>
		<pubDate>Sun, 22 Jun 2008 22:40:46 +0000</pubDate>
		<guid>http://blog.reactive-software.com/skype-password-recovery/#comment-2520</guid>
		<description>Sorry, I didn't see the AES and SHA-1 part.  It wouldn't be trivial.  But it would still be helpful for users who don't remember what email address they used to have something along the lines of the first part.</description>
		<content:encoded><![CDATA[<p>Sorry, I didn&#8217;t see the AES and SHA-1 part.  It wouldn&#8217;t be trivial.  But it would still be helpful for users who don&#8217;t remember what email address they used to have something along the lines of the first part.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Skype Password Recovery by Hagrinas</title>
		<link>http://blog.reactive-software.com/skype-password-recovery/#comment-2519</link>
		<author>Hagrinas</author>
		<pubDate>Sun, 22 Jun 2008 22:30:22 +0000</pubDate>
		<guid>http://blog.reactive-software.com/skype-password-recovery/#comment-2519</guid>
		<description>There are still some tools that could be produced easily to assist users in password recovery.

Skype has a web page for password recovery.  It simply asks for the user name and email address.  It's obvious that the person has the user name, or there's nothing to recover.  But the user might not have the email address, and that's a common problem. 

Skype stores the email address that was used when the user registered.  It's in %app data%\skype\skypeusername\profilennnn.dbb. The skype user name would have to be plugged in, and I don't know how to figure out the number, except there's only one dbb file in that directory with a name starting with profile.  

Searching that file for the email address, which is preceded by an @ sign and followed by x00.  Of course, a person could find the file manually, open it with a text editor, and read it, but a tool would be almost trivial to write. 

Once the user has the email address, assuming it's valid and the email goes to the user, recovery is trivial.

The other thing is MD5 encoding.  From what I read on this website. it should be trivial to write something to encode the password and end up with something that matches what is stored locally. Users often have an idea of what they might have used, such as words, letters, or numbers that they typically use.  A user might be able to make a list of a dozen or so possible passwords, and a program could tell easily when they had a match.

Alternatively, rather than generating random passwords and using brute force, a user could supply parameters.  If my name is John Smith and I work for Acme, have three children whose ages I sometimes use in passwords, and whose wife's name is Agnes, I might want to be able to supply a dozen keywords, such as my name, kids names, etc. A program could try various combinations in different orders, with and without embedded numbers.  I might know that I typically use numbers at the end, or that I want to limit numbers to 1 or 2 digits. 

In a nutshell, a user might be able to come up with enough keywords and parameters to enable a relatively simple algorithm to find the password in less than a few seconds.</description>
		<content:encoded><![CDATA[<p>There are still some tools that could be produced easily to assist users in password recovery.</p>
<p>Skype has a web page for password recovery.  It simply asks for the user name and email address.  It&#8217;s obvious that the person has the user name, or there&#8217;s nothing to recover.  But the user might not have the email address, and that&#8217;s a common problem. </p>
<p>Skype stores the email address that was used when the user registered.  It&#8217;s in %app data%\skype\skypeusername\profilennnn.dbb. The skype user name would have to be plugged in, and I don&#8217;t know how to figure out the number, except there&#8217;s only one dbb file in that directory with a name starting with profile.  </p>
<p>Searching that file for the email address, which is preceded by an @ sign and followed by x00.  Of course, a person could find the file manually, open it with a text editor, and read it, but a tool would be almost trivial to write. </p>
<p>Once the user has the email address, assuming it&#8217;s valid and the email goes to the user, recovery is trivial.</p>
<p>The other thing is MD5 encoding.  From what I read on this website. it should be trivial to write something to encode the password and end up with something that matches what is stored locally. Users often have an idea of what they might have used, such as words, letters, or numbers that they typically use.  A user might be able to make a list of a dozen or so possible passwords, and a program could tell easily when they had a match.</p>
<p>Alternatively, rather than generating random passwords and using brute force, a user could supply parameters.  If my name is John Smith and I work for Acme, have three children whose ages I sometimes use in passwords, and whose wife&#8217;s name is Agnes, I might want to be able to supply a dozen keywords, such as my name, kids names, etc. A program could try various combinations in different orders, with and without embedded numbers.  I might know that I typically use numbers at the end, or that I want to limit numbers to 1 or 2 digits. </p>
<p>In a nutshell, a user might be able to come up with enough keywords and parameters to enable a relatively simple algorithm to find the password in less than a few seconds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AIM Password Recovery helps to recover forgotten passwords when everything else doesn&#8217;t work by Eugene</title>
		<link>http://blog.reactive-software.com/aim-password-recovery-helps-to-recover-forgotten-passwords-when-everything-else-doesnt-work/#comment-837</link>
		<author>Eugene</author>
		<pubDate>Sun, 30 Dec 2007 11:22:27 +0000</pubDate>
		<guid>http://blog.reactive-software.com/aim-password-recovery-helps-to-recover-forgotten-passwords-when-everything-else-doesnt-work/#comment-837</guid>
		<description>Hi Melissa,

If you can still login into kiwipk9393@aim.com without entering your password  there is still a chance you can recover it. Just download AIM Password Recovery, install it, run it and see if it finds any passwords.

Download link:
http://www.reactive-software.com/aim-password-recovery.html

I hope this helps,
Eugene</description>
		<content:encoded><![CDATA[<p>Hi Melissa,</p>
<p>If you can still login into <a href="mailto:kiwipk9393@aim.com">kiwipk9393@aim.com</a> without entering your password  there is still a chance you can recover it. Just download AIM Password Recovery, install it, run it and see if it finds any passwords.</p>
<p>Download link:<br />
<a href="http://www.reactive-software.com/aim-password-recovery.html" rel="nofollow">http://www.reactive-software.com/aim-password-recovery.html</a></p>
<p>I hope this helps,<br />
Eugene</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AIM Password Recovery helps to recover forgotten passwords when everything else doesn&#8217;t work by melissa</title>
		<link>http://blog.reactive-software.com/aim-password-recovery-helps-to-recover-forgotten-passwords-when-everything-else-doesnt-work/#comment-818</link>
		<author>melissa</author>
		<pubDate>Thu, 27 Dec 2007 20:58:47 +0000</pubDate>
		<guid>http://blog.reactive-software.com/aim-password-recovery-helps-to-recover-forgotten-passwords-when-everything-else-doesnt-work/#comment-818</guid>
		<description>hello,
  Im a user of aim and i cannot remember the password to my aim screen name kiwipk9393@aim.com. I understand that this download tool is for recovering ur OLD aol user name that was used to make the aim screen name. well i havent had aol for a while, so i forgot that screen name and password. i really need the password for that aim screen name and i cannot get it please help.                        melissa</description>
		<content:encoded><![CDATA[<p>hello,<br />
  Im a user of aim and i cannot remember the password to my aim screen name <a href="mailto:kiwipk9393@aim.com.">kiwipk9393@aim.com.</a> I understand that this download tool is for recovering ur OLD aol user name that was used to make the aim screen name. well i havent had aol for a while, so i forgot that screen name and password. i really need the password for that aim screen name and i cannot get it please help.                        melissa</p>
]]></content:encoded>
	</item>
</channel>
</rss>
