<?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>tech.nocr.at &#187; leech</title> <atom:link href="http://tech.nocr.at/tag/leech/feed/" rel="self" type="application/rss+xml" /><link>http://tech.nocr.at</link> <description>gadget.hacking.gaming.geek.tech</description> <lastBuildDate>Sun, 29 Jan 2012 07:25:13 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Hotlink Prevention In Nginx</title><link>http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/</link> <comments>http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/#comments</comments> <pubDate>Mon, 03 Jan 2011 05:52:59 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[Hacking And Security]]></category> <category><![CDATA[ac]]></category> <category><![CDATA[band]]></category> <category><![CDATA[cat]]></category> <category><![CDATA[display]]></category> <category><![CDATA[ds]]></category> <category><![CDATA[ea]]></category> <category><![CDATA[error]]></category> <category><![CDATA[follow]]></category> <category><![CDATA[google]]></category> <category><![CDATA[holidays]]></category> <category><![CDATA[hotlink]]></category> <category><![CDATA[id]]></category> <category><![CDATA[images]]></category> <category><![CDATA[ir]]></category> <category><![CDATA[led]]></category> <category><![CDATA[leech]]></category> <category><![CDATA[loa]]></category> <category><![CDATA[lock]]></category> <category><![CDATA[mini]]></category> <category><![CDATA[nginx]]></category> <category><![CDATA[os]]></category> <category><![CDATA[pen]]></category> <category><![CDATA[press]]></category> <category><![CDATA[root]]></category> <category><![CDATA[server]]></category> <category><![CDATA[small]]></category> <category><![CDATA[tech.nocr.at]]></category> <category><![CDATA[time]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wrong]]></category> <category><![CDATA[yahoo]]></category> <guid
isPermaLink="false">http://tech.nocr.at/?p=2348</guid> <description><![CDATA[Hotlinking, inline linking, leeching, piggy-backing, direct linking or offsite image grabs. No matter what you call it 99% of the time it&#8217;s wrong. Bandwidth costs money. I spent sometime over the holidays examining my logs and noticed that there were a ton of sites hotlinking back to images we had posted. Worst of all, most [...]]]></description> <content:encoded><![CDATA[<div
style="text-align:center;"><img
src="http://tech.nocr.at/wp-content/uploads/2011/01/shotlink.jpg" alt="hotlink.jpg" border="0" width="412" height="235" /></div><p>Hotlinking, inline linking, leeching, piggy-backing, direct linking or offsite image grabs.  No matter what you call it 99% of the time it&#8217;s wrong. Bandwidth costs money.  I spent sometime over the holidays examining my logs and noticed that there were a ton of sites hotlinking back to images we had posted.  Worst of all, most of them were profiting off the images.</p><p>Here at tech.nocr.at we run nginx as a front-end proxy to WordPress.  Stopping hotlinking in nginx is as simple as adding a small snippet of code in your sites-enabled file. Add the following code inside your server statement.</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">location ~<span style="color: #000000; font-weight: bold;">*</span> ^.+\.<span style="color: #7a0874; font-weight: bold;">&#40;</span>jpg<span style="color: #000000; font-weight: bold;">|</span>jpeg<span style="color: #000000; font-weight: bold;">|</span>gif<span style="color: #000000; font-weight: bold;">|</span>png<span style="color: #7a0874; font-weight: bold;">&#41;</span>$ <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  root   <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>webroot;
  valid_referers none blocked server_names ~<span style="color: #7a0874; font-weight: bold;">&#40;</span>yourdomain.com<span style="color: #000000; font-weight: bold;">|</span>google.<span style="color: #000000; font-weight: bold;">|</span>yahoo.<span style="color: #000000; font-weight: bold;">|</span>bing.<span style="color: #7a0874; font-weight: bold;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #007800;">$invalid_referer</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>  <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">403</span>;
  <span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div><p>The above will allow images to be displayed if they come from your domain, google, yahoo and bing.  If you have other sites you might want your images to be linked from just add them in the valid_referers statement. If someone tries to hotlink to one of your images they will receive a 403 error.  If you wish to have a different image displayed instead of the 403 error, letting them know they are hotlinking, then you must replace the return 403; line with this:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">rewrite  ^  http:<span style="color: #000000; font-weight: bold;">//</span>yourdomain.com<span style="color: #000000; font-weight: bold;">/</span>hotlink.jpe;</pre></div></div><p>Notice how the image file ends in .jpe?  If it were you end in .jpg it would end up in a loop and never be displayed.  Simply create the image you want to use and change it&#8217;s extension to .jpe before you upload it to your web host.</p><p></p><p
