<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Recover Your Forgotten Password In Linux.</title>
	<atom:link href="http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/</link>
	<description>Resources, help, how to's and tutorials for Ubuntu Linux users!</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:52:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: UbuntuLinuxHelp</title>
		<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/comment-page-1/#comment-1113</link>
		<dc:creator>UbuntuLinuxHelp</dc:creator>
		<pubDate>Sun, 27 Apr 2008 21:49:01 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/#comment-1113</guid>
		<description>@dsh - Thanks! :) &quot;Recover &#039;From&#039; Your Forgotten Password In Linux&quot; might have been a bit more descriptive. ;)


@ BWhitU -  I think strong passwords would take too long to brute force as &#039;dsh&#039; (above) rightly pointed out. Better to simply use the bootcd and change the password.

Cheers! :)</description>
		<content:encoded><![CDATA[<p>@dsh &#8211; Thanks! :) &#8220;Recover &#8216;From&#8217; Your Forgotten Password In Linux&#8221; might have been a bit more descriptive. ;)</p>
<p>@ BWhitU &#8211;  I think strong passwords would take too long to brute force as &#8216;dsh&#8217; (above) rightly pointed out. Better to simply use the bootcd and change the password.</p>
<p>Cheers! :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dsh</title>
		<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/comment-page-1/#comment-1112</link>
		<dc:creator>dsh</dc:creator>
		<pubDate>Sun, 27 Apr 2008 21:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/#comment-1112</guid>
		<description>I believe that Rainbow tables can&#039;t crack salted passwords that easily. Correct me If I&#039;m wrong.

Also dictionary-based brute-force isn&#039;t too effective when users choose strong passwords.</description>
		<content:encoded><![CDATA[<p>I believe that Rainbow tables can&#8217;t crack salted passwords that easily. Correct me If I&#8217;m wrong.</p>
<p>Also dictionary-based brute-force isn&#8217;t too effective when users choose strong passwords.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BWhitU</title>
		<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/comment-page-1/#comment-1110</link>
		<dc:creator>BWhitU</dc:creator>
		<pubDate>Sun, 27 Apr 2008 12:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/#comment-1110</guid>
		<description>Yes, you can crack (/etc/shadow) passwords using john the ripper. It&#039;s a brute force method and it does work: http://www.openwall.com/john/

The decryption is one-way. Most systems use md5sum encryption which is a 1 way sum of the password.

To use brute force, make sure you have a better diectionary than the defaults (special characters).

Also, http://www.plain-text.info/ and there&#039;s an interesting script here:  http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/325204</description>
		<content:encoded><![CDATA[<p>Yes, you can crack (/etc/shadow) passwords using john the ripper. It&#8217;s a brute force method and it does work: <a href="http://www.openwall.com/john/"  rel="nofollow">http://www.openwall.com/john/</a></p>
<p>The decryption is one-way. Most systems use md5sum encryption which is a 1 way sum of the password.</p>
<p>To use brute force, make sure you have a better diectionary than the defaults (special characters).</p>
<p>Also, <a href="http://www.plain-text.info/"  rel="nofollow">http://www.plain-text.info/</a> and there&#8217;s an interesting script here:  <a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/325204"  rel="nofollow">http://aspn.activestate.com/AS.....ipe/325204</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dsh</title>
		<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/comment-page-1/#comment-1108</link>
		<dc:creator>dsh</dc:creator>
		<pubDate>Sat, 26 Apr 2008 22:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/#comment-1108</guid>
		<description>The bootcd always does the trick. More precisely you have to do &#039;chroot&#039; and then passwd.It doesn&#039;t have to be the same (that you have installed) distro&#039;s bootcd. Just mount your root partition to a directory /mnt/XXX and then type &quot;chroot /mnt/XXX /bin/bash&quot;.

It&#039;s the well-known method for breaking into a machine that you have physical access to (usually for the purpose of nasty jokes).

What&#039;s more I think that the post is bad-titled. I clicked only because I thought - OMG - he writes how to decrypt /etc/shadow. In most linux/unix flavour passwords are salted and hashed what renders them virtually unrecoverable.</description>
		<content:encoded><![CDATA[<p>The bootcd always does the trick. More precisely you have to do &#8216;chroot&#8217; and then passwd.It doesn&#8217;t have to be the same (that you have installed) distro&#8217;s bootcd. Just mount your root partition to a directory /mnt/XXX and then type &#8220;chroot /mnt/XXX /bin/bash&#8221;.</p>
<p>It&#8217;s the well-known method for breaking into a machine that you have physical access to (usually for the purpose of nasty jokes).</p>
<p>What&#8217;s more I think that the post is bad-titled. I clicked only because I thought &#8211; OMG &#8211; he writes how to decrypt /etc/shadow. In most linux/unix flavour passwords are salted and hashed what renders them virtually unrecoverable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara</title>
		<link>http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/comment-page-1/#comment-680</link>
		<dc:creator>Tara</dc:creator>
		<pubDate>Tue, 08 Apr 2008 13:40:18 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntulinuxhelp.com/recover-your-forgotten-password-in-linux/#comment-680</guid>
		<description>Here is another: http://www.psychocats.net/ubuntu/resetpassword
But I do know the CD boot should work.</description>
		<content:encoded><![CDATA[<p>Here is another: <a href="http://www.psychocats.net/ubuntu/resetpassword"  rel="nofollow">http://www.psychocats.net/ubun.....etpassword</a><br />
But I do know the CD boot should work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
