<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Tales from the Crypto</title><link>http://msmvps.com/blogs/alunj/default.aspx</link><description>Alun Jones (&lt;a href="https://mvp.support.microsoft.com/default.aspx/profile=90B5EE92-9F9B-4B79-8288-60A3E648C8D9"&gt;Security MVP&lt;/a&gt;) writes about security, cryptography, SSL, PKI, and pretty much anything else that bothers him enough.</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 21119.1142)</generator><item><title>In Defence of the Self-Signed Certificate</title><link>http://msmvps.com/blogs/alunj/archive/2008/05/10/1618962.aspx</link><pubDate>Sat, 10 May 2008 17:49:13 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1618962</guid><dc:creator>alunj</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1618962</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1618962</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/05/10/1618962.aspx#comments</comments><description>&lt;p&gt;Recently I discussed using EFS as a simple, yet reliable, form of file encryption. Among the doubts raised was the following from an &lt;a href="http://www.windowsecurity.com/articles/Implementing-EFS-Windows-Server-2003-Domain.html"&gt;article by fellow MVP Deb Shinder&lt;/a&gt; on EFS:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;EFS generates a self-signed certificate. However, there are problems inherent in using self-signed certificates:  &lt;ul&gt; &lt;li&gt;Unlike a certificate issued by a trusted third party (CA), a self-signed certificate signifies only self-trust. It’s sort of like relying on an ID card created by its bearer, rather than a government-issued card. Since encrypted files aren’t shared with anyone else, this isn’t really as much of a problem as it might at first appear, but it’s not the only problem.  &lt;li&gt;If the self-signed certificate’s key becomes corrupted or gets deleted, the files that have been encrypted with it can’t be decrypted. The user can’t request a new certificate as he could do with a CA. &lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt; &lt;p&gt;Well, she&amp;#39;s right, but that only really gives a part of the picture, and it verges on out-and-out recommending that self-signed certificates are completely untrustworthy. Certainly that&amp;#39;s how self-signed certificates are often viewed.&lt;/p&gt; &lt;p&gt;Let&amp;#39;s take the second item first, shall we?&lt;/p&gt; &lt;p&gt;&amp;quot;Request a new certificate&amp;quot; isn&amp;#39;t quite as simple as all that. If the user has deleted, or corrupted, the private key, and didn&amp;#39;t save a copy, then requesting a new certificate will merely allow the user to encrypt new files, and won&amp;#39;t let them recover old files. [The exception is, of course, if you use something called &amp;quot;Key Recovery&amp;quot; at your certificate authority (CA) - but that&amp;#39;s effectively an automated &amp;quot;save a copy&amp;quot;.]&lt;/p&gt; &lt;p&gt;Even renewing a certificate changes its thumbprint, so to decrypt your old EFS-encrypted files, you should keep your old EFS certificates and private keys around, or use CIPHER to re-encrypt with current certificates.&lt;/p&gt; &lt;p&gt;So, the second point is dependent on whether the CA has set up Key Recovery - this isn&amp;#39;t a problem if you make a copy of your certificate and private key, onto removable storage. And keep it very carefully stored away.&lt;/p&gt; &lt;p&gt;As to the first point - you (or rather, your computer) already trust dozens of self-signed certificates. Without them, Windows Update would not work, nor would many of the secured web sites that you use on a regular basis.&lt;/p&gt; &lt;p&gt;Whuh?&lt;/p&gt; &lt;p&gt;&lt;a href="http://msmvps.com/blogs/alunj/WindowsLiveWriter/InDefenceoftheSelfSignedCertificate_8C22/image_2.png"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="455" alt="certmgr shows that all Trusted Root Certificates are self-signed." src="http://msmvps.com/blogs/alunj/WindowsLiveWriter/InDefenceoftheSelfSignedCertificate_8C22/image_thumb.png" width="644" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Hey, look - they&amp;#39;ve all got the same thing in &amp;quot;Issued To&amp;quot; as they have in &amp;quot;Issued By&amp;quot;!&lt;/p&gt; &lt;p&gt;Yes, that&amp;#39;s right - every single &amp;quot;Trusted Root&amp;quot; certificate is self-signed!&lt;/p&gt; &lt;p&gt;If you&amp;#39;re new to PKI and cryptography, that&amp;#39;s going to seem weird - but a moment&amp;#39;s thought should set you at rest.&lt;/p&gt; &lt;p&gt;Every certificate must be signed. There must be a &amp;quot;first certificate&amp;quot; in any chain of signed certificates, and if that &amp;quot;first certificate&amp;quot; is signed by anyone other than itself, then it&amp;#39;s not the first certificate. QED.&lt;/p&gt; &lt;p&gt;The reason we trust any non-root certificate is that we trust the issuer to choose to sign only those certificates whose identity can be validated according to their policy.&lt;/p&gt; &lt;p&gt;So, if we can&amp;#39;t trust these trusted roots because of who they&amp;#39;re signed by, why should we trust them?&lt;/p&gt; &lt;p&gt;The reason we trust self-signed certificates is that we have a reason to trust them - and that reason is outside of the certificate and its signature. The majority (perhaps all) of the certificates in your Trusted Root Certificate Store come from Microsoft - they didn&amp;#39;t originate there, but they were distributed by Microsoft along with the operating system, and updates to the operating system.&lt;/p&gt; &lt;p&gt;You trusted the operating system&amp;#39;s original install disks implicitly, and that trust is where the trust for the Trusted Root certificates is rooted. That&amp;#39;s a trust outside of the certificate chains themselves.&lt;/p&gt; &lt;p&gt;So, based on that logic, you can trust the self-signed certificates that EFS issues in the absence of a CA, only if there is something outside of the certificate itself that you trust.&lt;/p&gt; &lt;p&gt;What could that be?&lt;/p&gt; &lt;p&gt;For me, it&amp;#39;s simple - I trust the operating system to generate the certificate, and I trust my operational processes that keep the private key associated with the EFS certificate secure.&lt;/p&gt; &lt;p&gt;There are other reasons to be concerned about using the self-signed EFS certificates that are generated in the absence of a CA, though, and I&amp;#39;ll address those in the next post on this topic.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1618962" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Why+is+PKI+so+hard_3F00_/default.aspx">Why is PKI so hard?</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/EFS/default.aspx">EFS</category></item><item><title>Apple Changes Update Policies - Still No Biscuit</title><link>http://msmvps.com/blogs/alunj/archive/2008/05/09/1618641.aspx</link><pubDate>Sat, 10 May 2008 04:32:34 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1618641</guid><dc:creator>alunj</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1618641</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1618641</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/05/09/1618641.aspx#comments</comments><description>&lt;p&gt;As I have mentioned in other posts (&lt;a href="http://msmvps.com/blogs/alunj/archive/2008/03/21/1549816.aspx"&gt;Retro-bundling - another suck of the Apple&lt;/a&gt;, &lt;a href="http://msmvps.com/blogs/alunj/archive/2008/01/19/1471264.aspx"&gt;MacBook Air debuts; iTunes Pesters Me Again&lt;/a&gt;, &lt;a href="http://msmvps.com/blogs/alunj/archive/2007/12/17/1402585.aspx"&gt;Removing Apple Mobile Device Support&lt;/a&gt;, &lt;a href="http://msmvps.com/blogs/alunj/archive/2007/11/27/1363844.aspx"&gt;I didn&amp;#39;t want iTunes - now I&amp;#39;ve got iPod, too?&lt;/a&gt;, etc, etc), this has long since stopped being an issue for me, because I&amp;#39;ve removed all the Apple software from my machine as a bit of a protest against Apple&amp;#39;s inability or unwillingness to provide me the means to manage my own systems.&lt;/p&gt; &lt;p&gt;Now, I understand that Apple has finally heard some of the complaints from various blogs around the world, and has done something about it.&lt;/p&gt; &lt;p&gt;They have separated the updates from the new software. The new dialog looks like this:&lt;/p&gt; &lt;p&gt;&lt;img alt="" hspace="4" src="http://www.blogsmithmedia.com/www.tuaw.com/media/2008/04/vmware-fusionscreensnapz001.png" border="1" /&gt;&lt;/p&gt; &lt;p&gt;But it still marks the new software by default to be installed.&lt;/p&gt; &lt;p&gt;This is the behaviour that is wrong - okay, so it&amp;#39;s now clear as to the difference between an update and a new software, but the key again is that Apple is marking new software for installation from an update tool.&lt;/p&gt; &lt;p&gt;An update tool should be a piece of software that most users say &amp;quot;yes, do whatever&amp;quot;, and that doesn&amp;#39;t then cause significant additions to the software. By automatically checking new software, Apple is eroding the trust that users will have in the update tool.&lt;/p&gt; &lt;p&gt;Again, I don&amp;#39;t mind that they&amp;#39;re encouraging users to install Safari - I don&amp;#39;t even mind them spending time persuading their existing install base to use it. What I&amp;#39;m perplexed at is that Apple feels that they have to slide it in under the door, rather than sell it to users on its own merits.&lt;/p&gt; &lt;p&gt;And, yes, I&amp;#39;m quite well aware that you could also say the same of any browser that ships with an operating system - except, really, you&amp;#39;ve got to have a browser shipping in your operating system these days. Yeah, the guys who ship the operating system have an advantage - and they worked hard to build that advantage in the first place. They have a certain momentum behind anything they offer, and even if the system is as open and transparent to all application vendors as it is to the OS vendor, the default installed applications will generally have a larger market share than the &amp;#39;after-market&amp;#39; tools, just because of users&amp;#39; inertia.&lt;/p&gt; &lt;p&gt;[Note that the paragraph above applies to Apple / Mac / Safari, just as well as it does to Microsoft / Windows / Internet Explorer]&lt;/p&gt; &lt;p&gt;However, I don&amp;#39;t think that users&amp;#39; inertia is a cause for sleight-of-hand tactics like retro-bundling.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1618641" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Programmer+Hubris/default.aspx">Programmer Hubris</category></item><item><title>Think like a bad guy? It's a start.</title><link>http://msmvps.com/blogs/alunj/archive/2008/05/06/1615699.aspx</link><pubDate>Wed, 07 May 2008 00:33:57 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1615699</guid><dc:creator>alunj</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1615699</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1615699</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/05/06/1615699.aspx#comments</comments><description>&lt;p&gt;Cool new site (and &lt;a href="http://securedeveloper.com/blog"&gt;blog&lt;/a&gt;) from Microsoft - &lt;a href="http://securedeveloper.com"&gt;http://securedeveloper.com&lt;/a&gt; - and it has a tag line I&amp;#39;ve heard many times before:&lt;/p&gt; &lt;p&gt;&lt;a href="http://securedeveloper.com/"&gt;&lt;img style="border-right:0px;border-top:0px;border-left:0px;border-bottom:0px;" height="246" alt="image" src="http://msmvps.com/blogs/alunj/WindowsLiveWriter/ThinklikeabadguyItsastart_13306/image_3.png" width="644" border="0" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Like that old maxim that &amp;quot;you need to stop fighting fires long enough to tell the architects to stop building things out of wood&amp;quot;, thinking like a bad guy is just the first step to developer security.&lt;/p&gt; &lt;p&gt;It&amp;#39;s a necessary step, but it&amp;#39;s not the final goal.&lt;/p&gt; &lt;p&gt;It&amp;#39;s a start - in fact, it&amp;#39;s a great start, and I think every developer needs to go through that phase. Many have yet to do so - particularly, it seems, those fresh out of college or programming school.&lt;/p&gt; &lt;p&gt;But I think it&amp;#39;s really a catch-phrase for the beginning of becoming a secure developer. It&amp;#39;s what you have to tell yourself when you&amp;#39;re used to writing code for the sole purpose of implementing features, so that you can get over that mind-set and into the sort of thinking that accepts that your code can be attacked.&lt;/p&gt; &lt;p&gt;But the bad guy has it easy.&lt;/p&gt; &lt;p&gt;He only has to find one way in. He can afford to become an expert on one part of your software, and zero in on it.&lt;/p&gt; &lt;p&gt;Thinking like a bad guy will widen your awareness to the point that you know that incursions can and will happen, and you&amp;#39;ll occasionally take better care in your coding. That&amp;#39;s a good thing.&lt;/p&gt; &lt;p&gt;But what if you start thinking like someone building a defensive structure?&lt;/p&gt; &lt;p&gt;The defence builder has to find (and limit) all the ways in, and just in case he missed one, he has to find all the ways you can get further in once you&amp;#39;re in - he has to become an expert on all parts of the software, as well as something of an expert on the external dependencies - libraries, network equipment, database components, etc.&lt;/p&gt; &lt;p&gt;[After all, we&amp;#39;ve seen this past week how many sites can get exploited through SQL Injection attacks - and the primary cause for those seems to be web developers who don&amp;#39;t know SQL, yet who send SQL statements to be executed at the database.]&lt;/p&gt; &lt;p&gt;You could start thinking like a defender - what alarms should signal the presence, or possibility, of an intruder? What information could an active defender use to verify the intent of a potential intruder? How could you slow down a possible attacker to the point where it&amp;#39;s feasible for a human responder to outpace a mechanical attacker?&lt;/p&gt; &lt;p&gt;Maybe you could start thinking like an investigator - once you believe someone has got in, what clues would you like to be left, showing you where the holes were? How can you tell what defences have been useful and what defences were useless? Where was the attacker actively assisted or resisted by your system and software?&lt;/p&gt; &lt;p&gt;Perhaps you could even think like a defence component builder - how can you ensure that you learn lessons from tried and true defences in order to build those lessons in to the next system, or to teach the next set of builders?&lt;/p&gt; &lt;p&gt;Think like the architect of a mediaeval castle - we&amp;#39;ve gotten used to the idea that mediaeval castles were places of defence, that they sought to be impenetrable bastions behind which the local king, thane, lord or whatever could take refuge and survive. Yet they were also places of business, places of government, places with a function. We need to design programs like mediaeval castles - capable of functioning for business as well as for defence.&lt;/p&gt; &lt;p&gt;SecureDeveloper.com hasn&amp;#39;t really gone beyond the first stage of its launch yet, so it will be a while before these advanced topics will be discussed - and I am eager to see that happen.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1615699" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Programmer+Hubris/default.aspx">Programmer Hubris</category></item><item><title>Can You Write Good Code for an OS you Despise?</title><link>http://msmvps.com/blogs/alunj/archive/2008/05/03/1612047.aspx</link><pubDate>Sat, 03 May 2008 23:57:20 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1612047</guid><dc:creator>alunj</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1612047</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1612047</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/05/03/1612047.aspx#comments</comments><description>&lt;p&gt;No, this isn&amp;#39;t another of my anti-Mac frothing rants.&lt;/p&gt; &lt;p&gt;This is one of my &amp;quot;here&amp;#39;s what I hate about many of the open-source projects I deal with&amp;quot; rants.&lt;/p&gt; &lt;p&gt;I&amp;#39;m trying to find an SFTP client for Windows that works the way I want it to.&lt;/p&gt; &lt;p&gt;All I seem to be able to find are SFTP clients for Unix shoe-horned in to Windows.&lt;/p&gt; &lt;p&gt;[Perhaps the Unix guys feel the same way about playing Halo under Wine.]&lt;/p&gt; &lt;p&gt;What do I mean?&lt;/p&gt; &lt;p&gt;Here&amp;#39;s an example - Windows has a certificate store. It&amp;#39;s well-protected, in that there haven&amp;#39;t been any disclosures of significant vulnerabilities that allow you to read certificates without first having got the credentials that would allow you to do so.&lt;/p&gt; &lt;p&gt;So, I want an SFTP client that lets me store my private keys in the Windows certificate store. Or at least, that uses DPAPI to protect its data.&lt;/p&gt; &lt;p&gt;Can&amp;#39;t find one.&lt;/p&gt; &lt;p&gt;Can&amp;#39;t find ONE. And I&amp;#39;m known for being good at finding stuff.&lt;/p&gt; &lt;p&gt;PuTTY is recommended to me. It, too, requires that the private key be stored in a file, not in the certificate store. Its alternative is to use its own certificate store, called Pageant (it&amp;#39;s an authorization &amp;quot;Age-Ant&amp;quot; for &lt;strong&gt;P&lt;/strong&gt;uTTY, get it?) Maybe I could do something with that - write a variant of Pageant that directly accesses certificates stored in the certificate store.&lt;/p&gt; &lt;p&gt;But no, there&amp;#39;s no protocol definition or API, or service contract that I can see in the documentation, that would allow me to rejigger this. I could edit the source code, but that&amp;#39;s an awful lot of effort compared to building a clean implementation of only those parts of the API that I&amp;#39;d need.&lt;/p&gt; &lt;p&gt;What I do find in the documentation for Pageant are comments such as these:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Windows unfortunately provides no way to protect pieces of memory from being written to the system &lt;a name="i17"&gt;&lt;/a&gt;swap file. So if Pageant is holding your private keys for a long period of time, it&amp;#39;s possible that decrypted private key data may be written to the system swap file, and an attacker who gained access to your hard disk later on might be able to recover that data. (However, if you stored an unencrypted key in a disk file they would &lt;em&gt;certainly&lt;/em&gt; be able to recover it.)  &lt;li&gt;Although, like most modern operating systems, Windows prevents programs from accidentally accessing one another&amp;#39;s memory space, it does allow programs to access one another&amp;#39;s memory space deliberately, for special purposes such as debugging. This means that if you allow a virus, trojan, or other malicious program on to your Windows system while Pageant is running, it could access the memory of the Pageant process, extract your decrypted authentication keys, and send them back to its master.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;I&amp;#39;ll address the second comment first - it&amp;#39;s a strange way of noting that Windows, like other modern operating systems, assumes that every process run by the user has the same access as the user. Typically, this is addressed by simply minimising the amount of time that a secret is held in memory in its decrypted form, and using something like DPAPI to store the secret encrypted.&lt;/p&gt; &lt;p&gt;The first comment, though, indicates a lack of experience with programming for Windows, and an inability to search. Five minutes at &lt;a href="http://msdn.microsoft.com"&gt;http://msdn.microsoft.com&lt;/a&gt; gets you a reference to VirtualLock, which allows you to lock 4kB at a time into physical memory, aka non-paged pool. Of course, there are other options - encrypting the Pagefile using EFS also helps protect against this kind of attack, and the aforementioned trick of holding the secret decrypted in memory for as short a time as possible also reduces the risk of having it exposed.&lt;/p&gt; &lt;p&gt;Now I&amp;#39;m really stretching to assert that this single author despises Windows and that&amp;#39;s why he&amp;#39;s completely unaware of some of its obvious security features and common modes of use. But it does seem to be a trend prevalent in some of the more religious of open source developers - &amp;quot;Windows sucks because it can&amp;#39;t do X, Y and Z&amp;quot; - without actually learning for certain whether that&amp;#39;s true. Often, X and Y can be done, and Z is only necessary on other operating systems due to quirks of their design.&lt;/p&gt; &lt;p&gt;Back when I first started writing Windows server software, the same religious folks would tell me &amp;quot;don&amp;#39;t bother writing servers for Windows - it&amp;#39;s not stable enough&amp;quot;. True enough, Windows 3.1 wasn&amp;#39;t exactly blessed with great uptime. But instead of saying &amp;quot;you can&amp;#39;t build a server on Windows&amp;quot;, I realised that there was a coming market in Windows NT, which was supposed to be server class. So I wrote for Windows NT, I assumed it was capable of server functionality, and any time I felt like I&amp;#39;d hit a &amp;quot;Windows can&amp;#39;t do this&amp;quot;, I bugged Microsoft until they fixed it.&lt;/p&gt; &lt;p&gt;Had I simply walked away and gone to a different platform, I&amp;#39;d be in a different place - but my point is that if you believe that your target OS is incapable, you will find it to be so. If you believe it should be capable, you will find it to be so.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1612047" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/Programmer+Hubris/default.aspx">Programmer Hubris</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Why+is+PKI+so+hard_3F00_/default.aspx">Why is PKI so hard?</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Miscellany+-+not+security/default.aspx">Miscellany - not security</category></item><item><title>Security Koan #3</title><link>http://msmvps.com/blogs/alunj/archive/2008/05/02/1612015.aspx</link><pubDate>Sat, 03 May 2008 03:24:57 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1612015</guid><dc:creator>alunj</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1612015</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1612015</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/05/02/1612015.aspx#comments</comments><description>&lt;p&gt;The security guard phoned his boss in a panic.&lt;/p&gt; &lt;p&gt;&amp;quot;There&amp;#39;s been a break-in to the site, sir. The intruders aren&amp;#39;t anywhere to be seen, but they&amp;#39;ve got away with a bunch of equipment.&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Understood - go and look at the perimeter fence, find out where they broke in, and keep watch. I&amp;#39;ll be there shortly.&amp;quot;&lt;/p&gt; &lt;p&gt;The boss arrived at the site, to find the guard pacing up and down in front of the fence.&lt;/p&gt; &lt;p&gt;&amp;quot;Did you find the hole yet?&amp;quot; asked the boss.&lt;/p&gt; &lt;p&gt;&amp;quot;Not yet, sir.&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Never mind, I&amp;#39;ll help you look.&amp;quot;&lt;/p&gt; &lt;p&gt;For the next half-hour, they went up and down, searching for a hole in the fence.&lt;/p&gt; &lt;p&gt;Then the boss spoke up:&lt;/p&gt; &lt;p&gt;&amp;quot;Are you sure this is where they got in?&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;No, they got in on the other side of the site.&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Then why are you looking over on this side?&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Because the light&amp;#39;s better here, so we can see more.&amp;quot;&lt;/p&gt; &lt;p&gt;&lt;em&gt;Question&lt;/em&gt;: Are you monitoring the places most suited for attack, or simply the places easiest to monitor?&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1612015" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category></item><item><title>UAC - The Emperor's New Clothes</title><link>http://msmvps.com/blogs/alunj/archive/2008/04/24/1603407.aspx</link><pubDate>Thu, 24 Apr 2008 23:47:38 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1603407</guid><dc:creator>alunj</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1603407</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1603407</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/04/24/1603407.aspx#comments</comments><description>&lt;p&gt;I heard a complaint the other day about UAC - User Account Control - that was new to me.&lt;/p&gt; &lt;p&gt;Let&amp;#39;s face it, as a Security MVP, I hear a lot of complaints about UAC - not least from my wife, who isn&amp;#39;t happy with the idea that she can be logged on as an administrator, but she isn&amp;#39;t really an administrator until she specifically asks to be an administrator, and then specifically approves her request to become an administrator.&lt;/p&gt; &lt;p&gt;My wife is the kind of user that UAC was not written for. She&amp;#39;s a capable administrator (our home domain has redundant DCs, DHCP servers with non-overlapping scopes, and I could go on and on), and she doesn&amp;#39;t make the sort of mistakes that UAC is supposed to protect users from.&lt;/p&gt; &lt;p&gt;My wife also does not appreciate the sense that Microsoft is using the users as a fulcrum for providing leverage to change developers to writing code for non-admin users. She doesn&amp;#39;t believe that the vendors will change as a result of this, and the only effect will be that users get annoyed.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;But not me.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;I like UAC - I think it&amp;#39;s great that developers are finally being forced to think about how their software should work in the world of least privilege. &lt;/p&gt; &lt;p&gt;So, as you can imagine, I thought I&amp;#39;d heard just about every last complaint there is about UAC. But then a new one arrived in my inbox from a friend I&amp;#39;ll call Chris.&lt;/p&gt; &lt;h3&gt;&amp;quot;Why should I pretend to be different people to use my own PC?&amp;quot;&lt;/h3&gt; &lt;p&gt;I must admit, the question stunned me.&lt;/p&gt; &lt;p&gt;Obviously, what Chris is talking about is the idea that you are strongly &amp;quot;encouraged&amp;quot; (or &amp;quot;strong-armed&amp;quot;, if you prefer) by UAC to work in (at least) two different security contexts - the first, your regular user context, and the second, your administrator context.&lt;/p&gt; &lt;p&gt;Chris has a point - you&amp;#39;re one person, you shouldn&amp;#39;t have to pretend to be two. And it&amp;#39;s your computer, it should do what you tell it to. Those two are axiomatic, and I&amp;#39;m not about to argue with them - but it sounds like I should do, if I&amp;#39;m going to answer his question while still loving UAC.&lt;/p&gt; &lt;p&gt;No, I&amp;#39;m going to argue with his basic premise that user accounts correspond to individual people. They correspond more accurately - particularly in UAC - to clothing.&lt;/p&gt; &lt;p&gt;Windows before NT, or more accurately, not based on the NT line, had no separation between user contexts / accounts. Even the logon was a joke - prompted for user name and password, but if you hit Escape instead, you&amp;#39;d be logged on anyway. Windows 9x and ME, then, were the equivalent of being naked.&lt;/p&gt; &lt;p&gt;In Windows NT, and the versions derived from it, user contexts are separated from one another by a software wall, a &amp;quot;Security Boundary&amp;quot;. There were a couple of different levels of user access, the most common distinctions being between a Standard (or &amp;quot;Restricted&amp;quot;) User, a Power User, and an Administrator.&lt;/p&gt; &lt;p&gt;Most people want to be the Administrator. That&amp;#39;s the account with all the power, after all. And if they don&amp;#39;t want to be the Administrator, they&amp;#39;d like to be at least &lt;u&gt;an&lt;/u&gt; administrator. There&amp;#39;s not really much difference between the two, but there&amp;#39;s a lot of difference between them and a Standard User.&lt;/p&gt; &lt;p&gt;Standard Users can&amp;#39;t set the clock back, they can&amp;#39;t clear logs out, they can&amp;#39;t do any number of things that might erase their tracks. Standard Users can&amp;#39;t install software for everyone on the system, they can&amp;#39;t update the operating system or its global settings, and they can&amp;#39;t run the Thomas the Tank Engine Print Studio. [One of those is a problem that needs fixing.]&lt;/p&gt; &lt;p&gt;So, really, a Standard User is much like the driver of a car, and an administrator is rather like the mechanic. I&amp;#39;ve often appealed to a different meme, and suggested that the administrator privilege should be called &amp;quot;janitor&amp;quot;, so as to make it less appealing - it really is all about being given the keys to the boiler room and the trash compactor.&lt;/p&gt; &lt;h3&gt;It&amp;#39;s about wearing dungarees rather than your business suit.&lt;/h3&gt; &lt;p&gt;You wear dungarees when working on the engine of your car, partly because you don&amp;#39;t want oil drops on your white shirt, but also partly so your tie doesn&amp;#39;t get wrapped around the spinning transmission and throttle you. You don&amp;#39;t wear the dungarees to work partly because you&amp;#39;d lose respect for the way you look, but also because you don&amp;#39;t want to spread that oil and grease around the office.&lt;/p&gt; &lt;p&gt;It&amp;#39;s not about pretending to be different people, it&amp;#39;s about wearing clothes suited to the task. An administrator account gives you carte blanche to mess with the system, and should only be used when you&amp;#39;re messing with the system (and under the assumption that you know what you&amp;#39;re doing!); a Standard User account prevents you from doing a lot of things, but the things you&amp;#39;re prevented from doing are basically those things that most users don&amp;#39;t actually have any need to do.&lt;/p&gt; &lt;p&gt;You&amp;#39;re not pretending to be a different person, you&amp;#39;re pretending to be a system administrator, rather than a user. Just like when I pretend to be a mechanic or a gardener, I put on my scungy jeans and stained and torn shirts, and when I pretend to be an employee, I dress a little smarter than that.  &lt;p&gt;When you&amp;#39;re acting as a user, you should have user privileges, and when you&amp;#39;re acting as an administrator, you should have administrative privileges. We&amp;#39;ve gotten so used to wearing our dungarees to the board-room that we think they&amp;#39;re a business suit.  &lt;p&gt;So while UAC prompts to provide a user account aren&amp;#39;t right for my wife (she&amp;#39;s in &amp;#39;dungarees-mode&amp;#39; when it comes to computers), for most users, they&amp;#39;re a way to remind you that you&amp;#39;re about to enter the janitor&amp;#39;s secret domain.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1603407" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Things+I+Learned+At+Microsoft/default.aspx">Things I Learned At Microsoft</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Windows+Vista/default.aspx">Windows Vista</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/What+my+wife+knows/default.aspx">What my wife knows</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Windows+Server+2008/default.aspx">Windows Server 2008</category></item><item><title>Silently fixing security bugs - how dare they!</title><link>http://msmvps.com/blogs/alunj/archive/2008/04/22/1600135.aspx</link><pubDate>Tue, 22 Apr 2008 22:06:30 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1600135</guid><dc:creator>alunj</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1600135</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1600135</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/04/22/1600135.aspx#comments</comments><description>&lt;p&gt;Over in &amp;quot;&lt;a href="http://hellnbak.wordpress.com/2008/04/21/more-on-sdl-counting-vulnerabilities/"&gt;Random Things from Dark Places&lt;/a&gt;&amp;quot;, Hellnbak posts about reducing vulnerability counts by applying the SDL (Security Development Lifecycle), and makes the very reasonable point that vulnerabilities found prior to release by a scan that is part of the SDL process cannot be counted as failures of the SDL process. What&amp;#39;s more, those vulnerabilities can be silently fixed by the vendor before shipping / deploying the product being reviewed. [Obviously, not fixing them would be a really bad idea]&lt;/p&gt; &lt;p&gt;What intrigued me, though, was this line:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;But, as Ryan [Naraine] said — issues found in public code that are fixed silently are a real issue.&amp;nbsp; While I have picked on Microsoft specifically for this practice the sad reality (that I quickly learned after publicly picking on MS) is that pretty much all vendors do this.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;So, let&amp;#39;s see now... this is talking about a patch, hotfix, or service pack, that removes a security vulnerability from a product, but where the vulnerability (and its fix) does not get announced publicly.&lt;/p&gt; &lt;p&gt;There are two reasons not to announce a security vulnerability, in my view:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;You don&amp;#39;t want to.&lt;/li&gt; &lt;li&gt;You can&amp;#39;t.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Let&amp;#39;s subdivide reason 1, &amp;quot;You don&amp;#39;t want to&amp;quot;:&lt;/p&gt; &lt;ol&gt; &lt;ol&gt; &lt;li&gt;You feel it would adversely affect public opinion, stock price, user retention...&lt;br /&gt;Well, that&amp;#39;s kind of bogus, isn&amp;#39;t it? Given some of the vulnerability announcements that have appeared, what on earth could be worse than remote execution, elevation of privilege, and complete control over your system? The only way to make this accusation is to assert that the vendor randomly picks vulnerabilities to announce or not announce, to somehow reduce the overall numbers - and then manages to do so in such a way that noone else notices the vulnerability that was fixed.&lt;br /&gt;That&amp;#39;s not security, and any vendor who did that would find its security staff soon revolting against that practice. There isn&amp;#39;t enough of a glut of security workers to be engaging in a practice that assumes you can hire more to replace the disgusted ones that quit.&lt;/li&gt; &lt;li&gt;You&amp;#39;re tired of going through the process of documenting the bug, its workarounds and/or mitigations, and would rather be doing something else, like, oh, I don&amp;#39;t know, fixing more vulnerabilities.&lt;br /&gt;That&amp;#39;s not good security - create a more streamlined and automated process for creating the announcements, and do both - find and fix more vulnerabilities &lt;u&gt;and&lt;/u&gt; make announcements for the ones you find. If you&amp;#39;re too busy to announce all the vulnerabilities in your product, you&amp;#39;re too busy to fix them all.&lt;/li&gt; &lt;li&gt;You found the vulnerability internally, and would like to prevent it from being exploited, by releasing the patch along with an announced fix and hoping people install it.&lt;br /&gt;That&amp;#39;s not terribly reliable as a patching policy. It makes some small sense for related fixes, but then why wouldn&amp;#39;t you announce that as a related fix in the related announcement? Perhaps it makes sense for architectural fixes, where the only good fix is to go to the next level of service pack, but then wouldn&amp;#39;t you want to publicise workarounds for those who can&amp;#39;t apply the next service pack for one reason or another?&lt;br /&gt;But the biggest reason not to do this is that when you release a patch, people will reverse-engineer it, to figure out how to exploit the unpatched version - and they&amp;#39;ll find the change you didn&amp;#39;t mention as well as the one you did, and will exploit both of them. But your users will only be aware of one problem that needs patching, and may have decided that they can mitigate that without patching.&lt;br /&gt;So, pretty much bad security on that approach, too.&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt; &lt;p&gt;So, &amp;quot;You don&amp;#39;t want to&amp;quot; comes out as bad security, and it&amp;#39;s the sort of bad security that you would have to fix to employ - and continue to employ - a halfway decent security team.&lt;/p&gt; &lt;p&gt;What about &amp;quot;You can&amp;#39;t&amp;quot; - how could that come about?&lt;/p&gt; &lt;ol&gt; &lt;ol&gt; &lt;li&gt;You have a legal judgement or contract requirement forbidding you from disclosing vulnerabilities. Hey, Microsoft has some of the best and most expensive lawyers on the planet, but even they get stuck with tough legal decisions that they have to abide with, and can&amp;#39;t do anything about. If a security vulnerability was considered to be a &amp;quot;threat to national security&amp;quot;, the current administration (and possibly many others) would be only too quick to deem it so secret that no-one could reveal its presence. And once you accept that possibility, it isn&amp;#39;t hard to think of too many circumstances where a company might be forced to keep a vulnerability quiet.&lt;/li&gt; &lt;li&gt;You know enough to fix the code, but not enough to classify the vulnerability or explain its workarounds or mitigations.&lt;br /&gt;Yeah, that&amp;#39;s pretty much the truth for all the announced vulnerabilities, too - how many times have you seen a vulnerability announcement that says &amp;quot;this cannot be exploited remotely&amp;quot;, followed by one a few days later with updated information that reveals that, oh yes it can. This doesn&amp;#39;t appear to be a good reason not to announce a vulnerability.&lt;/li&gt; &lt;li&gt;You don&amp;#39;t know the vulnerability is there, or you don&amp;#39;t realise that you fixed a vulnerability.&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt; &lt;p&gt;Okay, that last one&amp;#39;s the topper, isn&amp;#39;t it? How can you announce a fix for a vulnerability that you don&amp;#39;t know about?&lt;/p&gt; &lt;p&gt;Clearly, you can&amp;#39;t.&lt;/p&gt; &lt;p&gt;Just as clearly, perhaps you&amp;#39;re thinking, you can&amp;#39;t fix a vulnerability that you don&amp;#39;t know about, right?&lt;/p&gt; &lt;p&gt;Wrong. You can very easily fix a vulnerability about which you know nothing. Here&amp;#39;s a couple of hypothetical examples:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;After we moved into our new house, we changed all the locks on the doors. Why? Because the new locks were prettier. In doing so, we fixed a vulnerability (the former owner could have kept the keys, and exploited us through the old locks) - but we didn&amp;#39;t intend to fix the vulnerability, we just wanted prettier locks.&lt;/p&gt;&lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;Years ago, I needed a piece of functionality that wasn&amp;#39;t provided by the Win16 API, so I wrote my own routine to do file path parsing. A couple of years back, I dropped support for Windows 3.1, and in a recent code review, I spotted that the file path parsing routine was superfluous. So I removed it. In removing it, I didn&amp;#39;t spend a lot of time looking at the code - there was a vulnerability in there, but who does a code review of a function they&amp;#39;re removing? So now, I&amp;#39;ve fixed a vulnerability that I didn&amp;#39;t know existed.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Too many times, we assert evil intent for those actions that we disagree with. Ignorance is a far better explanation, along with incompetence, expediency, and just plain lack of choice. Note that ignorance is no bad thing - as in my hypothetical case, a genuine attempt to improve quality leads to a security improvement of which the developer was wholly ignorant.&lt;/p&gt; &lt;p&gt;Whether vendors don&amp;#39;t want to disclose all of their vulnerabilities when patching, or simply can&amp;#39;t, because they didn&amp;#39;t realise the scope of a fixed vulnerability, it&amp;#39;s important to stay current with patches wherever that would not interfere with your production applications. Because one day there will be a flaw patched, which your company will be attacked through. If you didn&amp;#39;t apply that patch, you will be owned.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1600135" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Things+I+Learned+At+Microsoft/default.aspx">Things I Learned At Microsoft</category></item><item><title>Retro-bundling - another suck of the Apple</title><link>http://msmvps.com/blogs/alunj/archive/2008/03/21/1549816.aspx</link><pubDate>Sat, 22 Mar 2008 04:15:47 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1549816</guid><dc:creator>alunj</dc:creator><slash:comments>8</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1549816</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1549816</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/03/21/1549816.aspx#comments</comments><description>&lt;p&gt;I thought I was done blogging about Apple Software Update, having removed QuickTime from my system completely, and sworn never to install it again or watch another QT or MOV file.&lt;/p&gt; &lt;p&gt;But nooo, someone had to spoil it by &lt;a title="Jesper appeals to the EU - tongue firmly in cheek" href="http://msinfluentials.com/blogs/jesper/archive/2008/03/21/help-us-nellie-please-help-us.aspx"&gt;telling me what Apple Software Update did next&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;If you&amp;#39;re unfortunate enough to have QuickTime installed with Apple Software Update, you&amp;#39;ll already have seen it.&lt;/p&gt; &lt;p&gt;&lt;img src="http://msinfluentials.com/blogs/jesper/ApplePushingSafariIllegally.jpg" alt="" /&gt;&lt;/p&gt; &lt;p&gt;Not only is Apple going to offer you iTunes and QuickTime as an &amp;quot;update&amp;quot; (despite you not actually having iTunes installed in the first place), they&amp;#39;re also going to offer you Safari, the feature-light Apple web browser, as an &amp;quot;update&amp;quot; (again, even though you haven&amp;#39;t installed it). And they&amp;#39;re going to check the box, so if you think you&amp;#39;re just updating components you fetched for yourself, you&amp;#39;ll accidentally install this one, too. And they&amp;#39;re going to ask you every boot until you disable the check - and then they&amp;#39;ll just re-enable the prompt next time they have a patched version to release.&lt;/p&gt; &lt;p&gt;What next, &amp;quot;we suggest you update to Bootcamp and Mac OS X, please wait while we install, and don&amp;#39;t mind the reboots&amp;quot;?&lt;/p&gt; &lt;p&gt;Seriously, Apple, this just makes you look seriously unethical. You can&amp;#39;t get people to install Safari legitimately, by enticing them to voluntarily download and install it, so you have to sneak it in by implying it&amp;#39;s an update to QuickTime. What does that say about Safari? You can&amp;#39;t even give it away? You have to foist it on the unwilling?&lt;/p&gt; &lt;p&gt;Grow up.&lt;/p&gt; &lt;p&gt;I suggest we call this behaviour &lt;strong&gt;&lt;em&gt;Retro-Bundling&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Bundling&lt;/strong&gt;, of course, is when you buy a piece of software, or download it for free, and along with it comes Firefox or the Google Toolbar. Irritating, especially if you don&amp;#39;t want them, because half of your time in getting the software down was taken up in downloading something that you&amp;#39;re going to say &amp;quot;no&amp;quot; to. But at least you only have to say no that one time - or when you download the next version.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Retro-Bundling&lt;/strong&gt;, then, would be when, after you already have the software of your choice installed, its manufacturer decides that they&amp;#39;d like to have bundled something else onto your system, so they try to slip it in the back door without you noticing.&lt;/p&gt; &lt;p&gt;I am glad to say, to judge from &lt;a title="Someone whose blog I never visited before." href="http://john.jubjubs.net/2008/03/21/apple-software-update/"&gt;comments at other blogs&lt;/a&gt;, that I&amp;#39;m not the only one that thinks this is utterly reprehensible behaviour. Perhaps this is the way things are done in the Apple world - you just sit happily back as your vendor dumps more and more product into your lap.&lt;/p&gt; &lt;p&gt;Consider this - how would you have reacted, if next time Office for Mac was checking for updates, it came back and offered to update Word, Excel Internet Explorer and Silverlight? Even though you didn&amp;#39;t have those last two on your system. Oh, and they were selected automatically, and the default button press would install them all.&lt;/p&gt; &lt;p&gt;&lt;em&gt;Update: Someone mentioned to me that Microsoft does indeed offer Silverlight on Windows Update to Windows users even if you don&amp;#39;t have Silverlight installed already. That sucks, too. It&amp;#39;s not quite as heavy an application as Safari and iTunes, but it&amp;#39;s still wrong to offer &amp;quot;updates&amp;quot; that consist of an application you don&amp;#39;t have. Actions like this will cause people to stop accepting updates as a regular part of their computing schedule - and that can&amp;#39;t help the health of their computers.&lt;/em&gt;&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1549816" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/Programmer+Hubris/default.aspx">Programmer Hubris</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Miscellany+-+not+security/default.aspx">Miscellany - not security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/What+my+wife+knows/default.aspx">What my wife knows</category></item><item><title>Random leap-day events.</title><link>http://msmvps.com/blogs/alunj/archive/2008/02/29/1528911.aspx</link><pubDate>Sat, 01 Mar 2008 02:47:24 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1528911</guid><dc:creator>alunj</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1528911</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1528911</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/02/29/1528911.aspx#comments</comments><description>&lt;p&gt;A semi-hobby of mine is that of date- and time-related issues with computers. Something that we all take for granted, and assume to be easy, is actually incredibly complex, with rules that depend on where you are, when you are, which laws you follow, which religion you believe in, and any number of other steps. &lt;p&gt;I knew there&amp;#39;d be one or two events for leap day to comment on - here&amp;#39;s a selection for your amusement: &lt;p&gt;&amp;quot;&lt;a href="http://www.usatoday.com/travel/flights/2008-02-29-united-leap-day_N.htm"&gt;Software Snafu delays United&amp;#39;s Leap Day check-ins&lt;/a&gt;&amp;quot; - a spokesman &amp;quot;says United didn&amp;#39;t have any such problems with the software on Leap Day four years ago.&amp;quot; - not much thought given, I suppose, as to whether there might have been an update or patch in those four years. &lt;p&gt;Microsoft&amp;#39;s SQL Server 2008 - two days after the product launch in Los Angeles:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;“We have recently discovered an issue with SQL Server 2008 CTPs that result &lt;br /&gt;in SQL Server 2008 not starting on Feb 29 GMT only. We recommend that you do &lt;br /&gt;not run or install this CTP on Feb 29 GMT to minimize any impact in your &lt;br /&gt;environment. You can install starting on March 1 GMT. If you have already &lt;br /&gt;encountered issues, contact &lt;a href="mailto:sqlbeta@microsoft.com"&gt;sqlbeta@microsoft.com&lt;/a&gt; before taking any further &lt;br /&gt;steps.”&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;&lt;a href="http://blogs.technet.com/sbs/archive/2008/01/15/the-ceicw-certificate-generator-will-be-out-of-the-office-on-february-29-2008.aspx"&gt;Microsoft&amp;#39;s Windows Small Business Server&lt;/a&gt; can&amp;#39;t issue itself a certificate today, because when it creates the certificate, it makes it valid until today&amp;#39;s date, five years from now. That would be 2/29/2013, which isn&amp;#39;t a valid date. Splat. &lt;p&gt;&lt;a href="http://www.wspa.com/midatlantic/spa/news.apx.-content-articles-SPA-2008-02-29-0018.html"&gt;South Carolina&amp;#39;s DMV&lt;/a&gt; brought down because of &amp;quot;a bug in one of the programs that calculates the date&amp;quot;. &lt;p&gt;&lt;a href="http://www.cbc.ca/canada/british-columbia/story/2008/02/28/bc-leapdayoff.html"&gt;Electronic Arts give their employees a day off for Leap Day&lt;/a&gt; - I was going to make some weak joke about &amp;quot;an EA spokesman said that as the following day was a Saturday, they expected everyone in the office as normal&amp;quot; - but then I read the spokesman&amp;#39;s comments from the article: “The next leap year isn&amp;#39;t until 2012, but the company is trying to come with a reason to give its employees another day off in 2009.” So there you are, if you work at EA, you get another day off work next year. Write down family members&amp;#39; names and addresses so you can contact them again when next you get to leave the office and go out into the &amp;quot;big blue room&amp;quot;.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1528911" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/Miscellany+-+not+security/default.aspx">Miscellany - not security</category></item><item><title>CS-RCS Pro on Vista</title><link>http://msmvps.com/blogs/alunj/archive/2008/02/26/1525222.aspx</link><pubDate>Tue, 26 Feb 2008 19:55:06 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1525222</guid><dc:creator>alunj</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1525222</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1525222</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/02/26/1525222.aspx#comments</comments><description>&lt;p&gt;I&amp;#39;ve been trying back and forth to get &lt;a href="http://www.componentsoftware.com"&gt;CS-RCS Pro&lt;/a&gt;, a version control suite, to work on Windows Vista.&lt;/p&gt; &lt;p&gt;I like CS-RCS Pro for a number of reasons:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Files stored in CS-RCS Pro are kept in a simple format, open and well-documented. As a result, if I ever have to move away from CS-RCS Pro (say, for instance, if they go out of business, or stop supporting it), I stand a good chance of reconstructing my versioning information completely in whatever product I move to, if only by re-creating files at each epoch and then checking them in to the new tool.  &lt;li&gt;CS-RCS Pro integrates with Visual Studio. I can check files in and out while I&amp;#39;m editing them.  &lt;li&gt;CS-RCS Pro integrates with Explorer, as a Shell Extension, so that you can right-click on source files, and check them in from there.  &lt;li&gt;Of course, most important is that for single users, it&amp;#39;s free.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;But that last point is the cause of a big problem.&lt;/p&gt; &lt;p&gt;Here&amp;#39;s the sequence I have to deal with:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;I have the single-user version of CS-RCS Pro.  &lt;li&gt;I use best practices for development of secure applications, particularly as regards running my software &lt;u&gt;and&lt;/u&gt; my development tools as a restricted user unless it is strictly necessary to become an admin to test admin-level features, or to install / uninstall software or services, or to debug code that is running a different user context from my own.  &lt;li&gt;CS-RCS Pro insists that the user who installs it is also the user who runs it.  &lt;li&gt;CS-RCS Pro must be installed by an administrator.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;I had originally intended to follow the appropriate installation practice for an enterprise application - that it should be installed by a recognised administrator, and then any post-install setup to customise for the end-user would be carried out by that end-user for themselves.&lt;/p&gt; &lt;p&gt;This didn&amp;#39;t work, as CS-RCS Pro configured the version control tree to be used by the administrative user, making it impossible for my restricted user to access the files.&lt;/p&gt; &lt;p&gt;I tried simply editing the ownerships and ACLs - that didn&amp;#39;t work - and then to additionally edit the configuration files, where it mentioned the name of my administrative user. That worked for a short while, but I noticed that every time I used MSTSC - Remote Console - also known as the Terminal Services Client - to access the system, the shell extension that CS-RCS Pro installs took up 100% CPU, and required that I restart Explorer. There are still a few applications that don&amp;#39;t work well when you kill Explorer from underneath them, and so this was somewhat of an untenable position.&lt;/p&gt; &lt;p&gt;Besides, this was an awful lot of effort to go through in order to get version control going.&lt;/p&gt; &lt;p&gt;Finally, it hit me how I should do this properly. It&amp;#39;s not clean and it&amp;#39;s not clever, and ComponentSoftware, the folks behind CS-RCS Pro, should consider how to change their installer to avoid this issue.&lt;/p&gt; &lt;p&gt;The simple five-step process is as follows - let&amp;#39;s say Wayne, an administrator, wants to install the software for Sharon, a restricted user:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Wayne adds Sharon to the Local Administrators group on the machine to which Wayne will be installing CS-RCS Pro.  &lt;li&gt;Wayne logs on as Sharon (*)  &lt;li&gt;Wayne installs the application.  &lt;li&gt;Wayne logs off Sharon&amp;#39;s account.  &lt;li&gt;Wayne removes Sharon from the Local Administrators group.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;(*) Note that asterisk - that&amp;#39;s the troubling part. Actually, step 1 is troubling too, but only because Sharon may have other processes trying to log in with elevated rights, should they ever be granted.&lt;/p&gt; &lt;p&gt;Step 2 requires either that Wayne allows his user, restricted though she is meant to be, to log on as an administrator - what if she quickly runs some tool that you don&amp;#39;t want her to run?&lt;/p&gt; &lt;p&gt;Okay, so you drag her away from the console immediately after she types her password - but what if she&amp;#39;s got startup items to add an administrative user on her behalf, or simply to stay in memory (as a service, say) and run with those enhanced privileges, to allow exploit later?&lt;/p&gt; &lt;p&gt;Alright, so what&amp;#39;s the safest way? The only good way I can think of is this:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Wayne resets Sharon&amp;#39;s password.  &lt;li&gt;Wayne adds Sharon&amp;#39;s account to Local Administrators. Note that Sharon can&amp;#39;t log on at this point.  &lt;li&gt;From a command prompt in Wayne&amp;#39;s restricted user account, Wayne uses the &lt;em&gt;runas&lt;/em&gt; command to execute the installation script in Sharon&amp;#39;s new administrative context. Runas reduces, and possibly eliminates, the chance that this administrative context will have the ability to run Sharon&amp;#39;s own code (unless the installation script does so).  &lt;li&gt;Wayne removes Sharon from the Local Administrators account.  &lt;li&gt;Wayne sets Sharon&amp;#39;s account to force a password change after the next logon.  &lt;li&gt;Wayne tells Sharon her new password.  &lt;li&gt;If this is not a domain environment, Sharon must change her password back to what it used to be, so that it is possible for her to access her protected data.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Some of you are probably reading this and wondering why I bother - after all, in many environments, developers insist on running as administrator all the time, because their development tools don&amp;#39;t support anything else.&lt;/p&gt; &lt;p&gt;Well, it&amp;#39;s time your developers - and their tools - grew up. Yes, I can quote, just as any other developer can, a number of cases where administrative access is required - although many developers actually get this wrong. You can run Visual Studio 2005 as a non-administrator. You can debug your own code running in your own logon session as a non-administrator.&lt;/p&gt; &lt;p&gt;Developers are very often the only people to run some sections of the code that they build, until it reaches the hands of the users. As such, developers need to spend as much time as possible, when they run their code, working in the same kind of user context as their users will have.&lt;/p&gt; &lt;p&gt;In general, developers should follow the same principle as other administrators - their day-to-day tasks (e-mail, web browsing, and yes, development) should be done in restricted user accounts; administrative user accounts should be available, but their use should be restricted to those operations which absolutely require administrative access, and those operations should be reviewed often enough to ensure that they need administrative access. Tools and environments grow and change, and a tool which yesterday required administrative access may run tomorrow without. LogonUser, for instance, used to require complete system access - today it can be called by any user.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1525222" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Programmer+Hubris/default.aspx">Programmer Hubris</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/Windows+Vista/default.aspx">Windows Vista</category><category domain="http://msmvps.com/blogs/alunj/archive/tags/UAC/default.aspx">UAC</category></item><item><title>Dealing in Vulnerabilities - Denying the Vendor</title><link>http://msmvps.com/blogs/alunj/archive/2008/02/07/1501848.aspx</link><pubDate>Thu, 07 Feb 2008 20:20:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1501848</guid><dc:creator>alunj</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1501848</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1501848</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/02/07/1501848.aspx#comments</comments><description>&lt;p&gt;Full disclosure, responsible disclosure, malicious exploit use, there are so many ways to act when you find a vulnerability.&lt;/p&gt;
&lt;p&gt;What about disclosure to a select band of people (selected only by their ability to pay you a bucket of money every year), and demonstrating the vulnerability publicly, while simultaneously withholding details of the vulnerability from the vendor in whose product you found the hole?&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what Russian Security research company Gleg is doing right now with RealNetworks, according to an Analysis piece in this week&amp;#39;s &lt;a title="eWeek, what used to be PC Week" href="http://www.eweek.com/"&gt;eWeek&lt;/a&gt; (sorry, eWeek, I&amp;#39;d link to the article, but I couldn&amp;#39;t find it online).&lt;/p&gt;
&lt;p&gt;The researchers at Gleg found a vulnerability that allows them to execute their choice of code on any system whose user they can convince to play a song in RealPlayer - and there&amp;#39;s not a lot of convincing that needs to go on.&lt;/p&gt;
&lt;p&gt;RealNetworks have contacted Gleg and requested, on a number of occasions, to receive details of the vulnerability. Gleg refuses. Repeatedly.&lt;/p&gt;
&lt;p&gt;Why?&lt;/p&gt;
&lt;p&gt;&amp;quot;We need an exclusive time period to protect our customers...&amp;quot; and &amp;quot;We tried to work with vendors in the past and received a very negative experience.&amp;quot;&lt;/p&gt;
&lt;p&gt;If this &amp;quot;negative experience&amp;quot; is the usual complaint of vulnerability researchers, it is that vendors are non-responsive when vulnerabilities are reported - clearly in this case, that&amp;#39;s not true. RealNetworks are asking Gleg to allow them to respond to the vulnerability.&lt;/p&gt;
&lt;p&gt;Subscriptions to vulnerability researchers&amp;#39; &amp;quot;services&amp;quot; already seem rather like a protection racket - &amp;quot;pay us every month, so we can tell you how to prevent your systems from being exploited by something that we found&amp;quot;.&lt;/p&gt;
&lt;p&gt;With this refusal to disclose to the vendor without them becoming a customer first, this seems more like blackmail.&lt;/p&gt;
&lt;p&gt;As Dave Aitel of Immunity states, for RealNetworks to subscribe to Gleg&amp;#39;s service might very well be &amp;quot;a drop in the bucket for them&amp;quot;, but consider that it&amp;#39;s Gleg that discovered&amp;nbsp;this vuln, it might be Immunity for the next vuln, you can&amp;#39;t predict who&amp;#39;s going to find the next vulnerability in your software. A few drops and you&amp;#39;ve overflowed your bucket. [For those of us vendors with a thimble-sized bucket, a single such drop is going to be too much.] How do you go to the CFO and ask for more money because there&amp;#39;s another dozen security research companies starting up this month? How do you classify the return on investment?&lt;/p&gt;
&lt;p&gt;Oh yeah, Immunity... &amp;quot;Immunity does not share its findings with affected vendors&amp;quot; either, according to the article.&lt;/p&gt;
&lt;p&gt;I understand that security researchers have to feed their families, but there has to be a better way than protection rackets and blackmail.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve often stated that I got into security because I wanted in some small way to help save the world - I don&amp;#39;t like people who are apparently in this business solely to make money, and with no interest for improving the world around them. It&amp;#39;s a short step from there to developing malware for pay.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;: Just to prove I&amp;#39;m not making this one up (eWeek, where&amp;#39;s that article online?), the story is also reported at &lt;a class="" href="http://www.daniweb.com/blogs/entry2060.html"&gt;DaniWeb&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1501848" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/General+Security/default.aspx">General Security</category></item><item><title>MMR vs Autism - Amateur Epidemiology</title><link>http://msmvps.com/blogs/alunj/archive/2008/02/05/1497842.aspx</link><pubDate>Tue, 05 Feb 2008 19:20:23 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1497842</guid><dc:creator>alunj</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/rsscomments.aspx?PostID=1497842</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/alunj/commentapi.aspx?PostID=1497842</wfw:comment><comments>http://msmvps.com/blogs/alunj/archive/2008/02/05/1497842.aspx#comments</comments><description>&lt;p&gt;Once again, the headlines declare, &amp;quot;&lt;a title="No link between autism and MMR vaccine" href="http://www.msnbc.msn.com/id/23001150/"&gt;No link between autism and MMR vaccine&lt;/a&gt;&amp;quot;.&lt;/p&gt; &lt;p&gt;The story, however, is a different matter:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;The study, published on Tuesday in the Archives of Disease in Childhood, found no evidence of any abnormal biological response from the shot that could point to a link between the vaccine and autism.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Hmm... an absence of evidence of a link does not mean evidence of the absence of a link.&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&amp;quot;This study really supports the view these are safe vaccines,&amp;quot; said David Brown, a researcher at Britain&amp;#39;s Health Protection Agency who worked on the study. &amp;quot;The evidence is now so solid there really isn&amp;#39;t a need for further studies here.&amp;quot;&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Same old guff that&amp;#39;s been said at the conclusion of a number of other studies, all of whom appear almost deliberately to have been set up to provide statistics that imply the absence of a link. Perhaps the most famous is the &amp;quot;Danish study&amp;quot;. The study demonstrated that there was actually a higher risk of autism among those who did not receive the MMR. What was not noted in that study is that it occurred at a time when the suggestion of an MMR / autism connection was big news, so those children already at risk of autism were more likely to turn up in the group of children whose parents refused to give their children MMR. A self-selecting study is no study at all.&lt;/p&gt; &lt;p&gt;As Jackie Fletcher of &lt;a href="http://jabs.org.uk/"&gt;JABS&lt;/a&gt; puts it:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;It is making a leap from having the actual data on the antibodies and saying MMR does not cause autism.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Persistent measles infection is only one of the theories on why there appears to be a connection between the MMR vaccination and autism - my favourite explanation by far is that there are children at risk from autism, and that every time their bodies are put under significant stress (such as the high fevers associated with vaccination), there is a chance that a regression will be triggered. That&amp;#39;s a very loose theory, granted, but there are others - one very interesting suggestion is that the study quoted in today&amp;#39;s news articles focuses on children aged 10 - 12, and if those children had persistent measles infection from vaccination at or around 2 years old, it would not be evident from antibodies in the bloodstream, but in the spinal column. I don&amp;#39;t know how true that claim is, though.&lt;/p&gt; &lt;p&gt;Now, you might say that the studies that have suggested a link between MMR and autism are also biased in their construction, and designed to give the results that would imply such a link.&lt;/p&gt; &lt;p&gt;I agree.&lt;/p&gt; &lt;p&gt;An appropriate study, in my opinion, would be to select candidates who are &amp;quot;at risk&amp;quot; from autism - where a member of the family has autism, or where a member of the family is an engineer, or where there is higher-than-average incidence of college education - and follow their babies from birth through age five or so. Some of the group would be given the MMR in one visit, as is the current method of operation, others would be given separate Measles, Mumps and Rubella shots in three visits, several weeks apart. A little tricky to do this as a double-blind study, but not impossible - the MMR patients would simply receive a saline shot instead for two of their three visits.&lt;/p&gt; &lt;p&gt;Such a study would get over the issue that, with an incidence rate of 1 in 150, and only a fraction of that being suggested as related to MMR vaccination, autism causes disappear into statistical noise; such a study also allows for possible weighting factors to be recognised and balanced (by assigning study members such that particular combinations of weighting factors appear more or less equally in each cohort), in a way that has not been possible, or not been tried, with other studies.&lt;/p&gt; &lt;p&gt;While there are many irrational views on both sides of this debate, sadly it seems as though these are the views that make the loudest noise.&lt;/p&gt; &lt;p&gt;A scientific approach to this discussion has not yet been considered, in my opinion.&lt;/p&gt; &lt;p&gt;Most parents of autistic and at-risk children I have spoken to (and granted, that&amp;#39;s not in the hundreds that would be required for a good sample) are not looking to make the choice between MMR or not vaccinating their children - they are artificially limited by the government to making that choice. The lack of availability of individual vaccines for Measles, Mumps and Rubella makes the choice one of &amp;quot;MMR and possible-to-likely autistic regression&amp;quot; versus &amp;quot;possible measles, mumps or rubella infection - maybe in someone else&amp;#39;s kid&amp;quot;. I think that particularly when it comes to illnesses like Rubella, where the risk is to the in-utero fetus of an infected mother-to-be, perhaps we ought to consider whether it is safer to vaccinate girls as they approach their fertile years, rather than vaccinating everyone a year or two after birth, in an attempt to provide &amp;quot;herd immunity&amp;quot;.&lt;/p&gt; &lt;p&gt;Another thing I&amp;#39;m not looking for is to blame all (or even most!) cases of autism on the MMR vaccine, or thimerosal, or any of a number of other causes. There are so many stories of autistic onset, from the kid who &amp;quot;everyone could see he was different from the moment he was born&amp;quot;, to the kid who develops normally into a babbling toddler and then suddenly shuts up and retreats into his mental cocoon over the course of a few days. Clearly, there&amp;#39;s a genetic component that at least creates a susceptibility, but for something to happen so suddenly, and so coincidentally &amp;quot;on time&amp;quot;, it seems like there has to be an environmental component that acts like a trigger.&lt;/p&gt; &lt;p&gt;With the government continually feeding us crap science, and no physical method to reliably screen for a majority of autism cases, it&amp;#39;s no wonder many parents feel like emulating their children at their worst autistic moments, repeatedly banging our heads against the wall, because it&amp;#39;s better than not knowing why our heads hurt.&lt;/p&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1497842" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/alunj/archive/tags/Autism/default.aspx">Autism</category></item></channel></rss>