<?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>Breaking Systems for Fun and Profit &#187; linux</title>
	<atom:link href="http://breakingsystemsforfunandprofit.com/archives/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://breakingsystemsforfunandprofit.com</link>
	<description>You _can_ stop the signal.</description>
	<lastBuildDate>Mon, 17 May 2010 09:58:45 +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>Bound to nothing&#8230;</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/157</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/157#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:23:55 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Init Influences]]></category>
		<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[bind-mount]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=157</guid>
		<description><![CDATA[Add this little sucker to /etc/fstab and reboot: /dev/null /bin/bash bind bind 0 0]]></description>
			<content:encoded><![CDATA[<p>Add this little sucker to <code>/etc/fstab</code> and reboot:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null    <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">bash</span>    <span style="color: #7a0874; font-weight: bold;">bind</span>   <span style="color: #7a0874; font-weight: bold;">bind</span>   <span style="color: #000000;">0</span> <span style="color: #000000;">0</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/157/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What login?</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/145</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/145#comments</comments>
		<pubDate>Wed, 14 Oct 2009 08:20:19 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Pam Ponies]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pam]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=145</guid>
		<description><![CDATA[Try and have some fun with this one: sed -i 's/unix/time/g' /etc/pam.d/system-auth]]></description>
			<content:encoded><![CDATA[<p>Try and have some fun with this one:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">'s/unix/time/g'</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>pam.d<span style="color: #000000; font-weight: bold;">/</span>system-auth</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/145/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who needs multiple cores anyway?</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/140</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/140#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:10:04 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Kernel Capers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sysfs]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=140</guid>
		<description><![CDATA[Disabling cores for fun and profit]]></description>
			<content:encoded><![CDATA[<p>Do you remember the good old days when all you had was a single core? Time to re-live those glory days!</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>sys<span style="color: #000000; font-weight: bold;">/</span>devices<span style="color: #000000; font-weight: bold;">/</span>system<span style="color: #000000; font-weight: bold;">/</span>cpu<span style="color: #000000; font-weight: bold;">/</span>cpu<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">1</span>-<span style="color: #000000;">9</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #000000;">0</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #800000;">${I}</span><span style="color: #000000; font-weight: bold;">/</span>online
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p><em>Unfortunately we can&#8217;t disable cpu0&#8230;</em> </p>
]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/140/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SImplify your init</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/128</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/128#comments</comments>
		<pubDate>Sun, 09 Aug 2009 08:40:11 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Kernel Capers]]></category>
		<category><![CDATA[init]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[submitted]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=128</guid>
		<description><![CDATA[This one was submitted by fl0_: Create a file called init.c #include &#60;stdio.h&#62; &#160; int main&#40;&#41;&#123; &#160; printf&#40;&#34;MOEHAHAHHAAAA\n&#34;&#41;; return 0; &#125; Next run the following commands: gcc -o init init.c touch -r /sbin/init init cp -f init /sbin/init You might want to hide your handiwork from the other admins by either removing ~/.bash_history(obvious)/running set +o [...]]]></description>
			<content:encoded><![CDATA[<p>This one was submitted by <strong>fl0_</strong>:</p>
<p>Create a file called <code>init.c</code></p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
       <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;MOEHAHAHHAAAA<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Next run the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #660033;">-o</span> init init.c
<span style="color: #c20cb9; font-weight: bold;">touch</span> <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>init init
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-f</span> init <span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>init</pre></div></div>

<p>You might want to hide your handiwork from the other admins by either removing <code>~/.bash_history</code>(obvious)/running <code>set +o history</code> before you begin/<code>kill -9 $$</code></p>
]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/128/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Lolcats, they are everywhere!</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/118</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/118#comments</comments>
		<pubDate>Fri, 07 Aug 2009 07:57:18 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Squid Squalor]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=118</guid>
		<description><![CDATA[All your images are belong to cheezburger. Or regrubzeehC if you prefer]]></description>
			<content:encoded><![CDATA[<p>Do you use squid? Are your users under-appreciating the blissful goodness that is the LOLcat? Feel like educating them a bit? Add or replace the following line in <code>/etc/squid/squid.conf</code>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">url_rewrite_program <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-u</span> <span style="color: #660033;">-r</span> s<span style="color: #000000; font-weight: bold;">!</span>^<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>^<span style="color: #7a0874; font-weight: bold;">&#91;</span>:space:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">*</span>\.<span style="color: #7a0874; font-weight: bold;">&#40;</span>jp<span style="color: #7a0874; font-weight: bold;">&#40;</span>e<span style="color: #7a0874; font-weight: bold;">&#41;</span>?g<span style="color: #000000; font-weight: bold;">|</span>gif<span style="color: #000000; font-weight: bold;">|</span>png<span style="color: #000000; font-weight: bold;">|</span>tiff<span style="color: #000000; font-weight: bold;">|</span>bmp<span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #007800;">$!</span>http:<span style="color: #000000; font-weight: bold;">//</span>icanhascheezburger.files.wordpress.com<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2009</span><span style="color: #000000; font-weight: bold;">/</span>04<span style="color: #000000; font-weight: bold;">/</span>funny-pictures-cat-is-on-your-computer.jpg<span style="color: #000000; font-weight: bold;">!</span></pre></div></div>

<p>Enterprising bofh&#8217;s could use a script to download the referred image, modify it, place it somewhere in <code>/var/www/html</code> and have the rewritten url point to the new bastardised image for extra credit, like <a href="http://ex-parrot.com/~pete/upside-down-ternet.html">this guy</a> did.</p>
<p>It takes a bit more work, so let&#8217;s go over the steps:<br />
Make sure you&#8217;ve got a webserver running on the same box as your proxy<br />
Add/modify this line in <code>/etc/squid/squid.conf</code></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">url_rewrite_program <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>squid<span style="color: #000000; font-weight: bold;">/</span>mirror.sh</pre></div></div>

<p>Now make <code>/var/www/html</code> writable by the <code>squid</code> user:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">setfacl <span style="color: #660033;">-m</span> u:squid:rwx <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>html</pre></div></div>

<p>And last but not least add this file as <code>/etc/squid/mirror.sh</code> and make it executable:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> URL
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #007800;">SURL</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${URL}</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span><span style="color: #ff0000;">&quot; &quot;</span> -f1<span style="color: #7a0874; font-weight: bold;">&#41;</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${SURL}</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">egrep</span> <span style="color: #660033;">-qi</span> <span style="color: #ff0000;">&quot;\.(jp(e)?g|gif|png|tiff|bmp|ico)$&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>
        <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">umask</span> 002
         <span style="color: #007800;">PIC</span>=<span style="color: #007800;">$$</span>-<span style="color: #800000;">${RANDOM}</span>
         <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> <span style="color: #660033;">-O</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${PIC}</span> <span style="color: #800000;">${SURL}</span>
         convert <span style="color: #660033;">-quiet</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${PIC}</span> <span style="color: #660033;">-flop</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>html<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${PIC}</span>.png <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>;
            <span style="color: #7a0874; font-weight: bold;">echo</span> http:<span style="color: #000000; font-weight: bold;">//</span>127.0.0.1<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${PIC}</span>.png
        <span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$URL</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>The end result:<a class="lightbox" title="moc.elgoog" href="http://breakingsystemsforfunandprofit.com/wp-content/uploads/2009/08/elgoog.png"><img class="aligncenter size-medium wp-image-124" title="moc.elgoog" src="http://breakingsystemsforfunandprofit.com/wp-content/uploads/2009/08/elgoog-300x229.png" alt="" width="300" height="229" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/118/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Efficient Secure Shell</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/114</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/114#comments</comments>
		<pubDate>Thu, 06 Aug 2009 10:34:11 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[SSH Shenanigans]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=114</guid>
		<description><![CDATA[Do all those people who use ssh irritate you as well because you can&#8217;t eavesdrop on their connections? Teach them a lesson so that they&#8217;ll revert to good ol&#8217; telnet! printf '\tHostname localhost\n' &#62;&#62; /etc/ssh/ssh_config]]></description>
			<content:encoded><![CDATA[<p>Do all those people who use <code>ssh</code> irritate you as well because you can&#8217;t eavesdrop on their connections? Teach them a lesson so that they&#8217;ll revert to good ol&#8217; <code>telnet</code>!</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">'\tHostname localhost\n'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ssh<span style="color: #000000; font-weight: bold;">/</span>ssh_config</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/114/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help the homeless</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/110</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/110#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:42:22 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Bash Bonanza]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=110</guid>
		<description><![CDATA[Or lock 'em out of their homes...]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> a-x $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span>home <span style="color: #660033;">-depth</span> <span style="color: #660033;">-maxdepth</span> <span style="color: #000000;">1</span> <span style="color: #660033;">-type</span> d<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/110/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s there isn&#8217;t it?</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/107</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/107#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:35:16 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Bash Bonanza]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=107</guid>
		<description><![CDATA[Bin? Isn't that what they call a trashcan in the UK?]]></description>
			<content:encoded><![CDATA[<p>Try this one to annoy your users. for extra fun replace <code>/bin</code> with <code>/usr/bin</code>, rinse, repeat.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>bin <span style="color: #ff0000;">'/bin '</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/107/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slow down there a bit bro&#8230;</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/104</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/104#comments</comments>
		<pubDate>Mon, 03 Aug 2009 17:33:28 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Network Nuisances]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=104</guid>
		<description><![CDATA[Why does everything always have to be so fast?]]></description>
			<content:encoded><![CDATA[<p>Fast network links getting you down?</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">for</span> IF <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span>ip l <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #660033;">-F</span><span style="color: #ff0000;">': '</span> <span style="color: #ff0000;">'/^[0-9]/{print $2}'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">do</span>
    ip l s <span style="color: #800000;">${IF}</span> mtu <span style="color: #000000;">60</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Especially fun if this machine is acting as a (nat-)router for other boxes&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/104/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You make me feel complete</title>
		<link>http://breakingsystemsforfunandprofit.com/archives/101</link>
		<comments>http://breakingsystemsforfunandprofit.com/archives/101#comments</comments>
		<pubDate>Tue, 28 Jul 2009 16:28:54 +0000</pubDate>
		<dc:creator>Mule</dc:creator>
				<category><![CDATA[Bash Bonanza]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://breakingsystemsforfunandprofit.com/?p=101</guid>
		<description><![CDATA[Have some fun with tab-completion]]></description>
			<content:encoded><![CDATA[<p>Pop this one into a bash session and watch the hilarity ensue:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">complete</span> <span style="color: #660033;">-E</span> <span style="color: #660033;">-W</span> <span style="color: #ff0000;">'rm\ -rf\ /*\ /.*'</span></pre></div></div>

<p>And while we&#8217;re having fun try this one as well (<em>advertorial alert</em>):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">complete</span> <span style="color: #660033;">-W</span> <span style="color: #ff0000;">'http://breakingsystemsforfunandprofit.com'</span> elinks links firefox chrome midori epiphany <span style="color: #c20cb9; font-weight: bold;">wget</span> opera</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://breakingsystemsforfunandprofit.com/archives/101/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
