<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Alastair Revell - Blog</title>
    <link>http://blogs.rrs.co.uk/revella/</link>
    <description>The Web Log (Blog) of Alastair Revell, the Managing Consultant of Revell Research Systems, a Management and Technology Consulting Practice, based at Exeter in the United Kingdom.</description>
    <language>en-GB</language>
    <copyright>Revell Research Systems Limited</copyright>
    <lastBuildDate>Wed, 06 Jun 2012 17:38:54 GMT</lastBuildDate>
    <generator>RRS dasBlog 2.0.7226.0</generator>
    <managingEditor>revella@rrs.co.uk</managingEditor>
    <webMaster>revella@rrs.co.uk</webMaster>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=cda02ddb-8b65-4551-8b52-78a05ac3df37</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,cda02ddb-8b65-4551-8b52-78a05ac3df37.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,cda02ddb-8b65-4551-8b52-78a05ac3df37.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=cda02ddb-8b65-4551-8b52-78a05ac3df37</wfw:commentRss>
      <title>LinkedIn Security Breach: 6M Hashed Passwords Potentially Leaked</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,cda02ddb-8b65-4551-8b52-78a05ac3df37.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,cda02ddb-8b65-4551-8b52-78a05ac3df37.aspx</link>
      <pubDate>Wed, 06 Jun 2012 17:38:54 GMT</pubDate>
      <description>&lt;p&gt;
