<?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 on: 15+ tips to secure your php application	</title>
	<atom:link href="https://www.binarytides.com/15-tips-to-make-your-php-application-secure/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Tue, 22 Jul 2014 11:07:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: Themesrefinery		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-67240</link>

		<dc:creator><![CDATA[Themesrefinery]]></dc:creator>
		<pubDate>Tue, 22 Jul 2014 11:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-67240</guid>

					<description><![CDATA[in my opinion nothing is secure on internet like web application.Php is not a full secure language but we can make it secure with the help of frameworks like laravel,Zend etc.]]></description>
			<content:encoded><![CDATA[<p>in my opinion nothing is secure on internet like web application.Php is not a full secure language but we can make it secure with the help of frameworks like laravel,Zend etc.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Silver Moon		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65308</link>

		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Wed, 19 Dec 2012 09:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65308</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65307&quot;&gt;za_al&lt;/a&gt;.

thanks for the useful tips.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65307">za_al</a>.</p>
<p>thanks for the useful tips.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: za_al		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65307</link>

		<dc:creator><![CDATA[za_al]]></dc:creator>
		<pubDate>Fri, 14 Dec 2012 15:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65307</guid>

					<description><![CDATA[Hi
tanks very useful informations. I add some other issue:

1-md5 is weak encrypt.use sha1().

2-just use ssl for avoide spoofing sensetive data.(https:// insted http://).dont use ssl just for login page.use ssl for all page.

3-Why File Upload Forms are a Major Security Threat. good link:
 http://www.acunetix.com/websitesecurity/upload-forms-threat/

4-test yor application by some tools.for example acunetix(http://www.acunetix.com)

5-also good intruduce vulnerability in https://www.owasp.org/

regard]]></description>
			<content:encoded><![CDATA[<p>Hi<br />
tanks very useful informations. I add some other issue:</p>
<p>1-md5 is weak encrypt.use sha1().</p>
<p>2-just use ssl for avoide spoofing sensetive data.(https:// insted <a href="http://.dont" rel="nofollow ugc">http://.dont</a>) use ssl just for login page.use ssl for all page.</p>
<p>3-Why File Upload Forms are a Major Security Threat. good link:<br />
 <a href="http://www.acunetix.com/websitesecurity/upload-forms-threat/" rel="nofollow ugc">http://www.acunetix.com/websitesecurity/upload-forms-threat/</a></p>
<p>4-test yor application by some tools.for example acunetix(<a href="http://www.acunetix.com" rel="nofollow ugc">http://www.acunetix.com</a>)</p>
<p>5-also good intruduce vulnerability in <a href="https://www.owasp.org/" rel="nofollow ugc">https://www.owasp.org/</a></p>
<p>regard</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chris Langton		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65306</link>

		<dc:creator><![CDATA[Chris Langton]]></dc:creator>
		<pubDate>Tue, 02 Oct 2012 06:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65306</guid>

					<description><![CDATA[Avoid short tags &#060;-- not a security concern...

Validate all user input &#060;-- fails to provide examples...

Cross site scripting &#060;-- gives no mention to where it is required and how to make it safe, just says its bad and to prevent it...
Always name your file as only .php &#060;-- what! lol how is that security?

SUPER_SALTY &#060;-- obscurity not security... with or without is the same security wise...

Protect against CSRF &#060;-- using a hidden input token is not secure, its shown in the source! instead use $_SESSION to prevent CSRF.

The Session &#060;-- articles explains what it is not how its a security threat or offer any examples of preventing security risks...

Store sessions in database &#060;-- explained the threat is that the session is stored on the server but so is the database... instead use your .htaccess to prevent casual browsing to the files location.

Force single session &#060;--redundant unless you also find a way to prevent multiple tabs on the same session.

There were some good tips but overall this article should be taken with a grain of salt, there are many better written and comprehensive articles available on securing your PHP application.]]></description>
			<content:encoded><![CDATA[<p>Avoid short tags &lt;&#8211; not a security concern&#8230;</p>
<p>Validate all user input &lt;&#8211; fails to provide examples&#8230;</p>
<p>Cross site scripting &lt;&#8211; gives no mention to where it is required and how to make it safe, just says its bad and to prevent it&#8230;<br />
Always name your file as only .php &lt;&#8211; what! lol how is that security?</p>
<p>SUPER_SALTY &lt;&#8211; obscurity not security&#8230; with or without is the same security wise&#8230;</p>
<p>Protect against CSRF &lt;&#8211; using a hidden input token is not secure, its shown in the source! instead use $_SESSION to prevent CSRF.</p>
<p>The Session &lt;&#8211; articles explains what it is not how its a security threat or offer any examples of preventing security risks&#8230;</p>
<p>Store sessions in database &lt;&#8211; explained the threat is that the session is stored on the server but so is the database&#8230; instead use your .htaccess to prevent casual browsing to the files location.</p>
<p>Force single session &lt;&#8211;redundant unless you also find a way to prevent multiple tabs on the same session.</p>
<p>There were some good tips but overall this article should be taken with a grain of salt, there are many better written and comprehensive articles available on securing your PHP application.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: pl4g4		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65305</link>

		<dc:creator><![CDATA[pl4g4]]></dc:creator>
		<pubDate>Thu, 27 Sep 2012 17:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65305</guid>

					<description><![CDATA[very google article.]]></description>
			<content:encoded><![CDATA[<p>very google article.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: SRG		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65304</link>

		<dc:creator><![CDATA[SRG]]></dc:creator>
		<pubDate>Tue, 25 Sep 2012 11:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65304</guid>

					<description><![CDATA[Really a good Article. Hats off to u...]]></description>
			<content:encoded><![CDATA[<p>Really a good Article. Hats off to u&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: itoctopus		</title>
		<link>https://www.binarytides.com/15-tips-to-make-your-php-application-secure/comment-page-1/#comment-65303</link>

		<dc:creator><![CDATA[itoctopus]]></dc:creator>
		<pubDate>Mon, 24 Sep 2012 13:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/blog/?p=1680#comment-65303</guid>

					<description><![CDATA[Making &quot;short tags&quot; and &quot;ASP tags&quot; a setting in the PHP instead of either not processing it at all or processing it all the time was not a wise decision at all by the PHP developers.

This decision leads to many security issues especially for sites taking advantages of the above features.]]></description>
			<content:encoded><![CDATA[<p>Making &#8220;short tags&#8221; and &#8220;ASP tags&#8221; a setting in the PHP instead of either not processing it at all or processing it all the time was not a wise decision at all by the PHP developers.</p>
<p>This decision leads to many security issues especially for sites taking advantages of the above features.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
