<?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>Smartypants.com Blogs</title>
	<atom:link href="http://smartypants.com/blogs/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://smartypants.com/blogs</link>
	<description></description>
	<lastBuildDate>Sat, 28 Apr 2012 22:10:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Anatomy of a Website Compromise</title>
		<link>http://smartypants.com/blogs/index.php/2012/04/28/anatomy-of-a-website-compromise/</link>
		<comments>http://smartypants.com/blogs/index.php/2012/04/28/anatomy-of-a-website-compromise/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 22:08:59 +0000</pubDate>
		<dc:creator>Stephen B.</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/?p=974</guid>
		<description><![CDATA[Recently I had the &#8220;pleasure&#8221; of cleaning up one of the websites we host, and encountered one of the sneakiest website compromises (&#8221;hacks&#8221;) I&#8217;ve seen so far. I&#8217;ve decided to document the details, in case the information is of any use to other people whose sites have been compromised the same way. This incident is [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had the &#8220;pleasure&#8221; of cleaning up one of the websites we host, and encountered one of the sneakiest website compromises (&#8221;hacks&#8221;) I&#8217;ve seen so far. I&#8217;ve decided to document the details, in case the information is of any use to other people whose sites have been compromised the same way. This incident is also a good example of how sophisticated (or at least sneaky) these attacks have become, and the amount of effort required to cleanup a site compromised in this way.</p>
<p>Read more for the gory details.<br />
<span id="more-974"></span><br />
Many website compromises are easy to spot &#8211; typically attackers will add code that redirects visitors to other sites (or opens pop-up windows in their web browser), or they add content to pages on the site, or they outright replace entire pages. This compromise was much more subtle though, and it was only noticed when spam links began appearing in the Google search results for that site.</p>
<p>When we were asked for help with the problem, I immediately started on the standard cleanup tasks:</p>
<ul>
<li>creating a compressed backup of the infected site &amp; the recent web logs (for later analysis)</li>
<li>searching through the site&#8217;s files for words that were in the spam links/search results with &#8220;grep&#8221; (a UNIX tool that searches through files for specific text)</li>
<li>and creating a list of all the site&#8217;s files sorted by their modification date</li>
</ul>
<p>The &#8220;grep&#8221; search turned up several files that contained key words from the spam links/search results, which I promptly removed. The list of recently-modified files turned up some more infected files, mostly &#8220;backdoor&#8221; scripts hidden in the /images folder, which I also removed. Backdoor scripts are usually web-based file managers, which attackers can use to modify files on the website. To use a real-world analogy, it&#8217;s like to breaking into a house by picking the front-door lock, and then making some other more subtle change to make it easy to break in again &#8211; like disabling the lock on a window.</p>
<p>So far, this was all fairly standard stuff that I&#8217;d seen before on other compromised sites. But the recently-modified files list also showed that the site&#8217;s index.php file had been modified, which I found a bit surprising because there were no obvious signs of infection when viewing the site in a web browser. Checking the index.php file, I found an &#8220;include&#8221; statement that had been added &amp; was used to load another file, which is where things started getting interesting.</p>
<p>Most scripting languages used for web sites have some sort of &#8220;include&#8221; function, that lets files load content or scripting code from separate files &#8211; that&#8217;s typically done to make development easier, by organizing content (or portions of web-based applications into separate files). In this case, though, the include statement was loading a file with a .pdf extension, which had been hidden in the folder /home/username/mail/tmp (probably to make it harder to find).</p>
<p>When I examined the include&#8217;d .pdf file, it contained some binary data (in base64 format) along with PHP code used to decode that data. In other words, the file contained PHP code, and the most of the actual content had been obfuscated by converting it to base64 &#8211; and when the file was run (via the include statement in index.php), the base64 data was decoded &amp; the obfuscated PHP code was run.</p>
<p>A brief explanation: attackers often use this method, because it&#8217;s a fairly effective way to hide the malicious code they&#8217;ve uploaded to a website. Say, for example, an attacker modifies a website to add advertisements for fake rolex watches &#8211; normally, if the files are in plain ASCII (text), you can find the infected files by just running  a grep for the word &#8220;rolex&#8221;. But if the attackers encode the content using base64 (or some other similar method), then a grep for &#8220;rolex&#8221; won&#8217;t find any matches &#8211; because in base64, the word &#8220;rolex&#8221; would be encoded as &#8220;cm9sZXg=&#8221; instead, and it would only be converted to plain text when the PHP script is executed (typically by being viewed in a web browser).</p>
<p>So in this particular case, the attackers had taken some PHP &amp; HTML code containing their spam advertisements and then they had run it through a base64 encoder. But they didn&#8217;t stop there &#8211; instead they took the initial base64 encoded data, and then ran it through the base64 encoder again, effectively adding a 2nd layer of obfuscation to the file. It&#8217;s most likely that this was done to in order to evade virus &amp; malware (malicious software) scanners, which many servers use to detect these types of compromises. Many of these scanners will automatically decode base64-encoded data, but not all of them are sophisticated enough to detect that the decoded data is itself base64-encoded.</p>
<p>That&#8217;s still not the end of the story, however &#8211; I was puzzled by the fact that I couldn&#8217;t spot any modifictions to the website when viewed in a browser, even before I removed the malicious file (and the include statement pointing to it). So I decided to take a copy of the file with the base64 encoded data &amp; make some small modification to it, so it would simply display the decoded data when viewed in a web browser instead of actually running the code. The actual data was a PHP script, and a quite a long one (nearly 8,500 lines) &#8211; but the main thing that jumped is that contained code to check the IP address &amp; user agent of any visitors against the indexing bots used by many search engines, primarily Google.</p>
<p>Remembering that the only publicly-visible results of the infection were some spam content in the Google search results for the compromised site, I used the &#8220;Fetch as Googlebot&#8221; tool (in Google&#8217;s Webmaster Tools suite) to load the malicious page. Viewing the results of how the page appeared to Google&#8217;s indexing bot finally gave me (almost) the complete story. It appears that the code was setup to detect if it was being viewed by Google&#8217;s indexing bot, and display the spam content &#8211; while hiding it from visitors who viewed the page in a web browser (probably to reduce the chance that the website&#8217;s owners or visitors would spot the compromise).</p>
<p>As for the exact goal of the attackers, it&#8217;s difficult to say from looking at the code. They were able to add code to the site that added spam content to that site&#8217;s Google results, but there were no actual links visible in the search results &#8211; the links were only visible through Google&#8217;s cached copies of those pages. So it&#8217;s unlikely that anyone would have clicked on the links, which largely defeats the purpose of adding the spam content. I believe that the most likely explanation is that the attackers were trying to boost the Google ranking of the site(s) that the spam links pointed to, essentially trying to leech off the Google ranking of a legitimate site in order to boost their own search ranking. And few of the links also appeared to contain affiliate IDs, so it&#8217;s possible that the attackers were attempting to drive traffic to their affiliate link in order to defraud another site&#8217;s affiliate system.</p>
<p>Lastly, it appears that the attackers were able to compromise the site by exploiting a security vulnerability in an old, unused (and out-of-date) copy of WordPress that was present on the site. Even though the current site isn&#8217;t using WordPress, the attackers were still able to break in using a WordPress vulnerability (or a vulnerability in one of its plugins) &#8211; and once they were able to use that access to modify the active website.</p>
<p>Unfortunately there&#8217;s no magic bullet to prevent these types of attacks &#8211; although there are a few general practices that will help. If your website runs WordPress, make sure it&#8217;s updated regularly (along with any installed plugins). Don&#8217;t leave un-used applicaions installed on your website, because they may contain security vulnerabilities that attackers can use as a backdoor into your site. And it&#8217;s a good idea to check the Google search results for your site from time to time, because that can help alert you to problems that may not be immediately apparent.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2012/04/28/anatomy-of-a-website-compromise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenTable Open For Spamming</title>
		<link>http://smartypants.com/blogs/index.php/2012/01/28/opentable-open-for-spamming/</link>
		<comments>http://smartypants.com/blogs/index.php/2012/01/28/opentable-open-for-spamming/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 18:02:57 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2012/01/28/opentable-open-for-spamming/</guid>
		<description><![CDATA[OpenTable &#8211; an online restaurant reservation system &#8211; is wide open for spamming.
This discovery comes after a flood of mobile phone spam to one of my email addresses &#8211; the kind that costs a mint thanks to embedded images and all sorts of other useless but bandwidth-intensive eye candy.
The OpenTable system is wide open for [...]]]></description>
			<content:encoded><![CDATA[<p>OpenTable &#8211; an online restaurant reservation system &#8211; is wide open for spamming.</p>
<p>This discovery comes after a flood of mobile phone spam to one of my email addresses &#8211; the kind that costs a mint thanks to embedded images and all sorts of other useless but bandwidth-intensive eye candy.</p>
<p>The OpenTable system is wide open for spamming thanks to the company&#8217;s failure to require confirmation for sign ups. This is a fairly typical oversight when greed trumps common sense.</p>
<p>Sign up for an OpenTable account, sign up for all of their many newsletters, add someone else&#8217;s email address in the contact field, and the fun begins: OpenTable will start mindlessly spamming your victim.</p>
<p>If the first email or any change of email address required the recipient &#8211; or victim- to confirm the validity of the email address, this spam wouldn&#8217;t be possible. It&#8217;s also worth noting that unlike most legitimate online registration systems, OpenTable doesn&#8217;t use a Captcha or any similar technique to try to separate human from machine registrations. This is generally a sign that greed is on the ascendant and common sense got buried in among the dirty laundry.</p>
<p>So what if you&#8217;re the victim of this type of spam, and don&#8217;t find much joy in having your cellphone&#8217;s inbox filled with unwanted ads for restaurants half a planet away THAT YOU GET TO PAY FOR AS PART OF YOUR MOBILE BANDWIDTH FEES?</p>
<p>You can try the unsubscribe link on the junk mail OpenTable sends to you, but that only works per newsletter and OpenTable has a bunch of them. If you&#8217;ve been signed up for more than one, the only way to get at the list is to liberate the offending account. Otherwise, you&#8217;ll have to wait while OpenTable spams you with each of their newsletters and unsubscribe one at a time. No, it&#8217;s time to act.</p>
<p>Here&#8217;s how:</p>
<p>OpenTable uses the email address in each account as the username.</p>
<p>Go to the OpenTable page and click on the Login link. You may have to type in your email address in the username field. That would be the email address that OpenTable has been happily spamming.</p>
<p>Then follow the instructions for re-setting the password. This will generate a reset password email that will arrive in your inbox in a few minutes.</p>
<p>Open this email &#8211; click on the Reset Password link &#8211; and this will take you to an OpenTable page where you can change the password to whatever you wish.</p>
<p>Once you&#8217;ve done that, you can now log into the offending OpenTable account.</p>
<p>The first tab to head for is My Account: this is where you&#8217;ll find the list of OpenTable newsletters you&#8217;re signed up to receive. Uncheck them and &#8211; if you&#8217;re lucky and OpenTable doesn&#8217;t pull the old &#8216;we reset your account because we know you want to pay for our advertising&#8217;&#8230;</p>
<p>Finally, prepare an invoice for the data charges incurred when OpenTable spammed your mobile phone without permission, and for the time required to put a stop to it, and mail it to:</p>
<p style="padding-left: 30px;">OpenTable Inc.</p>
<p style="padding-left: 30px;">799 Market Street</p>
<p style="padding-left: 30px;">4th Floor</p>
<p style="padding-left: 30px;">San Francisco, CA 94103</p>
<p>What&#8217;s sad is that all of this could be easily avoided if OpenTable applied commonly used techniques to verify that signups are, indeed, both human and valid. They&#8217;ve clearly chosen the more spammy option.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2012/01/28/opentable-open-for-spamming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photobox Spam &#8211; Welcome to the dark side</title>
		<link>http://smartypants.com/blogs/index.php/2011/09/15/955/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/09/15/955/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 14:02:10 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[Network Abuse]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Scam Warnings]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2011/09/15/photobox-spam-welcome-to-the-dark-side/</guid>
		<description><![CDATA[Photobox is a digital photo company based in the UK that just teamed up with a digital greeting card company. Coincidentally, what had been a single &#8216;Welcome to Photobox&#8217; spam which I ignored, has turned into a nearly daily deluge of offers for a service based in Europe that I wouldn&#8217;t use even if I [...]]]></description>
			<content:encoded><![CDATA[<p>Photobox is a digital photo company based in the UK that just teamed up with a digital greeting card company. Coincidentally, what had been a single &#8216;Welcome to Photobox&#8217; spam which I ignored, has turned into a nearly daily deluge of offers for a service based in Europe that I wouldn&#8217;t use even if I did live there.</p>
<p>Tried getting the attention of their Twit-bot on Twitter @Photobox (the avatar is a blonde with big hair &#8211; the humans behind it could be anything). After much back and forth (&#8217;just drop what you&#8217;re doing and call when it suits us&#8217;) it said that &#8216;Andy&#8217; was anxious to sort this out and was waiting for my call today (Sept 15/2011).</p>
<p>I called. Didn&#8217;t get Andy, but got Kash who goes by just the one name: &#8220;Andy&#8217;s not in today.&#8221;</p>
<p>Thanks for nothing, blonde avatar lady. Are you clueless or did you flat out lie?</p>
<p>Kash did make the request I get from every spammer I&#8217;ve ever called: Give me your email address and we can fix it.</p>
<p>No.</p>
<p>You bought a bad list, or let people sign up others without their permission, and have clearly stepped into opt-out territory: That&#8217;s where the spammer keeps hammering you until you say stop, rather than requiring an okay from you before they even start.</p>
<p>I want to know how you got my personal email address in the first place &#8211; I&#8217;m guessing it was through what you call the &#8216;Refer a Friend&#8217; page and what should be renamed &#8216;Annoy your friends and enemies&#8217; page. And why you started battering away at me after more than a year of silence.</p>
<p>One email in March, 2010, then silence until July 5, 2011, when Photobox apparently changed policies and the near-daily barrage began.</p>
<p>I doubt it&#8217;s just me: this smells like policy. The kind that spammers adopt.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/09/15/955/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bill Kunkel &#8211; the Game Doctor &#8211; Dead at 61</title>
		<link>http://smartypants.com/blogs/index.php/2011/09/05/bill-kunkel-the-game-doctor-dead-at-61/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/09/05/bill-kunkel-the-game-doctor-dead-at-61/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 01:50:37 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2011/09/05/bill-kunkel-the-game-doctor-dead-at-61/</guid>
		<description><![CDATA[It&#8217;s been a strange weekend. What seemed a toothache turned out to be a mouth pimple.
What seemed like a missed voicemail message turned out to be a big hole in my heart.
We were trying to set up a conference call to talk about a project long in the making. A call that won&#8217;t ever happen: [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a strange weekend. What seemed a toothache turned out to be a mouth pimple.</p>
<p>What seemed like a missed voicemail message turned out to be a big hole in my heart.</p>
<p>We were trying to set up a conference call to talk about a project long in the making. A call that won&#8217;t ever happen: My friend Bill Kunkel died yesterday.</p>
<p>Because he was such a fine writer, it&#8217;s intimidating to write about him.</p>
<p>I met Bill because I&#8217;d met Barry Friedman and, with Barry involved in my Internet company, landed in Las Vegas with a bunch of Barry&#8217;s old and new friends in 2000 at a dinner high above the city&#8230;and just clicked with Bill. Smart, articulate, funny, and the real deal.</p>
<p>I am not a gamer. I&#8217;m not into professional wrestling. It&#8217;s only as time passed that I became even remotely aware of Bill&#8217;s influence on both genres. And Bill was a cartoonist? Really?</p>
<p>Bill was one of my few true friends. That&#8217;s what I know, value, and will remember.</p>
<p>I&#8217;m shocked, sad, stunned&#8230;and remembering a guy who really made me LMAO.</p>
<p>RIP I miss you already.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/09/05/bill-kunkel-the-game-doctor-dead-at-61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making it Right &#8211; The Metropolitan Hotel &amp; Spam</title>
		<link>http://smartypants.com/blogs/index.php/2011/08/22/making-it-right-the-metropolitan-hotel-spam/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/08/22/making-it-right-the-metropolitan-hotel-spam/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 14:50:08 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[Editorials (tech)]]></category>
		<category><![CDATA[Network Abuse]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2011/08/22/making-it-right-the-metropolitan-hotel-spam/</guid>
		<description><![CDATA[What&#8217;s not to hate about spam?
It&#8217;s about as infection-free as a dirty penny lying in spit, fills inboxes daily with offers to steal your identity, to kill you with fake pharmaceuticals, and it&#8217;s starting to hit mobiles &#8211; phones, tablets, etc. &#8211; where pricey data rates mean the recipient gets to pay for the delivery [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s not to hate about spam?</p>
<p>It&#8217;s about as infection-free as a dirty penny lying in spit, fills inboxes daily with offers to steal your identity, to kill you with fake pharmaceuticals, and it&#8217;s starting to hit mobiles &#8211; phones, tablets, etc. &#8211; where pricey data rates mean the recipient gets to pay for the delivery of this garbage.</p>
<p>But the most hateful thing about it?</p>
<p>When a company I actually like doing business with joins the slime.</p>
<p>Toronto Bound</p>
<p>In the late spring of 2009, we did video production at an event in downtown Toronto. As normal, we stayed in the same facility as the event. And it was horrid: terrible service, totally unreliable Internet &#8211; our life blood &#8211; and suspecting we&#8217;d be back the next year, we thought it wise to look for another place to stay.</p>
<p>Enter  Metropolitan Hotel Toronto.</p>
<p>The Metropolitan is on Chestnut, a curious bit of streetscape bounded by the University of Toronto and Nathan Phillips Square that t-bones Dundas Street to the north, heads south to a 90-degree bend into Armoury Street which runs briefly west before intersecting University Avenue.</p>
<p>This convergence has created an odd combination of bustle and bliss: whizzing honking traffic and a flood of pedestrians, convenience stores, coffee shops and ethnic fast food joints, broad and shaded car-free walkways.</p>
<p>We&#8217;d been on the road for a week when we pulled into Toronto for the same event in 2010.</p>
<p>Because of the nature of our equipment &#8211; cameras, mics, lights, mixers, computers &#8211; it doesn&#8217;t stay in the car but goes with us. All 400 pounds of it. And we always load and unload ourselves.</p>
<p>Tired. Hungry. Worn out.</p>
<p>And a doorman is right there &#8211; with a cart.</p>
<p>Can I help?</p>
<p>We&#8217;d rather do it ourselves. Camera gear. You understand.</p>
<p>And he simply nods and backs off.</p>
<p>Two people stand next to us and light up cigarettes. I cough when the cloud surrounds us. The doorman asks them if they&#8217;d mind moving away from the entrance. Please.</p>
<p>From the rejection of the offer to help, noticing we&#8217;re troubled by the smoke, asking gently if they&#8217;d mind moving&#8230;all done in such a pleasant, professional way.</p>
<p>We thank the smokers. They nod.</p>
<p>We&#8217;re already starting to relax.</p>
<p>We get into our room: clean, decent, and we&#8217;re online in minutes after a quick call to the front desk (yes, we do really need a half-dozen Internet access codes).</p>
<p>Downstairs for something to eat. Did I mention the restaurant in the hotel the year before was closed and &#8216;no, we can&#8217;t give you an apple, sir, the restaurant is closed but if you hurry, there&#8217;s a Subway up the street that closes in about two minutes&#8217;. Not sure if it slipped my mind or it&#8217;s just another repressed memory.</p>
<p>So downstairs at the Metropolitan, where we had one of the best meals of the entire trip. Exactly when we needed it most.</p>
<p>Yes, it was a pain to have to pack up and move all of our gear to the event venue and then back again, but it was worth it.</p>
<p>The event moved out of Toronto for 2011, but is heading back in 2012 and if we&#8217;re taking part, we know where we&#8217;re staying.</p>
<p>Or at least, we did.</p>
<p>And Then There Was Spam</p>
<p>Imagine this: The Postie drops a few flyers into your mailbox. Knocks on your door once a month and demands that you pay for their delivery. You&#8217;d be saying: Are you nuts? Pay for junk mail I didn&#8217;t ask for and don&#8217;t want? Slam.</p>
<p>Imagine this: Your mobile provider drops a few flyers into your mailbox. Comes back once a month and demands that you pay for their delivery. You should be saying: Are you nuts? Pay for junk mail I didn&#8217;t ask for and don&#8217;t want?</p>
<p>Here&#8217;s a typical trip through my inbox:</p>
<p>Mrs. Handsome Darling has 4.5 million US dollars to share 70:30 with me because she&#8217;s dying of a half-dozen different diseases, is a pure Christian woman whose email address is &#8216;Barr James Something&#8217; at Yahoo! in China. Sure. Four words: Nigerian advanced fee fraud.</p>
<p>See XXX celebrities I don&#8217;t care about do unspeakable things with each other and office equipment. Here&#8217;s a photo.</p>
<p>Thanks. My wife just walked by.</p>
<p>Not happy with the strongness and size of your manlihood then our best Canadane pharmacy is ready to srevice you with the perfect product. Get a girlfiend like this to wish your every dream.</p>
<p>Great. Nice timing. And just love the command of the language.</p>
<p>I get another ping &#8211; check my mobile mail &#8211; and after honouring my request to use the email address provided when I made the reservation in 2010, Metropolitan Hotels hit me with two within a few seconds of each other.</p>
<p>I could stand up in front of a crowd and give them &#8211; off the cuff &#8211; a brief history of spam with examples, names and dates. I belong to a high tech crime fighting organization &#8211; a joint venture between law enforcement and the private sector &#8211; and it&#8217;s become clear that what was once a nuisance is now generally the tip of the organized crime icerberg.</p>
<p>If you&#8217;re a criminal, the online world is THE place to do your business: it&#8217;s hard to get caught because national laws generally aren&#8217;t enforced internatonally, the penalties are generally just a license fee to keep doing it, and as P.T. Barnum noted: There&#8217;s a sucker born every minute.</p>
<p>Our Weird Email Addresses</p>
<p>Whenever I come in contact with a business for the first time that I think may be spammish, I create a special email address that&#8217;s only provided to that business. Sell, share, give it away or have your contacts database hacked and it&#8217;s simple to track the problem back to the source.</p>
<p>Hello, Tamara</p>
<p>Tamara Stepek is the Metropolitan&#8217;s head of PR. She answers her phone line and she returns calls when she says she will. She told me straight off that she was relatively new to the job but was coming up to speed quickly.</p>
<p>I told her about the spam &#8211; the fact that the address hadn&#8217;t been bothered in over a year and now two in the space of a few minutes &#8211; and asked what was going on here.</p>
<p>&#8220;I don&#8217;t know,&#8221; she said, &#8220;but I&#8217;ll find out and get back to you.&#8221;</p>
<p>What? None of the usual lame excuses?</p>
<p>1. It was a technical glitch. (We don&#8217;t know what we&#8217;re doing with your personal information, but you can trust us with it.)</p>
<p>2. We thought it was really important information. (Great. I pay for you to tell me about your lunch specials. What part of NO do you misundertand?)</p>
<p>3. Just give me your email address and I&#8217;ll remove it from the list. (We&#8217;ve been busted. Now we want you to help us clean up our dirty little list that we bought/stole/harvested from the Internet.)</p>
<p>So Why Do Companies Spam?</p>
<p>Because it&#8217;s easy. And it seems really inexpensive: reach millions for only $1 a day.</p>
<p>As we move to mobile &#8211; where data charges can be usurous &#8211; shifting the cost of advertising to the recipient isn&#8217;t so hard to spot.</p>
<p>A few dozen junk emails a day? Annoying.</p>
<p>A few dozen junk emails a day on your mobile? That could push you over your data cap &#8211; more and more telcos are capping data &#8211; and start costing the recipient silly amounts of money.</p>
<p>See what happens with mobile spam when you&#8217;re racking up roaming and overseas data charges on your travels. The costs can be shocking.</p>
<p>Your Call Is Important to Us</p>
<p>I said a callback in a couple of days would be fine with me.</p>
<p>But Tamara didn&#8217;t call back the next day as we&#8217;d agreed.</p>
<p>She called back a few hours later, said she&#8217;d made some progress, asked a couple of quick questions, and said she&#8217;s have more information the next day.</p>
<p>No silly excuses, no BS.</p>
<p>What kind of PR person is that?</p>
<p>What she learned and shared with me was that I should have been spammed earlier. I&#8217;m not being sarcastic or facetious. An update that should have dumped my email into the marketing database was missed. When the error was caught&#8230;boom. Spam.</p>
<p>Spam that I pay for.</p>
<p>&#8220;I agree. It&#8217;s not fair,&#8221; Tamara said. &#8220;Were not at all like that.&#8221;</p>
<p>Metropolitan Hotels are now reviewing their entire online marketing strategy. &#8220;We&#8217;re checking on the settings,&#8221; she told me.</p>
<p>One big consideration is opt-in versus opt-out. In other words, you&#8217;re given a chance to keep the promo emails coming rather than being forced to opt-out. And for hard core spammers, opting out only confirms that they have a live one. So you&#8217;re damned if you do and damned if you don&#8217;t.</p>
<p>The Social Media Angle</p>
<p>The Metropolitan Hotel Toronto isn&#8217;t just a hotel: it&#8217;s a downtown nightspot and home to fine dining. So not all of the clientele are stayovers. Many of them appreciate knowing when something special is on offer &#8211; either in terms of price or rarity.</p>
<p>Nearly every company wants to be seen on social media &#8211; and that cuts both ways.</p>
<p>It means I can post on Twitter and the Metropolitan&#8217;s Facebook page for the world to see. Which is what I did. Tamara was obviously paying attention and responded in kind.</p>
<p>What&#8217;s Next?</p>
<p>I&#8217;m looking forward to finding out more about the Metropolitan&#8217;s review of online policies and practices.</p>
<p>I&#8217;m looking forward to meeting Tamara in person. She&#8217;s a prime example of how to deal with legitimate complaints in a a social media world.</p>
<p>And I&#8217;m looking forward to staying at the Metropolitan again.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/08/22/making-it-right-the-metropolitan-hotel-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lego Laptop: Using a Motorola Bluetooth Keyboard with an Apple iPad2 and a Blackberry Playbook (and a Xoom)</title>
		<link>http://smartypants.com/blogs/index.php/2011/08/10/lego-laptop-using-a-motorola-bluetooth-keyboard-with-an-apple-ipad2-and-a-blackberry-playbook-and-a-xoom/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/08/10/lego-laptop-using-a-motorola-bluetooth-keyboard-with-an-apple-ipad2-and-a-blackberry-playbook-and-a-xoom/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 04:25:24 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[Editorials (tech)]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/?p=949</guid>
		<description><![CDATA[The objective of this test was to see if we could use the same keyboard &#8211;  in this case a Motorola bluetooth keyboard &#8211; with either our iPad2 or  our Playbook.
It took some mucking about, but we now have the Motorola bluetooth  keyboard working with both. Not at the same time, but [...]]]></description>
			<content:encoded><![CDATA[<p>The objective of this test was to see if we could use the same keyboard &#8211;  in this case a Motorola bluetooth keyboard &#8211; with either our iPad2 or  our Playbook.</p>
<p>It took some mucking about, but we now have the Motorola bluetooth  keyboard working with both. Not at the same time, but that could be a  challenge for another day. ( We have a Motorola Xoom tablet going  through some other testing at the moment, and assumed for better or  worse that would be a slam dunk. We&#8217;ll see about that later.)</p>
<p>So why try to use a Motorola keyboard intended for the Xoom for two competing tablets? Because I liked the feel of the keyboard.</p>
<p>Blackberry is talking &#8211; yawn &#8211; about a bluetooth keyboard this summer.  It&#8217;s mid August, gents. That&#8217;s 8,000 emails and Facebook posts ago.  Hello?</p>
<p>Tried the Apple industrial aluminum chicklet keyboard. So clean. So  pure. So&#8230;alien. Better than using bloody stumps to hunt and peck on  the onscreen keyboard, mind you, but only just.</p>
<p>(If the lack of tactile feedback isn&#8217;t bad enough&#8230;what monster programmed autocorrect? But that&#8217;s off topic. For now.)</p>
<p>The keyboard and the tablet need to find and then connect to each other.  It&#8217;s called &#8216;pairing&#8217; and the most likely part of the process to cause  headaches.</p>
<p>First, a disclaimer: This worked for me. I don&#8217;t know if it will work  for you, but if you decide to follow these instructions, the  responsibility for whatever ever happens is all on you.</p>
<p>OK. So step one?</p>
<p>Turn everything off. Power down the tablet. Take one of the batteries  out of the back of the keyboard. Shut down and/or remove any other  Bluetooth devices in the immediate vicinity.</p>
<p>And now we&#8217;re going to divide the class into two streams: iPad2s first and then Playbooks.</p>
<p>iPad2:</p>
<p>Fire up your iPad. Go to settings. You&#8217;ll find Bluetooth under General  settings. Make sure it&#8217;s turned ON. Click on &#8216;Bluetooth&#8217; and you&#8217;ll be  taken to the Bluetooth &#8216;page&#8217; where you&#8217;ll see a list of available  Bluetooth devices.</p>
<p>Now put the battery back into the keyboard and turn it on, too.</p>
<p>You should see the Motorola Keyboard appear on the list of devices. If it doesn&#8217;t automatically connect, click on it.</p>
<p>You should be good to go. That simple. Really.</p>
<p>Playbook:</p>
<p>This is going to be a little weirder and requires you to put the keyboard into what Motorola calls &#8216;PC mode&#8217;.</p>
<p>Fire up your Playbook. Go to settings. Select Bluetooth. You&#8217;ll be taken  to the Bluetooth page with a drop-down list of discoverable devices.  Click on &#8216;Discoverable&#8217; &#8211; which means that other Bluetooth devices can  find and connect to your Playbook.</p>
<p>Now click on the Add New Device button. You can either choose to search  for the keyboard or have it find you. Doesn&#8217;t really matter. Pick one.</p>
<p>Put the battery back in the keyboard and close the cover.</p>
<p>This is the odd bit: You need to hold &#8211; I don&#8217;t mean touch but HOLD &#8211; three keys down: V &#8211; A &#8211; R</p>
<p>Keep HOLDING while you press the keyboard&#8217;s power button.</p>
<p>The little green LED on the top right of the keyboard  should flash a  few times &#8211; keep HOLDING &#8211; and then, finally, your keyboard should  automagically appear on the list of devices.</p>
<p>Now you can relax your fingers.</p>
<p>Xoom? Why not. It&#8217;s right here in front of me.</p>
<p>Since I was switching from PC mode (the only way to connect to the  Playbook that I could find and which calls for the V &#8211; A &#8211; R  three-finger salute), the keyboard wouldn&#8217;t play nicely until the power  was cut off. (The &#8216;power&#8217; button the keyboard only seems to power it ON,  not OFF.)</p>
<p>So there you have it: one keyboard, three tablets.</p>
<p>Hope that helps.</p>
<p>Oh, and by the way, we&#8217;ve coined this pairing of a keyboard with a  tablet as &#8216;a Lego Laptop&#8217; because we thought all this mobile technology  stuff was supposed to give us fewer bits and pieces to carry around, not  more.</p>
<p>-g</p>
<p>Fanboy Disclaimer: We are technologically agnostic. Hell, we even gripe about companies or products we&#8217;ve invested in. Dumb? Maybe.  But if we think it sucks, we think it sucks. It may not suck for you. It may save your life. Good for you. But it still may suck for us even knowing it saved your life. That&#8217;s called &#8216;having an opinion&#8217;.  We&#8217;ll probably praise a product, service or company you totally hate. In fact, we sometimes praise a product or service from a company that we totally hate. But if it&#8217;s good, it&#8217;s good.  If we tell you about stuff we get for free, we&#8217;ll tell you. We used to ask &#8211; and get all kinds of goodies &#8211; but mainly buy retail these days and that gives us the same ugly beauty experience y&#8217;all are having. Just the way we like it.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/08/10/lego-laptop-using-a-motorola-bluetooth-keyboard-with-an-apple-ipad2-and-a-blackberry-playbook-and-a-xoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My favorite hotel between New Brunswick and Montreal</title>
		<link>http://smartypants.com/blogs/index.php/2011/07/14/my-favorite-hotel-between-new-brunswick-and-montreal/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/07/14/my-favorite-hotel-between-new-brunswick-and-montreal/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 21:19:10 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2011/07/14/my-favorite-hotel-between-new-brunswick-and-montreal/</guid>
		<description><![CDATA[I&#8217;m generally not a fan of hotels that perch on the edge of the highway cloverleaf, but the Comfort Inn &#38; Suites on Route du Pont, St. Nicholas, Levis, Quebec, is such a treat, that it&#8217;s a rule breaker.
It&#8217;s admittedly an off-highway hotel with a drive-by clientele, and that&#8217;s likely the original intention. It&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m generally not a fan of hotels that perch on the edge of the highway cloverleaf, but the Comfort Inn &amp; Suites on Route du Pont, St. Nicholas, Levis, Quebec, is such a treat, that it&#8217;s a rule breaker.</p>
<p>It&#8217;s admittedly an off-highway hotel with a drive-by clientele, and that&#8217;s likely the original intention. It&#8217;s not spartan, nor is it luxurious.</p>
<p>The complementary breakfast &#8211; which seems to be slipping a bit in variety &#8211; is what you&#8217;d expect from the usual highway stopover.</p>
<p>So what&#8217;s the big deal?</p>
<p>Location, price, connectivity and staff. And not in that order.</p>
<p>It&#8217;s just off the TCH across the St. Lawrence from Quebec City, and on the Montreal side so that the morning traffic heading west towards Montreal &#8211; less then 3 hours away (barring any more deteriorating bridge delays) &#8211; is paltry. And it&#8217;s about 7 hours drive from our home base.</p>
<p>It&#8217;s new, it&#8217;s clean, and it&#8217;s a great bargain. We&#8217;ve had singles, doubles, and self-</p>
<p>The best part: the staff. They&#8217;re friendly, accommodating and seem genuinely happy to interact with their customers. In English and French.</p>
<p>And the wireless Internet connection has been reliable and speedy.</p>
<p>For all of those reasons,  it&#8217;s become our regular one-night-away-from-home-base stop between home and points west.</p>
<p>The only problem is that the hotel hasn&#8217;t been terribly busy when I&#8217;ve stayed there. Not that we mind the peace and quiet, the great service, the great rates and the reliable Internet connections, all of which could go to hell if the place becomes too popular. But closing due to lack of business would be equally disappointing.</p>
<p>So I&#8217;m giving away this personal travel secret and hope that it spreads&#8230;but not too far.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/07/14/my-favorite-hotel-between-new-brunswick-and-montreal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I dropped my iphone in the toilet</title>
		<link>http://smartypants.com/blogs/index.php/2011/07/06/i-dropped-my-iphone-in-the-toilet/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/07/06/i-dropped-my-iphone-in-the-toilet/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 22:32:12 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/?p=941</guid>
		<description><![CDATA[Not really, but it&#8217;s the search term I used to seek examples of people with catastrophic experiences with their mobile devices &#8211; what more catastrophic than an iphone in the crapper? &#8211; and Google claimed to find 5.9 million instances. It petered out after less than 500 links, actually, but that&#8217;s still a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>Not really, but it&#8217;s the search term I used to seek examples of people with catastrophic experiences with their mobile devices &#8211; what more catastrophic than an iphone in the crapper? &#8211; and Google claimed to find 5.9 million instances. It petered out after less than 500 links, actually, but that&#8217;s still a lot of Jobsian slips.</p>
<p>And what&#8217;s double disturbing is that the very first thing you should do if your phone is immersed in liquid, whether of the i-variety or otherwise, is to get it out as quickly as possible.</p>
<p>Be not afraid, or squeamish but reach right in there &#8211; dig around if you must &#8211; and drag it back to dry land.</p>
<p><span id="more-941"></span></p>
<p>With most phones, you have between 15 and 20 seconds to get them out of the drink before the water or whatever reaches the innards. And it&#8217;s usually deep trouble if that happens.</p>
<p>Is it pooched?</p>
<p>Probably. But no matter what your reptilian brain says, DO NOT TURN IT ON. Instead, remove the battery. DO THAT NOW.</p>
<p>Whew. We can relax a bit.</p>
<p>The worst possible thing that could have happened if you&#8217;d tried to turn on your phone or other mobile device now is that it would work. For about a millisecond. Before it fried itself.</p>
<p>Now take the rest of the phone apart &#8211; the pieces that come off or out easily, like any covers, the SIM card or memory cards. If you have access to compressed air, you can use it to carefully blow moisture out of crevices. Use a soft cloth or paper towels (not facial tissue &#8211; it often has talcum powder which can scratch screens) to pat down water. Shake moisture from openings.</p>
<p>If the liquid wasn&#8217;t plain water &#8211; coffee, juice, salt water, etc. &#8211; then you&#8217;ll need to flush your device with distilled water. If you&#8217;re shop savvy, you could also use denatured alcohol. It&#8217;s reportedly an ideal cleanser for salt water immersions. (This isn&#8217;t rubbing alcohol &#8211; that can leave too much of a residue. But it can be good to do some edge and keyboard cleaning with a Qtip.)</p>
<p>The next step is to dry everything out. Completely. And the best tool here is patience. It can take a week or more for a seriously immersed phone or MP3 player to completely dry out.</p>
<p>Some folks talk up uncooked rice (it absorbs the moisture that evaporates from the phone), others like silica crystals in plastic bags, while others prefer blow dryers.</p>
<p>My preferred tool is patience.</p>
<p>Can the other approaches work? Sometimes. Don&#8217;t heat batteries, though: they can blow up on you. And don&#8217;t put electronic devices in the microwave. Just throw them away and save the electricity.</p>
<p>If you do want to speed up the process, put the device on a rack in the path of cool breeze from an air conditioning unit. This air is very dry and will hasten the drying process without putting any undue strain on the components.</p>
<p>Can the phone company or computer shop tell if the phone&#8217;s been wet? Yes. Devices have built-in moisture detectors, and technicians can spot breaches in seconds.</p>
<p>So before you cough up for a hefty repair bill or the cost of a new phone, just wait a bit longer. You want it to be completely, entirely dry.</p>
<p>Now plug in the battery. Which may have zero charge. And try to turn the phone on. (Don&#8217;t forget to put your SIM card back into your phone.) If nothing happens, try plugging the device into a charger. The battery might be dead, so a new battery may get your phone working again.</p>
<p>If that doesn&#8217;t work, you can usually move your SIM card to another phone on your carrier&#8217;s network and have access to some of your data.</p>
<p>And that brings us to the crux of the problem if your phone or PDA takes a bath: it&#8217;s not the device, it&#8217;s the data. The phone numbers and notes and logs of meetings and documents and photos and all the other things we carry around in our pockets these days.</p>
<p>So tell me this: When was the last time you backed up your phone?</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/07/06/i-dropped-my-iphone-in-the-toilet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Spamfest Meets Mobile Phone Bills</title>
		<link>http://smartypants.com/blogs/index.php/2011/06/10/spring-spamfest-meets-mobile-phone-bills/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/06/10/spring-spamfest-meets-mobile-phone-bills/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 11:51:34 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[Network Abuse]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/index.php/2011/06/10/spring-spamfest-meets-mobile-phone-bills/</guid>
		<description><![CDATA[It seems that every year at about this time the annual spring spamfest begins. Why now? All the university business and marketing students are at their summer jobs, and many of them have &#8216;great ideas&#8217; about how to market online: forget the wishes of the recipients, forget privacy policies and common sense when you can [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that every year at about this time the annual spring spamfest begins. Why now? All the university business and marketing students are at their summer jobs, and many of them have &#8216;great ideas&#8217; about how to market online: forget the wishes of the recipients, forget privacy policies and common sense when you can auto blast hundreds, thousands, millions, forget that a lot of us now use iPhones and Blackberries and other smart mobile devices.</p>
<p>Cool: Email right to our mobiles and tablets where it is likely to get our attention. Especially when we get our next mobile bill and can see how much we get to pay to receive this unsolicited, unwanted advertising.</p>
<p>How bad is it? Here&#8217;s a short list from just the past 24 hours:</p>
<p>Rogers Communications &#8211; And this is something the CRTC should be concerned about. Purchase a mobile phone with data services from Rogers, and they start spamming same phone with data rich advertising. Not only to you get to pay for it, but Rogers gets it both ways: you pay to receive the advertising and they get the direct benefit of helping you churn through your data limits. To push you into post-limit territory &#8211; where you pay huge amounts extra for tiny amounts of data and where the profits are measured in the hundreds of percent. This is the same Rogers that crows about how 95 per cent of its mobile customers use very little data. No wonder: they&#8217;re scared shitless by the ridiculously high data rates. (Canada has one of the most expensive m0bile data regimes IN THE ENTIRE WORLD.)</p>
<p>Delta Hotels &#8211; In May, the national media council of the Communications, Energy and Paperworkers Union met at the Delta Halifax for their annual convention. Yesterday, every single one of them who stayed at the host hotel started getting spam &#8211; nice, rich media spam that churn though mobile data plans like hot lead through soft flesh. The hotel chain says it was probably just a glitch, or somebody did something wrong by accident. That was when I only knew it was coming to me. Not everybody who stayed there. And I&#8217;m guessing not just for the media conference, but throughout the past few months. And in the spam, they have the unmitigated gall to say that the recipients requested to be added to the junk mail list. Despite making it abundantly &#8211; at least I did &#8211; that the email provided was to be used for one purpose and one purpose only: Confirmation of the registration including terms and conditions.</p>
<p>Eventbrite &#8211; This is a US-based online registration system that also harvests the email addresses of the registrants and immediately begins blasting them with direct spam that has nothing to do with the event they registered for, but all about Eventbrite. And, as usual, nice media rich spam that helps your mobile carrier wealthier.</p>
<p>Digital River &#8211; This is a payment processing company. One of their clients is Nuance, the company that produces Dragon Naturally Speaking voice-to-text software. According to Nuance, buying software from them through Digital River&#8217;s payment system means you are requesting relentless rich media junk mail from them.</p>
<p>And that&#8217;s just the harvest from part of one day, but then the season is still young.</p>
<p>-g</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/06/10/spring-spamfest-meets-mobile-phone-bills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delecting EMail Accoints &#8211; Dumbest Phishing Scam Ever?</title>
		<link>http://smartypants.com/blogs/index.php/2011/05/23/delecting-email-accoints-dumbest-phishing-scam-ever/</link>
		<comments>http://smartypants.com/blogs/index.php/2011/05/23/delecting-email-accoints-dumbest-phishing-scam-ever/#comments</comments>
		<pubDate>Mon, 23 May 2011 23:59:41 +0000</pubDate>
		<dc:creator>Smartypants.com</dc:creator>
				<category><![CDATA[Editorials (tech)]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Scam Warnings]]></category>

		<guid isPermaLink="false">http://smartypants.com/blogs/?p=228</guid>
		<description><![CDATA[While cleaning up some old paper recently, I came across an EMail that I&#8217;d printed out back in 2009. It appears that I then promptly forgot about it, which is a shame because this is probably the most hilariously-inept &#8220;phishing&#8221; scam that I have ever encountered.
Read on for the EMail. Warning: due to choking hazard, [...]]]></description>
			<content:encoded><![CDATA[<p>While cleaning up some old paper recently, I came across an EMail that I&#8217;d printed out back in 2009. It appears that I then promptly forgot about it, which is a shame because this is probably the most hilariously-inept &#8220;phishing&#8221; scam that I have ever encountered.</p>
<p>Read on for the EMail. Warning: due to choking hazard, do not read while consuming food or beverages (or &#8220;<a href="http://www.catsandcoffee.org/#about">C&amp;C</a>&#8221; for any Usenet old-timers out there).<br />
<span id="more-228"></span></p>
<div style="width: 95%; background-color: #efebef; padding: 5px; border: 1px solid gray; font-family: Courier New;">Subject: Confirm Your UNIVERSITY OF NEW BRUNSWICK Webmail Account in<br />
Order To Avoid Closure<br />
From: &#8220;UNIVERSITY OF NEW BRUNSWICK&#8221; &lt;mrshellendavid02@hotmail.com&gt;<br />
Date: Sun, 11 Jan 2009 07:17:32 -0600<br />
To: accountterm@unb.ca</p>
<p>DEAR UNIVERSITY OF NEW BRUNSWICK  webmail holders,</p>
<p>This is a message from the UNIVERSITY OF NEW BRUNSWICK<br />
Message Center for Communication to all our<br />
UNIVERSITY OF NEW BRUNSWICK Webmail   owners.</p>
<p>We are currently working on our database e-mail<br />
Account Users.We are <span style="border-bottom: 2px solid red;">delecting</span> all old unused<br />
webmail Account User For more space for new<br />
users.</p>
<p>To prevent Your Account not to be <span style="border-bottom: 2px solid red;">delected</span> from<br />
our database your are advised to confirm your<br />
University webmail account immediately.</p>
<p>Submit Your <span style="border-bottom: 2px solid red;">Accoint Informations</span> below</p>
<p>Internet address &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..<br />
Username :&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;<br />
Password &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Date of birth: &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
Country or territory: &#8230;&#8230;&#8230;&#8230;&#8230;</p>
<p>Warning! E-mail owners who refuse to <span style="border-bottom: 2px solid red;">submite</span> their<br />
E-mail Account details , we will short down your email<br />
Account within seven days from the date of receipt<br />
of this Warning loses Webmail Account <span style="border-bottom: 2px solid red;">permanetly</span>.</p>
<p>Thank you,</p>
<p>UNIVERSITY OF NEW BRUNSWICK Webmail Team</p>
<p>Confirm Your UNIVERSITY OF NEW BRUNSWICK Webmail Account<br />
in Order To Avoid Closure</p></div>
<p>EMail scammers aren&#8217;t exactly exactly know for their literacy skills (E.g. supposed Nigerian royalty who can&#8217;t spell &#8220;Nigeria&#8221; correctly), but this makes the output from Google Translate look good. Not only that, but this budding &#8220;phisherman&#8221; was too lazy to even setup a web form somewhere (or simply didn&#8217;t know how). Instead, he expected people to manually EMail their login details&#8230; to a Hotmail account. Brilliant.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartypants.com/blogs/index.php/2011/05/23/delecting-email-accoints-dumbest-phishing-scam-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