There are claims circulating on the Web today, which have been &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=cda02ddb-8b65-4551-8b52-78a05ac3df37&amp;amp;url=http%3a%2f%2fwww.bbc.co.uk%2fnews%2ftechnology-18338956"&gt;reported
by the BBC&lt;/a&gt;, stating that some six million passwords from &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=cda02ddb-8b65-4551-8b52-78a05ac3df37&amp;amp;url=http%3a%2f%2fwww.linkedin.com"&gt;LinkedIn&lt;/a&gt; have
been leaked on a Russian Internet site in encrypted form.
&lt;/p&gt;
&lt;p&gt;
LinkedIn, which has around 150 million users, has responded &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=cda02ddb-8b65-4551-8b52-78a05ac3df37&amp;amp;url=https%3a%2f%2ftwitter.com%2flinkedin%2fstatus%2f210356987576324096"&gt;via
a tweet&lt;/a&gt; that they are investigating these claims.
&lt;/p&gt;
&lt;p&gt;
Graham Cluley, from &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=cda02ddb-8b65-4551-8b52-78a05ac3df37&amp;amp;url=http%3a%2f%2fwww.sophos.com"&gt;Sophos&lt;/a&gt;,
is reported by the BBC as saying: &amp;quot;We've confirmed there are LinkedIn passwords
in the data. We did this by searching through the data for (hashed) passwords that
we at Sophos use only on LinkedIn. We found those passwords in the data. We also saw
that hundreds of the passwords contain the word 'Linkedin'.&amp;quot;
&lt;/p&gt;
&lt;p&gt;
This strongly suggests that LinkedIn may only be hashing and not salting their passwords
properly (if at all). Hashing is a&amp;nbsp;method that encrypts a&amp;nbsp;password in such
a way that it cannot be decrypted. The original password is not stored, only the encrypted
version, making it near impossible to work out what the original was from just what
was stored. Each time someone claims to be entering the password, that entry is hashed
using exactly the same algorithm and compared with what was stored. If they match
then the current entry is to all intents and purposes the same as the original password,
which is a secret only known to the user.
&lt;/p&gt;
&lt;p&gt;
The problem with just plain hashing is that the same algorithms are widely used by
developers (simply because there aren't that many available), so all a&amp;nbsp;hacker
has to do is run possible passwords through the same hash algorithm to generate a&amp;nbsp;simple
(if not large) look up table that essentially marries hashes with passwords. If they
have a&amp;nbsp;hash with a corresponding password then they have struck the jackpot!
&lt;/p&gt;
&lt;p&gt;
If the hacker has considerable computing power at their disposal for long periods
of time then they can clearly build pretty comprehensive tables that cover (say) all
eight letter passwords possible. Obviously, the longer or more complex a&amp;nbsp;password
is, the larger the effort needed to compromise it. The beauty from the hacker&amp;rsquo;s
perspective is that once they have generated or otherwise acquired a table then it
can be used to attack many different systems that use the same plain hashing algorithm.
&lt;/p&gt;
&lt;p&gt;
Salting improves the security by amending the original password before it is hashed,
usually by adding random characters to it in someway. This means that even if the
hacker knows the hashing algorithm and&amp;nbsp;the salts&amp;nbsp;in use as well as how it
was used to change the original password, their lookup tables will be useless because
they now need a&amp;nbsp;lookup table for each salt in use, which could be as many as
one per password. Salting makes the hashes used by the system under attack almost
unique to that system, greatly increasing the amount of effort needed to compromise
it. Prospective hackers would essentially need to build a lookup table for each salt
used. This approach frequently puts encrypted passwords beyond the economic reach
of even the most determined hackers (although&amp;nbsp;they could theoretically obtain
them with a&amp;nbsp;huge amount of resources).&amp;nbsp;However, salting can be done badly
by using the same salt for each password, which means once that is guessed or otherwise
ascertained, then the problem is no more difficult than working on unsalted hashes.
&lt;/p&gt;
&lt;p&gt;
The fact that Sophos has been able to ascertain that some of their LinkedIn passwords
are amongst the stolen hashes strongly suggests that the passwords were only hashed
and not salted particularly well (if at all). Consequently, it is going to be much
easier for hackers to work out what the original passwords were by simply using a
brute force approach until they strike gold.
&lt;/p&gt;
&lt;p&gt;
Obviously, the longer the password and the wider the range of characters used in constructing
it (upper and lower case letters, numbers, punctuation marks, etc) the more effort
will be needed by the hackers. It&amp;rsquo;s also likely that those with short passwords
based on real words will be cracked first.
&lt;/p&gt;
&lt;p&gt;
I would join Graham Cluley in strongly urging people to change their password on LinkedIn
and anywhere else that they have used the same password. (You would be wise to use
a complex password.) Once a hacker has established your password and linked it to
your identity then they are highly likely to try it elsewhere so that the fruits of
their labour may be better rewarded, possibly with your hard earned cash!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=cda02ddb-8b65-4551-8b52-78a05ac3df37" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,cda02ddb-8b65-4551-8b52-78a05ac3df37.aspx</comments>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0</wfw:commentRss>
      <title>Would You Risk the Wrath of the Information Commissioner?</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0.aspx</link>
      <pubDate>Tue, 10 May 2011 16:00:10 GMT</pubDate>
      <description>&lt;p&gt;
The Information Commissioner's fining of solicitor Andrew Jonathan Crossley is interesting
in several respects and contains an important message for many small businesses.
&lt;/p&gt;
&lt;p&gt;
The &amp;pound;1,000 fine was announced by the &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0&amp;amp;url=http%3a%2f%2fwww.ico.gov.uk"&gt;Information
Commissioner's Office (ICO)&lt;/a&gt; today in a &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0&amp;amp;url=http%3a%2f%2fwww.ico.gov.uk%2f%7e%2fmedia%2fdocuments%2fpressreleases%2f2011%2fmonetary_penalty_acslaw_news_release_20110510.ashx"&gt;press
release&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Mr Crossley was the owner of the law firm ACS Law, which has recently ceased trading.
The firm gained widespread exposure for its aggressive pursuit of those alleged to
have infringed copyright through peer-to-peer file sharing activities in recent years.
It seems that many of those pursued by the firm were probably innocent and I understand
that the only successful prosecutions in this matter were won by default when the
defendants failed to appear in court.
&lt;/p&gt;
&lt;p&gt;
In September 2010, ACS Law's web site was seriously attacked, causing it to crash.
In the subsequent aftermath, a&amp;nbsp;backup file containing emails between ACS Law's
employees and other parties appeared on the web site, which allowed anyone to access
around 6,000 people&amp;rsquo;s sensitive personal information. These emails included
credit card details as well as references to people&amp;rsquo;s sex life, health and financial
circumstances.
&lt;/p&gt;
&lt;p&gt;
The Information Commissioner, Christopher Graham, has made it very clear that had
ACS Law still been trading then the fine could have been as much as &amp;pound;200,000:
&amp;quot;Were it not for the fact that ACS Law has ceased trading so that Mr Crossley
now has limited means, a monetary penalty of &amp;pound;200,000 would have been imposed,
given the severity of the breach&amp;quot;.
&lt;/p&gt;
&lt;p&gt;
I feel this fine is important because it shows that the ICO is prepared to fine SME
organisations large amounts and is also prepared to pursue their owners in cases of
serious breach where the owner is a sole trader.
&lt;/p&gt;
&lt;p&gt;
The Information Commissioner stated that: &amp;quot;The security measures ACS Law had
in place were barely fit for purpose in a person's home environment, let alone a business
handling such sensitive details&amp;quot;. I&amp;nbsp;am often shocked about how poor security
is at SME organisations. Many SME business leaders do not listen to advice about security
matters. I&amp;nbsp;am also afraid to say that many IT suppliers also do not care about
security, preferring to close a&amp;nbsp;sale at any cost. They often fail to make their
customers aware of the risks they face, taking a view that it is the customer&amp;rsquo;s
problem if they don't recognise or understand the issues at stake.
&lt;/p&gt;
&lt;p&gt;
Worse still, many SME firms run their IT systems on a shoestring, avoiding professional
advice wherever possible, and only bring in competent support when things really become
dire.
&lt;/p&gt;
&lt;p&gt;
It is clear that Mr Graham takes a rather dim view of this approach to managing a&amp;nbsp;company's
IT infrastructure. He makes it clear that &amp;quot;Mr&amp;nbsp;Crossley did not seek professional
advice when setting up and developing the IT system which did not include basic elements
such as a&amp;nbsp;firewall and access control. In addition ACS Law's web-hosting package
was only intended for domestic use. Mr Crossley had received no assurances from the
web-host that information would be kept secure.&amp;quot; The Information Commissioner
clearly believes that if you are going to use IT systems then you should do it properly
and not on a&amp;nbsp;shoestring.
&lt;/p&gt;
&lt;p&gt;
If anything, this fine also highlights the importance of taking proper advice and
may presage a greater use of Chartered IT Professionals.
&lt;/p&gt;
&lt;p&gt;
The message must be that if you use IT in your business (whatever your firm's size),
you must take proper advice, you must not try to cut corners and you must not treat
IT security in a cavalier fashion.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,4b1fc10a-4b17-4246-ac0c-4eac3bfd57f0.aspx</comments>
      <category>General</category>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=86c1f624-8823-4e0f-80c8-0fe5c2646111</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,86c1f624-8823-4e0f-80c8-0fe5c2646111.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,86c1f624-8823-4e0f-80c8-0fe5c2646111.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=86c1f624-8823-4e0f-80c8-0fe5c2646111</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>US Diplomatic ‘WikiLeaks’ Inevitable</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,86c1f624-8823-4e0f-80c8-0fe5c2646111.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,86c1f624-8823-4e0f-80c8-0fe5c2646111.aspx</link>
      <pubDate>Fri, 03 Dec 2010 10:42:12 GMT</pubDate>
      <description>&lt;p&gt;
I was interested in what Sir Christopher Meyer (HM Ambassador to the United States
between 1997 and 2003) had to say about WikiLeaks on BBC Question Time last night.
&lt;/p&gt;
&lt;p&gt;
I understand from what he was saying that the United States created a&amp;nbsp;massive
&amp;lsquo;intranet&amp;rsquo; to share intelligence from around the world between their agencies
as part of their response to 11th September 2001 attacks. They wanted a clearer picture
of the emerging threats to the United States.
&lt;/p&gt;
&lt;p&gt;
He suggests that over two and half million people have access to this &amp;lsquo;intranet&amp;rsquo;
and implies that leaks were inevitable.
&lt;/p&gt;
&lt;p&gt;
I feel that there is an important lesson here for any government or commercial enterprise
that tries to build massive databases. The more people who have access, the more likely
there is to be a leak.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=86c1f624-8823-4e0f-80c8-0fe5c2646111" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,86c1f624-8823-4e0f-80c8-0fe5c2646111.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=d860925c-bca8-409c-8de1-3ca9881af97b</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,d860925c-bca8-409c-8de1-3ca9881af97b.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,d860925c-bca8-409c-8de1-3ca9881af97b.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=d860925c-bca8-409c-8de1-3ca9881af97b</wfw:commentRss>
      <title>NHS: Can we trust them with the Patient Summary Care Record Data?</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,d860925c-bca8-409c-8de1-3ca9881af97b.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,d860925c-bca8-409c-8de1-3ca9881af97b.aspx</link>
      <pubDate>Wed, 02 Jun 2010 15:56:23 GMT</pubDate>
      <description>&lt;p&gt;
I find it worrying that the &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=d860925c-bca8-409c-8de1-3ca9881af97b&amp;amp;url=http%3a%2f%2fwww.ico.gov.uk"&gt;Information
Commissioner&amp;rsquo;s Office&lt;/a&gt; (ICO) reports that the NHS is the United Kingdom&amp;rsquo;s
worst offender in terms of keeping personal data, especially in light of the Patient
Summary Care Record scheme, which will eventually hold details from most people&amp;rsquo;s
medical records.
&lt;/p&gt;
&lt;p&gt;
The question for me is simple: Can they be trusted to look after computerised medical
records?
&lt;/p&gt;
&lt;p&gt;
According to a spreadsheet accompanying the ICO&amp;rsquo;s press release of 28th May
2010, the NHS has reported more breaches than any other body to date. The data shows
that these losses have largely been through either lost or stolen data/hardware rather
than insecure disposal or accidental disclosure.
&lt;/p&gt;
&lt;p&gt;
I agree absolutely with David Smith, the Deputy Commissioner, who said: &amp;ldquo;The
ICO maintains it is essential that the protection of people&amp;rsquo;s personal information
is part of organisations&amp;rsquo; culture and DNA.&amp;rdquo;
&lt;/p&gt;
&lt;p&gt;
However, the issue of data protection is clearly wider in scope than our trust in
the NHS&amp;rsquo; ability to keep our data secure.
&lt;/p&gt;
&lt;p&gt;
The press release actually marks the 1,000th breach reported to the ICO, with the
actual number now standing at 1,007. A rough calculation suggests that between one-in-two
and one-in-three people in the United Kingdom have had their personal data compromised.
&lt;/p&gt;
&lt;p&gt;
The ICO have said that although more personal data has been lost by the NHS, the largest
ever breach reported was the &lt;a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=d860925c-bca8-409c-8de1-3ca9881af97b&amp;amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frevella%2fpermalink%2cguid%2c810cfa3b-7472-41e9-b662-b406d0c7e870.aspx"&gt;loss
of 25M people&amp;rsquo;s personal data by HMRC&lt;/a&gt; on two CDs in November 2007.
&lt;/p&gt;
&lt;p&gt;
However, the data shows that the second largest offender collectively is the private
sector, which doesn&amp;rsquo;t surprise me. Worse still, I suspect that most private
sector breaches probably go unreported, so this figure might be the tip of the iceberg.
&lt;/p&gt;
&lt;p&gt;
The ICO is keen to remind organisations that it can now levy fines of up to &amp;pound;500,000
per breach.
&lt;/p&gt;
&lt;p&gt;
If you would like to know more about the new powers the Information Commissioner acquired
in April 2010 and what the outcome might be should you be reckless with personal data
then you might like to read &lt;a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=d860925c-bca8-409c-8de1-3ca9881af97b&amp;amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frevella%2fpermalink%2cguid%2ca5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx"&gt;my
recent blog on data protection&lt;/a&gt;!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=d860925c-bca8-409c-8de1-3ca9881af97b" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,d860925c-bca8-409c-8de1-3ca9881af97b.aspx</comments>
      <category>General</category>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=af84f192-3b2c-45dd-b0c2-76014f4b9ae0</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,af84f192-3b2c-45dd-b0c2-76014f4b9ae0.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,af84f192-3b2c-45dd-b0c2-76014f4b9ae0.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=af84f192-3b2c-45dd-b0c2-76014f4b9ae0</wfw:commentRss>
      <title>Thoughts on The Queen's Speech</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,af84f192-3b2c-45dd-b0c2-76014f4b9ae0.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,af84f192-3b2c-45dd-b0c2-76014f4b9ae0.aspx</link>
      <pubDate>Fri, 28 May 2010 20:46:40 GMT</pubDate>
      <description>&lt;p&gt;
I welcome the two IT related bills in the Queen&amp;rsquo;s Speech.
&lt;/p&gt;
&lt;p&gt;
The Freedom (Great Repeal) Bill will limit the amount of time that the DNA profiles
of innocent people in England and Wales can be held on the national database and will
adopt the Scottish model. This seems to be much more proportionate than holding a
blanket database of everyone&amp;rsquo;s DNA, which was where we seemed to be heading
at one point. I believe that this would have led to all sorts of problems in the future.
I think that this bill now strikes the right balance between bring criminals to justice
and ensuring the privacy and freedom of innocent people.
&lt;/p&gt;
&lt;p&gt;
The bill will also tighten the regulations on the use of CCTV cameras, which seem
to be springing up everywhere. The United Kingdom already has more surveillance than
any other society in the world and we need to be careful about how we are using this
technology. In fact, we must become much more wary about using technology in general
just because we can without first giving proper and due consideration to the longer-term
consequences.
&lt;/p&gt;
&lt;p&gt;
For almost as long as I can remember, I have been concerned about the introduction
of a centralised identity database. Government has not had a good track record in
keeping people&amp;rsquo;s personal data secure and I&amp;nbsp;could see all sorts of abuses
developing around the proposed National Identity Register.
&lt;/p&gt;
&lt;p&gt;
I was alarmed by just how many people initially welcomed the proposals introduced
by the Labour Government in the wake of the recent terrorism atrocities. Many people
were saying that they had &amp;ldquo;nothing to hide&amp;rdquo; and that it was a &amp;ldquo;small
price to pay&amp;rdquo; for safety and security. However, it is clear that the British
People have woken up to the fact that their personal data is extremely valuable and
that such a database would have proved to have been highly intrusive. I think it has
also become increasingly clear just how little protection these measures would actually
offer against terrorism in any event.
&lt;/p&gt;
&lt;p&gt;
Consequently, I welcome the Identity Documents Bill which will cancel identity cards,
the National Identity Register and the next generation of biometric passports. These
were always going to be expensive projects which, in the current economic climate,
we can ill-afford. It was also clear to many IT professionals that the whole programme
was likely to cost far more than the politicians were hoping.
&lt;/p&gt;
&lt;p&gt;
While it might be unpopular with IT practitioners, I also welcome the new administration&amp;rsquo;s
jaded view of using information technology as a&amp;nbsp;silver bullet and I am glad that
the government is looking to shelve a&amp;nbsp;good number of other expensive and ill-conceived
projects. It is not that I think government should avoid IT altogether. It is just
that I am mindful that most government projects do not really deliver the intended
benefits to the public who pay for them.
&lt;/p&gt;
&lt;p&gt;
The simple truth is that government does not have a good track record in implementing
IT projects on time and inside budget. This is partly due to a propensity amongst
politicians to view IT as some sort of &amp;ldquo;magic wand&amp;rdquo; that they can wave
over complex issues with the hope that everything will be magically sorted. However,
it is also, I am afraid, partly due to a lack of ethical practice by many so called
professionals within IT that lead government (and no doubt a good number of private
sector organisations too) into the belief that IT can solve almost everything. As &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=af84f192-3b2c-45dd-b0c2-76014f4b9ae0&amp;amp;url=http%3a%2f%2fwww.guardian.co.uk%2ftechnology%2f2009%2fsep%2f23%2fit-industry-professional-status-bid"&gt;Michael
Cross&lt;/a&gt; said on the Guardian web site some time ago (23rd September 2009): &amp;ldquo;the
IT industry is not shy about talking up its abilities.&amp;rdquo;
&lt;/p&gt;
&lt;p&gt;
The latter point is why I am an ardent advocate of &lt;a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=af84f192-3b2c-45dd-b0c2-76014f4b9ae0&amp;amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frrs%2f2008%2f05%2f18%2fchartered%2bit%2bprofessional%2bcitp.aspx"&gt;Chartered
IT Professionals (CITP)&lt;/a&gt; because central to the ideas that underpin this registration
is the need to work in the public interest and to always take an ethical stance when
providing advice. As I said in my article &amp;ldquo;&lt;a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=af84f192-3b2c-45dd-b0c2-76014f4b9ae0&amp;amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frevella%2fpermalink%2cguid%2c2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx"&gt;IT
Professionals must be Assertive!&lt;/a&gt;&amp;rdquo;, professionalism is about telling the
truth whether the client likes the message, or not. The problem with government (and
others) is that they infinitely prefer to be told something is possible and even better,
that it is cheap. The complexities involved in modern IT means that most politicians
and civil servants must rely on the advice they receive from their IT advisors. For
an unscrupulous consultant, it is easy to promise the earth and forget to mention
until much later that it will also cost the earth.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=af84f192-3b2c-45dd-b0c2-76014f4b9ae0" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,af84f192-3b2c-45dd-b0c2-76014f4b9ae0.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=814b0f4d-d3d0-4f22-982e-bcbc3b790fc6</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,814b0f4d-d3d0-4f22-982e-bcbc3b790fc6.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,814b0f4d-d3d0-4f22-982e-bcbc3b790fc6.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=814b0f4d-d3d0-4f22-982e-bcbc3b790fc6</wfw:commentRss>
      <title>McAfee Update Causes Windows XP SP3 Machines to Fail Worldwide</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,814b0f4d-d3d0-4f22-982e-bcbc3b790fc6.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,814b0f4d-d3d0-4f22-982e-bcbc3b790fc6.aspx</link>
      <pubDate>Wed, 21 Apr 2010 20:34:45 GMT</pubDate>
      <description>&lt;p&gt;
I imagine that 21st April 2010 will be a day that McAfee will remember for sometime
to come and probably one they would much prefer to forget!
&lt;/p&gt;
&lt;p&gt;
The antivirus vendor issued its daily security update DAT5958 at 06:00 PDT (GMT-7),
but by 13:00 BST (GMT+1) the update was wreaking havoc on many corporate networks
in the United Kingdom, let alone the rest of the world!
&lt;/p&gt;
&lt;p&gt;
The update affected Windows XP machines with Service Pack 3 applied, falsely detecting
the svchost.exe file as Win32/wecorl.a. The vendor&amp;rsquo;s VirusScan product essentially
prevented the svchost.exe file from running, causing Windows to endlessly reboot in
many cases.
&lt;/p&gt;
&lt;p&gt;
McAfee acted fairly quickly by pulling the affected virus definition file (DAT5958)
from their download servers, preventing more customers from becoming involved in what
must be one of the worst update issues to impact corporate networks for some time.
&lt;/p&gt;
&lt;p&gt;
They released DAT5959 to replace the affected virus definition file at around 10:15
PDT (GMT-7).
&lt;/p&gt;
&lt;p&gt;
This incident comes on the back of reports that many modern anti-virus products are
failing to detect malware. I&amp;rsquo;ve just been reviewing &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=814b0f4d-d3d0-4f22-982e-bcbc3b790fc6&amp;amp;url=http%3a%2f%2fwww.cyveillance.com"&gt;Cyveillance&amp;rsquo;s&lt;/a&gt; February
2010 Cyber Intelligence Report, which suggests McAfee detects around 37% of emerging
threats on a daily basis (based on data from the last half of 2009). Kaspersky came
out on top with a&amp;nbsp;daily detection rate of 38%, but many were much poorer - such
as Symantec on 25%.
&lt;/p&gt;
&lt;p&gt;
The time for relying on straight-forward anti-virus products seems to be coming to
an end&amp;hellip;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=814b0f4d-d3d0-4f22-982e-bcbc3b790fc6" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,814b0f4d-d3d0-4f22-982e-bcbc3b790fc6.aspx</comments>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=a5f8a4a5-276a-424d-9c8d-31a8541accdf</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,a5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,a5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=a5f8a4a5-276a-424d-9c8d-31a8541accdf</wfw:commentRss>
      <title>Data Protection Act 1998</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,a5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,a5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx</link>
      <pubDate>Wed, 27 Jan 2010 16:21:41 GMT</pubDate>
      <description>&lt;p&gt;
I suspect many businesses and probably most members of the general public are unaware
that the fees for notification under the Data Protection Act 1998 were changed with
effect from 1st October 2009. The change was made through The Data Protection (Notification
and Notification Fees) (Amendment) Regulations 2009 Statutory Instrument 2009/1677
laid before Parliament by Michael Willis, Minister of State in the Ministry of Justice,
on 6th July 2009.
&lt;/p&gt;
&lt;div&gt;The annual notification fee has been &amp;pound;35 for all data controllers, regardless
of their size, since 2000. However, from 1st October 2009, two-tiers of fees have
been in force.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Essentially, small and medium sized-organisations with fewer than 250 employees &lt;em&gt;or &lt;/em&gt;less
than &amp;pound;25.9M turnover continue to pay &amp;pound;35 annually and are now defined
as &amp;ldquo;Tier 1&amp;rdquo; organisations. All other bodies (including any public authorities
defined in the 1998 act) will now fall into &amp;ldquo;Tier 2&amp;rdquo; and must pay &amp;pound;500
annually.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;I think the general public have come to realise over the last couple of years
just how important their data is and how easily it can be lost by cavalier organisations
(including government departments!)
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;I welcome the change in the fee structure &lt;em&gt;provided&lt;/em&gt; the extra funds taken
are used to increase the Information Commissioner&amp;rsquo;s capability to ensure all
of our private data is kept more securely by those with whom it is entrusted and that
those who flagrantly breach the rules are brought to task.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Many businesses see the current fee as a stealth tax and I suspect a&amp;nbsp;good
number of the general public too. However, I hope with the increased funding that
the Information Commissioner will be seen to be doing more to actively protect the
public from cavalier data controllers by everybody.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;These fee increases have been introduced ahead of new powers that will come into
effect in April 2010 that will allow the &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=a5f8a4a5-276a-424d-9c8d-31a8541accdf&amp;amp;url=http%3a%2f%2fwww.ico.gov.uk"&gt;Information
Commissioner&lt;/a&gt; to fine people and organisations that recklessly breach any of the
eight principles that underpin the act.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;These new powers were introduced as part of the Criminal Justice and Immigration
Act 2008, but&amp;nbsp;will only come into force in April 2010.&amp;nbsp;&amp;nbsp;The Information
Commissioner will only be able to fine data controllers when one or more of the eight
principles have been seriously breached in cases where the breach was deliberate,
or where the controller knew (or ought to have known) that the risk of such a breach
was likely to cause substantial damage or distress; and the controller failed to take
action to stop it.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;Hopefully, these new teeth will work in tandem with the new funding to ensure
all of our personal data is kept much more safely.
&lt;/div&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=a5f8a4a5-276a-424d-9c8d-31a8541accdf" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,a5f8a4a5-276a-424d-9c8d-31a8541accdf.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=f6d16f49-67d1-423c-a60c-b41ce9fdd552</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,f6d16f49-67d1-423c-a60c-b41ce9fdd552.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,f6d16f49-67d1-423c-a60c-b41ce9fdd552.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=f6d16f49-67d1-423c-a60c-b41ce9fdd552</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just a quick update to <a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frevella%2fpermalink%2cguid%2c30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx">my
earlier blog</a> regarding the problems currently being faced by the University of
Exeter. It seems the virus is exploiting known flaws in the Microsoft Vista and Microsoft
Server 2008 platforms.
</p>
        <p>
          <a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;url=http%3a%2f%2fblogs.zdnet.com%2figeneration%2f%3fp%3d3954">Zack
Whittacker</a>, who blogs for ZDNet, has a source inside the university here in Exeter.
Apparently, the virus is mainly targeting Vista SP2 machines and the IT staff at the
university are trying to use patch <a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;url=http%3a%2f%2fsupport.microsoft.com%2fkb%2f975517">MS09-050</a> to
reduce the attack surface.
</p>
        <p>
It is understood that this virus has not been seen outside of the Exeter campus, but
clearly demonstrates the disruption that a carefully crafted attack can cause.
</p>
        <p>
There is a suggestion in Whittacker's blog that some critical patches had not been
applied (using the Microsoft System Update Service).
</p>
        <p>
We strongly believe that machines should regularly be checked to ensure that patches
that should have been applied, actually have been applied. If the loop is not
closed in this manner then these sorts of problems are eventually inevitable.
</p>
        <p>
We are concerned that many SMEs, who often do not patch properly, may be at considerable
risk if this virus escapes the Exeter campus.
</p>
        <p>
In addition, I remain concerned about the zero-day virus threat. A virus that spreads
quickly and easily such as this one, that exploits a flaw such as the one in Internet
Explorer that saw Google hacked in China, with a drive-by infection capability on
a site such as any of the international versions of Google would lead to huge economic
disruption across the globe.
</p>
        <p>
For starters, many people set Google as their home page, so in this apocalyptic scenario,
they would be infected and spreading such a virus internally inside the organisational
firewall without detection or defence the moment they went online...
</p>
        <img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552" />
        <br />
        <hr />
This weblog is produced by <a href="http://www.rrs.co.uk">Revell Research Systems</a>.</body>
      <title>More on the Exeter University Virus</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,f6d16f49-67d1-423c-a60c-b41ce9fdd552.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,f6d16f49-67d1-423c-a60c-b41ce9fdd552.aspx</link>
      <pubDate>Wed, 20 Jan 2010 21:11:14 GMT</pubDate>
      <description>&lt;p&gt;
Just a quick update to &lt;a href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;amp;url=http%3a%2f%2fblogs.rrs.co.uk%2frevella%2fpermalink%2cguid%2c30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx"&gt;my
earlier blog&lt;/a&gt; regarding the problems currently being faced by the University of
Exeter. It seems the virus is exploiting known flaws in the Microsoft Vista and Microsoft
Server 2008 platforms.
&lt;/p&gt;
&lt;p&gt;
&lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;amp;url=http%3a%2f%2fblogs.zdnet.com%2figeneration%2f%3fp%3d3954"&gt;Zack
Whittacker&lt;/a&gt;, who blogs for ZDNet, has a source inside the university here in Exeter.
Apparently, the virus is mainly targeting Vista SP2 machines and the IT staff at the
university are trying to use patch &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552&amp;amp;url=http%3a%2f%2fsupport.microsoft.com%2fkb%2f975517"&gt;MS09-050&lt;/a&gt; to
reduce the attack surface.
&lt;/p&gt;
&lt;p&gt;
It is understood that this virus has not been seen outside of the Exeter campus, but
clearly demonstrates the disruption that&amp;nbsp;a carefully crafted attack can cause.
&lt;/p&gt;
&lt;p&gt;
There is a suggestion in Whittacker's blog that some critical patches had not been
applied (using the Microsoft System Update Service).
&lt;/p&gt;
&lt;p&gt;
We strongly believe that machines should regularly be checked to ensure that patches
that should have been applied, actually&amp;nbsp;have been applied. If the loop is not
closed in this manner then these sorts of problems are eventually inevitable.
&lt;/p&gt;
&lt;p&gt;
We are concerned that many SMEs, who often do not patch properly, may be at considerable
risk if this virus escapes the Exeter campus.
&lt;/p&gt;
&lt;p&gt;
In addition, I remain concerned about the zero-day virus threat. A virus that spreads
quickly and easily such as this one, that exploits a flaw such as the one in Internet
Explorer that saw Google hacked in China, with a drive-by infection capability on
a site such as any of the international versions of Google would lead to huge economic
disruption across the globe.
&lt;/p&gt;
&lt;p&gt;
For starters, many people set Google as their home page, so in this apocalyptic scenario,
they would be infected and spreading such a virus internally inside the organisational
firewall without detection or defence the moment they went online...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=f6d16f49-67d1-423c-a60c-b41ce9fdd552" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,f6d16f49-67d1-423c-a60c-b41ce9fdd552.aspx</comments>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=30d6e847-5229-4fdf-927c-4f8ee89359c8</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=30d6e847-5229-4fdf-927c-4f8ee89359c8</wfw:commentRss>
      <title>Exeter University Shutdown!</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx</link>
      <pubDate>Wed, 20 Jan 2010 17:02:17 GMT</pubDate>
      <description>&lt;p&gt;
It seems that the &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8&amp;amp;url=http%3a%2f%2fwww.ex.ac.uk"&gt;University
of Exeter&lt;/a&gt; is currently in the middle of a&amp;nbsp;major virus outbreak, which has
led to their IT team shutting down the &lt;em&gt;entire campus network&lt;/em&gt;, including their
telephone system in an attempt to contain the problem.
&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;
The attack appears to have started on Monday. The&amp;nbsp;campus network was shutdown
at around 2:00pm as a direct response to the threat. However, the problems seem to
be continuing today (Wednesday).
&lt;/p&gt;
&lt;p&gt;
The university&amp;rsquo;s home page suggests that staff and students are only able to
access email externally using home computers and the like.
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;
The communications advice issued by the university says that it &amp;ldquo;is currently
experiencing a severe IT incident, and as a precautionary measure we&amp;rsquo;ve taken
much of our network offline. Parts of the University are being brought back online
today as soon as it is safe to do so. The University switchboard is online and can
accept calls, but we are unable to transfer them to some affected areas of the University.&amp;rdquo;
&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;
Sources in Exeter suggest that the virus has not been identified, but it is thought
that the university was deliberately targeted. Stuart Franklin, a&amp;nbsp;spokesman for
the university, speaking to the local evening paper, the &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8&amp;amp;url=http%3a%2f%2fwww.expressandecho.co.uk"&gt;Express
&amp;amp; Echo&lt;/a&gt;, said: &amp;ldquo;We were attacked by a virus. It was a malicious attack.
It is the first time I have known such an attack to succeed.&amp;rdquo;
&lt;/p&gt;
&lt;p&gt;
It seems clear that this virus is extremely virulent and has managed to spread quickly
and easily. This strongly suggests&amp;nbsp;that it managed to circumvent the university&amp;rsquo;s
antivirus systems and may have been akin to a zero-day virus.
&lt;/p&gt;
&lt;p&gt;
Although a difficult decision, I believe that closing down the infrastructure in such
circumstances is the right thing to do.
&lt;/p&gt;
&lt;p&gt;
This incident should provide &lt;em&gt;food for thought for many organisations&lt;/em&gt;. The
cost of closing down a network is extremely expensive in terms of lost revenue and
opportunities, even before the sheer amount of professional time spent checking systems
and returning them to service is taken into consideration.
&lt;/p&gt;
&lt;p&gt;
In fact, this sort of attack can cause immense damage to an organisation and is relatively
easy to perpetrate, which has not escaped the notice of &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8&amp;amp;url=http%3a%2f%2fwww.lloyds.com"&gt;Lloyd&amp;rsquo;s
of London&lt;/a&gt; Emerging Risks Team in their October 2009 report: &amp;lsquo;Digital Risks:
Views of a Changing Risk Landscape&amp;rsquo;. The report states that &amp;ldquo;The value
of data can vary enormously, but for some organisations it could mean bankruptcy.&amp;rdquo;
&lt;/p&gt;
&lt;p&gt;
The interesting aspect to this attack is that the university believes it was &amp;ldquo;hit
by the virus deliberately&amp;rdquo;.
&lt;/p&gt;
&lt;p&gt;
I think we may see an increase in this sort of attack in the future. The recession
has been very deep and many people with criminal intent and technical capability across
the world may turn to cyber-crime.
&lt;/p&gt;
&lt;p&gt;
In the first two weeks of January, we&amp;rsquo;ve seen the national governments of France
and Germany warn their citizens about &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8&amp;amp;url=http%3a%2f%2fwww.microsoft.com%2ftechnet%2fsecurity%2fadvisory%2f979352.mspx"&gt;security
flaws in Internet Explorer&lt;/a&gt; after an attack on Google&amp;rsquo;s site in China (along
with some 20 other organisations), which &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8&amp;amp;url=http%3a%2f%2fnews.bbc.co.uk%2f1%2fhi%2ftechnology%2f8460819.stm"&gt;Microsoft
admitted late last week&lt;/a&gt; were part of the attack mechanism. The code that exploits
these particular flaws were published on Monday, 18th January 2010 and there are already
some reports of it being used maliciously.
&lt;/p&gt;
&lt;p&gt;
Although the problems at the University of Exeter and the issues with Internet Explorer
are probably not connected, the trend for increased, malicious attacks is clear.&amp;nbsp;
&lt;/p&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=30d6e847-5229-4fdf-927c-4f8ee89359c8" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,30d6e847-5229-4fdf-927c-4f8ee89359c8.aspx</comments>
      <category>Security</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=2467005f-248a-49ae-8a24-fa6c025c9dbf</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=2467005f-248a-49ae-8a24-fa6c025c9dbf</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>IT Professionals must be Assertive!</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx</link>
      <pubDate>Wed, 02 Dec 2009 17:46:49 GMT</pubDate>
      <description>&lt;p&gt;
I&amp;rsquo;ve been mulling over Michael Cross&amp;rsquo; article of 23rd September 2009 for
the Guardian web site for a while now, which was written in response to The British
Computer Society rebranding itself as &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=2467005f-248a-49ae-8a24-fa6c025c9dbf&amp;amp;url=http%3a%2f%2fwww.bcs.org"&gt;BCS
The Chartered Institute for IT&lt;/a&gt; and announcing that it was revising its process
for Chartered IT Professional (CITP) registration.
&lt;/p&gt;
&lt;p&gt;
The article sported the contentious title: &lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=2467005f-248a-49ae-8a24-fa6c025c9dbf&amp;amp;url=http%3a%2f%2fwww.guardian.co.uk%2ftechnology%2f2009%2fsep%2f23%2fit-industry-professional-status-bid"&gt;&amp;ldquo;IT
can have its professionals, if they don&amp;rsquo;t get stroppy&amp;rdquo;&lt;/a&gt; with a subtitle
of &amp;ldquo;Government and employers will not recognise IT &amp;lsquo;professionals&amp;rsquo;
if they are demanding as doctors and lawyers.&amp;rdquo;&amp;nbsp;
&lt;/p&gt;
&lt;div&gt;Mr Cross&amp;rsquo; article highlights the tight rope that the Chartered Institute
for IT walks as it tries to raise the level of professionalism in IT. The government
is currently very supportive of the Institute&amp;rsquo;s moves to raise the bar in the
IT profession, but Mr Cross rightly points out that &amp;ldquo;the trend could swiftly
go into reverse if a new government finds IT professionals to be as stroppy and independent-minded
as they find doctors and lawyers today.&amp;rdquo;
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;He continues: &amp;ldquo;Governments like taking expert advice &amp;ndash; but only if
it&amp;rsquo;s &amp;lsquo;Yes, minister&amp;rsquo;&amp;rdquo;, which certainly seems to be true with
the recent resignations from various expert advisory panels because they apparently
didn&amp;rsquo;t say what the current government wanted to hear.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;The problem, of course, is that so called &amp;ldquo;stroppiness&amp;rdquo; is an important
aspect of professionalism. A professional has a duty to their client to advise them
when their actions are contrary to their professional advice and to point out the
probable consequences.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;It is precisely this lack of professional ethics that causes much of the damage
to the public purse and, no doubt, many private purses too. As Cross chides in his
article, &amp;ldquo;the IT industry isn&amp;rsquo;t shy about talking up its abilities&amp;rdquo;
and he rams the point home with the anecdote that he has a corporate t-shirt that
boasts a company slogan of &amp;ldquo;Mission impossible achieved&amp;rdquo;.
&lt;/div&gt;
&lt;div&gt;&amp;nbsp;
&lt;/div&gt;
&lt;div&gt;A major problem with the IT industry is that it is too heavily driven by sales
hype that plays on the naivety of easily persuaded customers. Professionalism, on
the other hand, is about telling the truth, whether the client likes the message,
or not.
&lt;/div&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=2467005f-248a-49ae-8a24-fa6c025c9dbf" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,2467005f-248a-49ae-8a24-fa6c025c9dbf.aspx</comments>
      <category>General</category>
      <category>IT Profession</category>
    </item>
    <item>
      <trackback:ping>http://blogs.rrs.co.uk/revella/Trackback.aspx?guid=20d3fce2-00e4-4a54-a70e-61b905bc2eab</trackback:ping>
      <pingback:server>http://blogs.rrs.co.uk/revella/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.rrs.co.uk/revella/PermaLink,guid,20d3fce2-00e4-4a54-a70e-61b905bc2eab.aspx</pingback:target>
      <dc:creator>Alastair Revell</dc:creator>
      <wfw:comment>http://blogs.rrs.co.uk/revella/CommentView,guid,20d3fce2-00e4-4a54-a70e-61b905bc2eab.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.rrs.co.uk/revella/SyndicationService.asmx/GetEntryCommentsRss?guid=20d3fce2-00e4-4a54-a70e-61b905bc2eab</wfw:commentRss>
      <title>Rural Payments Agency: More Government Data Loss</title>
      <guid isPermaLink="false">http://blogs.rrs.co.uk/revella/PermaLink,guid,20d3fce2-00e4-4a54-a70e-61b905bc2eab.aspx</guid>
      <link>http://blogs.rrs.co.uk/revella/PermaLink,guid,20d3fce2-00e4-4a54-a70e-61b905bc2eab.aspx</link>
      <pubDate>Sat, 31 Oct 2009 15:01:56 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a target="_blank" href="http://blogs.rrs.co.uk/revella/ct.ashx?id=20d3fce2-00e4-4a54-a70e-61b905bc2eab&amp;amp;url=http%3a%2f%2fwww.fwi.co.uk%2farticles%2f2009%2f10%2f29%2f118497%2fexclusive-rpa-loses-farmers39-bank-details.htm"&gt;Farmers
Weekly&lt;/a&gt; has reported that the Rural Payments Agency (RPA) has lost the payment
details of every farmer in the United Kingdom that has ever claimed a farm payment.
The details include names and addresses, bank details, passwords and security questions
and apparently were not encrypted. The number of farmers affected is believed to be
around 100,000.
&lt;/p&gt;
&lt;p&gt;
The details were leaked to Farmers Weekly by frustrated civil servants working on
the single payments system and an external consultant who was advising on the system.
&lt;/p&gt;
&lt;p&gt;
The whistle-blowers allege that 39 backup tapes went missing last year when they were
transferred from offices in Reading to Newcastle. Thirty-seven tapes have been recovered,
but two are still unaccounted for.
&lt;/p&gt;
&lt;p&gt;
The whistle-blowers were concerned that the RPA and DEFRA would remain tight-lipped
over the incident. According to Farmers Weekly, DEFRA has admitted that tapes went
missing, but has told them that the data was not lost in transit and was instead misplaced
within the data centre.
&lt;/p&gt;
&lt;p&gt;
DEFRA has also admitted that the data on the tapes was not encrypted, but insists
information could not be accessed without specialised technical equipment and knowledge.
The government department has also insisted that the risks posed to farmers are very
low.
&lt;/p&gt;
&lt;p&gt;
Apparently, the tapes were last seen in June 2008, but were discovered as missing
by the contractor, IBM, in May 2009. There loss has only just become public knowledge
in late October 2009.
&lt;/p&gt;
&lt;p&gt;
Obviously, this will do little to bolster the general public&amp;rsquo;s justifiable lack
of confidence in the government&amp;rsquo;s ability to safe-guard their data. The question
is soon going to be what data has the government not lost!
&lt;/p&gt;
&lt;p&gt;
However, as I have said before, I do not believe that the government is actually anymore
cavalier with data than the private sector. It is just that the government is an easier
target to expose. I believe the data handling procedures of many commercial organisations
are equally poor.
&lt;/p&gt;
&lt;p&gt;
This most recent loss has barely hit the headlines, probably because it is no longer
newsworthy to say that the government leaks like a colander. The next organisation
to be vilified by the press for data loss may well come from the private sector&amp;hellip;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.rrs.co.uk/revella/aggbug.ashx?id=20d3fce2-00e4-4a54-a70e-61b905bc2eab" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
This weblog is produced by &lt;a href="http://www.rrs.co.uk"&gt;Revell Research Systems&lt;/a&gt;.</description>
      <comments>http://blogs.rrs.co.uk/revella/CommentView,guid,20d3fce2-00e4-4a54-a70e-61b905bc2eab.aspx</comments>
      <category>Security</category>
    </item>
  </channel>
</rss>