<?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>The Crossing of Marketing and IT &#187; security</title>
	<atom:link href="http://www.crossingmarketingandit.com/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crossingmarketingandit.com</link>
	<description>The Crossing of Marketing &#38; IT: Where Marketing and Technology meet - Web + Search + Social Marketing, Teamwork, Leadership &#38; More</description>
	<lastBuildDate>Sat, 04 Feb 2012 15:19:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What&#8217;s Up With Webresource.axd Errors</title>
		<link>http://www.crossingmarketingandit.com/it-2/general/webresource/</link>
		<comments>http://www.crossingmarketingandit.com/it-2/general/webresource/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 11:45:42 +0000</pubDate>
		<dc:creator>Elmer Boutin</dc:creator>
				<category><![CDATA[General Tech Tips]]></category>
		<category><![CDATA[IT & Technical]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[in-house]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.crossingmarketingandit.com/?p=1574</guid>
		<description><![CDATA[If you've been working with Microsoft's Internet Information Server (IIS) for very long, and you check out your log files on a regular basis, you've probably seen error messages regarding the webresource.axd file with an Exception type: System.Security.Cryptography.CryptographicException. Here's an explanation as to why they might occur.<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p></p><p><strong><span style="color: #ff0000;">Warning:</span> Major Geek Content</strong></p>
<p>If you&#8217;ve been working with Microsoft&#8217;s Internet Information Server (IIS), and you check out your log files on a regular basis, you&#8217;ve probably seen error messages with content similar to this:</p>
<p style="padding-left: 30px;"><strong>Process Information:</strong><br />
Process ID: 3264<br />
Process name: w3wp.exe<br />
Account name: NT AUTHORITY\NETWORK SERVICE</p>
<p style="padding-left: 30px;"><strong>Exception Information:</strong><br />
Exception type: System.Security.Cryptography.CryptographicException<br />
Exception message: Padding is invalid and cannot be removed.</p>
<p style="padding-left: 30px;"><strong>Request Information:</strong><br />
Request URL: http://www.yourdomain.com/webresource.axd?d=d8qwertyu9a7asdfghjklzxcvn1&amp;t=123456789012345678<br />
Request path: /webresource.axd<br />
User host address: 255.255.255.255</p>
<p>I often wondered what these were about, but all I ever saw in searches on the topic mentioned incompatibility with certain browsers (especially Safari) and miscommunication between the server and the browser. Not really good answers, but enough to know it wasn&#8217;t some serious hack attempt.</p>
<p>That was, until a few weeks ago when we started having some major trouble with timeout errors between our web server and the SQL Server which holds the data for our sites. We went round and round trying to figure out the issue ourselves to no avail. Thankfully, we have a subscription to Microsoft&#8217;s telephone tech support, so we finally decided to punt.</p>
<p>I have to give Microsoft some serious props when it comes to their top level support. When you get one of these folks on the phone you are dealing with a true professional; one with a lot of knowledge, background and experience to help you work through your problem. The service isn&#8217;t cheap, but it&#8217;s good.</p>
<p>We worked with a networking engineer who helped us narrow down the issue. He ended up calling in one of his colleagues on the IIS support team to help us find a resolution. 45 minutes on the phone with those two guys was about a week&#8217;s worth of education.</p>
<p>In the end, it turned out to be some errant code we put in for error handling. Rather ironic, I have to say, that the error handling caused the errors themselves.</p>
<p>But, the real education was in learning about the webresource.axd and what causes these System.Security.Cryptography.CryptographicException errors.</p>
<p>The webresouce.axd file is generated by the system. Like the web.config, it&#8217;s not a file that someone can just &#8220;browse&#8221; to. It&#8217;s requested automatically by the browser and is a helper file to assist with using script files.</p>
<p>The interesting thing is that the &#8220;d&#8221; portion of the URL string is supposed to be mixed case, but in every instance where I see this type of error, all the letters are lower case, like from the completely fake example I noted above:</p>
<p>d=d8qwertyu9a7asdfghjklzxcvn1</p>
<p>It should be more along the lines of something like this:</p>
<p>d=d8QWErtyU9a7ASDfghJKLzxcVn1</p>
<p>If you go through your server logs, you can track down the requests which cause the errors, compare them to other requests for the webresource.axd file and clearly see the difference. I didn&#8217;t notice this until I looked at the logs closely trying to troubleshoot my problem.</p>
<p>Checking closely in the log files, I can also see where sometimes the &#8220;&amp;&#8221; between then end of the &#8220;d&#8221; string and the &#8220;t=&#8221; is sent like &#8220;&amp;amp;&#8221; &#8211; which apparently also causes issues.</p>
<p>There you have it &#8211; a &#8220;not to technical&#8221; explanation as to why you might see this type of error message in your log files. Apparently, so long as your server is patched and set up according to best security practices, this shouldn&#8217;t cause you any problems other than possibly filling your log files with messages.</p>
<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.crossingmarketingandit.com/it-2/general/webresource/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>House Cleaning Time &#8211; Get Rid of That Old Code</title>
		<link>http://www.crossingmarketingandit.com/it-2/inhouse/housecleaning/</link>
		<comments>http://www.crossingmarketingandit.com/it-2/inhouse/housecleaning/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 11:45:32 +0000</pubDate>
		<dc:creator>Elmer Boutin</dc:creator>
				<category><![CDATA[In-House]]></category>
		<category><![CDATA[IT & Technical]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[in-house]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.crossingmarketingandit.com/?p=1419</guid>
		<description><![CDATA[This is a "Lesson Learned" for me as well as a reminder or tip for you who are admins for web sites running on IIS. For years it's been best practice that when you move web site content from one place to another, to set a server-level redirect so search engines will know to remove the old addresses from their index and add the new addresses in their place. No problem, we all do this.<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="Hack day 3: dreaming of Micro Machines" href="http://www.flickr.com/photos/34754790@N00/5009078527/" target="_blank"><img class="alignright" style="margin: 5px; border: 1px solid black;" src="http://farm5.static.flickr.com/4109/5009078527_4bb6555d73_m.jpg" border="0" alt="Hack day 3: dreaming of Micro Machines" width="240" height="180" /></a>This is a &#8220;Lesson Learned&#8221; for me as well as a reminder for you who are admins for web sites running on IIS.</p>
<p>For years it&#8217;s been best practice that when you move web site content from one place to another, to set a permanent server-level redirect so search engines will know to remove the old addresses from their index and add the new addresses in their place. No problem, we all do this.</p>
<p>Over the past several years, my colleagues and I have been coding background processes of our web sites in ASP.NET. Over that time, we&#8217;ve converted many applications from Classic ASP. Some applications were outright moved as they were converted based on guidance from our Marketing Department.</p>
<p>In one case, we had an old press release application, written in Classic ASP, which we redid in ASP.NET and moved. Being the student of SEO, I set up a permanent server-level redirect in IIS to the application&#8217;s new address. &#8220;Done and done,&#8221; or so I thought.</p>
<p>Fast forward a few years and we find ourselves troubleshooting a vexing problem with one of our servers. Through the course of the investigation, we found something very interesting. Those Classic ASP pages in the folder of which the server-level redirect was set were still firing; this despite the fact that the IIS server was set to automatically and permanently redirect visitors to the new page.</p>
<p>We did a number tests on those pages and confirmed our findings: the underlying Classic ASP code was, indeed, running before the visitor was redirected to the new page. The redirect happened so quickly that the end user was completely unaware it was happening.</p>
<p>From a security standpoint, I should have known better than to leave old code on a web server. That is a classic &#8220;no no&#8221; and a possible opportunity for hackers to come and exploit your system. Thankfully, that didn&#8217;t happen.</p>
<p>From me to you, here is a reminder (or a tip if you&#8217;ve never heard this before): If you move web pages from one address to another set up a server-level permanent redirect on the old folder, then archive and delete the old pages from the server. This keeps your server cleaned up and gets rid of any old code which might be exploited later down the line.</p>
<p><small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://www.crossingmarketingandit.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Andrew Mason" href="http://www.flickr.com/photos/34754790@N00/5009078527/" target="_blank">Andrew Mason</a></small></p>
<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.crossingmarketingandit.com/it-2/inhouse/housecleaning/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Social Media Security &amp; Kids</title>
		<link>http://www.crossingmarketingandit.com/it-2/general/social-media-security-kids/</link>
		<comments>http://www.crossingmarketingandit.com/it-2/general/social-media-security-kids/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:00:35 +0000</pubDate>
		<dc:creator>Elmer Boutin</dc:creator>
				<category><![CDATA[General Tech Tips]]></category>
		<category><![CDATA[IT & Technical]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.crossingmarketingandit.com/?p=911</guid>
		<description><![CDATA[Last week I was called upon by Megan Fleetwood, a reporter with KWTX in Waco, to offer up some comments about social media security and safety. In this case it was specifically regarding the safety of kids on social sites.<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-913" style="margin-top: 3px; margin-bottom: 3px; margin-left: 5px; margin-right: 5px; border: 1px solid black;" title="News Item 20100624" src="http://www.crossingmarketingandit.com/wp-content/uploads/2010/06/News-Item-20100624.jpg" alt="Elmer Boutin as he appeared in a news story done by KWTX in Waco, TX" width="238" height="216" />Last week I was called upon by <a href="http://www.kwtx.com/station/bios/news/6340767.html" target="_blank">Megan Fleetwood</a>, a reporter with <a href="http://www.kwtx.com/" target="_blank">KWTX in Waco</a>, to offer up some comments about social media security and safety. In this case it was specifically regarding the safety of kids on social sites.</p>
<p>Unfortunately, the story is no longer available on their web site. I&#8217;m looking for another source.</p>
<p><strong>Background</strong><br />
This particular piece revolved around a school bus driver who thought a dog belonging to one of the students on his route had been found by one of his neighbors. The neighbor was about to take the dog to the animal shelter. Concerned for the pet&#8217;s safety, he contacted the 13-year-old female student via a Facebook message asking if the dog in question was hers. Apparently, when she didn&#8217;t respond, went to her house and knocked on the door.</p>
<p>The concern here is (as spoken in the story): &#8220;When is it appropriate for an adult to contact a child on the internet?&#8221; I&#8217;m sure opinions vary. In this case, the school district leadership is convinced the driver&#8217;s intentions were honorable. Still, the incident did raise a bit of concern for school district &#8211; and it should.</p>
<p>Kids are on social media. It&#8217;s part of their culture and embedded into their lives in a way even the most social media-savvy adults I know don&#8217;t fully comprehend. Because it&#8217;s such a part of how they interact with others, it&#8217;s essential we teach them about online safety when they are young much like my parents taught me not to talk to strangers or look both ways before crossing the street.</p>
<p><strong>School Is Teaching Kids</strong><br />
Apparently, the school district spent some time during the course of the last year teaching kids about online safety. That is excellent. Although I believe parents should be ultimately responsible for monitoring their kids&#8217; online activities, it is an excellent idea for schools to help by offering some instruction. This may offer the chance for the kids themselves to look out for each other and help each other succeed in keeping not only their personal information, but their persons safe.</p>
<p><strong>Social Media Policies for Employers</strong><br />
From what I gather of the superintendent&#8217;s comments, the school district does not have a social media policy for its employees. I firmly believe all organizations should have a social media policy, and this goes double for schools. I don&#8217;t think social media policies for school need to be draconian to the degree that social media contact between school personnel and students are cut off totally. There are some excellent and legitimate uses for social media contact, especially between students and teachers. However, there should be some guidelines to help prevent a situation like the one in this story; to help keep &#8220;honest people honest.&#8221;</p>
<p>Social media can be a great tool to help schools communicate. For example, I have a friend whose highschoolers are involved in Theatre Arts. The teachers have a Twitter account which they use to let parents know what&#8217;s going on when students are on field trips and traveling to competitions. Certainly a Facebook fan page for a teacher&#8217;s class would be of great help with communication of lessons and such between the teacher and students and parents. I know many teachers who use email lists for this type of communication &#8211; perhaps it would be more efficient to post message to social media sites.</p>
<p><strong>Some Points to Ponder</strong><br />
During the interview I did with Megan we discussed a number of points about how to help kids make good decisions when it comes to their social media activities. Here are a few:</p>
<ul>
<li>It is mainly the responsibility of parents to teach their kids how to be safe online. Some parents are overwhelmed by this because they don&#8217;t understand social. If this is the case with you, concentrate on the basics like, &#8220;Don&#8217;t talk to Strangers,&#8221; &#8220;Treat others as you want to be treated,&#8221; &#8220;Don&#8217;t spread gossip.&#8221; Teach them not to share their personal information such as address, phone number, pictures, etc. with those not personally known to them.</li>
<li>Foster a relationship with your kids that encourages them to let you know when something untoward happens. Often times communication between parents and kids is the best tool to keep them safe. Of course, when they become teens and think they know everything this gets tougher, so you have to start early.</li>
<li>Anyone can figure out how to send a message to anyone else. That&#8217;s how spam works. Getting emails from strangers is nothing new. Teach your kids to ignore and delete messages from people they don&#8217;t know.</li>
<li>It&#8217;s not a bad idea to put the family computer in the living room with the T.V. and other entertainment items. This way, you parents can keep an eye on what the kids are doing online.</li>
<li>Check your kids&#8217; social media accounts from time to time. Not only should you check the security/privacy settings on their accounts, you should check to see who they are interacting with and how they interact. Cyberbullying and such can be cut off if parents are involved in monitoring their kids&#8217; online activities. You kids may complain about you &#8220;invading their privacy&#8221; but in the end they will appreciate that you care.</li>
<li>If you are technically savvy enough, you can install various filters and limit your kids&#8217; time online. This way you can help prevent them from Facebook-ing or MySpace-ing at all hours of the night.</li>
<li>Kids need to understand that online is pretty much &#8220;forever.&#8221; Once something is posted and indexed by search engines it&#8217;s nearly impossible to get rid of and it can pop back up during searches for who knows how long. Younger kids talking smack and older kids posting pictures of themselves acting the fool at parties may be all fun now, but they can come back to haunt them later. Though this point probably applies more to older kids and young adults who may be soon entering the workforce, it&#8217;s important that kids learn early on about the basics of online reputation management.</li>
</ul>
<p>Please check out the tips I gave in my last TV interview in my article &#8220;<a href="/2010/03/socmedsafety/">Social Media Safety &amp; Security</a>.&#8221;</p>
<p><strong>How about you?</strong> What tips do you have regarding keeping kids safe online? Please feel free to share them in the comments.</p>
<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.crossingmarketingandit.com/it-2/general/social-media-security-kids/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Your Copier Is A Security Risk</title>
		<link>http://www.crossingmarketingandit.com/it-2/general/copiersecurity/</link>
		<comments>http://www.crossingmarketingandit.com/it-2/general/copiersecurity/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:45:14 +0000</pubDate>
		<dc:creator>Elmer Boutin</dc:creator>
				<category><![CDATA[General Tech Tips]]></category>
		<category><![CDATA[IT & Technical]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.crossingmarketingandit.com/?p=777</guid>
		<description><![CDATA[There has been a lot of mention about the risk copiers can pose to personal information security of late. Indeed, it's been covered in the traditional media as well as in many blogs.<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="The Replicator." href="http://www.flickr.com/photos/40112349@N06/4426640678/" target="_blank"><img class="alignright" style="border: 0px initial initial;" src="http://farm3.static.flickr.com/2727/4426640678_eeb031185d_m.jpg" border="0" alt="The Replicator." width="240" height="179" /></a>There has been a lot of mention about the risk copiers can pose to personal information security of late. Indeed, it&#8217;s been covered in the <a href="http://news.google.com/news/search?aq=f&amp;pz=1&amp;cf=all&amp;ned=us&amp;hl=en&amp;q=copier+security+risk" target="_blank">traditional media as well as in many blogs</a>.</p>
<p>Bill Detweiler of <a href="http://blogs.techrepublic.com.com/itdojo/?p=1700&amp;tag=leftCol;post-1744" target="_blank">TechRepublic mentions a poll he conducted last month in response to a CBS piece</a> which covered this subject showing many don&#8217;t bother wiping information from the hard disks of multifunction copying devices which have them. Bill also refers to an <a href="http://blogs.techrepublic.com.com/security/?p=186&amp;tag=leftCol;post-1700" target="_blank">article he wrote back in 2007 which mentioned the security problems with digital copiers</a>.</p>
<p>This problem, however, goes back further than even 2007. I remember working tech support in the late &#8217;90s when we had some digital multi-function copier/fax/printer devices which operated on a system based on Microsoft Windows NT 4 running Internet Information Server (IIS). We didn&#8217;t realize they were based in NT 4 with IIS until an internal security scan revealed them as such. We assumed, up to that point, they would have been Linux-based or working on some proprietary system. These devices had no interface to the internal operating system and could not be patched &#8211; even by the manufacturer (or so we were told). That made them vulnerable to cracking. Remember the &#8220;Code Red&#8221; worm? Needless to say, those devices were replaced as quickly as practical.</p>
<p>To maintain good information security, it&#8217;s best to treat all systems with any kind of memory whatsoever with care when replacing. If the device has any type of memory, whether hard disk, RAM or flash, it needs to be wiped before disposal. <em>When in doubt, wipe it out. </em>If it cannot be wiped, it needs to be destroyed or turned over to a reputable service which will certify its destruction.</p>
<p>Treat the devices as you would a piece of paper which has sensitive information printed on it. You&#8217;d shred the paper, so you must do the electronic equivalent with documents stored in electronic devices.</p>
<p><small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://www.crossingmarketingandit.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="vvvracer" href="http://www.flickr.com/photos/40112349@N06/4426640678/" target="_blank">vvvracer</a></small></p>
<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.crossingmarketingandit.com/it-2/general/copiersecurity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Four Steps to Better Passwords</title>
		<link>http://www.crossingmarketingandit.com/it-2/general/four-steps-to-better-passwords/</link>
		<comments>http://www.crossingmarketingandit.com/it-2/general/four-steps-to-better-passwords/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 00:02:27 +0000</pubDate>
		<dc:creator>Elmer Boutin</dc:creator>
				<category><![CDATA[General Tech Tips]]></category>
		<category><![CDATA[IT & Technical]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://crossingmarketingandit.com/?p=68</guid>
		<description><![CDATA[Many people glaze over when the subject of passwords comes up. I think it's because us IT folks tend to make things seem a lot more complicated than need be. Here are 4 easy steps to help you create better passwords to protect your personal information.<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/mikebaird/2354116406/" target="_blank"><img class="alignright" style="cursor: pointer; margin: 5px; border: 1px solid black;" src="http://farm4.static.flickr.com/3196/2354116406_285fc8d24d.jpg?v=0" border="1" alt="Photo of many locks securing a gate" width="400" height="266" /></a>Many people glaze over when the subject of passwords comes up. I think it&#8217;s because us IT folks tend to make things seem a lot more complicated than need be. Here are 4 easy steps to help you create better passwords to protect your personal information:</p>
<div><strong>1. Make Your Passwords Longer</strong></div>
<div>The concept is simple: The longer a password is the harder it is to crack. In practice, though, this can be intimidating. Instead of thinking of a long pass<em>word</em>, try to come up with a long pass<em>phrase</em>. Something like &#8220;thequickbrownfoxjumpedoverthelazydog&#8221; is magnitudes more difficult to crack than &#8220;texasfootball.&#8221;</div>
<div><strong>2. Make Your Passwords More Complex</strong></div>
<div>Length alone, though, isn&#8217;t enough. Passwords should also be complex. By using mixed-case letters, numbers and special characters you increase the possible number choices a cracker will have to try before guessing correctly. &#8220;TexasFootball1234%&#8221; is much more time-consuming to crack than &#8220;texasfootball12345.&#8221;</div>
<div>To help make your passwords complex, try coming up with a phrase which will be easy for you to remember, but hard for someone to guess. Try something like one of these:</div>
<div>
<ul>
<li>IW@sB0rnInTexas</li>
<li>W@sIB0rnInT3x@s?</li>
<li>W@s1B0rn@t@LL?</li>
<li>B@n@nnaGu@c@m0le!</li>
</ul>
<div><span style="font-size: small;">(In the above examples, the zero substitutes for &#8220;o&#8221;)</span></div>
<div>At first, it might be harder to type something like the examples above, but after a few times you&#8217;ll get used to it and it will seem like second nature.</div>
</div>
<div><strong>3. Make Your Passwords Diverse</strong></div>
<div>Having the same password for every web site and/or system you use is not the best way to go, security-wise. If someone were to get your email password, would you want them to be able to get into your online banking system, too? This is where things can get very complicated unless you have a system. Try implementing a pattern where you change a part of your passphrase for each web site. Perhaps something like this:</div>
<div>
<ul>
<li>For Gmail: GM_B@nannaGuacam0le!</li>
<li>For Hotmail: HO_B@nannaGuacam0le!</li>
<li>For Twitter: TI_B@nannaGuacam0le!</li>
<li>For you bank: BofA_B@nannaGuacam0le!</li>
</ul>
<div>The key is to make it complex, yet easy to remember. With a little imagination you can come up with something which works for you.</div>
</div>
<div><strong>4. Change Your Passwords Periodically</strong></div>
<div>Most corporate systems require periodic password changes. Most public systems, though, do not. Just because a system doesn&#8217;t require password changes, it doesn&#8217;t mean you can&#8217;t (or shouldn&#8217;t) change every so often. Regular changes help increase your overall security stance which will help keep your personal information safe. This is another area where a pattern can come in handy. Perhaps you can use titles of your favorite songs when you change. Something like this:</div>
<div>
<ul>
<li>January: Sult@ns0fSw1ng</li>
<li>April: M0t0rC1tyM@dh0use</li>
<li>July: NutbushC1tyL1m1ts</li>
<li>October: Sp1r1t0fTheR@d10</li>
</ul>
<div>If you combine this pattern of changing with the pattern of diversity, you have a pretty good combination of diversity and longevity.</div>
</div>
<div>If you have any methods for making complex passwords work for you, please feel free to share them. Just don&#8217;t post your real passwords here, you never know who&#8217;s watching &#8230;</div>
<div><span style="font-size: small;">Photo credit: </span><a href="http://www.flickr.com/photos/mikebaird/" target="_blank"><span style="font-size: small;">mikebaird</span></a></div>
<br /><br />Did you like this article? If you're not already a subscriber, <a href="http://feeds2.feedburner.com/crossingmarketingandit/lYbr">please sign up for free updates to The Crossing of Marketing and IT via email or RSS reader</a>.<br /><br />
<a href="http://www.tkqlhce.com/click-5350634-10543311" target="_blank">
<img src="http://www.ftjcfx.com/image-5350634-10543311" width="234" height="60" alt="invisibleSHIELD" border="0"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.crossingmarketingandit.com/it-2/general/four-steps-to-better-passwords/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

