<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jared Atchison<title>&#187; wordpress fix</title>
</title>
	<atom:link href="http://www.jaredatchison.com/tag/wordpress-fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaredatchison.com</link>
	<description>Websites. Wordpress. Genesis.</description>
	<lastBuildDate>Tue, 07 Sep 2010 03:09:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress trackback exploit found</title>
		<link>http://www.jaredatchison.com/2009/10/20/wordpress-trackback-exploit-found/</link>
		<comments>http://www.jaredatchison.com/2009/10/20/wordpress-trackback-exploit-found/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:33:55 +0000</pubDate>
		<dc:creator>j-atchison</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress exploit]]></category>
		<category><![CDATA[wordpress fix]]></category>

		<guid isPermaLink="false">http://jaredatchison.com/?p=59</guid>
		<description><![CDATA[Around 9am (CST) this morning we were alerted via the wp-hackers mailing list that there is an exploit out that affects the latest version of WordPress, v 2.8.4. If you want to read more about all the technical stuff you can find the original blog post detailing the exploit here. I wouldn&#8217;t say this is [...]]]></description>
			<content:encoded><![CDATA[<p>Around 9am (CST) this morning we were alerted via the wp-hackers mailing list that there is an exploit out that affects the latest version of WordPress, v 2.8.4.</p>
<p>If you want to read more about all the technical stuff you can find the original blog post detailing the exploit <a href="http://www.stevefortuna.com/new-0-day-wordpress-exploit/">here</a>.</p>
<p>I wouldn&#8217;t say this is critical since your <strong>data is not at risk</strong> but anytime someone can put heat on your server it is not good.</p>
<p>No word yet if a patch is going to be released in the form of WordPress 2.8.5. There are a few fixes out already however.</p>
<p>There is a <a href="http://fullthrottledevelopment.com/wordpress-plugin-to-stop-trackback-dos-attacks">chunk of code </a>you can paste into your theme&#8217;s <strong><em>functions.php</em></strong> file.</p>
<pre class="brush: php;">
function ft_stop_trackback_dos_attacks(){
	global $pagenow;
	if ( 'wp-trackback.php' == $pagenow ){
		// DoS attack fix.
		if ( isset($_POST['charset']) ){
			$charset = $_POST['charset'];
			if ( strlen($charset) &amp;amp;gt; 50 ) {  die; }
		}
	}
}
add_action('init','ft_stop_trackback_dos_attacks');
</pre>
<p>There is also already a <a href="http://core.trac.wordpress.org/changeset/12057#file0">fix on trac</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jaredatchison.com/2009/10/20/wordpress-trackback-exploit-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
