<?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>Online Marketing Services &#38; Business Website Design &#187; security</title>
	<atom:link href="http://om4.com.au/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://om4.com.au</link>
	<description>Find customers. Convert online.</description>
	<lastBuildDate>Thu, 22 Jul 2010 01:09:25 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Keeping WordPress Secure</title>
		<link>http://om4.com.au/keeping-wordpress-secure/</link>
		<comments>http://om4.com.au/keeping-wordpress-secure/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 17:14:20 +0000</pubDate>
		<dc:creator>Glenn</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[patches]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Upgrades]]></category>

		<guid isPermaLink="false">http://om4.com.au/?p=1159</guid>
		<description><![CDATA[Recently Matt Mullenweg wrote a blog post explaining why a strategy of keeping up to date with WordPress upgrades and patches is a good idea: How To Keep WordPress Secure 
All our OM4 websites run on WordPress. Each time a WordPress upgrade or patch is released, we assess it and apply it. 
When security patches [...]<p><br/><br/><a href="http://om4.com.au/keeping-wordpress-secure/">Keeping WordPress Secure</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Recently Matt Mullenweg wrote a blog post explaining why a strategy of keeping up to date with WordPress upgrades and patches is a good idea: <a href="http://wordpress.org/development/2009/09/keep-wordpress-secure/">How To Keep WordPress Secure</a> </p>
<p>All our OM4 websites run on WordPress. Each time a WordPress upgrade or patch is released, we assess it and apply it. </p>
<p>When security patches are released, we apply them promptly. </p>
<p>With larger upgrades, it might take us a bit longer to make sure any required changes are integrated to enable new functionality. Some upgrades introduce a lot of new functionality that require changes to theme files. Sometimes plugins aren&#8217;t compatible with updates and we have to co-ordinate the update with plugin updates to keep everything working together.</p>
<p>We&#8217;ve been doing this ever since launching our first WordPress site, and plan to keep doing it. As Matt says, there are no guarantees, but it is a good strategy for keeping your WordPress website secure.</p>
<p><br/><br/><a href="http://om4.com.au/keeping-wordpress-secure/">Keeping WordPress Secure</a></p>
]]></content:encoded>
			<wfw:commentRss>http://om4.com.au/keeping-wordpress-secure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Leopard: ssh, RSA key pairs, passphrases and the annoying password window</title>
		<link>http://om4.com.au/ssh-rsa-key-pairs-passphrases-leopard/</link>
		<comments>http://om4.com.au/ssh-rsa-key-pairs-passphrases-leopard/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 00:48:22 +0000</pubDate>
		<dc:creator>Glenn</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://om4.com.au/?p=731</guid>
		<description><![CDATA[As I was monitoring our servers for a period over the holidays, I had a chance to get back to grips with ssh. Here is a quick public service announcement for any Mac users out there who are using ssh and RSA keypairs who are encountering a window asking you to:
Enter your password for the [...]<p><br/><br/><a href="http://om4.com.au/ssh-rsa-key-pairs-passphrases-leopard/">Mac Leopard: ssh, RSA key pairs, passphrases and the annoying password window</a></p>
]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_732" class="wp-caption alignright" style="width: 360px"><a href="http://om4.com.au/wp-content/uploads/rsa-password-prompt.png"><img src="http://om4.com.au/wp-content/uploads/rsa-password-prompt-350x208.png" alt="If you are getting stuck at this prompt, read this post" title="rsa-password-prompt" width="350" height="208" class="size-medium wp-image-732" /></a><p class="wp-caption-text">If you are getting stuck at this prompt, read this post</p></div>As I was monitoring our servers for a period over the holidays, I had a chance to get back to grips with ssh. Here is a quick public service announcement for any Mac users out there who are using ssh and RSA keypairs who are encountering a window asking you to:<br />
Enter your password for the SSH key &#8220;id_rsa&#8221;</p>
<p>In short, if you use ssh to connect to a remote server, you can setup an RSA public/private key pair to allow you to connect to your server without a password. In Leopard 10.5 this doesn&#8217;t seem to always work as it used to, and I couldn&#8217;t find an article that gave a solution.</p>
<p>So, here is a way to get your passphrase loaded in to your keychain to avoid the annoying password window (that won&#8217;t let you enter your &#8216;password&#8217;).</p>
<p>1. Clear the contents of your ~/.ssh directory and set the directory permissions to 600<br />
$ rm ~/.ssh/*<br />
$ chmod 600 ~/.ssh</p>
<p>2. Generate your rsa key pair (there are variations for this, but this is the version I used):<br />
$ ssh-keygen -t rsa</p>
<p>3. Set the permissions for all files in ~/.ssh to 600<br />
$ chmod 600 ~/.ssh</p>
<p>4. Copy your id_rsa.pub key to your server&#8217;s .ssh/authorized_keys file</p>
<p>5. Add your passphrase to your keychain using this command:<br />
$ ssh-add -K<br />
(you will see Enter passphrase for [your system]/.ssh/id_rsa: )</p>
<p>6. You are all set to login using ssh without a password</p>
<p>This is a solution to the passphrase problem &#8211; here is more general information if you want to <a href="http://www.howtoforge.com/setting-up-an-ssh-certificate-for-ubuntu-from-a-mac">learn more about setting up ssh with an RSA key pair</a>.</p>
<p><br/><br/><a href="http://om4.com.au/ssh-rsa-key-pairs-passphrases-leopard/">Mac Leopard: ssh, RSA key pairs, passphrases and the annoying password window</a></p>
]]></content:encoded>
			<wfw:commentRss>http://om4.com.au/ssh-rsa-key-pairs-passphrases-leopard/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
