<?xml version='1.0' encoding='utf-8' ?>

<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:atom10='http://www.w3.org/2005/Atom'>
<channel>
  <title>The Lair of the SlowFox</title>
  <link>https://slowfox.dreamwidth.org/</link>
  <description>The Lair of the SlowFox - Dreamwidth Studios</description>
  <lastBuildDate>Mon, 11 Jan 2010 08:34:35 GMT</lastBuildDate>
  <generator>LiveJournal / Dreamwidth Studios</generator>
  <lj:journal>slowfox</lj:journal>
  <lj:journaltype>personal</lj:journaltype>
  <image>
    <url>https://v2.dreamwidth.org/320300/290754</url>
    <title>The Lair of the SlowFox</title>
    <link>https://slowfox.dreamwidth.org/</link>
    <width>100</width>
    <height>100</height>
  </image>

<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/90984.html</guid>
  <pubDate>Mon, 11 Jan 2010 08:34:35 GMT</pubDate>
  <title>Yay, Monday...</title>
  <link>https://slowfox.dreamwidth.org/90984.html</link>
  <description>At the desk three days this week, and then for Thursday and Friday I&apos;m on a training course off-site. This in turn means that Mali gets checked into his Happy Holiday Home on Thursday morning, picked up on Saturday morning, because I can&apos;t get back to him at lunchtimes.&lt;br /&gt;&lt;br /&gt;It was a very static weekend on my part - it wasn&apos;t the snow so much as the ice: the ice was lethal. Put it this way; when &lt;i&gt;Mali&lt;/i&gt;, with four-paw-drive, is falling over, you know conditions are dicey. However, the rain started on Sunday and has made substantial inroads on the ice/slush, such that one can walk along with some fair degree of confidence, for the most part, that you&apos;ll manage to stay upright.&lt;br /&gt;&lt;br /&gt;Finally, &lt;a href=&quot;http://www.grc.com/&quot;&gt;Steve Gibson&lt;/a&gt; and &lt;a href=&quot;http://twit.tv/&quot;&gt;Leo Laporte&lt;/a&gt; were talking on &lt;a href=&quot;http://twit.tv/sn&quot;&gt;Security Now&lt;/a&gt; last week about &lt;a href=&quot;http://shadowserver.org&quot;&gt;ShadowServer&lt;/a&gt;, a site that tracks botnets across the interwebs. From the &lt;a href=&quot;http://www.shadowserver.org/wiki/pmwiki.php/Stats/BotCounts&quot;&gt;graphs&lt;/a&gt;, it looks like there was some massive cut-off on New Year&apos;s Eve...&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=90984&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/90984.html</comments>
  <category>weather</category>
  <category>work</category>
  <category>podcasts</category>
  <category>security</category>
  <category>mali</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>4</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/83181.html</guid>
  <pubDate>Wed, 16 Dec 2009 08:26:17 GMT</pubDate>
  <title>MD5</title>
  <link>https://slowfox.dreamwidth.org/83181.html</link>
  <description>MD5 is a hashing algorithm that attempts to verify that a given file&apos;s integrity hasn&apos;t been compromised (during a download process, or in the process of being copied from A to B etc).&lt;br /&gt;&lt;br /&gt;Typically, you&apos;ll have a file reference given on a web-site and, somewhere else (this is important, more later), there&apos;ll be a long string of seemingly random characters called the MD5 Sum, or MD5 Hash or whatever:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;c59b048c992804d165aed10170f003dc&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;What happens is that the algorithm works through the source file, and maps the first element to something new, and then feeds that result into part of the computation for the second element, and then the result of &lt;i&gt;that&lt;/i&gt; into the third element etc. When it reaches the end of the file, the whole result gets fed back into the algorithm again. And again, and again for a specified number of iterations (loops). The end result of these calculations boils down to the specific MD5 Sum for the file.&lt;br /&gt;&lt;br /&gt;I use &lt;a href=&quot;http://www.nullriver.com/index/products/winmd5sum&quot;&gt;WinMD5Sum&lt;/a&gt; on the work PC:&lt;br /&gt;&lt;a href=&quot;http://www.flickr.com/photos/27479072@N07/4189902246/&quot; title=&quot;md5screenshot by slowfox999, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2753/4189902246_9a7d136536_o.jpg&quot; width=&quot;426&quot; height=&quot;196&quot; alt=&quot;md5screenshot&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The idea behind MD5 hashing is that even tiny changes in the original file result in significant differences in the end MD5 hash.&lt;br /&gt;&lt;br /&gt;For example, I created a text file called &lt;tt&gt;hello.txt&lt;/tt&gt;, which contained the phrase &lt;tt&gt;Hello, world.&lt;/tt&gt;.&lt;br /&gt;&lt;br /&gt;The MD5 sum of this worked out to be &lt;tt&gt;45d2c2d506211d17f99a3eb8de863f36&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;By changing the &lt;i&gt;last&lt;/i&gt; character to a comma - &lt;tt&gt;Hello, world,&lt;/tt&gt; - the MD5 sum changed to &lt;tt&gt;c59b048c992804d165aed10170f003dc&lt;/tt&gt;, immediately telling me that the file&apos;s changed from the original. &lt;br /&gt;&lt;br /&gt;An MD5 sum is &lt;i&gt;always&lt;/i&gt; 32 characters long, yet can be generated for files of any size. Pretty obviously, then, there will be various different kinds of files that result in the same hash - these are known (with the industry&apos;s predictable fondness for dramatic vernacular) as &apos;collisions&apos;. Nonetheless, the risk of collision is pretty small (if, for example, by repeatedly going through the MD5 hashing algorithm, all files eventually boiled down to a single value, it&apos;d obviously be useless) - that said, boffins have managed, now, to successfully construct amended files that generate the same MD5 hash, but this requires a fair bit of work and an accommodating starting point. &lt;br /&gt;&lt;br /&gt;Anyway, the idea is that you see a file - &lt;tt&gt;exciting_prog.exe&lt;/tt&gt; - on a website and download it. By using an MD5 checksum, you can verify (beyond reasonable doubt) that the file you&apos;ve downloaded is the file that the website &lt;i&gt;intended&lt;/i&gt; you to download.&lt;br /&gt;&lt;br /&gt;(which, by the way, is a loooooooooooooooooong way from saying it&apos;s safe).&lt;br /&gt;&lt;br /&gt;The &lt;b&gt;major&lt;/b&gt; caveat should be obvious: the situation where the file&apos;s MD5 sum is listed in &lt;i&gt;the same directory as the file itself&lt;/i&gt;. Consider: if nefarious malfeasants have managed to hack the server and place a malicious file in the benign one&apos;s place, then since they&apos;ve clearly got access to the server, it&apos;d be trivial for them to also replace the posted MD5 sum with the sum to match their own malicious file.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=83181&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/83181.html</comments>
  <category>security</category>
  <category>md5</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>9</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/72452.html</guid>
  <pubDate>Mon, 09 Nov 2009 08:30:30 GMT</pubDate>
  <title>Not exactly reassured</title>
  <link>https://slowfox.dreamwidth.org/72452.html</link>
  <description>&lt;a href=&quot;http://www.flickr.com/photos/27479072@N07/4088436067/&quot; title=&quot;xpupdate by vanquished2008, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2729/4088436067_7476dfdd3b_o.jpg&quot; width=&quot;551&quot; height=&quot;383&quot; alt=&quot;xpupdate&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now &lt;i&gt;that&apos;s&lt;/i&gt; inspiring, no?&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=72452&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/72452.html</comments>
  <category>security</category>
  <category>fail</category>
  <category>windows</category>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>4</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/55214.html</guid>
  <pubDate>Mon, 21 Sep 2009 07:13:20 GMT</pubDate>
  <title>Cool Google Security Link</title>
  <link>https://slowfox.dreamwidth.org/55214.html</link>
  <description>TWiT&apos;s &lt;a href=&quot;http://www.twit.tv/sn&quot;&gt;Security Now&lt;/a&gt; podcast mentioned this fantastic tip in their most recent episode, whereby you can use google to see how many security issues a given site has raised over the last 90 days. Google obviously collect this data, since they warn you about suspicious sites etc every now and again - this tip simply surfaces that information.&lt;br /&gt;&lt;br /&gt;Unfortunately, there isn&apos;t a user-interface as such, so you have to handcraft the URL, but it&apos;s relatively straightforward:&lt;br /&gt;&lt;br /&gt;Example: &lt;a href=&quot;http://www.google.com/safebrowsing/diagnostic?site=google.com&quot;&gt;http://www.google.com/safebrowsing/diagnostic?site=google.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This checks google&apos;s own site (and ironically reports one malicious scripting exploit found in the last 90 days).&lt;br /&gt;&lt;br /&gt;To target a different site, you simply change the &lt;font color=&quot;#990000&quot;&gt;&lt;b&gt;?site=google.com&lt;/b&gt;&lt;/font&gt; bit at the end of the URL to point to the desired target.&lt;br /&gt;&lt;br /&gt;So, to check &lt;a href=&quot;http://www.guardian.co.uk/&quot;&gt;The Grauniad&apos;s&lt;/a&gt; site(s), we&apos;d use &lt;font color=&quot;#009900&quot;&gt;&lt;b&gt;?site=guardian.co.uk&lt;/b&gt;&lt;/font&gt;, like this:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/safebrowsing/diagnostic?site=guardian.co.uk&quot;&gt;http://www.google.com/safebrowsing/diagnostic?site=guardian.co.uk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Interestingly, &lt;a href=&quot;http://www.livejournal.com/&quot;&gt;The Other Place&lt;/a&gt; throws up &lt;a href=&quot;http://www.google.com/safebrowsing/diagnostic?site=livejournal.com&quot;&gt;several issues&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;Of the 15126 pages we tested on the site over the past 90 days, 144 page(s) resulted in malicious software being downloaded and installed without user consent. The last time Google visited this site was on 2009-09-20, and the last time suspicious content was found on this site was on 2009-09-20.&lt;br /&gt;&lt;br /&gt;Malicious software includes 3 scripting exploit(s), 2 trojan(s), 2 exploit(s).&lt;br /&gt;&lt;br /&gt;Malicious software is hosted on 19 domain(s), including tinnily.info/, convex.ru/, lavyer.info/.&lt;br /&gt;&lt;br /&gt;10 domain(s) appear to be functioning as intermediaries for distributing malware to visitors of this site, including lj-toys.com/, goeachscan.com/, susuman.com/.&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;Currently, &lt;a href=&quot;http://www.google.com/safebrowsing/diagnostic?site=dreamwidth.org&quot;&gt;Dreamwidth gets a clean bill of health&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Anyway, really cool google tool to play with (I checked work, and it&apos;s currently clean, too).&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=55214&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/55214.html</comments>
  <category>security</category>
  <lj:mood>impressed</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>8</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/41936.html</guid>
  <pubDate>Fri, 28 Aug 2009 09:40:20 GMT</pubDate>
  <title>Reset your routers...</title>
  <link>https://slowfox.dreamwidth.org/41936.html</link>
  <description>For those of you with WiFi routers, it&apos;s time to make &lt;i&gt;sure&lt;/i&gt; you&apos;re using WPA2 security:&lt;br /&gt;&lt;br /&gt;WEP encryption was cracked &lt;a href=&quot;http://www.tomshardware.com/forum/20824-43-crack&quot;&gt;a long time ago&lt;/a&gt;, and people moved across to WPA.&lt;br /&gt;&lt;br /&gt;Now, on the back of theoretical work last year, a team of Japanese computer scientists claim &lt;a href=&quot;http://www.networkworld.com/news/2009/082709-new-attack-cracks-common-wi-fi.html&quot;&gt;they can crack WPA in 60 seconds&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The attack only works on WPA, and not WPA2, so if your router and clients support it, I&apos;d suggest that you move on up, as it were. And even if the scientists aren&apos;t making their methodology public just yet, the fact that it can be done means that it won&apos;t be long before this work gets replicated in the wild.&lt;br /&gt;&lt;br /&gt;I&apos;m guessing that I&apos;m going to have to revise my parentally-aimed analogy:&lt;br /&gt;&lt;ul type=&quot;disc&quot;&gt;&lt;li&gt;WPA - that&apos;s like parking your car in a dodgy area;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;WEP - that&apos;s parking the car with the doors unlocked;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;No Encryption - that&apos;s parking the car with the door open and the keys in the ignition.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Me? I turned WiFi off. Now, where&apos;d I put that tin-foil hat?&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=41936&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/41936.html</comments>
  <category>security</category>
  <lj:mood>impressed</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/40271.html</guid>
  <pubDate>Wed, 26 Aug 2009 07:16:06 GMT</pubDate>
  <title>Flash! Argh!</title>
  <link>https://slowfox.dreamwidth.org/40271.html</link>
  <description>OK, listen up.&lt;br /&gt;&lt;br /&gt;So, you clear out your cookies regularly, and you delete your browser history. That&apos;s it, then, right? Your tracks are covered...&lt;br /&gt;&lt;br /&gt;Nope.&lt;br /&gt;&lt;br /&gt;Website operators love user-data - it helps them deliver &apos;more compelling content&apos; to you, the user, and the nature of data being what it is, standard browser cookies were proving a little limiting.&lt;br /&gt;&lt;br /&gt;Plus there was that option for the user to clear all their cookies out, and thus the website lost all its history on you.&lt;br /&gt;&lt;br /&gt;So there are these things called Flash Cookies, which are available to websites which use Flash, if you have Flash installed. And since a large part of the web is just b0rked without Flash, most of us do.&lt;br /&gt;&lt;br /&gt;You &lt;i&gt;can&apos;t&lt;/i&gt; delete Flash Cookies from the browser (as far as I know). But Adobe &lt;i&gt;do&lt;/i&gt; have a control panel on the web for you to have a look at them. Go here: &lt;a href=&quot;http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html&quot;&gt;http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;That graphic, top right, is NOT an image, it&apos;s the Flash Settings Control Panel for YOUR BROWSER.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The far right tab will show you the websites that you&apos;ve visited that have stored some kind of information on your machine, anticipating the happy day that you return to their corner of the interwebz.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=40271&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/40271.html</comments>
  <category>security</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>8</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/15270.html</guid>
  <pubDate>Fri, 19 Jun 2009 20:16:11 GMT</pubDate>
  <title>Securing GMail</title>
  <link>https://slowfox.dreamwidth.org/15270.html</link>
  <description>You&apos;ve probably known this for a long while, but since I&apos;ve only just got around to doing it, I thought I&apos;d mention...&lt;br /&gt;&lt;br /&gt;As &lt;a href=&quot;http://www.wired.com/threatlevel/2008/08/gmail-https-doe/&quot;&gt;this Wired article explains&lt;/a&gt;, although gMail asks for your initial log on password via HTTPS (the nice, secure protocol), the rest of your session, under the default settings, is plain HTTP. Which is potentially a problem if you&apos;re checking email from a WiFi hotspot or whatever.&lt;br /&gt;&lt;br /&gt;Changing this is easy enough, once you know where to look.&lt;br /&gt;&lt;br /&gt;Go to Settings (upper right hand side of the screen), and from there you should be on the &apos;General&apos; tab.&lt;br /&gt;&lt;br /&gt;Right at the bottom of the page is a section headed &apos;Browser Connection&apos;, and, as above, the default is &apos;Don&apos;t always use HTTPS&apos;. I&apos;ve changed my settings to &apos;always use https&apos;, and haven&apos;t (yet) noticed any drawbacks.&lt;br /&gt;&lt;br /&gt;Now, because HTTPS is encrypted, it &lt;i&gt;does&lt;/i&gt; mean that encryption/decryption has to take place at both the client (your machine) and the server (Google&apos;s kit), so, in theory, using HTTPS &lt;i&gt;all the time&lt;/i&gt; will slow things down a bit.&lt;br /&gt;&lt;br /&gt;On the other hand, &lt;i&gt;not&lt;/i&gt; using HTTPS means that the communication twixt you and Google&apos;s cloud is all in the clear, and is much easier to eavesdrop/snoop on. &lt;i&gt;Especially&lt;/i&gt; since a tool was announced at &lt;a href=&quot;http://www.defcon.org/&quot;&gt;DEFCON&lt;/a&gt; last year which made such snooping &apos;relatively easy&apos;.&lt;br /&gt;&lt;br /&gt;So, the general advice (from Wired, above, &lt;a href=&quot;http://www.theregister.co.uk/2009/06/16/google_and_https/&quot;&gt;The Register, here&lt;/a&gt;, &lt;a href=&quot;http://mashable.com/2008/08/20/gmail-security/&quot;&gt;Mashable, here&lt;/a&gt; and the good old &lt;a href=&quot;http://news.bbc.co.uk/1/hi/technology/8107556.stm&quot;&gt;Beeb, here&lt;/a&gt;) is to always use HTTPS.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=15270&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/15270.html</comments>
  <category>gmail</category>
  <category>security</category>
  <category>google</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>8</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/14347.html</guid>
  <pubDate>Tue, 16 Jun 2009 06:55:23 GMT</pubDate>
  <title>Passwordmeter</title>
  <link>https://slowfox.dreamwidth.org/14347.html</link>
  <description>This &lt;a href=&quot;http://www.passwordmeter.com/&quot;&gt;Password Strength Checker&lt;/a&gt; is an interesting tool.&lt;br /&gt;&lt;br /&gt;It uses &lt;a href=&quot;http://www.google.com/&quot;&gt;Google&apos;s&lt;/a&gt; javascript &lt;a href=&quot;http://www.google-analytics.com/urchin.js&quot;&gt;urchin.js&lt;/a&gt; to determine the strength of a password, based on the number of characters, whether or not you&apos;re using mixed case, letters, non-alpha-numerics and the like.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Obviously&lt;/b&gt; you don&apos;t feed it your real password (unless you&apos;re feeling particularly brave - it&apos;s running a script that&apos;s hosted on a different server!), but if you pass it constructs that are similar in nature, it&apos;ll give you a rough idea of how secure Google thinks that particular algorithm might be.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=14347&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/14347.html</comments>
  <category>security</category>
  <lj:music>Cycling Weekly Podcast 15</lj:music>
  <lj:mood>busy</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>12</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/13047.html</guid>
  <pubDate>Thu, 11 Jun 2009 06:21:54 GMT</pubDate>
  <title>More on Windows Update and Firefox</title>
  <link>https://slowfox.dreamwidth.org/13047.html</link>
  <description>&lt;span style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;https://alicit.dreamwidth.org/profile&apos;&gt;&lt;img src=&apos;https://www.dreamwidth.org/img/silk/identity/user.png&apos; alt=&apos;[personal profile] &apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: text-bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;https://alicit.dreamwidth.org/&apos;&gt;&lt;b&gt;alicit&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; found &lt;a href=&quot;http://www.itwire.com/content/view/25485/1239/&quot;&gt;this story on IT Wire&lt;/a&gt; which explains a little bit more about that .NET Assistant for Firefox that was included in Windows Update.&lt;br /&gt;&lt;br /&gt;The bit that I was wondering about, given that &lt;a href=&quot;http://slowfox.dreamwidth.org/12661.html&quot;&gt;some of you were reporting yourselves unaffected&lt;/a&gt;, is explained by the fact that the particular Update in question only kicked into play if you had the .NET 3.5 framework installed.&lt;br /&gt;&lt;br /&gt;The .NET framework is a set of code that makes other programs work (a, uh, framework, if you will). Whilst most of you will have some level of .NET framework installed, you might not all be up to 3.5 yet. So this possibly explains why some of you didn&apos;t have the .NET Assistant 1.0 installed.&lt;br /&gt;&lt;br /&gt;However. Do keep a periodic eye on the list of extensions to Firefox - once you &lt;i&gt;do&lt;/i&gt; install .NET 3.5 (and at some point, unless you never download/install &lt;i&gt;any&lt;/i&gt; new software on your machine, you&apos;ll have to), it &lt;i&gt;may&lt;/i&gt; be that Windows Update will identify your machine as having this particular need, and sort you out accordingly.&lt;br /&gt;&lt;br /&gt;Hopefully, by then they&apos;ll have learnt their lesson, and actually inform you of what they&apos;re doing...&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=13047&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/13047.html</comments>
  <category>firefox</category>
  <category>windows</category>
  <category>security</category>
  <lj:music>Nothing is stirring, not even a dog</lj:music>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/12661.html</guid>
  <pubDate>Wed, 10 Jun 2009 07:37:08 GMT</pubDate>
  <title>Running Windows? Use Firefox? Read this</title>
  <link>https://slowfox.dreamwidth.org/12661.html</link>
  <description>&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://slowfox.dreamwidth.org/12661.html#cutid1&quot;&gt;Microsoft installed  an update on Firefox as part of Windows Update that makes Firefox inherently less secure than it had been. You need to change this&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=12661&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/12661.html</comments>
  <category>firefox</category>
  <category>windows</category>
  <category>security</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>27</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/6141.html</guid>
  <pubDate>Wed, 20 May 2009 06:17:37 GMT</pubDate>
  <title>Dog logistics</title>
  <link>https://slowfox.dreamwidth.org/6141.html</link>
  <description>Sneaking online over breakfast, before Mali and I head up to his Happy Holiday Home where he&apos;s staying for the next 48 hours (or thereabouts). Tomorrow, see, I&apos;m off (with work) to Stockton on Tees: we&apos;re setting off at 7.30am, and we&apos;re not expecting to be back much before 8pm.&lt;br /&gt;&lt;br /&gt;Kennels, for their part, open at 8am, and close at 5.30pm, in terms of drop-off/collection, so as is usually the case with these work thingies, I tend to end up having to put Mali in for an &apos;extra&apos; day, as it were. To be honest, he doesn&apos;t seem to mind: when we park up at the place, he&apos;ll be desperate to get inside and meet up with the staff there. And, despite it being a huge place (they have room for 72 dogs and I forget how many cats), all the staff know Mali on sight (I&apos;m pretending this can only be a positive thing).&lt;br /&gt;&lt;br /&gt;Actually, this works out quite neatly today, as I&apos;m babysitting up at the Farm this evening for both P and his sister (who&apos;s now three years old, and is cute beyond belief). So, having dropped Mali off at the kennels, I drive to work, and from work I drive straight up to the Farm, without needing to worry about coming back to Castle Fox to check on Mali.&lt;br /&gt;&lt;br /&gt;And the babysitting also ties in neatly, because the Farm&apos;s PC crashed on Monday (they had a series of repeated power cuts, after which their Dell has reportedly flung itself into a massive sulk and won&apos;t. do. &lt;i&gt;anything&lt;/i&gt;). So I&apos;m going to have a look at that whilst I&apos;m there and see if I can help at all.&lt;br /&gt;&lt;br /&gt;And finally, going back to &lt;a href=&quot;http://slowfox.dreamwidth.org/5490.html&quot;&gt;that post on Microsoft&apos;s Malicious Software Removal Tool&lt;/a&gt;, I&apos;ve learnt that Windows will do a cursory scan on the next rebook of the PC after that month&apos;s Windows Updates have been installed, but that the &lt;i&gt;Full Scan&lt;/i&gt; is &lt;i&gt;only&lt;/i&gt; a user-driven thing. So it&apos;s worth running.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=6141&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/6141.html</comments>
  <category>family</category>
  <category>security</category>
  <category>mali</category>
  <lj:music>TWiT: Security Now Podcast</lj:music>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>https://slowfox.dreamwidth.org/5490.html</guid>
  <pubDate>Mon, 18 May 2009 13:50:26 GMT</pubDate>
  <title>Pity the malware, fool!</title>
  <link>https://slowfox.dreamwidth.org/5490.html</link>
  <description>Y&apos;know, I&apos;ve often wondered, whilst watching the Microsoft Updates download to the work PC (for Castle Fox is a Linux domain), what on &lt;i&gt;Earth&lt;/i&gt; is that &apos;Malicious Software Removal Tool&apos; that seems to be a perennial feature?&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;cut-wrapper&quot;&gt;&lt;span style=&quot;display: none;&quot; id=&quot;span-cuttag___1&quot; class=&quot;cuttag&quot;&gt;&lt;/span&gt;&lt;b class=&quot;cut-open&quot;&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class=&quot;cut-text&quot;&gt;&lt;a href=&quot;https://slowfox.dreamwidth.org/5490.html#cutid1&quot;&gt;Microsoft&apos;s Malicious Software Removal Tool&lt;/a&gt;&lt;/b&gt;&lt;b class=&quot;cut-close&quot;&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style=&quot;display: none;&quot; id=&quot;div-cuttag___1&quot; aria-live=&quot;assertive&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;https://www.dreamwidth.org/tools/commentcount?user=slowfox&amp;ditemid=5490&quot; width=&quot;30&quot; height=&quot;12&quot; alt=&quot;comment count unavailable&quot; style=&quot;vertical-align: middle;&quot;/&gt; comments</description>
  <comments>https://slowfox.dreamwidth.org/5490.html</comments>
  <category>windows</category>
  <category>security</category>
  <lj:mood>calm</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>9</lj:reply-count>
</item>
</channel>
</rss>
