<?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"
	>
<channel>
	<title>Comments on: Hack the Password !!!</title>
	<atom:link href="http://www.sajithmr.com/hack-the-password/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.com/hack-the-password/</link>
	<description></description>
	<pubDate>Thu, 20 Nov 2008 10:42:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Ford</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-19697</link>
		<dc:creator>Ford</dc:creator>
		<pubDate>Mon, 18 Aug 2008 23:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-19697</guid>
		<description>hi. I am a hacker. I can get you an aol,yahoo,myspace,facebook,gmail...etc password. I do charge a fee to get a password though. Once i do get password i'll show you proof i have it. Are you interested? E-mail me at Fordf202006@yahoo.com</description>
		<content:encoded><![CDATA[<p>hi. I am a hacker. I can get you an aol,yahoo,myspace,facebook,gmail&#8230;etc password. I do charge a fee to get a password though. Once i do get password i&#8217;ll show you proof i have it. Are you interested? E-mail me at <a href="mailto:Fordf202006@yahoo.com">Fordf202006@yahoo.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peeto</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-10980</link>
		<dc:creator>peeto</dc:creator>
		<pubDate>Fri, 23 May 2008 00:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-10980</guid>
		<description>select u.user from table as u where u.password=sha1(concat('access', u.salt, 'hackedglobalpattern'));</description>
		<content:encoded><![CDATA[<p>select u.user from table as u where u.password=sha1(concat(&#8217;access&#8217;, u.salt, &#8216;hackedglobalpattern&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Babu Syed</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-6188</link>
		<dc:creator>Babu Syed</dc:creator>
		<pubDate>Wed, 19 Mar 2008 12:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-6188</guid>
		<description>like the window showing the visitor's location in map. how can i get it for my page?
BS  at psbabusyed@gmail.com</description>
		<content:encoded><![CDATA[<p>like the window showing the visitor&#8217;s location in map. how can i get it for my page?<br />
BS  at <a href="mailto:psbabusyed@gmail.com">psbabusyed@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binny V A</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-4939</link>
		<dc:creator>Binny V A</dc:creator>
		<pubDate>Tue, 04 Mar 2008 09:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-4939</guid>
		<description>Great! Thanks for clearing that up</description>
		<content:encoded><![CDATA[<p>Great! Thanks for clearing that up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sajith M.R</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-4865</link>
		<dc:creator>Sajith M.R</dc:creator>
		<pubDate>Mon, 03 Mar 2008 19:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-4865</guid>
		<description>Hi Binny,
$md5_password was a mistake happened while copy-pasting .  I edited that in article now.  And about the checking in login, see below.

The salt is created by random, but you have to save this salt in another filed into your database table (that i mentioned in this article). So when login check, what you have to do is:
1) Get the saved salt from database table. (Select salt from table where username = 'Sanjay');

2) Recreate the hash from user entered password . say $password

3) Calculate the hash digest from the former formula. 
&lt;?php $hash_password = sha1($password . $salt . auth::GlobalPattern()); ?&gt;

4) Get the saved hash say $saved_hash from table (Select password from table where user='Sanjay');

5) Compare both. $hash_password and $saved_hash

6) If both are equal login, else invalid password. 

Thanks
Syth</description>
		<content:encoded><![CDATA[<p>Hi Binny,<br />
$md5_password was a mistake happened while copy-pasting .  I edited that in article now.  And about the checking in login, see below.</p>
<p>The salt is created by random, but you have to save this salt in another filed into your database table (that i mentioned in this article). So when login check, what you have to do is:<br />
1) Get the saved salt from database table. (Select salt from table where username = &#8216;Sanjay&#8217;);</p>
<p>2) Recreate the hash from user entered password . say $password</p>
<p>3) Calculate the hash digest from the former formula.<br />
< ?php $hash_password = sha1($password . $salt . auth::GlobalPattern()); ?></p>
<p>4) Get the saved hash say $saved_hash from table (Select password from table where user=&#8217;Sanjay&#8217;);</p>
<p>5) Compare both. $hash_password and $saved_hash</p>
<p>6) If both are equal login, else invalid password. </p>
<p>Thanks<br />
Syth</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binny V A</title>
		<link>http://www.sajithmr.com/hack-the-password/#comment-4846</link>
		<dc:creator>Binny V A</dc:creator>
		<pubDate>Mon, 03 Mar 2008 15:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.sajithmr.com/hack-the-password/#comment-4846</guid>
		<description>Could you include the login code as well - I am not sure how to check the password with a random salt. You will need the same salt when you are authenticating.

And why are you naming the variable $md5_password? You are using sha1 - so it should be called $sha1_password.</description>
		<content:encoded><![CDATA[<p>Could you include the login code as well - I am not sure how to check the password with a random salt. You will need the same salt when you are authenticating.</p>
<p>And why are you naming the variable $md5_password? You are using sha1 - so it should be called $sha1_password.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
