<?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>「朱72」　shu72.com &#187; internet security</title>
	<atom:link href="http://shu72.com/tag/internet-security/feed/" rel="self" type="application/rss+xml" />
	<link>http://shu72.com</link>
	<description>the personal website of Sonya C. Wheeler</description>
	<lastBuildDate>Mon, 17 May 2010 04:43:42 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Website bombardment and crack of 2009</title>
		<link>http://shu72.com/2010/02/10/website-bombardment-and-crack-of-2009/</link>
		<comments>http://shu72.com/2010/02/10/website-bombardment-and-crack-of-2009/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:50:49 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[website crack]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://shu72.com/?p=292</guid>
		<description><![CDATA[A now time for a seriously long-winded story my little kitties. It has it&#8217;s beginnings, middles, and endings. It&#8217;s about how I realized my decrepit WordPress install was not so secure.

This may or may not have anything to do with my website getting cracked into and it may or may not have been a precursor [...]]]></description>
			<content:encoded><![CDATA[<p>A now time for a seriously long-winded story my little kitties. It has it&#8217;s beginnings, middles, and endings. It&#8217;s about how I realized my decrepit WordPress install was not so secure.</p>
<p><img src="http://shu72.com/mainsite/wp-content/uploads/2010/01/akismet_stats0908-0909.png" alt="Akismet Stats 2008-2009" title="akismet_stats 0908-0909" width="198" height="293" class="alignleft size-full wp-image-301" /><br />
This may or may not have anything to do with my website getting cracked into and it may or may not have been a precursor to what followed: 23 July was the last post of last year. Months after that my WordPress/Akismet install received and caught a good amount of spam with a good chunk of them being from September 2009. More than 1½ times the amount recorded from previous years combined. A massive flood in failed spam comments.</p>
<p>I paid no real attention since this was probably due to the July post that helped spam bots know the weblog was alive and kicking, but then again this was happening about two months after the post.</p>
<p>So&#8230;come 31 October 2009, I try to SFTP to my server and I couldn&#8217;t even log into my server. I forgot what error the WinSCP keep giving me after a while. I think it was something about a timeout but it wasn&#8217;t the usual timeout error. I kept getting it so I updated WinSCP just to make sure and it still kept happening. I even tried the Firefox extension FireFTP&#8230;no dice. I could get into WordPress and phpMyAdmin fine through my browser but that was not what I was looking to do. Luckily, DreamHost offers a WebFTP login which can be found in the DH panel. It can be used to edit your site pages via a web browser. I guess I should have tried to access my site via command line/shell to see if I could get in that way, but I didn&#8217;t feel like it. Decided to try to WebFTP for the time being to do some minor editing.</p>
<p>When I clicked to edit the source of one of my files I noticed that an extra line of code at the top of the pages I brought up. First I thought this was something the web based editor adds onto the files. I <em>don&#8217;t</em> want something adding stuff to my code. I have to find a way back into my server that I know works. Further research into what the code added actually was had revealed that I was a victim of the <code>eval(base64_decode()</code>&#8230; crack that starts off like<br />
<code>&lt;?php /**/<br />
eval(base64_decode("aWYoZnVuY3R...<br />
 ....<br />
?&gt;</code> </p>
<p><span id="more-292"></span></p>
<p>Oh, crap. That&#8217;s when I put my site into maintenance mode until I figured out the extent of the damage and how it happened. As far as not being able to log in, it suddenly came to me what might have been the cause. Not the hack crack but the fact that I changed my router&#8217;s firewall setting to test out a more secure setting and left it that way. This turned out to be too much and far more restrictive than what I needed. Since the router&#8217;s firewall was boosted up to restrict programs and traffic allowed, I ended up blocking myself out of my server. Aackk! I switched the setting so the information could be sent and received properly with out being partially blocked or ignored. It worked! So folks, if you keep getting timeouts or whatever, try to think back and remember if you changed a setting here or there.</p>
<p>Finally, I checked some more files via WinSCP I found more of the same junk added through out my .php files. It nested itself throughout my WordPress directories. Some files altered, others were not. The files affected were all modified around the 26th and 28th of October 2009.</p>
<p>Decoding the bulk of the crap to make it atleast somewhat human readable showed an &#8220;if file exists&#8221; clause:<br />
<code>if(function_exists('ob_start')&#038;&#038;!isset($GLOBALS['sh_no'])){$GLOBALS['sh_no']=1</code> I have no idea what the global variable &#8220;sh_no&#8221; is. Elsewhere in the code it had a few <code>gzdecode()</code>s, a bunch of gibberish and something that look like it was to alter something in the <code>&lt;body&gt;</code> tag:</p>
<pre>
if(preg_match('/\&lt;body/si', ...
</pre>
<p>Strangely, the function <code>gzdecode()</code> is not introduced until PHP 6. Many servers out there are at PHP 5.x and there are even a few still using PHP 4.x. DreamHost currently has both 4 and 5. Very, very few servers are running the bleeding edge 6 and maybe even less than that for people on shared hosting plans. I wonder if this was to be a platform to a future larger crack once more servers start to switch over to PHP 6?</p>
<p>Anyway, it was the &#8220;&#8230;wp-includes/js/tinymce/themes/advanced/images/xp/style.css.php&#8230;&#8221; section in the decryption might be where an old security flaw in the TinyMCE editor cause my site to be exploited. Regular .htm/.html files elsewhere in other directories were fine along with some other .php files. I never use the visual editor to post. Oh, yeah and&#8230;  holy crap! My WordPress version was ancient! I seriously didn&#8217;t realized how old the install really was, version 2.0.4?</p>
<p>I download my theme and other non-WP directories then scanned all my files for viruses. Saved a copy of the database to see exactly how much damage was actually done. Checking the files on my site and my MySQL DB didn&#8217;t show any altered links in posts or registered extra users from what I skimmed through. Code was just added and nothing else? I didn&#8217;t find any iframes with ads added when I viewed my website then again I didn&#8217;t check the source code at the time. Should have saved the WP install directories as well for a closer look.</p>
<p>My site stats show some referring URLs with &#8220;&#8230;translate.googleusercontent.com/translate_c?hl=<em>zh</em>&amp;ie=&#8230;&#8221; in it. The &#8220;zh&#8221; means Chinese. It may be the Google robots indexing (and translating?) my site. Is it related to the crack? Who knows, but 66 requests for only 3 pages? Maybe something was causing the bot to get caught in loop.<br />
<div id="attachment_302" class="wp-caption aligncenter" style="width: 310px"><img src="http://shu72.com/mainsite/wp-content/uploads/2010/01/referrerreport_20091031-300x217.png" alt="Server log" title="referrerreport_20091031" width="300" height="217" class="size-medium wp-image-302" /><p class="wp-caption-text">Server log showing increased hits from translate.googleusercontent.com</p></div><br />
 I decided to check my server stats and <a href="http://www2.clustrmaps.com/counter/maps.php?url=http://shu72.com">my Clustrmaps page</a> and then noticed an increase in visits to my site from China, maybe a googlebot in China? A better robots.txt file should handle some of these bots. <div id="attachment_305" class="wp-caption aligncenter" style="width: 555px"><img src="http://shu72.com/mainsite/wp-content/uploads/2010/02/shu72com-2006-10-18_to_2009-10-201.jpg" alt="ClustrMaps 2006-2009 archive for this site." title="shu72com-2006-10-18_to_2009-10-20" width="545" height="132" class="size-full wp-image-305" /><p class="wp-caption-text">ClustrMaps 2006-2009 archive for this site.</p></div></p>
<p>These events along with my attempts to reboot my site have been piling up on my to-do list. At least, finally I got my butt into gear and got my site rebooted despite minor troubles with the fact that around 31 Jan &#8211; 1 Feb 2010 somehow the DreamHost server I&#8217;m on was about 12 minutes off when accounting for time zone difference (about -3 hours 12 minutes without adjustments to my time zone, they&#8217;re PST, I&#8217;m EST). Now it&#8217;s finally been corrected on their end. Still there are other minor things that I still have to have done like add a page here and there but it&#8217;s 99.98% ready. Yippee!</p>
<p>Coming soon: The details on my 2010 design reboot later and what happened to my original &#8220;steampunk&#8221; look idea that I previously tweeted about. Of which, you can see, is not currently gracing the face of my site.</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2010/02/10/website-bombardment-and-crack-of-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Crappy (All) Consuming crack</title>
		<link>http://shu72.com/2005/04/09/crappy-all-consuming-crack/</link>
		<comments>http://shu72.com/2005/04/09/crappy-all-consuming-crack/#comments</comments>
		<pubDate>Sat, 09 Apr 2005 22:06:54 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[website crack]]></category>

		<guid isPermaLink="false">http://shu72.com/2005/04/09/crappy-all-consuming-crack/</guid>
		<description><![CDATA[Dang it&#33; The All Consuming site has been hacked by someone. I was going to login to my account to get the full list of books that I&#8217;ve read and update it now I can&#8217;t. I haven&#8217;t place the javaScript for my books code on my weblog in awhile, but still I wanted to update [...]]]></description>
			<content:encoded><![CDATA[<p>Dang it&#33; The <a href="http://allconsuming.net/">All Consuming</a> site has been hacked by someone. I was going to login to my account to get the full list of books that I&#8217;ve read and update it now I can&#8217;t. I haven&#8217;t place the javaScript for my books code on my weblog in awhile, but still I wanted to update my list and add a few more books. Looks like I&#8217;&#8217;ll have to try to find my backup list of the books.</p>
<p>Actually this was more of a <em>crack</em> than a <em>hack</em> since it fudged up the creator Erik Benson&#8217;s servers. Thus mucking up other peoples&#8217; sites and I&#8217;m not talking about just a handful of people here.</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2005/04/09/crappy-all-consuming-crack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer zombies with a viral load in e-mails</title>
		<link>http://shu72.com/2004/06/25/computer-zombies-with-a-viral-load-in-emails/</link>
		<comments>http://shu72.com/2004/06/25/computer-zombies-with-a-viral-load-in-emails/#comments</comments>
		<pubDate>Fri, 25 Jun 2004 13:30:51 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[internet security]]></category>

		<guid isPermaLink="false">http://shu72.com/2004/06/25/computer-zombies-with-a-viral-load-in-emails/</guid>
		<description><![CDATA[Well, I&#8217;m still getting zombiefied emails from France that have attachments with them. I guess it looks like that guy who emailed me last year got his computer hijacked recently. When he emailed me last year his email client must have saved me in his address book (A feature which can be turned off). Once [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m still getting zombiefied emails from France that have attachments with them. I guess it looks like that guy who emailed me last year got his computer hijacked recently. When he emailed me last year his email client must have saved me in his address book (A feature which can be turned off). Once his system got infected and turned into a zombie everyone including me is now getting the emails with the attachments.</p>
<p><strong>15</strong> more between the 18th of June till now. All with the &#8220;wanadoo.fr&#8221; in the headers. Someone on there is infected and it sends itself to people with different &#8220;sender&#8221; emails. I&#8217;ve got 3 different &#8220;senders&#8221; so far. The IP numbers are different for the most part but the numbers belong to the same block&#8230; &#8220;wanadoo.fr&#8221;, as in the headers.</p>
<p>I started to keep a little <a href="http://www.openoffice.org">OpenOffice</a> spreadsheet on the attachment names, dates, IP info, subject titles, and sizes of the zombie emails I&#8217;m getting (mainly because it finally gives me a reason to start learning the ins-and-outs of OpenOffice). Plus, I figured it wouldn&#8217;t be wise to bounce the emails since that might cause more trouble in cyberspace so it&#8217;s&#8230;</p>
<p>delete, delete, delete&#33;</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2004/06/25/computer-zombies-with-a-viral-load-in-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rampant email viruses</title>
		<link>http://shu72.com/2004/06/17/rampant-email-viruses/</link>
		<comments>http://shu72.com/2004/06/17/rampant-email-viruses/#comments</comments>
		<pubDate>Fri, 18 Jun 2004 02:01:52 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://shu72.com/2004/06/17/rampant-email-viruses/</guid>
		<description><![CDATA[There has been a strangely increasing amount of spam with virus attachments sent to my email. I&#8217;ve gotten more of these emails within the last few days than I&#8217;ve ever got before. 2 additional yesterday and 2 more just today. They didn&#8217;t effect or infect me.
This time attachments with file the names:

Manufacture.zlv
Alive_condom.com
Counter_strike.vbs
bateaqxiqy.jpeg
Message.zip

The last two were [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a strangely increasing amount of spam with virus attachments sent to my email. I&#8217;ve gotten more of these emails within the last few days than I&#8217;ve ever got before. 2 additional yesterday and 2 more just today. They didn&#8217;t effect or infect me.</p>
<p>This time attachments with file the names:
<ul>
<li>Manufacture.zlv</li>
<li>Alive_condom.com</li>
<li>Counter_strike.vbs</li>
<li>bateaqxiqy.jpeg</li>
<li>Message.zip</li>
</ul>
<p>The last two were sent together, how nice. Taking a closer look at the email headers <i>(The same <i>French</i> header info as the emails I talked about a few days ago on the 15th.)</i> and the common sender name this time, I realized this joker has emailed me before (Re: Past entry titled &#8220;<a href="http://shu72.com/2003/10/dig-this">Dig this&#8230;</a>&#8221; from 28 October 03). I can&#8217;t really tell if this <em>actual</em> person deliberately sent these to me or not but it&#8217;s getting annoying. Luckily my email program has now trained itself to automatically mark it as junk mail.</p>
<p>Of course the recent four were sent with a &#8220;latinmail.com&#8221; email suffix. A popular spammer domain.</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2004/06/17/rampant-email-viruses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the&#8230;? Spoofing and phishing.</title>
		<link>http://shu72.com/2004/06/15/what-the-spoofing-and-phishing/</link>
		<comments>http://shu72.com/2004/06/15/what-the-spoofing-and-phishing/#comments</comments>
		<pubDate>Tue, 15 Jun 2004 21:40:46 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://shu72.com/2004/06/15/what-the-spoofing-and-phishing/</guid>
		<description><![CDATA[I got a few funny emails recently. Too funny for words and an obvious attempt at forging, spoofing and phishing! Here&#8217;s one:

Hello user of Eklectik.com e-mail server,
Your e-mail account has been temporary disabled because of unauthorized access.
For more information see the attached file.
Kind regards,
&#160;&#160;The Eklectik.com team &#160;&#160;&#160;&#160;&#160;&#160; http://www.eklectik.com
Ha! The Eklectik.com team?! Gee, what a minute, [...]]]></description>
			<content:encoded><![CDATA[<p>I got a few funny emails recently. Too funny for words and an obvious attempt at forging, spoofing and phishing! Here&#8217;s one:</p>
<div class="htm">
Hello user of Eklectik.com e-mail server,</p>
<p>Your e-mail account has been temporary disabled because of unauthorized access.</p>
<p>For more information see the attached file.</p>
<p>Kind regards,<br />
&nbsp;&nbsp;The Eklectik.com team &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; http://www.eklectik.com</p></div>
<p>Ha! <em>The Eklectik.com team</em>?! Gee, what a minute, That&#8217;s me! Funny I don&#8217;t remember doing any &#8220;unauthorized access&#8221; on my account and sending myself and email to that affect preventing me from accessing my own email. <i>Bad me. For shame!</i> Go figure.</p>
<p>An attached file you say? Obvious ploy to get me to open an attachment in an email from a sender who is unknown&#8212;but in the case of the one from The Eklectik.com team, well there is no &#8220;The Eklectik.com team&#8221; Thank You, but no. Try again.</p>
<p>Who ever this asshole is (whether human or machine) they sent me some other emails too but with the sender email address changed. Apparently with a different attachment with them with names like: <span class="file">MoreInfo.pif</span>, <span class="file">Toy.com</span>, <span class="file">the_message.com</span> and <span class="file">Info.scr</span>. All of which to me spell out trouble (i.e. virus, trojan, phishing).</p>
<p>Some of the emails didn&#8217;t even have any regular plain text in the body of the message. Except one that only stated &#8220;I love you answer me please&#8221; and gave a website address. My <ins>sarcastic</ins> answer: &#8220;Oh, O.K. Uuh, I think it&#8217;s time we started seeing other people. Really, it&#8217;s been great, but I feel we&#8217;ve grown distant. We can still be friends alright&#63;&#8221; I really didn&#8217;t respond to the email.</p>
<p>Most likely a phishing scam on that one. From the headers I think I&#8217;ve narrowed it down to it being supposedly sent from a French domain and an IP based in the Netherlands (Amsterdam).</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2004/06/15/what-the-spoofing-and-phishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where in the world is&#8230;?</title>
		<link>http://shu72.com/2004/02/19/where-in-the-world-is/</link>
		<comments>http://shu72.com/2004/02/19/where-in-the-world-is/#comments</comments>
		<pubDate>Thu, 19 Feb 2004 22:41:24 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[internet security]]></category>

		<guid isPermaLink="false">http://shu72.com/2004/02/19/where-in-the-world-is/</guid>
		<description><![CDATA[I was ordering some vitamins from Swanson&#8217;s Vitamins online today and while going through checkout it showed my normal shipping/billing information but with something I&#8217;ve never seen/noticed before. It had my phone number totally wrong&#33; It was an area code I&#8217;ve never seen before, 956. It was ten numbers and in the box for my [...]]]></description>
			<content:encoded><![CDATA[<p>I was ordering some vitamins from <a href="http://www.swansonsvitamins.com/">Swanson&#8217;s Vitamins</a> online today and while going through checkout it showed my normal shipping/billing information but with something I&#8217;ve never seen/noticed before. It had my phone number totally <em>wrong</em>&#33; It was an area code I&#8217;ve never seen before, 956. It was ten numbers and in the box for my phone number so I figured that well somehow they think it&#8217;s <em>my</em> phone number. I had to do a search (after I corrected the error of course) to see where the number belonged. Nothing on entering the whole number but 956 belongs to the cites: Harlingen, Laredo and McAllen&#8230; <em>TEXAS&#33;</em></p>
<p>Hey&#63; I&#8217;m in Pittsburgh and never been to Texas. It&#8217;s almost like the time when one day I logged into my Amazon.com and found that my birthday info stored and displayed for my wishlist had been changed to October 8 instead of remaining at the correct December 23. I had found out about the change in birthdate some time in November 2002 and who knows how long it was like that. May be I should log into my accounts more often to make sure info doesn&#8217;t change for no reason. Once I input info (especially info that should not change a lot or at all) it would be nice if it would stay put.</p>
<p><em>Damn trolls&#33;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2004/02/19/where-in-the-world-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Hijacking sucks</title>
		<link>http://shu72.com/2003/01/24/browser-hijacking-sucks/</link>
		<comments>http://shu72.com/2003/01/24/browser-hijacking-sucks/#comments</comments>
		<pubDate>Fri, 24 Jan 2003 08:32:05 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[internet security]]></category>

		<guid isPermaLink="false">http://shu72.com/2003/01/24/browser-hijacking-sucks/</guid>
		<description><![CDATA[Imagine if you will, just browsing and researching away when all of a sudden a page on a site that you&#8217;ve visited before now has something added to it. No folks, I&#8217;m not talking about new content. I&#8217;m talking about your web browser now has a new toolbar&#33;
Yep&#8230;
&#8230;yer browser&#8217;s been hijacked&#33;
I was wondering, &#8220;Is this [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine if you will, just browsing and researching away when all of a sudden a page on a site that you&#8217;ve visited before now has something added to it. No folks, I&#8217;m not talking about new content. I&#8217;m talking about your web browser now has a new toolbar&#33;</p>
<p><i>Yep&#8230;</i><br />
&#8230;yer browser&#8217;s been hijacked&#33;</p>
<p>I was wondering, &#8220;Is this a new <acronym title="Cascading Style Sheets">css</acronym> or <acronym title="Dynamic HyperText Markup Language">dhtml</acronym> effect that makes your navigation look like a toolbar&#63; Can&#8217;t be, I&#8217;ve been on the website before&#8221;. I right clicked the toolbar and noticed that it had a new menu item checked: <strong>Xupiter</strong>. <i>Uuh?</i> One thing I can&#8217;t stand is a another toolbar taking up valuable space. I only have 5 other small buttons other than the forward and back buttons with address bar. I don&#8217;t need a toolbar I&#8217;ll never use&#8212;especially a toolbar I didn&#8217;t ask for.</p>
<p>I did a <a href="http://www.google.com">Google</a> search and <a HREF="http://www.lockergnome.com">Lockergnome</a> search. The <a HREF="http://www.spywareinfo.com">SpywareInfo</a> website was very useful as well. It turns out that it secretly installed itself using Active-X and the &#8220;&#60;OBJECT&#62;&#8221; tag embedding on a webpage or pop-up&#8230; or pop-under for that matter. Oh, well. To combat this I downloaded and used <strong>Spybot <acronym title="Search and Destroy">S&#038;D</acronym></strong> by PepiMK Software that handled the browser hijacker <i>Xupiter</i> well after a reboot. (You can find the download at various places like <a HREF="http://www.zdnet.com">ZDNet</a> or at <a HREF="http://security.kolla.de/">http://security.kolla.de/</a>). My <i>Tempory Internet Files</i> folder still had some bits and pieces of <i>Xupiter</i> that I had to take care of. Now I&#8217;ll have a look at my <i>Registry</i> to see if any other bits and pieces were left there.</p>
<p>Nothing like wasting your time and money trying to regain your browser and computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2003/01/24/browser-hijacking-sucks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Attack of the Amazon trolls</title>
		<link>http://shu72.com/2002/11/30/attack-of-the-amazon-trolls/</link>
		<comments>http://shu72.com/2002/11/30/attack-of-the-amazon-trolls/#comments</comments>
		<pubDate>Sat, 30 Nov 2002 23:34:54 +0000</pubDate>
		<dc:creator>Sonya</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[internet security]]></category>
		<category><![CDATA[website crack]]></category>

		<guid isPermaLink="false">http://shu72.com/2002/11/30/attack-of-the-amazon-trolls/</guid>
		<description><![CDATA[Strange. I wonder if my Amazon.com wishlist has been hacked? For some reason it was showing my birthday as October 8th! That&#8217;s stupid. Really stupid. Last time I looked it was correct. Good thing I checked back. I changed it back to December 23rd.
]]></description>
			<content:encoded><![CDATA[<p>Strange. I wonder if my Amazon.com wishlist has been hacked? For some reason it was showing my birthday as October 8th! <em>That&#8217;s stupid.</em> <i>Really stupid.</i> Last time I looked it was correct. Good thing I checked back. I changed it back to December 23rd.</p>
]]></content:encoded>
			<wfw:commentRss>http://shu72.com/2002/11/30/attack-of-the-amazon-trolls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
