<?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>2718.us blog &#187; SECRET_KEY</title>
	<atom:link href="http://2718.us/blog/tag/secret_key/feed/" rel="self" type="application/rss+xml" />
	<link>http://2718.us/blog</link>
	<description>Miscellaneous Technological Geekery</description>
	<lastBuildDate>Tue, 18 May 2010 02:42:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress 2.5.1</title>
		<link>http://2718.us/blog/2008/04/25/wordpress-251/</link>
		<comments>http://2718.us/blog/2008/04/25/wordpress-251/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 18:16:45 +0000</pubDate>
		<dc:creator>2718.us</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SECRET_KEY]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress 2.5.1]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp2.5.1]]></category>

		<guid isPermaLink="false">http://2718.us/blog/?p=29</guid>
		<description><![CDATA[The .1 update that many people said they were waiting for is here. (And there are reminders all over every admin page on my blog, too.) Version 2.5.1 of WordPress is now available. It includes a number of bug fixes, performance enhancements, and one very important security fix. We recommend everyone update immediately, particularly if [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://wordpress.org/development/2008/04/wordpress-251/">.1 update that many people said they were waiting for is here</a>. (And there are reminders all over every admin page on my blog, too.)</p>
<blockquote><p>Version 2.5.1 of WordPress is now available. It includes a number of bug fixes, performance enhancements, and one very important security fix. We recommend everyone update immediately, particularly if your blog has open registration. The vulnerability is not public but it will be shortly.</p></blockquote>
<p>The notice also mentioned <a href="http://2718.us/blog/2008/04/24/the-secret_key-in-wordpress/">the SECRET_KEY thing that I talked about yesterday</a> and gave a link to auto-generate the line for wp-config.php:</p>
<blockquote><p>Since 2.5 your <code>wp-config.php</code> file allows a new constant called <code>SECRET_KEY</code> which basically is meant to introduce a little permanent randomness into the cryptographic functions used for cookies in WordPress. You can <a href="http://api.wordpress.org/secret-key/1.0/">visit this link we set up to get a unique secret key</a> for your config file. (It’s unique and random on every page load.) Having this line in your config file helps secure your blog.</p></blockquote>
<p>Upgrading took me about 15 seconds (as usual), mostly to find <a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion#Updating_to_a_New_Stable_Version">the svn command in the codex</a> again and then a few seconds to run it and a few seconds in hitting the &#8220;database upgrade&#8221; page on the site before things were all done.</p>
]]></content:encoded>
			<wfw:commentRss>http://2718.us/blog/2008/04/25/wordpress-251/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The SECRET_KEY in WordPress</title>
		<link>http://2718.us/blog/2008/04/24/the-secret_key-in-wordpress/</link>
		<comments>http://2718.us/blog/2008/04/24/the-secret_key-in-wordpress/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 22:20:59 +0000</pubDate>
		<dc:creator>2718.us</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[integrate]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[SECRET_KEY]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress 2.5]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp2.5]]></category>

		<guid isPermaLink="false">http://2718.us/blog/?p=27</guid>
		<description><![CDATA[I&#8217;ve gotten into the habit of actually reading the various blogs to which there are links on my WordPress dashboard and I saw this today from boren.nu: To make cookies secure against attacks where someone has managed to get into your database through an SQL injection exploit or other means, WordPress 2.5 introduced a user-definable [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gotten into the habit of actually reading the various blogs to which there are links on my WordPress dashboard and I saw <a href="http://boren.nu/archives/2008/04/24/cookie-security-in-wordpress-25/">this today from boren.nu</a>:</p>
<blockquote><p>To make cookies secure against attacks where someone has managed to get into your database through an SQL injection exploit or other means, WordPress 2.5 introduced a user-definable constant called SECRET_KEY. If you look at the sample wp-config.php shipped with 2.5, you’ll see these lines.</p>
<blockquote><p>// Change SECRET_KEY to a unique phrase.  You won’t have to remember it later,<br />
// so make it long and complicated.  You can visit https://www.grc.com/passwords<br />
.htm<br />
// to get a phrase generated for you, or just make something up.<br />
define(’SECRET_KEY’, ‘put your unique phrase here’); // Change this to a unique phrase</p></blockquote>
<p>If you upgraded from a previous version of WordPress you probably won’t have these lines in your wp-config.php.</p></blockquote>
<p>That last bit is, of course, the critical thing for me and had me going back and inserting SECRET_KEYs into all my older/upgraded WordPress installs.  Just remember that if you&#8217;re integrating with bbPress, you have to match the SECRET_KEYs in wp-config.php and bb-config.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://2718.us/blog/2008/04/24/the-secret_key-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
