<?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/"
		>
<channel>
	<title>Comments for Tinsology</title>
	<atom:link href="http://tinsology.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tinsology.net</link>
	<description>Read Me</description>
	<lastBuildDate>Thu, 11 Mar 2010 07:39:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Creating a Secure Login System the Right Way by verboze</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2736</link>
		<dc:creator>verboze</dc:creator>
		<pubDate>Thu, 11 Mar 2010 07:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2736</guid>
		<description>Great article! Being new to implementing login systems, this article thought me the basics I needed to get started. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Great article! Being new to implementing login systems, this article thought me the basics I needed to get started. Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Secure Login System the Right Way by Kevin</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2732</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 23:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2732</guid>
		<description>My bad! Feel free to delete my dumbass post. Thats what &lt;b&gt;I&lt;/b&gt; get for writing and not sleeping. I take it all back!

I blindly missed the WHERE username = &#039;$username&#039; and assumed it was WHERE username = &#039;$username&#039; AND password = &#039;$password&#039; which WOULD have been a problem.</description>
		<content:encoded><![CDATA[<p>My bad! Feel free to delete my dumbass post. Thats what <b>I</b> get for writing and not sleeping. I take it all back!</p>
<p>I blindly missed the WHERE username = &#8216;$username&#8217; and assumed it was WHERE username = &#8216;$username&#8217; AND password = &#8216;$password&#8217; which WOULD have been a problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Secure Login System the Right Way by Tinsley</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2731</link>
		<dc:creator>Tinsley</dc:creator>
		<pubDate>Tue, 09 Mar 2010 22:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2731</guid>
		<description>Did you read the code carefully? The raw password never touches the database... it is hashed. There is no need to use escape_string or any other sanitizing on hashed data. The ONLY user input that touches the database is the username and that IS sanitized. In addition to this I point out PDO as an alternative to using the mysql_ family of functions, which is inherently more secure.</description>
		<content:encoded><![CDATA[<p>Did you read the code carefully? The raw password never touches the database&#8230; it is hashed. There is no need to use escape_string or any other sanitizing on hashed data. The ONLY user input that touches the database is the username and that IS sanitized. In addition to this I point out PDO as an alternative to using the mysql_ family of functions, which is inherently more secure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Secure Login System the Right Way by Kevin</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2730</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 22:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2730</guid>
		<description>Your subject for this code is &quot;Creating a Secure Login System the Right Way&quot; yet you post insecure code. WTF? In your own words you say &quot;you should never trust your users. Validate all user input, protect against SQL injections&quot;, yet you don&#039;t provide any sanitizing protection for the password input from the user. Newbies using your &quot;secure&quot; code will now be open to an sql injection attack.</description>
		<content:encoded><![CDATA[<p>Your subject for this code is &#8220;Creating a Secure Login System the Right Way&#8221; yet you post insecure code. WTF? In your own words you say &#8220;you should never trust your users. Validate all user input, protect against SQL injections&#8221;, yet you don&#8217;t provide any sanitizing protection for the password input from the user. Newbies using your &#8220;secure&#8221; code will now be open to an sql injection attack.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Secure Login System the Right Way by Tinsley</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2711</link>
		<dc:creator>Tinsley</dc:creator>
		<pubDate>Tue, 02 Mar 2010 16:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2711</guid>
		<description>Normally I would, but not in this case for three reasons:

	If I post a zip file of this script I will have to update it whenever I updated this post
	All I would be doing is copying the code I posted here into a few files
	...And the main reason: This is not a working implementation. I don&#039;t mean for you to copy this code and put it into production. It is meant to demonstrate the concepts. It is meant to be a reference for creating a login system of your own.
</description>
		<content:encoded><![CDATA[<p>Normally I would, but not in this case for three reasons:</p>
<p>	If I post a zip file of this script I will have to update it whenever I updated this post<br />
	All I would be doing is copying the code I posted here into a few files<br />
	&#8230;And the main reason: This is not a working implementation. I don&#8217;t mean for you to copy this code and put it into production. It is meant to demonstrate the concepts. It is meant to be a reference for creating a login system of your own.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Secure Login System the Right Way by Nookie</title>
		<link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-2710</link>
		<dc:creator>Nookie</dc:creator>
		<pubDate>Tue, 02 Mar 2010 07:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=663#comment-2710</guid>
		<description>Hi,

Could you maybe post or email me entire script in a zip file?
That would be really really great! 

Thanx in advance!
/Nookie</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Could you maybe post or email me entire script in a zip file?<br />
That would be really really great! </p>
<p>Thanx in advance!<br />
/Nookie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Drop Cap Effect by Tinsley</title>
		<link>http://tinsology.net/2009/06/css-drop-cap-effect/comment-page-1/#comment-2704</link>
		<dc:creator>Tinsley</dc:creator>
		<pubDate>Sun, 28 Feb 2010 23:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=750#comment-2704</guid>
		<description>Thanks for pointing that out. Most of the time I just test in Opera, IE and firefox. I guess its a good thing 99% of my code is server side.</description>
		<content:encoded><![CDATA[<p>Thanks for pointing that out. Most of the time I just test in Opera, IE and firefox. I guess its a good thing 99% of my code is server side.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Drop Cap Effect by fano</title>
		<link>http://tinsology.net/2009/06/css-drop-cap-effect/comment-page-1/#comment-2703</link>
		<dc:creator>fano</dc:creator>
		<pubDate>Sun, 28 Feb 2010 21:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=750#comment-2703</guid>
		<description>the css property \visibility:hidden\ causes he first letter no to show in Safari. Good tutorial though.</description>
		<content:encoded><![CDATA[<p>the css property \visibility:hidden\ causes he first letter no to show in Safari. Good tutorial though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Seamless WordPress bbPress Integration by Tinsley</title>
		<link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2695</link>
		<dc:creator>Tinsley</dc:creator>
		<pubDate>Fri, 26 Feb 2010 01:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=611#comment-2695</guid>
		<description>You&#039;re going to have to either type the address manually or code the link into your template:
[source language=&quot;php&quot;]
if($is_bb)
	echo &#039;&lt;a href=&quot;forum/bb-admin/&quot;&gt;Admin&lt;/a&gt;&#039;;
[/source]</description>
		<content:encoded><![CDATA[<p>You&#8217;re going to have to either type the address manually or code the link into your template:</p>
<pre class="brush: php;">
if($is_bb)
	echo '&lt;a href=&quot;forum/bb-admin/&quot;&gt;Admin&lt;/a&gt;';
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Seamless WordPress bbPress Integration by johnuk</title>
		<link>http://tinsology.net/2009/05/seamless-wordpress-bbpress-integration/comment-page-1/#comment-2694</link>
		<dc:creator>johnuk</dc:creator>
		<pubDate>Thu, 25 Feb 2010 21:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://tinsology.net/?p=611#comment-2694</guid>
		<description>I&#039;ve successfully integrated bbpress and wordpress.. it works fine.. but the problem is that my bb-admin not open.. 
what can i do? How can i go to my bb-admin?
any help?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve successfully integrated bbpress and wordpress.. it works fine.. but the problem is that my bb-admin not open..<br />
what can i do? How can i go to my bb-admin?<br />
any help?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
