<?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/"
	>

<channel>
	<title>Kaizeku Ban &#187; SEO</title>
	<atom:link href="http://blog.kaizeku.com/topics/search_engine/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kaizeku.com</link>
	<description>So many evil plans, so little time...</description>
	<pubDate>Sat, 13 Dec 2008 17:01:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" />
	<image>
		<link>http://blog.kaizeku.com/</link>
		<url>http://i.istalker.net/1.6.2/stamp.png</url>
		<title>Kaizeku Ban</title>
	</image>
		<item>
		<title>Prevent Duplicate Content on Comment Paging</title>
		<link>http://blog.kaizeku.com/wordpress/prevent-wordpress-27-duplicate-content/</link>
		<comments>http://blog.kaizeku.com/wordpress/prevent-wordpress-27-duplicate-content/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 14:03:04 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[cpage]]></category>

		<category><![CDATA[duplicate content]]></category>

		<category><![CDATA[noindex]]></category>

		<category><![CDATA[wp27]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=700</guid>
		<description><![CDATA[

Most search engines strive for a certain level of variety; they want to show you ten different results on a search results page, not ten different URLs that all have the same content. 
Susan Moskwa, Google Webmaster Trends Analyst
The up-coming WordPress 2.7 introduce new advanced comment features; comment threading, nesting, paging (pagination) etc. You probably [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/12/wp-27-duplicate-content-pin-up.png" alt="wp-27-duplicate-content-pin-up" title="wp-27-duplicate-content-pin-up" width="128" height="128" class="alignleft size-full thumb- wp-image-772" /><br />
<blockquote cite="http%3A%2F%2Fgooglewebmastercentral.blogspot.com%2F2008%2F09%2Fdemystifying-duplicate-content-penalty.html">
<p style="color:#333;background-color:#f3f3f3;padding:10px" class="typo-old">Most search engines strive for a certain level of variety; they want to show you ten different results on a search results page, not ten different URLs that all have the same content. </p>
<p><cite style="color:#444">Susan Moskwa, Google Webmaster Trends Analyst</cite></p></blockquote>
<p>The up-coming <a href="http://www.wordpress.org" rel="external" title="WordPress">WordPress</a> 2.7 introduce new <a href="http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7#Enhanced_Comment_Display_-_Threading.2C_Paging.2C_etc." rel="external" title="Enhanced Comment Display - Threading, Paging">advanced comment features</a>; comment threading, nesting, paging (pagination) etc. You <em>probably</em> won&#8217;t have any issue with WordPress 2.7 as most of the new advanced/enhanced features is disabled by default. Thats a good news.</p>
<p><span id="more-700"></span></p>
<p>Unfortunately for those enthusiastic user (like me) who wish to use the <strong class="hilite-2">Comment paging</strong>, there is one caveat; <em>multiple similar content</em>. The below screenshot is taken from Google webmaster diagnostic tools for duplicate content.</p>
<span id="attachment_719" class="wp-caption aligncenter" style="width: 310px;display:block"><a href="http://blog.kaizeku.com/wp-content/uploads/2008/12/google-webmaster-tools-content-analysis.png" class="thickbox" rel="google-webmaster" title="Google webmaster tools Content analysis results"><img src="http://blog.kaizeku.com/wp-content/uploads/2008/12/google-webmaster-tools-content-analysis-300x42.png" alt="Google Webmaster tools Content analysis " title="google-webmaster-tools-content-analysis" width="300" height="42" class="size-medium wp-image-719" /></a><dfn class="wp-caption-text">Comment paging duplicate content </dfn></span>
<p class="pdt">If you have <a href="http://www.google.com/webmasters/" rel="external" title="Google Webmaster">Google Webmaster</a> account, check out the diagnostic <em>Content analysis</em> tools. There is high potential that your blog will generate duplicate content <small style="color:#aaa">(if the comment paging feature is enabled)</small>.</p>
<h3><span style="color:#888">How to</span> prevent duplicate content</h3>
<p>Reducing duplicate content in your website is a good <abbr title="Search Engine Optimization">SEO</abbr> practice. I made a small filter script for <strong class="fw-">WordPress 2.</strong>7. The script &darr; will append <strong><a href="http://www.google.com/support/webmasters/bin/answer.py?answer=93710" title="robots noindex meta tag">robots noindex</a></strong> <tt>meta tag</tt> rules on <strong class="fw-">comment page</strong> section. This methods will prevent search engine indexer and services from indexing your blog&#8217;s comment page.</p>
<h3 class="toggle-content">noIndex meta <small style="color:#bbb">view code</small></h3>
<div class="dn">
<p>Installation: copy paste the below code &darr; in your theme&#8217;s <tt>functions.php</tt></p>
<pre class="prebox" style="height:504px;font-family:Consolas,Monaco,Courier,monospace;font-size:0.9em">&#47;&#42;&#42;
 &#42; void wpi_comment_paging_noindex_meta&#40;&#41;
 &#42; Add meta noindex rules on Singular comment page section
 &#42;
 &#42; &#64;author	Avice D &#60;ck&#43;filter&#64;kaizeku&#46;com&#62;
 &#42; &#64;license	http&#58;&#47;&#47;www&#46;gnu&#46;org&#47;licenses&#47;lgpl&#46;html GNU Lesser General Public License
 &#42; &#64;link 	http&#58;&#47;&#47;blog&#46;kaizeku&#46;com&#47;wordpress&#47;prevent&#45;wordpress&#45;27&#45;duplicate&#45;content&#47;
 &#42;
 &#42; &#64;todo	Check for duplicate meta&#45;robots tag generated by
 &#42;		meta&#45;tag type plugins &#40;SEO plugins&#41;
 &#42;
 &#42; &#64;uses	&#36;wp_query	Wp_query object
 &#42; &#64;return 	string 		Output HTML meta noindex
 &#42;&#47;
function wpi_comment_paging_noindex_meta&#40;&#41;
&#123;	global &#36;wp_query&#59;

	if &#40;version_compare&#40; &#40;float&#41; get_bloginfo&#40;&#39;version&#39;&#41;&#44; 2&#46;7&#44; &#39;&#62;&#61;&#39;&#41; &#41;&#123;

		if &#40;&#36;wp_query&#45;&#62;is_singular &#38;&#38; get_option&#40;&#39;page_comments&#39;&#41;&#41;&#123; &#47;&#47; comments paging enabled
			if &#40;isset&#40;&#36;wp_query&#45;&#62;query&#91;&#39;cpage&#39;&#93;&#41;
				&#38;&#38; absint&#40;&#36;wp_query&#45;&#62;query&#91;&#39;cpage&#39;&#93;&#41; &#62;&#61; 1 &#41;&#123;

				echo &#39;&#60;meta name&#61;&#34;robots&#34; content&#61;&#34;noindex&#34; &#47;&#62;&#39;&#46;PHP_EOL&#59;
			&#125;
		&#125;
	&#125;
&#125;

add_action&#40;&#39;wp_head&#39;&#44;&#39;wpi_comment_paging_noindex_meta&#39;&#41;&#59;</pre>
<p>Download: Note: There is a file embedded within this post, please visit this post to download the file.</p>
</div>
<h3 class="pdt mgt"><span style="color:#888">Why</span> duplicate content is bad for your blog?</h3>
<ul>
<li>Having multiple search crawler indexing the same content on your website (over and over) is an absolute bandwidth waster.</li>
<li>Bad PR. This are quite debatable to the point of myth, some search engine penalize website for duplicate content but according to Google webmaster team &#8220;If the duplicate content is not done to game (deceive) the search results there is no penalty&#8221;. Just pretend all major search engine service does have penalty rules for duplicate content issues. From my past experiences there is no telling or earlier notice &#8220;they&#8217;ll just drop you, so can you spent sometimes to figure out the why later&#8221; .</li>
<li>Bad <abbr title="Search Engine Result Page">SERP</abbr>, rationally the main articles that you post should have more weight than the rest of the comment page or sub page, you don&#8217;t want to see your archives or comment page on Search Engine results while your main articles is no where to be found.</li>
</ul>
<h3>Plug-it</h3>
<p>I don&#8217;t have any intention of making any WP plugin out of this simple function as this issues will probably be address and solve by WP&#8217;s developer or someone else up there. This code is release under open-source license, do whatever you want with it. </p>
<h3>Might be interest</h3>
<ul class="xoxo">
<li><a rel="external" title="Google Webmaster: Crawling and Indexing" href="http://googlewebmastercentral.blogspot.com/search/label/crawling%20and%20indexing">Google Webmaster: Crawling and Indexing</a></li>
<li><a rel="external" title="Google Webmaster: Duplicate content penalty" href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html">Demystifying the &#8220;duplicate content penalty&#8221;</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/prevent-wordpress-27-duplicate-content/feed/</wfw:commentRss>
		</item>
		<item>
		<title>goro spam injection patch</title>
		<link>http://blog.kaizeku.com/wordpress/goro-spam-injection-wp-head-patch/</link>
		<comments>http://blog.kaizeku.com/wordpress/goro-spam-injection-wp-head-patch/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 18:58:51 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Black Hat]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[blackhat]]></category>

		<category><![CDATA[goro]]></category>

		<category><![CDATA[injection]]></category>

		<category><![CDATA[lambda-style]]></category>

		<category><![CDATA[Owned]]></category>

		<category><![CDATA[parasite host]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/?p=168</guid>
		<description><![CDATA[wordpress goro spam injection patch]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.kaizeku.com/wp-content/uploads/2008/06/hacked.png" alt="goro spam injection" title="goro spam injection" width="128" height="128" class="fl size-full thumb- wp-image-169" longdesc="http://blog.kaizeku.com/wp-content/uploads/2008/06/hacked.png" />Since early 2007 I been monitoring this <a href="http://blog.kakkoi.net/wordpress/how-to-removed-wordpress-net-in-spam-injection-infected-by-mike-jagger-goro-class-mailphp/" rel="external" rev="vote-for" title="WordPress spam injection">famous WordPress spam injection</a> that only target high PR wordpress blogs like Al gore, blake ross, bluehost CEO to name a few. </p>
<h2>PHP create_function&#40;&#41;</h2>
<p>The new variant from <tt>wordpress.net.in</tt> &amp; <tt>qwetro.com</tt> used the &#8220;anonymous PHP <tt><a href="http://my2.php.net/manual/en/function.create-function.php" title="PHP manual for create_function" rel="external">create_function</a></tt>&#8221; to append their spam links on their victim blog. Below is quick patch to disabled the mischievous &#8220;create_function&#8221; injection on wp_head.</p>
<p>The below code will look for &#8220;<tt>&#65533;lambda_n</tt>&#8221; function inside <em>wp_head</em> wp_filters array and remove the action hook silently. I assume that any sane developer will never used this unstable PHP function.</p>
<pre class="prebox" style="height:830px">&#47;&#42;&#42;
 &#42; Remove create_function action hook
 &#42; append on wordpress wp_head filters
 &#42;
 &#42; &#64;author Avice De&#39;v&#233;reux &#60;ck&#64;kaizeku&#46;com&#62;
 &#42; &#64;copyright Copyright &#40;c&#41; 2006 Avice De&#39;v&#233;reux
 &#42; &#64;version 1&#46;0
 &#42; &#64;license http&#58;&#47;&#47;www&#46;gnu&#46;org&#47;licenses&#47;lgpl&#46;html GNU Lesser General Public License
 &#42; &#64;link http&#58;&#47;&#47;blog&#46;kaizeku&#46;com&#47;wordpress&#47;goro&#45;spam&#45;injection&#45;wp&#45;head&#45;patch&#47;
 &#42;&#47;
function remove_create_function_action&#40;&#41;
&#123; global &#36;wp_filter&#59;

	&#36;action_ref	&#61; &#39;wp_head&#39;&#59;
	&#36;filter 	&#61; &#36;wp_filter&#91;&#36;action_ref&#93;&#59;
	&#36;_lambda	&#61; array&#40;&#41;&#59;

	foreach&#40;range&#40;1&#44;10&#41; as &#36;priority&#41;&#123;

		if &#40;isset&#40;&#36;filter&#91;&#36;priority&#93;&#41;&#41;
		&#123;
			foreach&#40;&#36;filter&#91;&#36;priority&#93; as &#36;registered_filter &#41;&#123;

				&#36;callback &#61; &#40;string&#41; &#36;registered_filter&#91;&#39;function&#39;&#93;&#59;

				if &#40; preg_match&#40;&#34;&#47;lambda&#47;&#34;&#44; &#36;callback&#41; &#41; &#123;
		 	 		&#36;_lambda&#91;&#36;priority&#93;&#91;&#93; &#61; &#36;callback&#59;
				&#125;
			&#125;

		&#125;
	&#125;

	if &#40; count&#40;&#36;_lambda&#41; &#62;&#61; 0 &#41;&#123;

		foreach&#40;&#36;_lambda as &#36;priority &#61;&#62; &#36;callback&#41; &#123;
			if &#40; has_filter&#40;&#36;action_ref&#44;&#36;callback&#41; &#41;&#123;
				remove_filter&#40;&#36;action_ref&#44; &#36;callback&#44; &#36;priority&#44; 1&#41;&#59;
			&#125;
		&#125;
	&#125;
&#125;

add_action&#40;&#39;init&#39;&#44;&#39;remove_create_function_action&#39;&#41;&#59;
</pre>
<p><span id="more-168"></span></p>
<p class="sticky">note: This method only disabled the spam link from showing on your <span class="fw">blog header</span>. it wont fixed your blog vulnerabilities. your blog still owned thought. Tips &rarr; <a href="http://wordpress.org/download/" title="WordPress download archive" rel="external">http://wordpress.org/download/</a></p>
<h3>Download</h3>
<ul class="xoxo">
<li>Note: There is a file embedded within this post, please visit this post to download the file.</li>
</ul>
<h5 class="mgt">Related Articles</h5>
<ul class="xoxo">
<li><a href="http://blog.kakkoi.net/wordpress/how-to-removed-wordpress-net-in-spam-injection-infected-by-mike-jagger-goro-class-mailphp/" rel="external" title="Fixes wordpress.net.in Spam">Fixes wordpress.net.in Spam Footer Injection</a></li>
<li><a href="http://robertogaloppini.net/2007/12/12/wordpress-spam-injection-goro-hacked-my-blog/" rel="external" title="Roberto Galoppini">Roberto Galoppini&#8217;s, Wordpress Spam Injection: ‘Goro’ hacked my blog</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/goro-spam-injection-wp-head-patch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Co-Founder of Mozilla Project</title>
		<link>http://blog.kaizeku.com/wordpress/blake-ross-hacked-wordpress-blackhat-spammer/</link>
		<comments>http://blog.kaizeku.com/wordpress/blake-ross-hacked-wordpress-blackhat-spammer/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 19:46:07 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Black Hat]]></category>

		<category><![CDATA[Owned]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[blackhat]]></category>

		<category><![CDATA[blake ross]]></category>

		<category><![CDATA[gehackt]]></category>

		<category><![CDATA[goro]]></category>

		<category><![CDATA[mozilla]]></category>

		<category><![CDATA[parasite hosting]]></category>

		<category><![CDATA[vulnerability]]></category>

		<category><![CDATA[xmlrpc]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/wordpress/blake-ross-hacked-wordpress-blackhat-spammer/</guid>
		<description><![CDATA[Blake Ross, the Co-Founder of Mozilla Project WordPress Blog&apos;s Hacked by Wordpress.net.in Blackhat Spammer.]]></description>
			<content:encoded><![CDATA[<p><span class="vcard"><img src='http://blog.kaizeku.com/wp-content/uploads/2008/03/blakeross-com-hack-by-blackhat.png' alt='blakeross-com-hack-by-blackhat.png' width='128' height='128' class="photo thumb- fl" longdesc='http://blog.kaizeku.com/wordpress/blake-ross-hacked-wordpress-blackhat-spammer/' /><a class="url fn microformat icn-r1" href="http://blakeross.com"><span class="given-name dc-name">Blake</span> <span class="family-name surname">Ross</span></a></span> WordPress blog is being run by <strong class="fw-">wordpress.net.in</strong> <a href="http://blog.kakkoi.net/wordpress/mattheaton-bluehost-hostmonster-ceo-hacked/" class="exturl icn-r1">goro spam</a> injection.</p>
<h3>Who&apos;s Blake Ross</h3>
<p class="mgb-"><small>Excerpt from <a class="exturl icn-r1" href="http://en.wikipedia.org/wiki/Blake_Ross">wikipedia</a></small></p>
<blockquote class="mgt-"><p class="cite"><strong>Blake Aaron Ross</strong> is a software developer who is known for his work on the Mozilla web browser; in particular, he started the Mozilla Firefox project with Dave Hyatt, as well as the Spread Firefox project with Asa Dotzler while working as a contractor at the Mozilla Foundation.<span class="db">In 2005, he was nominated for Wired magazine&#8217;s top Rave Award, Renegade of the Year, opposite Larry Page, Sergey Brin and Jon Stewart. He was also a part of Rolling Stone magazine&#8217;s 2005 hot list.</span></p>
</blockquote>
<p><span id="more-128"></span><br />
<small class="rgb-hgray"><a href="http://en.wikipedia.org/wiki/Image:Blake_Ross_WIRED_cover.jpeg" class="exturl icn-r1">Image Source</a>, The cover for issue #13.02 (the February 2005 edition) of Wired magazine featuring Blake Ross holding a Firefox globe as part of the lead article, The Firefox Explosion, about the browser&#8217;s development history.</small></p>
<h3 class="cb mgb- mgt">HTML Source &#038; ScreenGrab</h3>
<ul class="xoxo exturl pdt">
<li><a class="inturl" type="text/plain" rel="nofollow robots-nofollow noarchive" title="blakeross.com wordpress 2.0.4 html sources text" href='http://blog.kaizeku.com/wp-content/uploads/2008/02/blakeross-com-022808source.txt' title='blakeross-com-022808source.txt' rev="site:upload-txt">blakeross-com-022808-source.txt</a></li>
<li><a href="http://chaos-kaizer.deviantart.com/art/blakeross-com-hacked-78643257">Screenshot taken on Feb 28th, 2008</a></li>
</ul>
<h2 class="mgt">WordPress Vulnerability</h2>
<ol class="xoxo">
<li>
<h4 class="mgb-">Outdated WordPress</h4>
<ul class="exturl">
<li>
<h4 class="title-">WordPress 2.0.4 Exploit &amp; Vulnerability</h4>
<ul>
<li>Blake&#8217;s is running on <a href="http://wordpress.org/development/2006/07/wordpress-204/" class="exturl icn-r1" title="WordPress Development Blog &raquo; WordPress 2.0.4 Security Release">WordPress 2.0.4</a> first release on Jul 29th, 2006.</li>
<li><a href="http://trac.wordpress.org/browser/branches/2.0/wp-content/plugins/wp-db-backup.php?rev=4226">wp-db-backup.php</a> directory traversal <a href="http://trac.wordpress.org/changeset/4226" class="exturl icn-r1">Rev.4226</a></li>
<li><a href="http://markjaquith.wordpress.com/2006/10/17/changes-in-wordpress-205/">Mark Jaquith on WordPress 2.0.5 Changelog</a></li>
</ul>
</li>
<li>&#181; <small title="Proxy Cached on Feb 28th 2008 via d95.com">Proxy Cached:</small> <a rel="nofollow robots-nofollow noarchive" href="/uri/ZDk1LmNvbS8yNDAx.curie,80,302" title="redirect to blakeross.com wordpress feed">blakeross.com WordPress Version (feed)</a></li>
</ul>
</li>
<li class="mgt">
<h3 class="mgb-">WordPress Core Directory &amp; Plugins Informations Leak</h3>
<ul class="exturl">
<li>
<h3 class="title-">View blakeross.com WordPress Core Directory Listing</h3>
<pre class="prebox dn">
Index of /wp-includes

 Name Last modified Size Description

[DIR] Parent Directory 25-Dec-2006 01:14 -
[ ] cache.php 03-Sep-2006 23:52 11k
[ ] capabilities.php 03-Sep-2006 23:52 11k
[ ] class-IXR.php 03-Sep-2006 23:52 27k
[ ] class-pop3.php 03-Sep-2006 23:52 21k
[ ] class-snoopy.php 03-Sep-2006 23:52 37k
[ ] classes.php 03-Sep-2006 23:52 51k
[ ] comment-functions.php 03-Sep-2006 23:52 31k
[ ] default-filters.php 03-Sep-2006 23:52 5k
[ ] feed-functions.php 03-Sep-2006 23:52 4k
[ ] functions-compat.php 03-Sep-2006 23:52 3k
[ ] functions-formatting..> 03-Sep-2006 23:53 34k
[ ] functions-post.php 03-Sep-2006 23:53 30k
[ ] functions.php 03-Sep-2006 23:53 71k
[ ] gettext.php 03-Sep-2006 23:53 11k
[DIR] images/ 03-Sep-2006 23:50 -
[DIR] js/ 03-Sep-2006 23:55 -
[ ] kses.php 03-Sep-2006 23:55 22k
[ ] links.php 03-Sep-2006 23:55 20k
[ ] locale.php 03-Sep-2006 23:55 3k
[ ] pluggable-functions.php 03-Sep-2006 23:55 17k
[ ] registration-functio..> 03-Sep-2006 23:55 4k
[ ] rss-functions.php 03-Sep-2006 23:55 21k
[ ] streams.php 03-Sep-2006 23:55 4k
[ ] template-functions-a..> 03-Sep-2006 23:55 5k
[ ] template-functions-c..> 03-Sep-2006 23:56 13k
[ ] template-functions-g..> 03-Sep-2006 23:56 21k
[ ] template-functions-l..> 03-Sep-2006 23:56 15k
[ ] template-functions-p..> 03-Sep-2006 23:56 15k
[ ] template-loader.php 03-Sep-2006 23:56 2k
[ ] vars.php 03-Sep-2006 23:56 3k
[ ] version.php 03-Sep-2006 23:56 1k
[ ] wp-db.php 03-Sep-2006 23:56 10k
[ ] wp-l10n.php 03-Sep-2006 23:56 2k 

Apache/1.3.39 Server at blakeross.com Port 80
</pre>
<p>&#181; <small title="Proxy Cached on Feb 28th 2008 via d95.com">Proxy Cached:</small> <a rel="nofollow robots-nofollow noarchive" href="/uri/ZDk1LmNvbS9mNGEx.curie,80,302" rev="site:redirect" title="redirect to blakeross.com wordpress core directory">http://blakeross.com/wp-includes/</a></li>
<li>
<h3 class="title-">View blakeross.com WordPress Plugins Directory Listing</h3>
<pre class="prebox dn">
Index of /wp-content/plugins

 Name Last modified Size Description

[DIR] Parent Directory 27-Sep-2006 22:27 -
[DIR] akismet/ 03-Sep-2006 23:52 -
[ ] hello.php 03-Sep-2006 23:52 2k
[ ] wp-db-backup.php 03-Sep-2006 23:52 30k 

Apache/1.3.39 Server at blakeross.com Port 80
</pre>
<p>&#181; <small title="Proxy Cached on Feb 28th 2008 via d95.com">Proxy Cached:</small> <a rel="nofollow robots-nofollow noarchive" href="/uri/ZDk1LmNvbS81NmQ3.curie,80,302" title="redirect to blakeross.com wordpress plugins directory">http://blakeross.com/wp-content/plugins</a>
</li>
</ul>
</li>
</ol>
<h3>Hardening Wordpress?</h3>
<p>There is <a class="google icn-l" href="http://www.google.com/search?hl=en&amp;q=%E2%80%9Cparent+directory%E2%80%9D+wp-content%2Fplugins%2F+-text+%E2%80%93php+-shtml+-md5+-md5sums">105,000 WordPress blogs</a> leaking their plugins informations for BotNet to scan.</p>
<h2>Blackhat SEO targeting High PR WordPress Blog</h2>
<p><strong class="fw-">Blake Ross</strong> is not alone, there is similar <abbr title="Parasite Host">Spamride</abbr> cases for the past few months. Below is are few &#8220;High PR WordPress Blogs&#8221; with similar issues.</p>
<h3 class="mgb-">Others Popular Victim</h3>
<ul class="xoxo exturl">
<li><a href="http://www.climatecrisis.net/blog/" title="Al Gore&apos;s Blog"> Al Gore&#8217;s Blog</a></li>
<li><a href="http://mattheaton.com">Bluehost Hostmonster CEO&#8217;s Blog</a></li>
<li>blog.indeed.com</li>
<li>thinkingphp.org</li>
<li>floaridablog.org</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/wordpress/blake-ross-hacked-wordpress-blackhat-spammer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Socrates &#038; Sophocles In Latest Spamming Trends</title>
		<link>http://blog.kaizeku.com/search_engine/seo/black-hat/latest-trend-in-spamming/</link>
		<comments>http://blog.kaizeku.com/search_engine/seo/black-hat/latest-trend-in-spamming/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 16:28:37 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[Black Hat]]></category>

		<category><![CDATA[seo+game]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[Trends]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/search_engine/seo/black-hat/latest-trend-in-spamming/</guid>
		<description><![CDATA[I get to many spams lately. Some of this deliberate spammer has many artificial technique ie predefine message,  questionnaire, using a famous name, one liner etc...  And surprisingly all the spammer has a commons things, there is no hyperlinks in their comments post. So this make it a trends in spam evolution.  Here is some of my findings.
<h2>Predefine post</h2>
What a joy,  they come in pair.

<img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/akismet-b.gif" alt="akismet-1" /><img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/spam-akismet-v.gif" alt="spam akismet-2" />
<h2>Questionnaire</h2>
<img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/spammer-akismet-g.gif" alt="spammer akismet-3" />

What Daniel's meant by <strong>interesting</strong> is  actually more prosaic than the real meaning. he was hammering my blog for 4 days long with the same repetitive comments. I'd to quickly blocked him via <span class="tt">.htacess</span> and  submit his particular details to spam reporting services.]]></description>
			<content:encoded><![CDATA[<p>I received many spams lately. Some of this deliberate spammer has many artificial technique ie predefine message, questionnaire, using a famous name, one liner etc&#8230; And surprisingly all the spammer has a commons things, there is no hyperlinks in their comments post. So this make it a trends in spam evolution. Here is some of my findings.<br />
<span id="more-94"></span></p>
<h2>Predefine post</h2>
<p>What a joy, they come in pair.</p>
<p><img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/akismet-b.gif" class="bof" alt="akismet-1" /><img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/spam-akismet-v.gif" class="bof" alt="spam akismet-2" /></p>
<h2>Questionnaire</h2>
<p><img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/spammer-akismet-g.gif" class="bof" alt="spammer akismet-3" /></p>
<p>What Daniel&#8217;s meant by <strong>interesting</strong> is actually more prosaic than the real meaning. he was hammering my blog for 4 days long with the same repetitive comments. I&#8217;d to quickly blocked him via <span class="tt">.htacess</span> and submit his particular details to spam reporting services.</p>
<p> </p>
<h2>One Liner</h2>
<p>This type of spamming is redundant in my blog. Almost 80% of it is from CHINA. And that is very suspicious as this might be a forge address by Russian black-hat. Notice the famous name (Socrates &amp; Sophocles). Its very noble.</p>
<p><img src="http://blog.kaizeku.com/wp-content/uploads/2007/10/spammer-akismet-d.gif" class="bof" alt="spammer akismet-4" /></p>
<h2></h2>
<h2><strong>How to identify a SPAM posts?</strong></h2>
<p>From my dictionary.</p>
<ol>
<li>If the comment is<strong> ambiguous</strong> its a spam.</li>
<li>Giving out<strong> </strong>fake email<strong> </strong>address. A quick telnet will do the job<br />
<small class="cc-block block" style="margin: 5px 0pt">Looking up IP address for mx1.hotmail.com.<br />
The IP address for mx1.hotmail.com. is 65.54.245.8</small><small class="cc-block block" style="margin: 5px 0pt">sending HELO<br />
response: 220 bay0-mc9-f23.bay0.hotmail.com Sending unsolicited commercial or bulk e-mail to Microsoft&#8217;s computer network is prohibited. Other restrictions are found at http://privacy.msn.com/Anti-spam/. Violations will result in use of equipment located in California and other states. Mon, 8 Oct 2007 08:49:24 -0700 250 bay0-mc9-f23.bay0.hotmail.com (3.4.0.37) Hello [xx.xx.xx.xx]</small><small class="cc-block block" style="margin: 5px 0pt">sending RCPT TO vanessyto@hotmail.com</small><small class="cc-block block" style="margin: 5px 0pt">response: 550 Requested action not taken: <font color="#ff0000">mailbox unavailable</font></small></li>
<li>Using the <strong>blog name for reference</strong>, as in my case the spammer used &#8220;Kaizeku Ban&#8221; as reference.</li>
<li>The author is using the same <a href="/uri/?http://whois.domaintools.com/72.52.145.58">IP address with the target website</a>. This is debatable, but still good points to check.</li>
</ol>
<h2>How to identify a spam website?</h2>
<p>Most of spam websites register their domains under <a href="/uri/?http://whois.domaintools.com/animeonline.net">anonymous registrant</a>. So be alert for this type of sites.</p>
<h2>Protection against spam</h2>
<p>Today&#8217;s email and blogging software (CMS) has standard a build in spam protections but it still not good enough as spammer is getting better and cunning at every turn. I think the best protections from spamming is for you to have a <strong>&#8220;white-list&#8221;</strong> of trusted network. As it will save you from writing endless filter. Just let the one you trust to contact you and let rest of the worlds in the waiting list.</p>
<p>At this time of writing there is <a href="/uri/?http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=Smv&amp;q=stop+spam&amp;btnG=Search">4 million search results</a> for &#8220;stop spam&#8221; query on Google. This should make spam as an industry by itself. How many spam should we get in the next 10 years is all depend on how much profit it makes for spamming.</p>
<p>There wouldn’t be spam if there wasn’t money in spam.</p>
<h2>Related links</h2>
<ul>
<li><a href="/uri/?http://www.google.com/contact/spamreport.html">Google Spam Report</a></li>
<li><a href="/uri/?http://help.yahoo.com/l/us/yahoo/search/spam_abuse.html">Yahoo! Spam Report</a></li>
<li><a href="http://www.spamcop.net/reported.shtml">SpamCop</a> <a href="http://www.spamcop.net/reported.shtml"><br />
</a></li>
<li><a href="/uri/?http://www.ftc.gov/spam/">Federal Trade Commission</a></li>
<li><a href="http://banspam.javawoman.com/report3.html">Spam Reporting Address</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/search_engine/seo/black-hat/latest-trend-in-spamming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Matt Cutts Whitehat SEO tips for Bloggers.</title>
		<link>http://blog.kaizeku.com/search_engine/seo/matt-cutts-whitehat-seo-tips-for-bloggers/</link>
		<comments>http://blog.kaizeku.com/search_engine/seo/matt-cutts-whitehat-seo-tips-for-bloggers/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 12:41:00 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/seo/matt-cutts-whitehat-seo-tips-for-bloggers/</guid>
		<description><![CDATA[Matt Cutts the head of Google's Web spam team published a video on Whitehat Search Engine Optimization Techniques. This SEO techniques are recommended and endorsed by Google.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mattcutts.com">Matt Cutts</a> the head of Google&#8217;s Web spam team published a video on <strong>Whitehat Search Engine Optimization Techniques</strong>. This SEO techniques are recommended and endorsed by Google.</p>
<p>view it at <a href="http://www.viddler.com/explore/jpozadzides/videos/2/">viddler.<span id="more-15"></span></a></p>
<p>[ratings]</p>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/search_engine/seo/matt-cutts-whitehat-seo-tips-for-bloggers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Protected: Seo Score Card</title>
		<link>http://blog.kaizeku.com/search_engine/seo/seo_report/</link>
		<comments>http://blog.kaizeku.com/search_engine/seo/seo_report/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 03:04:18 +0000</pubDate>
		<dc:creator>Avice</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.kaizeku.com/seo/seo_report/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://blog.kaizeku.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-49">Password:<br />
<input name="post_password" id="pwbox-49" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>]]></content:encoded>
			<wfw:commentRss>http://blog.kaizeku.com/search_engine/seo/seo_report/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
