<?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: Hak5 1110 &#8211; SSH Public Key Fingerprints, Windows SSH Servers and Linux Key Pair Exchange</title>
	<atom:link href="http://hak5.org/episodes/hak5-1110/feed" rel="self" type="application/rss+xml" />
	<link>http://hak5.org/episodes/hak5-1110</link>
	<description>Trust Your Technolust</description>
	<lastBuildDate>Mon, 20 May 2013 13:05:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Hak5 1112 â€“ Relay two firewalled devices through a persistent SSH proxy &#124; Welcome To My Mind</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-51193</link>
		<dc:creator>Hak5 1112 â€“ Relay two firewalled devices through a persistent SSH proxy &#124; Welcome To My Mind</dc:creator>
		<pubDate>Tue, 12 Jun 2012 16:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-51193</guid>
		<description><![CDATA[[...] Hak5 1110 â€“ SSH Public Key Fingerprints, Windows SSH Servers and Linux Key Pair Exchange [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Hak5 1110 â€“ SSH Public Key Fingerprints, Windows SSH Servers and Linux Key Pair Exchange [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Share tips</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-51029</link>
		<dc:creator>Share tips</dc:creator>
		<pubDate>Tue, 22 May 2012 08:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-51029</guid>
		<description><![CDATA[need tutorial about cpu overclockingâ€¦can u drive it?]]></description>
		<content:encoded><![CDATA[<p>need tutorial about cpu overclockingâ€¦can u drive it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alvaro</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-51004</link>
		<dc:creator>Alvaro</dc:creator>
		<pubDate>Tue, 15 May 2012 13:58:28 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-51004</guid>
		<description><![CDATA[An alternative method for copying your SSH public key to a remote server: ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host]]></description>
		<content:encoded><![CDATA[<p>An alternative method for copying your SSH public key to a remote server: ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Harvey</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-50794</link>
		<dc:creator>Charlie Harvey</dc:creator>
		<pubDate>Thu, 03 May 2012 19:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-50794</guid>
		<description><![CDATA[I&#039;ve been loving your shows about proxies. Really well done folks! 

But Darren&#039;s comment about rm-ing his known_hosts got me thinking about how you could get round that. I put up a &lt;a href=&quot;http://charlieharvey.org.uk/page/remove_line_from_middle_of_file_head_tail_bash_code&quot; rel=&quot;nofollow&quot;&gt;longer writeup on my site&lt;/a&gt; but the long and short of it is in Bash you can say 
&lt;code&gt;(x=3; head -n$(($x-1)) known_hosts; tail -n$((`wc -l known_hosts &#124; cut -d &#039; &#039; -f 1`-$x)) known_hosts) &gt; t2 &amp;&amp; cat t2 &gt; known_hosts&lt;/code&gt; where x is the offending line number of the key (the warning tells you which line in the file to remove). 

My preferred way is less typing heavy and more perlish &lt;code&gt;perl -nle &#039;print if(++$i!=3)&#039; known_hosts &gt; t2 &amp;&amp; mv t2 known_hosts&lt;/code&gt; would do it ;-)]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been loving your shows about proxies. Really well done folks! </p>
<p>But Darren&#8217;s comment about rm-ing his known_hosts got me thinking about how you could get round that. I put up a <a href="http://charlieharvey.org.uk/page/remove_line_from_middle_of_file_head_tail_bash_code" rel="nofollow">longer writeup on my site</a> but the long and short of it is in Bash you can say<br />
<code>(x=3; head -n$(($x-1)) known_hosts; tail -n$((`wc -l known_hosts | cut -d ' ' -f 1`-$x)) known_hosts) &gt; t2 &amp;&amp; cat t2 &gt; known_hosts</code> where x is the offending line number of the key (the warning tells you which line in the file to remove). </p>
<p>My preferred way is less typing heavy and more perlish <code>perl -nle 'print if(++$i!=3)' known_hosts &gt; t2 &amp;&amp; mv t2 known_hosts</code> would do it <img src='http://hak5.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NativeHacker</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-50258</link>
		<dc:creator>NativeHacker</dc:creator>
		<pubDate>Wed, 02 May 2012 01:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-50258</guid>
		<description><![CDATA[i need tutorial about cpu overclocking...can u drive it?]]></description>
		<content:encoded><![CDATA[<p>i need tutorial about cpu overclocking&#8230;can u drive it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: privateee</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-50230</link>
		<dc:creator>privateee</dc:creator>
		<pubDate>Fri, 27 Apr 2012 19:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-50230</guid>
		<description><![CDATA[Could you make a tip of hacking websites ..!! 

Thanks ...! :D]]></description>
		<content:encoded><![CDATA[<p>Could you make a tip of hacking websites ..!! </p>
<p>Thanks &#8230;! <img src='http://hak5.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shinobi</title>
		<link>http://hak5.org/episodes/hak5-1110#comment-50226</link>
		<dc:creator>shinobi</dc:creator>
		<pubDate>Fri, 27 Apr 2012 00:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://Hak5.org/?p=4760#comment-50226</guid>
		<description><![CDATA[I was wondering if you where going to show how to set up a openssh server in either widows or Linux(Ubuntu).]]></description>
		<content:encoded><![CDATA[<p>I was wondering if you where going to show how to set up a openssh server in either widows or Linux(Ubuntu).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
