<?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: WordPress Tip: Always Remove the WordPress Version Code</title>
	<atom:link href="http://wphacks.com/wordpress-tip-remove-wordpress-version-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/</link>
	<description>WordPress Themes, Plugins, Hacks, Tutorials, and more!</description>
	<lastBuildDate>Sun, 21 Mar 2010 00:38:40 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shahab khan</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-12191</link>
		<dc:creator>Shahab khan</dc:creator>
		<pubDate>Thu, 24 Dec 2009 21:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-12191</guid>
		<description>Though i have been blogging for the past one year. But i&#039;ve just come to know about this.</description>
		<content:encoded><![CDATA[<p>Though i have been blogging for the past one year. But i&#8217;ve just come to know about this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-9677</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Tue, 08 Sep 2009 15:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-9677</guid>
		<description>Thanks, this woke me up to the whole issue of upgrades. I am still using WP 2.0 and I wanted to add Kontera links to my WP blogs. They gave me a WP plugin I can use to populate their ads throughout all posts but not before I upgrade.</description>
		<content:encoded><![CDATA[<p>Thanks, this woke me up to the whole issue of upgrades. I am still using WP 2.0 and I wanted to add Kontera links to my WP blogs. They gave me a WP plugin I can use to populate their ads throughout all posts but not before I upgrade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle Eslick</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-7492</link>
		<dc:creator>Kyle Eslick</dc:creator>
		<pubDate>Fri, 22 May 2009 15:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-7492</guid>
		<description>@ Lea - This changed after this post was published with a later release of WordPress.   See the above comments for an explanation!</description>
		<content:encoded><![CDATA[<p>@ Lea &#8211; This changed after this post was published with a later release of WordPress.   See the above comments for an explanation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lea</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-7487</link>
		<dc:creator>Lea</dc:creator>
		<pubDate>Fri, 22 May 2009 01:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-7487</guid>
		<description>Well, I&#039;ve tried all the above methods for removing traces of my WordPress version from public viewing and none have worked.

I used a FireFox plugin for website info which leads to www.wmtips.com/tools/info/ and they still have my current WordPress version listed under &quot;generator.&quot; 

I removed the generator/generated string from my theme header, removed WordPress from my footer, protected my version.php, tried

adding   to functions.php 

and

@global string $wp_version
*/
$wp_version = ‘(version removed for security)’;

Yet the above website still displays my current WordPress version.</description>
		<content:encoded><![CDATA[<p>Well, I&#8217;ve tried all the above methods for removing traces of my WordPress version from public viewing and none have worked.</p>
<p>I used a FireFox plugin for website info which leads to <a href="http://www.wmtips.com/tools/info/" rel="nofollow">http://www.wmtips.com/tools/info/</a> and they still have my current WordPress version listed under &#8220;generator.&#8221; </p>
<p>I removed the generator/generated string from my theme header, removed WordPress from my footer, protected my version.php, tried</p>
<p>adding   to functions.php </p>
<p>and</p>
<p>@global string $wp_version<br />
*/<br />
$wp_version = ‘(version removed for security)’;</p>
<p>Yet the above website still displays my current WordPress version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jomammy</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-5976</link>
		<dc:creator>jomammy</dc:creator>
		<pubDate>Sun, 15 Feb 2009 07:25:39 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-5976</guid>
		<description>Do not remove your wp_head action!
Yes the latest versions of wordpress do add the version to the page via the wp_head call in numerous locations but this makes it easy to remove the version.  Look in wp-includes/version.php and change the version number there and it will propogate throughout the system because all calls to bloginfo(&#039;version&#039;) read from this string in this file.

I change mine to:
/**
 * The WordPress version string
 *
 * @global string $wp_version
 */
$wp_version = &#039;(version removed for security)&#039;;</description>
		<content:encoded><![CDATA[<p>Do not remove your wp_head action!<br />
Yes the latest versions of wordpress do add the version to the page via the wp_head call in numerous locations but this makes it easy to remove the version.  Look in wp-includes/version.php and change the version number there and it will propogate throughout the system because all calls to bloginfo(&#8216;version&#8217;) read from this string in this file.</p>
<p>I change mine to:<br />
/**<br />
 * The WordPress version string<br />
 *<br />
 * @global string $wp_version<br />
 */<br />
$wp_version = &#8216;(version removed for security)&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Security Keeping your blog Secure &#124; Web Services and Tools</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-2613</link>
		<dc:creator>WordPress Security Keeping your blog Secure &#124; Web Services and Tools</dc:creator>
		<pubDate>Sat, 04 Oct 2008 05:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-2613</guid>
		<description>[...] Noupe Blog - Security Tips and Tricks Has your Website been Hacked WordPress users - Watch Out! WordPress Tip - Remove the Version code [...]</description>
		<content:encoded><![CDATA[<p>[...] Noupe Blog &#8211; Security Tips and Tricks Has your Website been Hacked WordPress users &#8211; Watch Out! WordPress Tip &#8211; Remove the Version code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 100+ Killer Wordpress Resources &#124; Steffan Antonas' Blog</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-2612</link>
		<dc:creator>100+ Killer Wordpress Resources &#124; Steffan Antonas' Blog</dc:creator>
		<pubDate>Tue, 16 Sep 2008 16:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-2612</guid>
		<description>[...] Why It&#8217;s Important to Always Remove The Wordpress Version Code  [...]</description>
		<content:encoded><![CDATA[<p>[...] Why It&#8217;s Important to Always Remove The Wordpress Version Code  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2008-07-30 &#124; ????? ?? ??"? ???</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-2611</link>
		<dc:creator>links for 2008-07-30 &#124; ????? ?? ??"? ???</dc:creator>
		<pubDate>Wed, 30 Jul 2008 08:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-2611</guid>
		<description>[...] WordPress Tip: Always Remove the WordPress Version Code ??? ????? ???????? ?? ????? ?? ?????. ???? ??? ??????? 2.5 ????? ???????? ?? ??&#8217; ????? ????????. (tags: wordpress security) [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Tip: Always Remove the WordPress Version Code ??? ????? ???????? ?? ????? ?? ?????. ???? ??? ??????? 2.5 ????? ???????? ?? ??&#8217; ????? ????????. (tags: wordpress security) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Salberg</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-2599</link>
		<dc:creator>Lawrence Salberg</dc:creator>
		<pubDate>Sun, 27 Jul 2008 21:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-2599</guid>
		<description>I disagree. The problem with people hacking WP installs isn&#039;t because of an obvious version number (which is more than often replicated in the footer of many free themes as well).

The problem is people never upgrading their WP installation. Quite frankly, this is the kind of useless tip that gives homage to the enemy. If we really want to make the world safe from hackers, we ought to send messages to those running old versions of WordPress harassing them into upgrading. And while that wouldn&#039;t do any less to keep hackers at bay than removing the version meta data as suggested here, we at least would be occasionally accomplishing something, rather than giving people the false confidence that their outdated installation is now &quot;secure&quot; by deleting a line of code in header.php. A few extra minutes should be devoted to upgrading.

Having said that, the real problem is that although cPanel and other self-installing scripts push the latest version of WP pretty quickly, Automattic needs to find a way to cooperate with the major U.S. hosting services to force them to force their customers to upgrade. In other words, cPanel ought to also &quot;lock&quot; (flat-file) a WP-install once Automattic determines it is inherently unsafe to use anymore. Thus, their blog would still be up (as flat HTML files), but the Admin panel would be inaccessible and replaced with an admonition that an upgrade to version X.X is required to use WordPress.

It would be in Hosts best interest to do this. Although people will scream bloody murder (because they are lazy self-absorbed idiots who think the open-source world owes them a living), they will scream a lot louder once they get hacked, particularly if they lose data, and nagging at their host to fix all their problems. Better the first option than the second - plus the first option deters and deflates the egos of script-kiddies, a plus in my book. Also, the whining anti-upgrade crowd won&#039;t be able to blog about it, at least not until they upgrade, so the noise level will be relatively diminished.</description>
		<content:encoded><![CDATA[<p>I disagree. The problem with people hacking WP installs isn&#8217;t because of an obvious version number (which is more than often replicated in the footer of many free themes as well).</p>
<p>The problem is people never upgrading their WP installation. Quite frankly, this is the kind of useless tip that gives homage to the enemy. If we really want to make the world safe from hackers, we ought to send messages to those running old versions of WordPress harassing them into upgrading. And while that wouldn&#8217;t do any less to keep hackers at bay than removing the version meta data as suggested here, we at least would be occasionally accomplishing something, rather than giving people the false confidence that their outdated installation is now &#8220;secure&#8221; by deleting a line of code in header.php. A few extra minutes should be devoted to upgrading.</p>
<p>Having said that, the real problem is that although cPanel and other self-installing scripts push the latest version of WP pretty quickly, Automattic needs to find a way to cooperate with the major U.S. hosting services to force them to force their customers to upgrade. In other words, cPanel ought to also &#8220;lock&#8221; (flat-file) a WP-install once Automattic determines it is inherently unsafe to use anymore. Thus, their blog would still be up (as flat HTML files), but the Admin panel would be inaccessible and replaced with an admonition that an upgrade to version X.X is required to use WordPress.</p>
<p>It would be in Hosts best interest to do this. Although people will scream bloody murder (because they are lazy self-absorbed idiots who think the open-source world owes them a living), they will scream a lot louder once they get hacked, particularly if they lose data, and nagging at their host to fix all their problems. Better the first option than the second &#8211; plus the first option deters and deflates the egos of script-kiddies, a plus in my book. Also, the whining anti-upgrade crowd won&#8217;t be able to blog about it, at least not until they upgrade, so the noise level will be relatively diminished.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remove Wordpress Version? &#124; CMSThemestore.com</title>
		<link>http://wphacks.com/wordpress-tip-remove-wordpress-version-code/#comment-2610</link>
		<dc:creator>Remove Wordpress Version? &#124; CMSThemestore.com</dc:creator>
		<pubDate>Sun, 27 Jul 2008 14:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/?p=747#comment-2610</guid>
		<description>[...] at bay. Now Kyle Eslick over at HackWordpress.com has written a really good article called &#8220;Always Remove the WordPress Version Code&#8221; where he explains the how and the why of keeping what version of Wordpress you are using under lock [...]</description>
		<content:encoded><![CDATA[<p>[...] at bay. Now Kyle Eslick over at HackWordpress.com has written a really good article called &#8220;Always Remove the WordPress Version Code&#8221; where he explains the how and the why of keeping what version of Wordpress you are using under lock [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
