<?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>Green Complex &#187; content filter</title>
	<atom:link href="http://green.cx/tag/content-filter/feed/" rel="self" type="application/rss+xml" />
	<link>http://green.cx</link>
	<description>IT Resources</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:17:32 +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>Uploading images without a file extension to WP</title>
		<link>http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/</link>
		<comments>http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 15:14:16 +0000</pubDate>
		<dc:creator>Jason Green</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content filter]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1656</guid>
		<description><![CDATA[<br/>WP Core hacking I used this code recently to hack wordpress&#8217;s core to allow image uploads that have no file extension. I was getting a invalid file type security error and had tried all sorts of httaccess trickery to get it to work when I finally resorted to hacking the core of WordPress MU 3.0. [...]


Related posts:<ol><li><a href='http://green.cx/guides/add-facebook-like-button-post-wordpress/' rel='bookmark' title='Permanent Link: How to add FB Like to every post'>How to add FB Like to every post</a></li>
<li><a href='http://green.cx/web-resources/wordpress-web-resources/speedup-wordpress-tip2/' rel='bookmark' title='Permanent Link: Speedup WordPress Tip#2'>Speedup WordPress Tip#2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<br/><h3>WP Core hacking</h3>
<p>I used this code recently to hack wordpress&#8217;s core to allow image uploads that have no file extension.</p>
<p><span id="more-1656"></span></p>
<p><a href="http://green.cx/files/2010/04/wordpress-logo.jpg"><img class="size-thumbnail wp-image-1250 alignleft" title="wordpress-logo" src="http://green.cx/files/2010/04/wordpress-logo-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>I was getting a invalid file type security error and had tried all sorts of httaccess trickery to get it to work when I finally resorted to hacking the core of WordPress MU 3.0. This is pretty easy as I found out and only required me to add one line of code. Some of the issues I&#8217;m having are that the file size isn&#8217;t reported and neither is the dimensions. Any advice or a way for me to make this into a plugin would be very nice, as I&#8217;ve never made a wordpress plugin before.</p>
<p>In <strong>wp-includes/functions.php</strong> find line <strong>#2359</strong> and look for this code, and make it look like the code below.</p>
<pre>function wp_check_filetype( $filename, $mimes = null ) {
	if ( empty($mimes) )
		$mimes = get_allowed_mime_types();
	$type = false;
	$ext = false;

	foreach ( $mimes as $ext_preg =&gt; $mime_match ) {
		$ext_preg = '!\.(' . $ext_preg . ')$!i';
		if ( preg_match( $ext_preg, $filename, $ext_matches ) ) {
			$type = $mime_match;
			$ext = $ext_matches[1];
			break;
		}
	}
<span style="color: #339966;">// http://Green.cx (Allow Uploading of Images without Extension )
if ($ext==''){$ext='jpg'; $type='image/jpg';}
// End WordPress Core Hack</span>
	return compact( 'ext', 'type' );
}</pre>


<div class="shr-bookmarks shr-bookmarks-spaced">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a title='Original Link: http://www.stumbleupon.com/submit?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?M0LYYhgA" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-digg">
			<a title='Original Link: http://digg.com/submit?phase=2&amp;url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?wePfKF2u" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a title='Original Link: http://reddit.com/submit?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?4AyoSFEh" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a title='Original Link: http://www.google.com/buzz/post?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;imageurl='  href="http://green.cx/?UPyyWBp0" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-evernote">
			<a title='Original Link: http://www.evernote.com/clip.action?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?SeLCpeC1" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-delicious">
			<a title='Original Link: http://delicious.com/post?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?4dPSlVhI" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a title='Original Link: http://technorati.com/faves?add=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/'  href="http://green.cx/?MSQYoXe8" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogmarks">
			<a title='Original Link: http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?ZWNzqFTk" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-linkedin">
			<a title='Original Link: http://www.linkedin.com/shareArticle?mini=true&amp;url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP&amp;summary=WP%20Core%20hacking%0D%0AI%20used%20this%20code%20recently%20to%20hack%20wordpress%27s%20core%20to%20allow%20image%20uploads%20that%20have%20no%20file%20extension.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AI%20was%20getting%20a%20invalid%20file%20type%20security%20error%20and%20had%20tried%20all%20sorts%20of%20httaccess%20trickery%20to%20get%20it%20to%20work%20when%20I%20finally%20resorted%20to%20hacking%20the%20core%20of%20Wordpress&amp;source=Green Complex'  href="http://green.cx/?5hyMM2Ut" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a title='Original Link: http://www.mixx.com/submit?page_url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/&amp;title=Uploading+images+without+a+file+extension+to+WP'  href="http://green.cx/?7uWlzoct" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-propeller">
			<a title='Original Link: http://www.propeller.com/submit/?url=http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/'  href="http://green.cx/?gPYuB2r3" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://green.cx/guides/add-facebook-like-button-post-wordpress/' rel='bookmark' title='Permanent Link: How to add FB Like to every post'>How to add FB Like to every post</a></li>
<li><a href='http://green.cx/web-resources/wordpress-web-resources/speedup-wordpress-tip2/' rel='bookmark' title='Permanent Link: Speedup WordPress Tip#2'>Speedup WordPress Tip#2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/wordpress-web-resources/uploading-images-without-a-file-extension-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to bypass any web filter</title>
		<link>http://green.cx/dark-tech/how-to-bypass-any-web-filter/</link>
		<comments>http://green.cx/dark-tech/how-to-bypass-any-web-filter/#comments</comments>
		<pubDate>Thu, 20 May 2010 11:34:21 +0000</pubDate>
		<dc:creator>Jason Green</dc:creator>
				<category><![CDATA[Dark Tech]]></category>
		<category><![CDATA[content filter]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IP Addresses]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[PSA]]></category>
		<category><![CDATA[ToR]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1438</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/23.original.png" width="659" height="87" alt="" title="Dark Tech" /><br/>In light of the recent ban of Facebook in Pakistan I&#8217;m going to show you how to bypass any web filter,maintain the highest form of privacy, on ANY computer, and without installing any software or visiting lame &#8220;proxy&#8221; websites! And it&#8217;s all thanks to Torfox, a derivative of Firefox and Tor mashed together! Tor uses multiple layeres of cryptography (hence [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/23.original.png" width="659" height="87" alt="" title="Dark Tech" /><br/><p><a href="http://green.cx/files/2010/05/torfox.gif"></a>In light of the recent ban of Facebook in Pakistan I&#8217;m going to show you how to bypass any web filter,<span id="more-1438"></span>maintain the highest form of privacy, on ANY computer, and <strong><em>without</em></strong> installing any software or visiting lame &#8220;proxy&#8221; websites! And it&#8217;s all thanks to <a title='Original Link: http://torfox.org/'  href="http://green.cx/?JWI0VBJR">Torfox</a>, a derivative of <a id="aptureLink_AGN1mFb5BF" title='Original Link: http://en.wikipedia.org/wiki/Mozilla%20Firefox'  href="http://green.cx/?YlOTwvC4">Firefox</a> and <a id="aptureLink_Mo47c595Q3" title='Original Link: http://en.wikipedia.org/wiki/Tor%20%28anonymity%20network%29'  href="http://green.cx/?pGFqv92e">Tor</a> mashed together! Tor uses multiple layeres of <a title="Cryptography" title='Original Link: http://en.wikipedia.org/wiki//wiki/index.php?title=Cryptography'  href="http://green.cx/?Eo40Mgu2">cryptography</a> (hence the <a title="Onion routing" title='Original Link: http://en.wikipedia.org/wiki//wiki/index.php?title=Onion_routing'  href="http://green.cx/?Bnlz2g3p">Onion routing</a> analogy), ensuring <a title="Perfect forward secrecy" title='Original Link: http://en.wikipedia.org/wiki//wiki/index.php?title=Perfect_forward_secrecy'  href="http://green.cx/?PBS451Ik">perfect forward secrecy</a> between routers (You and your destination). In short, TOTAL PRIVACY, and BYPASSES WEB FILTERS.</p>
<p><a href="http://green.cx/files/2010/05/torfox.gif"><img class="alignleft" title="torfox" src="http://green.cx/files/2010/05/torfox.gif" alt="" width="274" height="110" /></a>Simply go to <a title='Original Link: http://torfox.org/'  href="http://green.cx/?JWI0VBJR">http://torfox.org/</a> and download the portable Torfox Zipped package, and extract it to a folder, preferably on a flash drive.</p>
<p>Then run torfox.exe and it will open a slim looking version of Firfox. The first page won&#8217;t load right away, it could take up to three mins to connect, but then once it does, you can surf anywhere, without limits or worries!</p>
<p>Screencast coming soon!</p>


<div class="shr-bookmarks shr-bookmarks-spaced">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a title='Original Link: http://www.stumbleupon.com/submit?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?rJAHM5bp" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-digg">
			<a title='Original Link: http://digg.com/submit?phase=2&amp;url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?7fFkdlzc" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a title='Original Link: http://reddit.com/submit?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?q8BYF9jq" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a title='Original Link: http://www.google.com/buzz/post?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;imageurl='  href="http://green.cx/?2hwENrL4" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-evernote">
			<a title='Original Link: http://www.evernote.com/clip.action?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?0aBC5DR2" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-delicious">
			<a title='Original Link: http://delicious.com/post?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?ImbMyBPO" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a title='Original Link: http://technorati.com/faves?add=http://green.cx/dark-tech/how-to-bypass-any-web-filter/'  href="http://green.cx/?yfC3dLj6" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogmarks">
			<a title='Original Link: http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?aRe6jVXS" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-linkedin">
			<a title='Original Link: http://www.linkedin.com/shareArticle?mini=true&amp;url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter&amp;summary=In%20light%20of%20the%20recent%20ban%20of%20Facebook%20in%20Pakistan%20I%27m%20going%20to%20show%20you%20how%20to%20bypass%20any%20web%20filter%2Cmaintain%20the%20highest%20form%20of%20privacy%2C%20on%20ANY%20computer%2C%20and%20without%20installing%20any%20software%20or%20visiting%20lame%20%22proxy%22%20websites%21%20And%20it%27s%20all%20thanks%20to%20Torfox%2C%20a%C2%A0derivative%C2%A0of%C2%A0Firefox%20and%C2%A0Tor%20mashe&amp;source=Green Complex'  href="http://green.cx/?dAGhbPdU" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a title='Original Link: http://www.mixx.com/submit?page_url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/&amp;title=How+to+bypass+any+web+filter'  href="http://green.cx/?kDf8DvKD" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-propeller">
			<a title='Original Link: http://www.propeller.com/submit/?url=http://green.cx/dark-tech/how-to-bypass-any-web-filter/'  href="http://green.cx/?bOzlyl4v" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/dark-tech/how-to-bypass-any-web-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effectively block Comment Link spam</title>
		<link>http://green.cx/guides/effectively-block-comment-link-spam/</link>
		<comments>http://green.cx/guides/effectively-block-comment-link-spam/#comments</comments>
		<pubDate>Thu, 13 May 2010 22:33:34 +0000</pubDate>
		<dc:creator>Jason Green</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content filter]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[PSA]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1412</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/>Effectively blocking Comment Link spam in WordPress A simple little wordpress setting can save you a lot of  headachs in regards to WordPress Spam Comments&#8230; So I noticed about 330 Spam Comments that needed moderation in my WordPress the other day and that&#8217;s when I hit my limit. I hate spammers, and link spammers are [...]


Related posts:<ol><li><a href='http://green.cx/news/psa-news-2/blocklist-bad-facebook-apps/' rel='bookmark' title='Permanent Link: Blocklist of Bad Facebook Apps.'>Blocklist of Bad Facebook Apps.</a></li>
<li><a href='http://green.cx/web-resources/wordpress-web-resources/speedup-wordpress-tip2/' rel='bookmark' title='Permanent Link: Speedup WordPress Tip#2'>Speedup WordPress Tip#2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/><h3>Effectively blocking Comment Link spam in WordPress</h3>
<p>A simple little wordpress setting can save you a lot of  headachs in regards to WordPress Spam Comments&#8230;</p>
<p><span id="more-1412"></span></p>
<p><a href="http://green.cx/files/2010/04/wordpress-logo.jpg"><img class="size-thumbnail wp-image-1250 alignleft" title="wordpress-logo" src="http://green.cx/files/2010/04/wordpress-logo-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>So I noticed about 330 Spam Comments that needed moderation in my WordPress the other day and that&#8217;s when I hit my limit. I <em>hate</em> spammers, and link spammers are the worst. They spam links in comments trying to &#8220;Steal&#8221; your page rank, or piggy back off of it or whatever. To boost their sites rank in Google. That is the dumbest thing they could do however, because if Google sees 1,000&#8242;s of blog comments linking back to your site overnight, Google will ban you. So what&#8217;s the point? Why do they do this?</p>
<p><!--more--></p>
<p>They buy spamming software for hundreds, sometimes thousands of dollars, with the promises that Google will love their website and they will make ten times what the app cost. LOL If that were true, why would they DARE to sell their own software? Why wouldn&#8217;t they just dominate Google and rule the world? Because they already have! They used the software back when it worked, after the big &#8220;G&#8221; stopped them, they needed a new source of income. So they go fishing for suckers. It&#8217;s those poor dumb sheep that listen to what these &#8220;Black Hat SEO Elite&#8221; preach and buy into their crappy comment link spamming software.</p>
<p>So if it&#8217;s so rampant how do we fight back? Easy, NO links in comments. Period. Not this No Follow crap either. How easy is it to do this? In word press admin <strong>go to</strong> your <strong>Settings</strong> section in the lower left.  Then scroll down to the black list text box, and copy paste this in to it.</p>
<blockquote><p>.a<br />
.b<br />
.c<br />
.d<br />
.e<br />
.f<br />
.g<br />
.h<br />
.i<br />
.j<br />
.k<br />
.l<br />
.m<br />
.n<br />
.o<br />
.p<br />
.q<br />
.r<br />
.s<br />
.t<br />
.u<br />
.v<br />
.w<br />
.x<br />
. y<br />
.z</p></blockquote>
<p>(One per line) And finally save your settings. This will block any comment that has a .com .cx .ru . anything</p>
<p>Yes, if someone types a sentence and doesn&#8217;t space between them it will block it, but IMO that&#8217;s worth the effort to effectively eliminate comment link spam. Can they still spam you? Yes, absolutely, but plain words aren&#8217;t as bad as them dragging your Page Rank down and making an association from your site to theirs.</p>


<div class="shr-bookmarks shr-bookmarks-spaced">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a title='Original Link: http://www.stumbleupon.com/submit?url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?0GATEBVe" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-digg">
			<a title='Original Link: http://digg.com/submit?phase=2&amp;url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?1mNPvXY2" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a title='Original Link: http://reddit.com/submit?url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?GFmLlBZ4" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a title='Original Link: http://www.google.com/buzz/post?url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;imageurl='  href="http://green.cx/?6we1x2bm" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-evernote">
			<a title='Original Link: http://www.evernote.com/clip.action?url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?xC513Q6U" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-delicious">
			<a title='Original Link: http://delicious.com/post?url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?2Jzmwme2" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a title='Original Link: http://technorati.com/faves?add=http://green.cx/guides/effectively-block-comment-link-spam/'  href="http://green.cx/?RrC2SqVO" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogmarks">
			<a title='Original Link: http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?8g60W2JO" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-linkedin">
			<a title='Original Link: http://www.linkedin.com/shareArticle?mini=true&amp;url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam&amp;summary=Effectively%20blocking%20Comment%20Link%20spam%20in%20WordPress%0D%0AA%20simple%20little%20wordpress%20setting%20can%20save%20you%20a%20lot%20of%20%C2%A0headachs%20in%20regards%20to%20Wordpress%20Spam%20Comments...%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ASo%20I%20noticed%20about%20330%20Spam%20Comments%20that%20needed%20moderation%20in%20my%20Wordpress%20the%20other%20day%20and%20that%27s%20when%20I%20hit%20my%20limit.%20I%20hate&amp;source=Green Complex'  href="http://green.cx/?mfS4wDH8" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a title='Original Link: http://www.mixx.com/submit?page_url=http://green.cx/guides/effectively-block-comment-link-spam/&amp;title=Effectively+block+Comment+Link+spam'  href="http://green.cx/?ta8aGieD" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-propeller">
			<a title='Original Link: http://www.propeller.com/submit/?url=http://green.cx/guides/effectively-block-comment-link-spam/'  href="http://green.cx/?oata23Ps" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://green.cx/news/psa-news-2/blocklist-bad-facebook-apps/' rel='bookmark' title='Permanent Link: Blocklist of Bad Facebook Apps.'>Blocklist of Bad Facebook Apps.</a></li>
<li><a href='http://green.cx/web-resources/wordpress-web-resources/speedup-wordpress-tip2/' rel='bookmark' title='Permanent Link: Speedup WordPress Tip#2'>Speedup WordPress Tip#2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/guides/effectively-block-comment-link-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using OpenDNS to protect your network.</title>
		<link>http://green.cx/network-administration/opendns/</link>
		<comments>http://green.cx/network-administration/opendns/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:27:39 +0000</pubDate>
		<dc:creator>Jason Green</dc:creator>
				<category><![CDATA[Network Administration]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[content filter]]></category>
		<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://blog.jhawk.ws/?p=58</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/6.original.png" width="659" height="87" alt="" title="Network Administration" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><br/>Make your network safer, faster, smarter, and more reliable.
OpenDNS is a free service that works for networks of all sizes. I use it on my networks, even at home!
It's really easy to deploy, you only have to change your DNS Addresses to...


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/6.original.png" width="659" height="87" alt="" title="Network Administration" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><br/><p>Make your network safer, faster, smarter, and more reliable.<br />
<span id="more-58"></span><br />
<a href="http://green.cx/wp-content/uploads/2009/07/opendns.gif"><img class="alignleft size-full wp-image-618" title="opendns" src="http://green.cx/wp-content/uploads/2009/07/opendns.gif" alt="" width="128" height="83" /></a>OpenDNS is a free service that works for networks of all sizes, from home networks to K-12 schools, SMBs and large enterprises.</p>
<p>Here is why I like OpenDNS and I use it on my networks, even at home!</p>
<p>It&#8217;s really easy to deploy, you only have to change your DNS Addresses to: <strong>208.67.222.222</strong> and <strong>208.67.220.220<!--more--><br />
</strong></p>
<ul>
<li>Security</li>
</ul>
<p>Industry-leading anti-phishing protects everyone on your network from fraudulent phishing scams.</p>
<p>Award-winning Web content filtering gives you the power to block up to 50 categories of content.</p>
<p>Detailed statistics empower you to understand your network traffic and spot trends before they become problems.</p>
<ul>
<li>Infrastructure</li>
</ul>
<p>OpenDNS&#8217;s distributed network makes Web sites load noticeably faster on your network.</p>
<p>They use something called Anycast routing technology which is supposed to make your Internet more reliable.</p>
<ul>
<li>Navigation</li>
</ul>
<p>Browser Shortcuts let your users map a short term to a long URL via the address bar.</p>
<p>Typo correction auto-corrects the most common typos in top-level domains.</p>
<p>OpenDNS Guide also provides helpful search results when your users try to visit a Web site that isn&#8217;t resolving. Ok, maybe that&#8217;s a little bit more for them to recoupe the costs of running those servers for us. But hey, at least I know they are not malicious&#8230;</p>
<div id="_mcePaste" style="width: 1px;height: 1px">Make your network safer, faster, smarter, and more reliable.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">OpenDNS is a free service that works for networks of all sizes, from home networks to K-12 schools, SMBs and large enterprises. Learn more about how OpenDNS can benefit you by selecting your network type on the left.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Here are just a few reasons millions of people have already made the switch:</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Security</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Industry-leading anti-phishing protects everyone on your network from fraudulent phishing scams.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Award-winning Web content filtering gives you the power to block up to 50 categories of content.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Detailed statistics empower you to understand your network traffic and spot trends before they become problems.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Infrastructure</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Our globally distributed network makes Web sites load noticeably faster on your network.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Anycast routing technology makes your Internet more reliable, freeing you of intermittent outages.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Navigation</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Browser Shortcuts let your users map a short term to a long URL via the address bar.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Typo correction auto-corrects the most common typos in top-level domains.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">OpenDNS Guide provides helpful search results when your users try to visit a Web site that isn&#8217;t resolving.</div>


<div class="shr-bookmarks shr-bookmarks-spaced">
<ul class="socials">
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-googlebuzz">
			<a title='Original Link: http://www.google.com/buzz/post?url=http://green.cx/network-administration/opendns/&amp;imageurl='  href="http://green.cx/?ubJfPGak" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-technorati">
			<a title='Original Link: http://technorati.com/faves?add=http://green.cx/network-administration/opendns/'  href="http://green.cx/?wF4WrECM" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-linkedin">
			<a title='Original Link: http://www.linkedin.com/shareArticle?mini=true&amp;url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network.&amp;summary=Make%20your%20network%20safer%2C%20faster%2C%20smarter%2C%20and%20more%20reliable.%0D%0AOpenDNS%20is%20a%20free%20service%20that%20works%20for%20networks%20of%20all%20sizes.%20I%20use%20it%20on%20my%20networks%2C%20even%20at%20home%21%0D%0AIt%27s%20really%20easy%20to%20deploy%2C%20you%20only%20have%20to%20change%20your%20DNS%20Addresses%20to...&amp;source=Green Complex'  href="http://green.cx/?UX5arwNX" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://green.cx/network-administration/opendns/&amp;title=Using+OpenDNS+to+protect+your+network." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-propeller">
			<a title='Original Link: http://www.propeller.com/submit/?url=http://green.cx/network-administration/opendns/'  href="http://green.cx/?ieb43hLH" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/network-administration/opendns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 363/582 queries in 1.858 seconds using disk

Served from: green.cx @ 2010-07-31 10:48:45 -->