<?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>Tophography &#187; Linux &#8211; Misc.</title>
	<atom:link href="http://thetopher.com/category/linux-misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://thetopher.com</link>
	<description>All things Topher, and other stuff too.</description>
	<lastBuildDate>Thu, 22 Jul 2010 21:41:21 +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>Netcat and OpenSSL&#8217;s s_client and s_server tools</title>
		<link>http://thetopher.com/2007/09/28/netcat-and-openssls-s_client-and-s_server-tools/</link>
		<comments>http://thetopher.com/2007/09/28/netcat-and-openssls-s_client-and-s_server-tools/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 20:58:02 +0000</pubDate>
		<dc:creator>Topher</dc:creator>
				<category><![CDATA[Linux - Misc.]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://thetopher.com/2007/09/28/netcat-and-openssls-s_client-and-s_server-tools/</guid>
		<description><![CDATA[Telnet is a wonderful tool for sysadmins and network application programmers. If you ever find yourself wearing either of these hats, you&#8217;ve got to know how to use telnet. Though, sometimes telnet requires a little too much from the user in order to get anything done. Netcat to the rescue! This is a tool that [...]]]></description>
			<content:encoded><![CDATA[<p>Telnet is a wonderful tool for sysadmins and network application programmers.  If you ever find yourself wearing either of these hats, you&#8217;ve got to know how to use telnet.  Though, sometimes telnet requires a little too much from the user in order to get anything done.  Netcat to the rescue!  This is a tool that I&#8217;ve seen used before, but only recently really looked in to.  Netcat (&#8216;nc&#8217;) can be used as a server or a client, Netcat can be used to transmit files, Netcat can even be used as a port-scanner.  Once I found myself trying to debug a web server with telnet.  It was a pain to type in all the HTTP request headers by hand.  If I would have known about Netcat, I could have just done this each time:<br />
<code>nc host 80 &lt; request.txt</code><br />
and just edited the <code>request.txt</code> file each time I wanted to try something different.  Go read the man page (<code>man nc</code>), it&#8217;s actually well-written.</p>
<p>Now for the next cool tool!  Ever wanted to do some testing on a server that uses TLS/SSL?  Telnet obviously isn&#8217;t the answer.  OpenSSL to the rescue!Â  s_client lets you have the simple power of telnet, but it takes care of all the overhead of TLS/SSL.Â  You can use s_client to test a server to find out if it will allow SSL2 sessions, or find out what happens if the client only requests certain ciphers.Â  s_server gives you similar control from the server side.</p>
]]></content:encoded>
			<wfw:commentRss>http://thetopher.com/2007/09/28/netcat-and-openssls-s_client-and-s_server-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim vs. Emacs : Resolved!</title>
		<link>http://thetopher.com/2007/09/07/vim-vs-emacs-resolved/</link>
		<comments>http://thetopher.com/2007/09/07/vim-vs-emacs-resolved/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 21:05:59 +0000</pubDate>
		<dc:creator>Topher</dc:creator>
				<category><![CDATA[Linux - Misc.]]></category>

		<guid isPermaLink="false">http://thetopher.com/2007/09/07/vim-vs-emacs-resolved/</guid>
		<description><![CDATA[Here at UTOSC (the Utah Open Source Conference), I&#8217;ve found some very reliable evidence for which editor is better. After examining the sticker table, I found that the Vim stickers completely disappeared, while there are still a large number of Emacs stickers. I&#8217;m sure you all agree that this can finally end the debate.]]></description>
			<content:encoded><![CDATA[<p>Here at UTOSC (the Utah Open Source Conference), I&#8217;ve found some very reliable evidence for which editor is better.  After examining the sticker table, I found that the Vim stickers completely disappeared, while there are still a large number of Emacs stickers.  I&#8217;m sure you all agree that this can finally end the debate.</p>
]]></content:encoded>
			<wfw:commentRss>http://thetopher.com/2007/09/07/vim-vs-emacs-resolved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing dsniff</title>
		<link>http://thetopher.com/2007/02/21/installing-dsniff/</link>
		<comments>http://thetopher.com/2007/02/21/installing-dsniff/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 00:09:34 +0000</pubDate>
		<dc:creator>Topher</dc:creator>
				<category><![CDATA[Linux - Misc.]]></category>

		<guid isPermaLink="false">http://thetopher.com/2007/02/21/installing-dsniff/</guid>
		<description><![CDATA[I just thought Iâ€™d include a list of packages that I needed to install on my FC5 machine to get dsniff to compile. db4-devel : Berkeley database libraries libpcap : Libpcap libnet : (API for network packet injection) libnids : Network Intrusion Detection System (I got it from dries) openssl-devel : OpenSSL libraries After I [...]]]></description>
			<content:encoded><![CDATA[<p>I just thought Iâ€™d include a list of packages that I needed to install on my FC5 machine to get dsniff to compile.</p>
<ul>
<li>db4-devel : Berkeley database libraries</li>
<li>libpcap : Libpcap</li>
<li>libnet : (API for network packet injection)</li>
<li>libnids : Network Intrusion Detection System (I got it from dries)</li>
<li>openssl-devel : OpenSSL libraries</li>
</ul>
<p>After I installed these, the configure script completed, then I got some errors with make. I later realized that I ran into some major dependency-hell. Dsniff development stopped almost 6 years ago, and in that time, libnet and libnids have changed. I tried to find some older versions of the libraries, but no luck getting them old enough. I later found a couple rpms on the following site, but should I really trust them?</p>
<p><a href="http://voidmain.is-a-geek.net/files/RPMS/dsniff/"> http://voidmain.is-a-geek.net/files/RPMS/dsniff/</a></p>
<p class="postmetadata">[This post was rescued from Google Cache.  Originally posted 10/11/06.]</p>
]]></content:encoded>
			<wfw:commentRss>http://thetopher.com/2007/02/21/installing-dsniff/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Quick and Easy Histograms in gnuplot</title>
		<link>http://thetopher.com/2007/01/31/quick-and-easy-histograms-in-gnuplot/</link>
		<comments>http://thetopher.com/2007/01/31/quick-and-easy-histograms-in-gnuplot/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 23:51:51 +0000</pubDate>
		<dc:creator>Topher</dc:creator>
				<category><![CDATA[Linux - Misc.]]></category>

		<guid isPermaLink="false">http://thetopher.com/2007/01/31/quick-and-easy-histograms-in-gnuplot/</guid>
		<description><![CDATA[I have to create histograms quite frequently for my Digital Signal Processing class this semester. Here&#8217;s a quick gnuplot setup for a histogram. You can either type these commands into gnuplot, or enter them into a file (usually with a .gpi extension), and use &#8216;gnuplot file.gpi&#8217; or &#8216;load file.gpi&#8217; inside gnuplot. example: set boxwidth VALUE [...]]]></description>
			<content:encoded><![CDATA[<p>I have to create histograms quite frequently for my Digital Signal Processing class this semester.  Here&#8217;s a quick gnuplot setup for a histogram.  You can either type these commands into gnuplot, or enter them into a file (usually with a .gpi extension), and use &#8216;gnuplot file.gpi&#8217; or &#8216;load file.gpi&#8217; inside gnuplot.</p>
<p>example:</p>
<p><code> set boxwidth VALUE # Probably 3-5.<br />
set xlabel "STRING"<br />
set ylabel "STRING"<br />
set term svg  # Create an SVG image<br />
set output 'file.svg'<br />
set key off  # Unless you really want a key<br />
# For this next line, lw is linewidth (2-4)?<br />
plot [XMIN:XMAX] 'myHistogramData' with boxes lw VALUE<br />
</code></p>
<p>The input is expected to be in this format:</p>
<p><code>x-value y-value<br />
x-value y-value<br />
etc...</code></p>
]]></content:encoded>
			<wfw:commentRss>http://thetopher.com/2007/01/31/quick-and-easy-histograms-in-gnuplot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