style="text-align:right"> <g:plusone size="tall"></g:plusone>  <script type="text/javascript">(function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();</script> <a
href="http://api.tweetmeme.com/share?url=http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/"><img
src="http://api.tweetmeme.com/imagebutton.gif?url=http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/" height="61" width="51" /></a></p><p
style="padding:5px;background:#ffffcc;border:1px solid #ffff99;clear:both"><a
href="http://tech.nocr.at"><img
src="http://tech.nocr.at/images/feed_logo.png" alt="tech.nocr.at" width="16" height="16" border="0" style="float:left;padding:0 5px 5px 0"></a><a
href="http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/">Hotlink Prevention In Nginx</a> originally appeared on <a
href="http://tech.nocr.at">tech.nocr.at</a> on 2011/01/03. Reproduction of content not allowed without consent.<br
style="clear:both"></p><p><small>© <a
href="http://tech.nocr.at">tech.nocr.at</a> 2011 | <a
href="http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/">Permalink</a> | <a
href="http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/#comments">Comments</a> |
Read more in <a
href="http://tech.nocr.at/category/hacking-security/" title="View all posts in Hacking And Security" rel="category tag">Hacking And Security</a> | Explore more in: <a
href="http://tech.nocr.at/tag/ac/" rel="tag">ac</a>, <a
href="http://tech.nocr.at/tag/band/" rel="tag">band</a>, <a
href="http://tech.nocr.at/tag/cat/" rel="tag">cat</a>, <a
href="http://tech.nocr.at/tag/display/" rel="tag">display</a>, <a
href="http://tech.nocr.at/tag/ds/" rel="tag">ds</a>, <a
href="http://tech.nocr.at/tag/ea/" rel="tag">ea</a>, <a
href="http://tech.nocr.at/tag/error/" rel="tag">error</a>, <a
href="http://tech.nocr.at/tag/follow/" rel="tag">follow</a>, <a
href="http://tech.nocr.at/tag/google/" rel="tag">google</a>, <a
href="http://tech.nocr.at/tag/holidays/" rel="tag">holidays</a>, <a
href="http://tech.nocr.at/tag/hotlink/" rel="tag">hotlink</a>, <a
href="http://tech.nocr.at/tag/id/" rel="tag">id</a>, <a
href="http://tech.nocr.at/tag/images/" rel="tag">images</a>, <a
href="http://tech.nocr.at/tag/ir/" rel="tag">ir</a>, <a
href="http://tech.nocr.at/tag/led/" rel="tag">led</a>, <a
href="http://tech.nocr.at/tag/leech/" rel="tag">leech</a>, <a
href="http://tech.nocr.at/tag/loa/" rel="tag">loa</a>, <a
href="http://tech.nocr.at/tag/lock/" rel="tag">lock</a>, <a
href="http://tech.nocr.at/tag/mini/" rel="tag">mini</a>, <a
href="http://tech.nocr.at/tag/nginx/" rel="tag">nginx</a>, <a
href="http://tech.nocr.at/tag/os/" rel="tag">os</a>, <a
href="http://tech.nocr.at/tag/pen/" rel="tag">pen</a>, <a
href="http://tech.nocr.at/tag/press/" rel="tag">press</a>, <a
href="http://tech.nocr.at/tag/root/" rel="tag">root</a>, <a
href="http://tech.nocr.at/tag/server/" rel="tag">server</a>, <a
href="http://tech.nocr.at/tag/small/" rel="tag">small</a>, <a
href="http://tech.nocr.at/tag/tech-nocr-at/" rel="tag">tech.nocr.at</a>, <a
href="http://tech.nocr.at/tag/time/" rel="tag">time</a>, <a
href="http://tech.nocr.at/tag/wordpress/" rel="tag">wordpress</a>, <a
href="http://tech.nocr.at/tag/wrong/" rel="tag">wrong</a>, <a
href="http://tech.nocr.at/tag/yahoo/" rel="tag">yahoo</a> | <a
href="http://del.icio.us/post?url=http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/&title=Hotlink Prevention In Nginx">Add to del.icio.us</a> | <a
href="http://www.stumbleupon.com/submit?url=http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/&title=Hotlink Prevention In Nginx">Stumble it</a> | <a
href="http://reddit.com/submit?url=http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/&title=Hotlink Prevention In Nginx">Reddit</a> </small></p>]]></content:encoded> <wfw:commentRss>http://tech.nocr.at/hacking-security/hotlink-prevention-in-nginx/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Top 10 Of 2010</title><link>http://tech.nocr.at/tech/top-10-of-2010/</link> <comments>http://tech.nocr.at/tech/top-10-of-2010/#comments</comments> <pubDate>Wed, 29 Dec 2010 05:51:37 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[Tech News]]></category> <category><![CDATA[2010]]></category> <category><![CDATA[ac]]></category> <category><![CDATA[cable]]></category> <category><![CDATA[cat]]></category> <category><![CDATA[comments]]></category> <category><![CDATA[distro]]></category> <category><![CDATA[diy]]></category> <category><![CDATA[door]]></category> <category><![CDATA[ds]]></category> <category><![CDATA[ea]]></category> <category><![CDATA[game]]></category> <category><![CDATA[Gaming]]></category> <category><![CDATA[id]]></category> <category><![CDATA[ipod]]></category> <category><![CDATA[key]]></category> <category><![CDATA[keys]]></category> <category><![CDATA[knock]]></category> <category><![CDATA[led]]></category> <category><![CDATA[leech]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[loa]]></category> <category><![CDATA[lock]]></category> <category><![CDATA[mobile]]></category> <category><![CDATA[nginx]]></category> <category><![CDATA[open]]></category> <category><![CDATA[os]]></category> <category><![CDATA[pen]]></category> <category><![CDATA[press]]></category> <category><![CDATA[ring]]></category> <category><![CDATA[rip]]></category> <category><![CDATA[secret]]></category> <category><![CDATA[sega]]></category> <category><![CDATA[shuffle]]></category> <category><![CDATA[speed]]></category> <category><![CDATA[tech.nocr.at]]></category> <category><![CDATA[technology]]></category> <category><![CDATA[vga]]></category> <category><![CDATA[wifi]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wp super cache]]></category> <guid
isPermaLink="false">http://tech.nocr.at/tech/top-10-of-2010/</guid> <description><![CDATA[Another year is almost behind us and thanks to our dedicated and loyal readers our 3rd successful year bringing you the latest in gadgets, gaming, technology and the bizarre. We have brought the monkeys in (by monkeys we mean a crafty worded perl script) and have compiled the the most viewed posts here on tech.nocr.at. [...]]]></description> <content:encoded><![CDATA[<p><center><img
src="http://tech.nocr.at/wp-content/uploads/2010/12/technocrat_top10.png" width="470" height="264" alt="technocrat_top10.png" class="captionfull" /></center></p><p>Another year is almost behind us and thanks to our dedicated and loyal readers our 3rd successful year bringing you the latest in gadgets, gaming, technology and the bizarre.</p><p>We have brought the monkeys in (by monkeys we mean a crafty worded perl script) and have compiled the the most viewed posts here on tech.nocr.at. This list doesn&#8217;t just contain posts from 2010, it contains the top ten most viewed posts this year regardless of when they were created.</p><p>Without further ado, tech.nocr.at&#8217;s top 10 posts of 2010:</p><ol><li><a
href="http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/">Baffle WiFi Leeches With An Upside-Down-Ternet</a></li><li><a
href="http://tech.nocr.at/gaming/super-genintari-4-game-stations-in-one/">Super Genintari &#8211; 4 Game Stations In One</a></li><li><a
href="http://tech.nocr.at/tech/even-more-linux-distros-that-dont-suck/">Even More Linux Distros That Don&#8217;t Suck</a></li><li><a
href="http://tech.nocr.at/hacking-security/wifi-door-opener/">WiFi Door Opener</a></li><li><a
href="http://tech.nocr.at/tech/how-to-speed-up-wordpress-with-nginx-and-wp-super-cache/">How To Speed Up WordPress With Nginx And WP Super Cache</a></li><li><a
href="http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/">Hunt Down WiFi Leeches With MoocherHunter</a></li><li><a
href="http://tech.nocr.at/gaming/sega-gen-mobile/">Sega Gen Mobile</a></li><li><a
href="http://tech.nocr.at/hacking-security/diy-ipod-shuffle-cable/">DIY: iPod Shuffle Cable</a></li><li><a
href="http://tech.nocr.at/hacking-security/how-to-vga-over-cat-5/">How To: VGA Over Cat-5</a></li><li><a
href="http://tech.nocr.at/hacking-security/secret-knock-door-lock/">Secret Knock Door Lock</a></li></ol><p>Let us know in the comments what were your favorite posts of 2010.</p><p></p><p
style="text-align:right"> <g:plusone size="tall"></g:plusone>  <script type="text/javascript">(function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();</script> <a
href="http://api.tweetmeme.com/share?url=http://tech.nocr.at/tech/top-10-of-2010/"><img
src="http://api.tweetmeme.com/imagebutton.gif?url=http://tech.nocr.at/tech/top-10-of-2010/" height="61" width="51" /></a></p><p
style="padding:5px;background:#ffffcc;border:1px solid #ffff99;clear:both"><a
href="http://tech.nocr.at"><img
src="http://tech.nocr.at/images/feed_logo.png" alt="tech.nocr.at" width="16" height="16" border="0" style="float:left;padding:0 5px 5px 0"></a><a
href="http://tech.nocr.at/tech/top-10-of-2010/">Top 10 Of 2010</a> originally appeared on <a
href="http://tech.nocr.at">tech.nocr.at</a> on 2010/12/29. Reproduction of content not allowed without consent.<br
style="clear:both"></p><p><small>© <a
href="http://tech.nocr.at">tech.nocr.at</a> 2010 | <a
href="http://tech.nocr.at/tech/top-10-of-2010/">Permalink</a> | <a
href="http://tech.nocr.at/tech/top-10-of-2010/#comments">Comments</a> |
Read more in <a
href="http://tech.nocr.at/category/tech/" title="View all posts in Tech News" rel="category tag">Tech News</a> | Explore more in: <a
href="http://tech.nocr.at/tag/2010/" rel="tag">2010</a>, <a
href="http://tech.nocr.at/tag/ac/" rel="tag">ac</a>, <a
href="http://tech.nocr.at/tag/cable/" rel="tag">cable</a>, <a
href="http://tech.nocr.at/tag/cat/" rel="tag">cat</a>, <a
href="http://tech.nocr.at/tag/comments/" rel="tag">comments</a>, <a
href="http://tech.nocr.at/tag/distro/" rel="tag">distro</a>, <a
href="http://tech.nocr.at/tag/diy/" rel="tag">diy</a>, <a
href="http://tech.nocr.at/tag/door/" rel="tag">door</a>, <a
href="http://tech.nocr.at/tag/ds/" rel="tag">ds</a>, <a
href="http://tech.nocr.at/tag/ea/" rel="tag">ea</a>, <a
href="http://tech.nocr.at/tag/game/" rel="tag">game</a>, <a
href="http://tech.nocr.at/tag/gaming/" rel="tag">Gaming</a>, <a
href="http://tech.nocr.at/tag/id/" rel="tag">id</a>, <a
href="http://tech.nocr.at/tag/ipod/" rel="tag">ipod</a>, <a
href="http://tech.nocr.at/tag/key/" rel="tag">key</a>, <a
href="http://tech.nocr.at/tag/keys/" rel="tag">keys</a>, <a
href="http://tech.nocr.at/tag/knock/" rel="tag">knock</a>, <a
href="http://tech.nocr.at/tag/led/" rel="tag">led</a>, <a
href="http://tech.nocr.at/tag/leech/" rel="tag">leech</a>, <a
href="http://tech.nocr.at/tag/linux/" rel="tag">linux</a>, <a
href="http://tech.nocr.at/tag/loa/" rel="tag">loa</a>, <a
href="http://tech.nocr.at/tag/lock/" rel="tag">lock</a>, <a
href="http://tech.nocr.at/tag/mobile/" rel="tag">mobile</a>, <a
href="http://tech.nocr.at/tag/nginx/" rel="tag">nginx</a>, <a
href="http://tech.nocr.at/tag/open/" rel="tag">open</a>, <a
href="http://tech.nocr.at/tag/os/" rel="tag">os</a>, <a
href="http://tech.nocr.at/tag/pen/" rel="tag">pen</a>, <a
href="http://tech.nocr.at/tag/press/" rel="tag">press</a>, <a
href="http://tech.nocr.at/tag/ring/" rel="tag">ring</a>, <a
href="http://tech.nocr.at/tag/rip/" rel="tag">rip</a>, <a
href="http://tech.nocr.at/tag/secret/" rel="tag">secret</a>, <a
href="http://tech.nocr.at/tag/sega/" rel="tag">sega</a>, <a
href="http://tech.nocr.at/tag/shuffle/" rel="tag">shuffle</a>, <a
href="http://tech.nocr.at/tag/speed/" rel="tag">speed</a>, <a
href="http://tech.nocr.at/tag/tech-nocr-at/" rel="tag">tech.nocr.at</a>, <a
href="http://tech.nocr.at/tag/technology/" rel="tag">technology</a>, <a
href="http://tech.nocr.at/tag/vga/" rel="tag">vga</a>, <a
href="http://tech.nocr.at/tag/wifi/" rel="tag">wifi</a>, <a
href="http://tech.nocr.at/tag/wordpress/" rel="tag">wordpress</a>, <a
href="http://tech.nocr.at/tag/wp-super-cache/" rel="tag">wp super cache</a> | <a
href="http://del.icio.us/post?url=http://tech.nocr.at/tech/top-10-of-2010/&title=Top 10 Of 2010">Add to del.icio.us</a> | <a
href="http://www.stumbleupon.com/submit?url=http://tech.nocr.at/tech/top-10-of-2010/&title=Top 10 Of 2010">Stumble it</a> | <a
href="http://reddit.com/submit?url=http://tech.nocr.at/tech/top-10-of-2010/&title=Top 10 Of 2010">Reddit</a> </small></p>]]></content:encoded> <wfw:commentRss>http://tech.nocr.at/tech/top-10-of-2010/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Hunt Down Wi Fi Leeches With MoocherHunter</title><link>http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/</link> <comments>http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/#comments</comments> <pubDate>Wed, 15 Oct 2008 04:09:48 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[Hacking And Security]]></category> <category><![CDATA[ac]]></category> <category><![CDATA[avi]]></category> <category><![CDATA[door]]></category> <category><![CDATA[ea]]></category> <category><![CDATA[flip]]></category> <category><![CDATA[hack]]></category> <category><![CDATA[hacking]]></category> <category><![CDATA[id]]></category> <category><![CDATA[images]]></category> <category><![CDATA[ir]]></category> <category><![CDATA[knock]]></category> <category><![CDATA[led]]></category> <category><![CDATA[leech]]></category> <category><![CDATA[loa]]></category> <category><![CDATA[lock]]></category> <category><![CDATA[make]]></category> <category><![CDATA[open]]></category> <category><![CDATA[os]]></category> <category><![CDATA[pen]]></category> <category><![CDATA[personal]]></category> <category><![CDATA[rc]]></category> <category><![CDATA[ring]]></category> <category><![CDATA[security]]></category> <category><![CDATA[signal]]></category> <category><![CDATA[stream]]></category> <category><![CDATA[stupid]]></category> <category><![CDATA[tag]]></category> <category><![CDATA[tool]]></category> <category><![CDATA[wifi]]></category> <category><![CDATA[wire]]></category> <category><![CDATA[wireless]]></category> <guid
isPermaLink="false">http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/</guid> <description><![CDATA[Last week we showed you how to screw with people who were stealing your Wi Fi signal by flipping their browsers and blurring their images. Today we show you how to hunt those Wi Fi moochers. The problem with leaving your Wi Fi unprotected is that malicious people can use it to download illegal files [...]]]></description> <content:encoded><![CDATA[<p><center><img
src="http://tech.nocr.at/wp-content/uploads/2008/10/wifi-leech.jpg" width="535" height="263" alt="wifi-leech.jpg" class="captionfull" /></center></p><p>Last week we showed you how to <a
href="http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/">screw with people who were stealing your Wi Fi signal</a> by flipping their browsers and blurring their images. Today we show you how to hunt those Wi Fi moochers. The problem with leaving your Wi Fi unprotected is that malicious people can use it to download illegal files that can be tracked back to you. The best thing to do is lock down your Wi Fi to ensure that no one does something that you might be blamed for, but if you choose to leave it open and have a problem with a user or two taking advantage of it you can track them down and pay them a visit.</p><p>First thing you are gonna want to do is download <a
href="http://securitystartshere.org/page-training-oswa-moocherhunter.htm">MoocherHunter</a>. MoocherHunter tracks the data that is being streamed from your unprotected Wi Fi right to their front door. The program is pretty straighforward to use and is part of a much larger wireless auditing toolkit called <a
href="http://oswa-assistant.securitystartshere.org/">OSWA-Assistant</a> which is chalked full of useful tools to make sure your Wi Fi is well protected.</p><p>Use this information wisely, don&#8217;t go out and do something stupid with it. Remember, this is to be used for personal research, not as an excuse to knock at someone&#8217;s door and start a fight.</p><p></p><p
style="text-align:right"> <g:plusone size="tall"></g:plusone>  <script type="text/javascript">(function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();</script> <a
href="http://api.tweetmeme.com/share?url=http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/"><img
src="http://api.tweetmeme.com/imagebutton.gif?url=http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/" height="61" width="51" /></a></p><p
style="padding:5px;background:#ffffcc;border:1px solid #ffff99;clear:both"><a
href="http://tech.nocr.at"><img
src="http://tech.nocr.at/images/feed_logo.png" alt="tech.nocr.at" width="16" height="16" border="0" style="float:left;padding:0 5px 5px 0"></a><a
href="http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/">Hunt Down Wi Fi Leeches With MoocherHunter</a> originally appeared on <a
href="http://tech.nocr.at">tech.nocr.at</a> on 2008/10/15. Reproduction of content not allowed without consent.<br
style="clear:both"></p><p><small>© <a
href="http://tech.nocr.at">tech.nocr.at</a> 2008 | <a
href="http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/">Permalink</a> | <a
href="http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/#comments">8 Comments</a> |
Read more in <a
href="http://tech.nocr.at/category/hacking-security/" title="View all posts in Hacking And Security" rel="category tag">Hacking And Security</a> | Explore more in: <a
href="http://tech.nocr.at/tag/ac/" rel="tag">ac</a>, <a
href="http://tech.nocr.at/tag/avi/" rel="tag">avi</a>, <a
href="http://tech.nocr.at/tag/door/" rel="tag">door</a>, <a
href="http://tech.nocr.at/tag/ea/" rel="tag">ea</a>, <a
href="http://tech.nocr.at/tag/flip/" rel="tag">flip</a>, <a
href="http://tech.nocr.at/tag/hack/" rel="tag">hack</a>, <a
href="http://tech.nocr.at/tag/hacking/" rel="tag">hacking</a>, <a
href="http://tech.nocr.at/tag/id/" rel="tag">id</a>, <a
href="http://tech.nocr.at/tag/images/" rel="tag">images</a>, <a
href="http://tech.nocr.at/tag/ir/" rel="tag">ir</a>, <a
href="http://tech.nocr.at/tag/knock/" rel="tag">knock</a>, <a
href="http://tech.nocr.at/tag/led/" rel="tag">led</a>, <a
href="http://tech.nocr.at/tag/leech/" rel="tag">leech</a>, <a
href="http://tech.nocr.at/tag/loa/" rel="tag">loa</a>, <a
href="http://tech.nocr.at/tag/lock/" rel="tag">lock</a>, <a
href="http://tech.nocr.at/tag/make/" rel="tag">make</a>, <a
href="http://tech.nocr.at/tag/open/" rel="tag">open</a>, <a
href="http://tech.nocr.at/tag/os/" rel="tag">os</a>, <a
href="http://tech.nocr.at/tag/pen/" rel="tag">pen</a>, <a
href="http://tech.nocr.at/tag/personal/" rel="tag">personal</a>, <a
href="http://tech.nocr.at/tag/rc/" rel="tag">rc</a>, <a
href="http://tech.nocr.at/tag/ring/" rel="tag">ring</a>, <a
href="http://tech.nocr.at/tag/security/" rel="tag">security</a>, <a
href="http://tech.nocr.at/tag/signal/" rel="tag">signal</a>, <a
href="http://tech.nocr.at/tag/stream/" rel="tag">stream</a>, <a
href="http://tech.nocr.at/tag/stupid/" rel="tag">stupid</a>, <a
href="http://tech.nocr.at/tag/tag/" rel="tag">tag</a>, <a
href="http://tech.nocr.at/tag/tool/" rel="tag">tool</a>, <a
href="http://tech.nocr.at/tag/wifi/" rel="tag">wifi</a>, <a
href="http://tech.nocr.at/tag/wire/" rel="tag">wire</a>, <a
href="http://tech.nocr.at/tag/wireless/" rel="tag">wireless</a> | <a
href="http://del.icio.us/post?url=http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/&title=Hunt Down Wi Fi Leeches With MoocherHunter">Add to del.icio.us</a> | <a
href="http://www.stumbleupon.com/submit?url=http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/&title=Hunt Down Wi Fi Leeches With MoocherHunter">Stumble it</a> | <a
href="http://reddit.com/submit?url=http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/&title=Hunt Down Wi Fi Leeches With MoocherHunter">Reddit</a> </small></p>]]></content:encoded> <wfw:commentRss>http://tech.nocr.at/hacking-security/hunt-down-wi-fi-leeches-with-moocherhunter/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Baffle WiFi Leeches With An Upside-Down-Ternet</title><link>http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/</link> <comments>http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/#comments</comments> <pubDate>Wed, 08 Oct 2008 02:11:29 +0000</pubDate> <dc:creator>Frank</dc:creator> <category><![CDATA[Hacking And Security]]></category> <category><![CDATA[ac]]></category> <category><![CDATA[car]]></category> <category><![CDATA[ds]]></category> <category><![CDATA[ea]]></category> <category><![CDATA[flip]]></category> <category><![CDATA[funny]]></category> <category><![CDATA[hack]]></category> <category><![CDATA[hacking]]></category> <category><![CDATA[id]]></category> <category><![CDATA[images]]></category> <category><![CDATA[ir]]></category> <category><![CDATA[led]]></category> <category><![CDATA[leech]]></category> <category><![CDATA[lock]]></category> <category><![CDATA[network]]></category> <category><![CDATA[os]]></category> <category><![CDATA[split]]></category> <category><![CDATA[tricks]]></category> <category><![CDATA[wifi]]></category> <guid
isPermaLink="false">http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/</guid> <description><![CDATA[Have you ever had someone leach off your Wi Fi? You could always encrypt it or use any multitude of tricks to hide your network, but why would you do that when you can have some serious fun with them. Blur their images, or flip them upside down to get them really scratching their heads. [...]]]></description> <content:encoded><![CDATA[<p><center><img
src="http://tech.nocr.at/wp-content/uploads/2008/10/upside-down.png" width="550" height="222" alt="upside_down.png" class="captionfull" /></center></p><p>Have you ever had someone leach off your Wi Fi? You could always encrypt it or use any multitude of tricks to hide your network, but why would you do that when you can have some serious fun with them. Blur their images, or flip them upside down to get them really scratching their heads.</p><p>Essentially what you need to split up your net block so that you have a trusted block and an untrusted one. That coupled along with a few snippets of code will lead you to a wealth of possibilities. Imagine all the fun you could have with those neighbors who decide not to pay for their own access and ride the carpet on your hard earned dollars. Plus, it&#8217;s a whole lot of fun.</p><p>[Link to <a
href="http://www.ex-parrot.com/pete/upside-down-ternet.html">Upside-Down-Ternet</a>]</p><p></p><p
style="text-align:right"> <g:plusone size="tall"></g:plusone>  <script type="text/javascript">(function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();</script> <a
href="http://api.tweetmeme.com/share?url=http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/"><img
src="http://api.tweetmeme.com/imagebutton.gif?url=http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/" height="61" width="51" /></a></p><p
style="padding:5px;background:#ffffcc;border:1px solid #ffff99;clear:both"><a
href="http://tech.nocr.at"><img
src="http://tech.nocr.at/images/feed_logo.png" alt="tech.nocr.at" width="16" height="16" border="0" style="float:left;padding:0 5px 5px 0"></a><a
href="http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/">Baffle WiFi Leeches With An Upside-Down-Ternet</a> originally appeared on <a
href="http://tech.nocr.at">tech.nocr.at</a> on 2008/10/07. Reproduction of content not allowed without consent.<br
style="clear:both"></p><p><small>© <a
href="http://tech.nocr.at">tech.nocr.at</a> 2008 | <a
href="http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/">Permalink</a> | <a
href="http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/#comments">69 Comments</a> |
Read more in <a
href="http://tech.nocr.at/category/hacking-security/" title="View all posts in Hacking And Security" rel="category tag">Hacking And Security</a> | Explore more in: <a
href="http://tech.nocr.at/tag/ac/" rel="tag">ac</a>, <a
href="http://tech.nocr.at/tag/car/" rel="tag">car</a>, <a
href="http://tech.nocr.at/tag/ds/" rel="tag">ds</a>, <a
href="http://tech.nocr.at/tag/ea/" rel="tag">ea</a>, <a
href="http://tech.nocr.at/tag/flip/" rel="tag">flip</a>, <a
href="http://tech.nocr.at/tag/funny/" rel="tag">funny</a>, <a
href="http://tech.nocr.at/tag/hack/" rel="tag">hack</a>, <a
href="http://tech.nocr.at/tag/hacking/" rel="tag">hacking</a>, <a
href="http://tech.nocr.at/tag/id/" rel="tag">id</a>, <a
href="http://tech.nocr.at/tag/images/" rel="tag">images</a>, <a
href="http://tech.nocr.at/tag/ir/" rel="tag">ir</a>, <a
href="http://tech.nocr.at/tag/led/" rel="tag">led</a>, <a
href="http://tech.nocr.at/tag/leech/" rel="tag">leech</a>, <a
href="http://tech.nocr.at/tag/lock/" rel="tag">lock</a>, <a
href="http://tech.nocr.at/tag/network/" rel="tag">network</a>, <a
href="http://tech.nocr.at/tag/os/" rel="tag">os</a>, <a
href="http://tech.nocr.at/tag/split/" rel="tag">split</a>, <a
href="http://tech.nocr.at/tag/tricks/" rel="tag">tricks</a>, <a
href="http://tech.nocr.at/tag/wifi/" rel="tag">wifi</a> | <a
href="http://del.icio.us/post?url=http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/&title=Baffle WiFi Leeches With An Upside-Down-Ternet">Add to del.icio.us</a> | <a
href="http://www.stumbleupon.com/submit?url=http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/&title=Baffle WiFi Leeches With An Upside-Down-Ternet">Stumble it</a> | <a
href="http://reddit.com/submit?url=http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/&title=Baffle WiFi Leeches With An Upside-Down-Ternet">Reddit</a> </small></p>]]></content:encoded> <wfw:commentRss>http://tech.nocr.at/hacking-security/baffle-wifi-leeches-with-an-upside-down-ternet-2/feed/</wfw:commentRss> <slash:comments>69</slash:comments> </item> </channel> </rss>
