<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[[SecurityRatty] tag: microsoft]]></title>
    <link>http://www.securityratty.com/tag/microsoft</link>
    <description></description>
    <pubDate>Mon, 18 Aug 2008 03:30:35 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[SDL and the XSS Filter]]></title>
      <link>http://www.securityratty.com/article/ce479edf032699e552a4cb52750d1f63</link>
      <guid>http://www.securityratty.com/article/ce479edf032699e552a4cb52750d1f63</guid>
      <description><![CDATA[Steve Lipner here. When the Internet Explorer team posted the announcement about the XSS Filter feature in IE8 I asked some other members of the SDL blog team why arent we talking about the new XSS...]]></description>
      <content:encoded><![CDATA[<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face=Calibri size=3>Steve Lipner here.<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>When the Internet Explorer team posted the announcement about the </FONT><A href="http://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-iv-the-xss-filter.aspx"><FONT face=Calibri color=#0000ff size=3>XSS Filter feature in IE8</FONT></A><FONT size=3><FONT face=Calibri> <SPAN style="mso-spacerun: yes">&nbsp;</SPAN>I asked some other members of the SDL blog team “why aren’t we talking about the new XSS Filter feature on the SDL blog?” &nbsp;Bryan and Jeremy said something like “that’s a mitigation that only applies to specific clients and a subset of attacks”.&nbsp; So we didn’t cross-reference IE’s XSS Filter post on the SDL blog at the time.&nbsp; Instead, I agreed to write a subsequent post about the relationship of XSS Filter to the SDL and to the ways that our SDL and security science teams think about improving product security.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face=Calibri size=3>For those of you who aren’t familiar with XSS Filter, a brief summary is that it is a client-side defense against reflected cross-site scripting (XSS) attacks.&nbsp; It works by recognizing that reflected XSS attacks inject script into the string that the browser sends to the targeted web server.&nbsp; If the server doesn’t neuter or strip out the injected script, it gets sent back to the browser and executed in the context of the target web page.&nbsp; Bad things then happen.&nbsp; At a high level, XSS Filter remembers the string that the browser sent to the server, and looks at the server’s response to see if any of the script was actually in that string.&nbsp; If it was, then XSS Filter decides that it got there because it was injected by an XSS attack and blocks the script from executing.&nbsp; The rest of the web page renders as usual.&nbsp; This is a vastly oversimplified sketch of XSS Filter – for details, see the post by David Ross, inventor of XSS Filter on the </FONT><A href="http://blogs.technet.com/swi/archive/2008/08/19/ie-8-xss-filter-architecture-implementation.aspx"><FONT face=Calibri color=#0000ff size=3>Security Vulnerability Research and Defense blog</FONT></A><FONT size=3><FONT face=Calibri>.<o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT size=3><FONT face=Calibri>So what does XSS Filter have to do with the SDL?&nbsp; Well, for almost nine years, since XSS was first discovered at Microsoft, we’ve been trying to figure out effective ways to reduce vulnerability to XSS attacks.&nbsp; Our focus has been on improving the ways that web page developers code their pages, and we’ve developed a lot of tools and techniques for making web content safer from XSS attacks and for detecting XSS vulnerabilities in live pages.&nbsp; The SDL requires the use of many of these tools and techniques, and we’re sure we’ve prevented a lot of XSS vulnerabilities from being introduced into Microsoft web pages as a result.&nbsp; <o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT size=3><FONT face=Calibri>But while we identify (and the SDL requires) measures that allow developers to avoid classes of vulnerabilities, we also look to identify more sweeping solutions that can either 1) eliminate classes of vulnerabilities, 2) reduce their severity, or 3) reduce the likelihood of attacks being successful.&nbsp; The process usually starts from deep understanding of a class of vulnerabilities and attacks, and then we broaden defenses from there.&nbsp; In the case of XSS Filter, David’s years of work researching XSS led him to come up with an approach that blocks many of the most common vulnerabilities to reflected attacks found on the web today.&nbsp; The solution is compatible with existing web pages (doesn’t “break the web”) and thus we were able to enable it by default for users of Internet Explorer 8.&nbsp; Because it’s a client-side mitigation, it will help protect users from attacks even though the sites they visit may be vulnerable to XSS.&nbsp; <o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face=Calibri size=3>Our work on buffer overrun defenses follows a somewhat similar pattern – we started by prescribing coding techniques, banning the use of some APIs, and building tools that detect coding constructs that look like buffer overruns.&nbsp; As we gained a deeper understanding of how buffer overruns can be exploited, we enhanced the </FONT><A href="http://msdn.microsoft.com/en-us/library/8dbf701c(VS.80).aspx"><FONT face=Calibri size=3>/GS compiler flag</FONT></A><FONT face=Calibri size=3> and added </FONT><A href="http://blogs.msdn.com/michael_howard/archive/2006/05/26/address-space-layout-randomization-in-windows-vista.aspx"><FONT face=Calibri color=#0000ff size=3>ASLR</FONT></A><FONT size=3><FONT face=Calibri> in a quest to cause classes of exploits to fail even if a buffer overrun remains.&nbsp; We’re not yet close to eliminating the SDL requirements for use of tools and coding techniques, but the SDL also requires the use of the mitigations to reduce the severity of vulnerabilities that slip past.&nbsp; Will we ever get to the point where the mitigating technologies are so strong that we can relax the coding requirements?&nbsp; Maybe not, but we will continue to introduce technologies that reduce the chances of a successful attack.<o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face=Calibri size=3>Similarly, in the case of XSS, even after IE8 ships, the SDL will continue to require the use of safe web site coding practices and tools such as the </FONT><A href="http://msdn.microsoft.com/en-us/library/aa973813.aspx"><FONT face=Calibri color=#0000ff size=3>Anti-XSS library</FONT></A><FONT size=3><FONT face=Calibri> both to protect users of browsers other than IE8 and to provide protection in recognition of the fact that XSS Filter is a mitigation or defense in depth rather than a complete solution.<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>But we’ll also be keeping our eyes open (and doing active research) in the quest for an even more effective defense – whether client or server side – that eliminates XSS for good.<o:p></o:p></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><o:p><FONT face=Calibri size=3>&nbsp;</FONT></o:p></P>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><FONT face=Calibri size=3>This post is a little far afield from the normal content of the SDL blog, but I thought it was important to provide a picture of the role of security science and security research in defining SDL requirements and in making major improvements in software security.&nbsp; You can read more about our work in security science in the </FONT><A href="http://blogs.technet.com/swi/default.aspx"><FONT face=Calibri color=#0000ff size=3>Security Vulnerability Research and Defense blog</FONT></A><FONT size=3><FONT face=Calibri>.</FONT></FONT></P><img src="http://blogs.msdn.com/aggbug.aspx?PostID=8900490" width="1" height="1">]]></content:encoded>
      <pubDate>Wed, 27 Aug 2008 11:35:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/xss">xss</category>
      <category domain="http://www.securityratty.com/tag/xss filter">xss filter</category>
      <category domain="http://www.securityratty.com/tag/xss vulnerabilities">xss vulnerabilities</category>
      <category domain="http://www.securityratty.com/tag/xss led">xss led</category>
      <category domain="http://www.securityratty.com/tag/anti-xss library">anti-xss library</category>
      <category domain="http://www.securityratty.com/tag/xss attack">xss attack</category>
      <category domain="http://www.securityratty.com/tag/xss attacks">xss attacks</category>
      <category domain="http://www.securityratty.com/tag/attacks">attacks</category>
      <category domain="http://www.securityratty.com/tag/xss filter remembers">xss filter remembers</category>
      <source url="http://blogs.msdn.com/sdl/archive/2008/08/27/sdl-and-the-xss-filter.aspx">SDL and the XSS Filter</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #81: iSkoot vulnerability, OFCOM legislation, VoIP security news and more]]></title>
      <link>http://www.securityratty.com/article/133c80b2a9536649a83e82483659eb92</link>
      <guid>http://www.securityratty.com/article/133c80b2a9536649a83e82483659eb92</guid>
      <description><![CDATA[Synopsis: Blue Box #80: VoIPShield vulnerabilities, what is ethical disclosure?, SIP trunking, VoIP security news, new nomadism, and much more
Welcome to Blue Box: The VoIP Security Podcast #80, a...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong>&nbsp; Blue Box #80: VoIPShield vulnerabilities, what is ethical disclosure?, SIP trunking, VoIP security news, new nomadism, and much more...</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #80, a 44-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://media.libsyn.com/media/lodestar/BBP-081-2008-05-21.mp3">Download the show here</a> (MP3, 19MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p>

<p><strong>NOTE: </strong><em>This show was originally recorded on April 21, 2008. </em></p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-081-2008-05-21.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-081-2008-05-21.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!</li>
<li>Programming notes:
	<ul>
	<li>Note about the hiatus</li>
	</ul>
<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/04/26/are-your-skype-username-and-password-completely-exposed-if-you-use-iskoot/">Are your Skype username and password completely exposed if you use iSkoot?</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/04/28/chronology-of-the-blogosphere-and-iskoot-weekend-response-to-the-iskoot-security-issue/">Chronology</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/04/28/iskoot-disclosure-of-skype-credentials-resolved-new-version-by-wednesday/">iSkoot disclosure of Skype credentials resolved &#8211; new version by Wednesday</a></li>
<li><a href="http://www.ofcom.org.uk/media/news/2007/12/nr_22071205">Ofcom confirms VoIP providers must provide access to 999 and 112</a> &#8211; and Hannes Tschofenig points to <a href="http://www.emergency-services-coordination.info/esw4.html">4th Emergency Services Coordination Workshop</a> and <a href="http://www.tschofenig.priv.at/twiki/pub/EmergencyServices/EswAgenda2008/BT-ES_SDO_April_08.ppt">presentation about the UK</a></li>
<li>MarketingVOX: <a href="http://www.marketingvox.com/british-proposal-may-force-isps-to-fork-over-online-activity-emails-voip-calls-038702/">British Proposal May Force ISPs to Fork Over Online Activity, Emails, <span class="caps">VOIP </span>Calls</a> pointing to Reuters article: <a href="http://www.reuters.com/article/lifestyleMolt/idUSL2076461020080520">Britain mulls plan to store all email and calls</a></li>

<p><li>Enterprise VoIP Planet: <a href="http://www.voipplanet.com/solutions/article.php/3747161">VoIP Security: <span class="caps">SIP</span>-Versatile but Vulnerable</a></li><br />
		<li><span class="caps">IT </span>Business Edge: <a href="http://www.itbusinessedge.com/blogs/cip/?p=343">Pay Attention to VoIP Security Before The Storm</a></li></p>

<p><li>NetworkWorld: <a href="http://www.pcworld.com/businesscenter/article/145272/guide_to_voip_security.html">Business Guide to VoIP Security</a></li><br />
<li>Pocket-lint: <a href="http://www.pocket-lint.co.uk/news/news.phtml/14768/15792/Fraudsters-targeting-internet-phone-services.phtml">Fraudsters targeting VoIP Users</a> based on <a href="http://www.voip-news.co.uk/2008/05/21/newport-networks-highlights-voip-security/">report out of Newport Networks</a> (reported in VoIP News) &#8211; also covered at Fierce VoIP: <a href="http://www.fiercevoip.com/story/newport-networks-riles-voip-security-fears/2008-05-18">Newport Networks riles up VoIP Security Fears</a> and Computeractive: <a href="http://www.computeractive.co.uk/personal-computer-world/news/2216851/phreak-voip">Phreak-out over VoIP</a> and <a href="http://www.thetechherald.com/article.php/200821/1017/Newport-Networks-raises-VoIP-identity-theft-concerns">TechHerald article</a></li><br />
<li>Network World: <a href="http://www.networkworld.com/newsletters/converg/2008/042808converge1.html">Security and management considerations when deploying <span class="caps">OCS</span></a></li><br />
<li>LXer: <a href="http://lxer.com/module/newswire/view/102328/">Secure Calling Initiative Reaches Second Milestone</a> pointing to <a href="http://www.gnutelephony.org/index.php/Secure_Call">Secure Calling Initiative</a></li><br />
	<br />
	<li>[H]Enthusiast: <a href="http://www.hardocp.com/news.html?news=MzI0NjMsLCxoZW50aHVzaWFzdCwsLDE">Mobile Phones, VoIP Not Secure, Experts Warn</a>=</li><br />
	<br />
	<li>VoIP News: <a href="http://www.voip-news.com/feature/essential-guide-voip-privacy-042308/">The Essential Guide to VoIP Privacy</a></li><br />
	<br />
	<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/04/18/information-week-interviews-securelogix-about-voip-security/">Information Week interviews SecureLogix about VoIP security</a></li><br />
<li>eWeek: <a href="http://www.eweek.com/c/a/Knowledge-Center/VoIP-Security-through-Responsible-Software-Development/">VoIP Security through Responsible Software Development</a></li><br />
<li><a href="http://techdirt.com/articles/20080429/095514977.shtml">Microsoft gives back door keys to Vista to police</a></li><br />
<li>Comment (blog) from <a href="http://www.blueboxpodcast.com/2008/03/blue-box-77-sky.html#comment-108655562">Martyn Davies</a></li><br />
		<li>Comment (email) from Detlef</li><br />
		<li>Comment (email) from Dan McGinn-Combs</li><br />
<li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li><br />
<li>Wrap-up of the show </li><br />
<li>41:43 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></p></div>

<p><a href="http://feeds.feedburner.com/~a/BlueBox?a=labVEA"><img src="http://feeds.feedburner.com/~a/BlueBox?i=labVEA" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BlueBox?a=PJqInK"><img src="http://feeds.feedburner.com/~f/BlueBox?i=PJqInK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=DKnQRK"><img src="http://feeds.feedburner.com/~f/BlueBox?i=DKnQRK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=0ojlsK"><img src="http://feeds.feedburner.com/~f/BlueBox?i=0ojlsK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=zQkKxK"><img src="http://feeds.feedburner.com/~f/BlueBox?i=zQkKxK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=j1XWBk"><img src="http://feeds.feedburner.com/~f/BlueBox?i=j1XWBk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=t89cyK"><img src="http://feeds.feedburner.com/~f/BlueBox?i=t89cyK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BlueBox/~4/375722849" height="1" width="1"/>]]></content:encoded>
      <pubDate>Tue, 26 Aug 2008 16:16:43 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/voip">voip</category>
      <category domain="http://www.securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://www.securityratty.com/tag/voip users based">voip users based</category>
      <category domain="http://www.securityratty.com/tag/enterprise voip planet">enterprise voip planet</category>
      <category domain="http://www.securityratty.com/tag/voip calls">voip calls</category>
      <category domain="http://www.securityratty.com/tag/voip privacy">voip privacy</category>
      <category domain="http://www.securityratty.com/tag/security">security</category>
      <category domain="http://www.securityratty.com/tag/voip news">voip news</category>
      <category domain="http://www.securityratty.com/tag/voip security podcast">voip security podcast</category>
      <source url="http://feeds.feedburner.com/~r/BlueBox/~3/375722849/blue-box-81-isk.html">Blue Box #81: iSkoot vulnerability, OFCOM legislation, VoIP security news and more</source>
    </item>
    <item>
      <title><![CDATA[Software Security Market]]></title>
      <link>http://www.securityratty.com/article/0adbf216425dc6d24bde35c8640002aa</link>
      <guid>http://www.securityratty.com/article/0adbf216425dc6d24bde35c8640002aa</guid>
      <description><![CDATA[Information Security budgets are pretty crufty , they are an accumulation of decisions but the analysis that led to these decisions is rarely revisited, it just snowballs. So the normal Information...]]></description>
      <content:encoded><![CDATA[<p>Information Security budgets are pretty <a href="http://en.wikipedia.org/wiki/Cruft">crufty</a>, they are an accumulation of decisions but the analysis that led to these decisions is rarely revisited, it just snowballs. So the normal Information Security budget is just a legacy artifact of when the network was the greatest vulnerability. <a href="http://www.cigital.com/~gem/">Gary McGraw&#160;</a><a href="http://www.informit.com/articles/article.aspx?p=1237978">took a pass</a> at reviewing the numbers in software security, breaking down software security sectors like tools and services (note to Gary - I think <a href="http://www.aspectsecurity.com/">Aspect</a> does more than just training!). This is great work by Gary to get these numbers to see the real changes occuring in software security. Here were his findings on software security tools:</p><div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="font-family: &#39;Lucida Grande&#39;; line-height: 19px; ">One of the most important developments in the software security market can be seen in the tools space which, combined, almost doubled to $150-180 million. Top of list are two major acquisitions that closed in 2007: Watchfire&#39;s purchase by IBM (somewhere in the range of $120-150 million on 2006 revenue of $26 million) and SPI Dynamics&#39;s purchase by HP (for around $100 million on 2006 revenue of $21.2 million).</span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="font-family: &#39;Lucida Grande&#39;; line-height: 19px;">...</span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="font-family: &#39;Lucida Grande&#39;; line-height: 19px; ">The black box space was flat in 2007, with IBM/Watchfire checking in at $24.1 million and HP/SPI Dynamics earning $22.3 million. Smaller companies in the space, including Cenzic, Codenomicon, WhiteHat and the like had combined revenues around $12.5 million (a growth of 25%, though Cenzic grew 16% and WhiteHat 52%). Most of the growth &quot;hiccup&quot; in the black box market can be attributed to the serious challenges posed by any acquisition. So far 2008 looks to be back on track from a growth perspective in the black box testing space. The global reach that IBM and HP offer are already making a big difference.</span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="font-family: &#39;Lucida Grande&#39;; line-height: 19px;"><br /></span><span style="font-family: &#39;Lucida Grande&#39;; line-height: 19px; ">On a more positive note, static analysis tools for code review grew at a healthy clip in 2007 into a $91.9 million dollar market. Fortify was up 83% to $29.2 million. Klocwork grew over 60% to $26 million. Coverity grew over 50% to $27.2 million. Ounce Labs tripled their revenue to $9.5 million.</span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><br /></blockquote><div><br /><div>These are very nice growth numbers, what company doesn&#39;t want 83% growth? However, the total picture is not so good. Gary&#39;s estimate shows the software security space coming in at $150 Million total, yet we see a company like Checkpoint that won the network security war in 1995 with earnings of around $900 Million! One single network security vendor is 6 times bigger than the entire software security space?!? Complete UTTER Madness!</div><br /><div>This is the stupefying, stultifying effects of budget cruft, where the decisions made in <a href="http://1raindrop.typepad.com/1_raindrop/2007/10/network-securit.html">The People&#39;s Republic of Information Security</a> have no bearing on reality of threats or even a business case.</div><br /><div>Let&#39;s look at networks. Obviously Cisco is the biggest, they earned $39.5 Billion last year. Pretty stellar. So spending $900 Million (Checkpoint) to defined $39.5 Billion seems like a pretty good deal.</div><br /><div>Except, let&#39;s compare software security spending - last year Microsoft earned $60 Billion, SAP $16 billion, and Oracle $22 Billion. So that is about $98 Billion and you are going to &quot;defend&quot; that with allocating $150 Million worth of software security tools?</div><br />

</div><table border="1">
<tbody><tr>
<td>
</td>
<td><span style="background-color: #d0d0d0; font-family: &#39;Trebuchet MS&#39;; ">
Network
</span></td>
<td><span style="background-color: #d0d0d0; font-family: &#39;Trebuchet MS&#39;; ">
Software
</span></td>
</tr>
<tr>
<td>
Asset Value
</td>
<td>
$39.5 billion
</td>
<td>
$98 billion
</td>
</tr>
<tr>
<td>
Security Investment
</td>
<td>
$900 Million
</td>
<td>
$150 Million
</td>
</tr>
<tr>
<td>
Security Investment <br />&#160;as a percentage of asset value
</td>
<td>
2.28%
</td>
<td>
0.15%
</td></tr></tbody></table>

<br /><div>This table greatly disturbs me. From a prioritization standpoint The People&#39;s Republic of Information Security is misaligned by orders of magnitude. Next time you read about a data breach, or see an auditor&#39;s report with thousands of findings you won&#39;t have to wonder how it happened. It happened because Information Security doesn&#39;t have its eye on the ball.</div><br /><div>Consider that software security tools could grow 50% a year for five years and still be half of where Checkpoint is today!</div><br />I see the outcomes of backwards looking, crufty decisions by Information Security every day - one or two software security sherpas heading out to work with thousands of developers, meanwhile the network security people sit around and read the newspaper and go home every day at 5.</div><br /><div>The optimistic way of looking at all this data is that there is major room for growth for software security, if you take Checkpoint as a target, then the software security space should evolve to around 2% of the software space meaning that it should evolve into a $2 billion space <span style="font-style: italic;">around fifteen times larger</span> than it is today. Unprotected assets will either be protected or will cease to be assets, VCs get your check books ready.</div>]]></content:encoded>
      <pubDate>Mon, 25 Aug 2008 09:18:59 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/software">software</category>
      <category domain="http://www.securityratty.com/tag/software security market">software security market</category>
      <category domain="http://www.securityratty.com/tag/software security sectors">software security sectors</category>
      <category domain="http://www.securityratty.com/tag/space">space</category>
      <category domain="http://www.securityratty.com/tag/tools space">tools space</category>
      <category domain="http://www.securityratty.com/tag/compare software security">compare software security</category>
      <category domain="http://www.securityratty.com/tag/software security sherpas">software security sherpas</category>
      <category domain="http://www.securityratty.com/tag/software security space">software security space</category>
      <category domain="http://www.securityratty.com/tag/software security">software security</category>
      <source url="http://1raindrop.typepad.com/1_raindrop/2008/08/software-security-market.html">Software Security Market</source>
    </item>
    <item>
      <title><![CDATA[Microsoft to add privacy features to IE8]]></title>
      <link>http://www.securityratty.com/article/f2a092a611743f7223798eea90a05002</link>
      <guid>http://www.securityratty.com/article/f2a092a611743f7223798eea90a05002</guid>
      <description><![CDATA[Microsoft on Monday described some new privacy features that will come with IE8, the next release of its browser. The features are designed to make it easier for people to delete and control...]]></description>
      <content:encoded><![CDATA[Microsoft on Monday described some new privacy features that will come with IE8, the next release of its browser. The features are designed to make it easier for people to delete and control information about their Web browsing history.]]></content:encoded>
      <pubDate>Sun, 24 Aug 2008 20:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/features">features</category>
      <category domain="http://www.securityratty.com/tag/privacy features">privacy features</category>
      <category domain="http://www.securityratty.com/tag/ie8">ie8</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/control information">control information</category>
      <category domain="http://www.securityratty.com/tag/history">history</category>
      <category domain="http://www.securityratty.com/tag/easier">easier</category>
      <category domain="http://www.securityratty.com/tag/browser">browser</category>
      <category domain="http://www.securityratty.com/tag/release">release</category>
      <source url="http://www.networkworld.com/news/2008/082508-microsoft-to-add-privacy-features.html?fsrc=rss-security">Microsoft to add privacy features to IE8</source>
    </item>
    <item>
      <title><![CDATA[Links List 8.22.08]]></title>
      <link>http://www.securityratty.com/article/e37289e3f28c0134060472b8a33b4f97</link>
      <guid>http://www.securityratty.com/article/e37289e3f28c0134060472b8a33b4f97</guid>
      <description><![CDATA[Ah, the opening ceremonies of the Olympics. How spectacular. Is that Li Ning running in the sky with the torch? Oooh, aah. And wait, whats that image on the wall behind him? Looks kinda familiaroops,...]]></description>
      <content:encoded><![CDATA[<p><img style="border-right: 0px; border-top: 0px; margin: 0px 10px 10px 0px; border-left: 0px; border-bottom: 0px" height="170" alt="bsod_nest_main2" src="http://blog.sciencelogic.com/wp-content/uploads/2008/08/bsod-nest-main2.jpg" width="244" align="left" border="0"> Ah, the opening ceremonies of the Olympics. How spectacular. Is that Li Ning “running” in the sky with the torch? Oooh, aah. And wait, what’s that image on the wall behind him? Looks kinda familiar…oops, it’s an <a href="http://weblog.infoworld.com/robertxcringely/archives/2008/08/geek_week_tk_tk_1.html?source=NLC-NOTES&amp;cgd=2008-08-18" target="_blank">XP blue screen of death</a>….I wonder how much Microsoft paid for advertising during the Olympics?
<p><em>(</em><a href="http://cache.gizmodo.com/assets/images/gizmodo/2008/08/bsod_nest_main2.jpg" target="_blank"><em>Photo Credit: Gizmodo</em></a><em>)</em>
<p>You lose some. You win some: Of course as NBC’s online partner, Microsoft gets a least a cut of the <a href="http://www.paidcontent.org/entry/419-online-ad-spend-tied-to-olympics-expected-to-reach-100-million/" target="_blank">$100 million dollars in online advertising</a> spent around the Olympics. And the millions of <a href="http://www.businessweek.com/technology/content/aug2008/tc20080820_627259.htm?campaign_id=rss_daily" target="_blank">downloads of Silverlight</a> aren’t too shabby either.
<p>The Internet is Falling! Arbor Networks, a security and network management company, partnered with ninety network services and content providers from around the world to publish an extensive <a href="http://www.circleid.com/posts/88181_largest_study_of_ipv6_traffic/" target="_blank">study of IPv6 traffic</a> on the Internet. Craig Labovitiz, Arbor Networks chief scientist, stated that <a href="http://asert.arbornetworks.com/2008/8/the-end-is-near-but-is-ipv6/" target="_blank">only 900 days were left until the end of the Internet</a>, or at least the exhaustion of IPv4 registry allocations. For the past year, the study shows very little IPv6 traffic – something like 1/100<sup>th</sup> of 1% of Internet traffic. Craig credits this to money issues. “The department of commerce estimates it will cost $25 billion for ISPs to upgrade to native IPv6.”
<p>Blogger <a href="http://blog.jamesurquhart.com/2008/08/cloud-computing-bill-of-rights.html" target="_blank">James Urquhart created a bill of rights for cloud computing</a>. The purpose of the bill is to “help guide would-be cloud customers to those clouds best able to guarantee their freedom.” The blogosphere is a great place to get some open debate going, and I applaud James for trying to make something yet so “cloudy” a bit more clear and concrete. But what’s up with the creating a PAC for this?? (Check out the comments.)
<p>Trying to get by on limited resources? Need more money, staff and the freedom to focus on long-term projects? Sound familiar? Then you just might be in <a href="http://blogs.wsj.com/biztech/2008/08/21/life-is-tough-for-midsize-tech-departments/?mod=djemTECH" target="_blank">IT at a midsize company</a>. (or in marketing at a young but rapidly growing IT company <img src='http://blog.sciencelogic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) Arrow Enterprise Computing Solutions conducted a survey of 200 tech leaders at midsize companies (500 to 3000 employees). The upside: 61% of those surveyed think they’ll be spending more on IT next year – is this bullish thinking about the economy or how much their own business (rev) will be growing?
<p>Bill Snyder calls Dell “<a href="http://weblog.infoworld.com/tech-bottom-line/archives/2008/08/michael_dell_is.html?source=NLC-DAILY&amp;cgd=2008-08-21" target="_blank">Bozo of the Month</a>” for trying to trademark “cloud computing”. Yikes. Maybe not a “bozo” move but certainly inadvisable given how ubiquitous the term is. Here’s <a href="http://blog.sciencelogic.com/no-trademark-for-cloud-computing/08/2008" target="_blank">our take</a> on it.</p>
]]></content:encoded>
      <pubDate>Fri, 22 Aug 2008 16:15:48 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/network management company">network management company</category>
      <category domain="http://www.securityratty.com/tag/internet">internet</category>
      <category domain="http://www.securityratty.com/tag/internet traffic">internet traffic</category>
      <category domain="http://www.securityratty.com/tag/company">company</category>
      <category domain="http://www.securityratty.com/tag/nbcs online partner">nbcs online partner</category>
      <category domain="http://www.securityratty.com/tag/ipv6 traffic">ipv6 traffic</category>
      <category domain="http://www.securityratty.com/tag/online">online</category>
      <category domain="http://www.securityratty.com/tag/blogger james urquhart">blogger james urquhart</category>
      <category domain="http://www.securityratty.com/tag/ninety network services">ninety network services</category>
      <source url="http://blog.sciencelogic.com/links-list-82208/08/2008">Links List 8.22.08</source>
    </item>
    <item>
      <title><![CDATA[Microsoft admits posting flawed update]]></title>
      <link>http://www.securityratty.com/article/0843bf29e3ee3546bbd77367ba8c0d73</link>
      <guid>http://www.securityratty.com/article/0843bf29e3ee3546bbd77367ba8c0d73</guid>
      <description><![CDATA[Microsoft has rereleased one of its Aug. 11 security updates, saying it posted an incomplete version to its own download center last...]]></description>
      <content:encoded><![CDATA[Microsoft has rereleased one of its  Aug. 11 security updates, saying it posted an incomplete version to its own download center last week.
<p><a href="http://feeds.computerworld.com/~a/Computerworld/Security/News?a=pxH3O0"><img src="http://feeds.computerworld.com/~a/Computerworld/Security/News?i=pxH3O0" border="0"></img></a></p><img src="http://feeds.computerworld.com/~r/Computerworld/Security/News/~4/372011166" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 22 Aug 2008 09:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/incomplete version">incomplete version</category>
      <category domain="http://www.securityratty.com/tag/download center">download center</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/aug">aug</category>
      <category domain="http://www.securityratty.com/tag/week">week</category>
      <category domain="http://www.securityratty.com/tag/security">security</category>
      <source url="http://feeds.computerworld.com/~r/Computerworld/Security/News/~3/372011166/article.do">Microsoft admits posting flawed update</source>
    </item>
    <item>
      <title><![CDATA[Microsoft admits posting flawed update]]></title>
      <link>http://www.securityratty.com/article/f69355fa2cb7af01df90c455ec91ca92</link>
      <guid>http://www.securityratty.com/article/f69355fa2cb7af01df90c455ec91ca92</guid>
      <description><![CDATA[Microsoft re-released one of its Aug. 11 security updates yesterday, explaining that it had posted an incomplete version to its own download center last...]]></description>
      <content:encoded><![CDATA[Microsoft re-released one of its Aug. 11 security updates yesterday, explaining that it had posted an incomplete version to its own download center last week.<p><A href="http://ad.doubleclick.net/jump/idg.us.nwf.rss/security;sz=468x60;ord=22009?">
<IMG src="http://ad.doubleclick.net/ad/idg.us.nwf.rss/security;sz=468x60;ord=22009?" border="0" width="468" height="60"></A>
</p>]]></content:encoded>
      <pubDate>Thu, 21 Aug 2008 20:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/incomplete version">incomplete version</category>
      <category domain="http://www.securityratty.com/tag/download center">download center</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/aug">aug</category>
      <category domain="http://www.securityratty.com/tag/week">week</category>
      <category domain="http://www.securityratty.com/tag/security">security</category>
      <category domain="http://www.securityratty.com/tag/yesterday">yesterday</category>
      <source url="http://www.networkworld.com/news/2008/082208-microsoft-admits-posting-flawed.html?fsrc=rss-security">Microsoft admits posting flawed update</source>
    </item>
    <item>
      <title><![CDATA[Microsoft seeds WSUS with Windows 7 Client]]></title>
      <link>http://www.securityratty.com/article/ef6975d3a7b01a8d5e63a6b844f263f6</link>
      <guid>http://www.securityratty.com/article/ef6975d3a7b01a8d5e63a6b844f263f6</guid>
      <description><![CDATA[Microsoft adds a reference to Windows 7 Client, its upcoming replacement to Vista, in the product selection screen of Windows Server Update Services, which lets companies feed security updates to...]]></description>
      <content:encoded><![CDATA[Microsoft adds a reference to Windows 7 Client, its upcoming replacement to Vista, in the product selection screen of Windows Server Update Services, which lets companies feed security updates to their machines.
<p><a href="http://feeds.computerworld.com/~a/Computerworld/Security/News?a=iHCitR"><img src="http://feeds.computerworld.com/~a/Computerworld/Security/News?i=iHCitR" border="0"></img></a></p><img src="http://feeds.computerworld.com/~r/Computerworld/Security/News/~4/370265761" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 20 Aug 2008 09:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/windows">windows</category>
      <category domain="http://www.securityratty.com/tag/windows server">windows server</category>
      <category domain="http://www.securityratty.com/tag/companies feed security">companies feed security</category>
      <category domain="http://www.securityratty.com/tag/product selection">product selection</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/client">client</category>
      <category domain="http://www.securityratty.com/tag/services">services</category>
      <category domain="http://www.securityratty.com/tag/vista">vista</category>
      <category domain="http://www.securityratty.com/tag/machines">machines</category>
      <source url="http://feeds.computerworld.com/~r/Computerworld/Security/News/~3/370265761/article.do">Microsoft seeds WSUS with Windows 7 Client</source>
    </item>
    <item>
      <title><![CDATA[A Diverse Portfolio of Fake Security Software - Part Two]]></title>
      <link>http://www.securityratty.com/article/9d3454e7551fca2a11e4a5ee55704677</link>
      <guid>http://www.securityratty.com/article/9d3454e7551fca2a11e4a5ee55704677</guid>
      <description><![CDATA[With scammers continuing to introduce new typosquatted domains promoting well known brands of rogue security software that is most often found at the far end of a malware campaign, exposing yet...]]></description>
      <content:encoded><![CDATA[<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://4.bp.blogspot.com/_wICHhTiQmrA/SKphU3YsSbI/AAAAAAAACDk/28wApKSrbYA/s1600-h/fake_security_software.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="76" src="http://4.bp.blogspot.com/_wICHhTiQmrA/SKphU3YsSbI/AAAAAAAACDk/bPxU6HdrxA8/s200-R/fake_security_software.JPG" width="200" /></a>With scammers continuing to introduce new typosquatted domains promoting well known brands of rogue security software that is most often found at the far end of a malware campaign, exposing yet another diverse portfolio of last week's introduced domains is what follows.<br />
<br />
Naturally, in between taking advantage of the usual hosting services, most of the domains remain parked at the same IPs, this centralization makes it easier to locate them all, then having to go through several misconfigured malicious doorways that will anyway expose the portfolio.<br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpjp46fg4I/AAAAAAAACDs/hW-zlDsLSIg/s1600-h/antivirus_pro_2008.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="160" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpjp46fg4I/AAAAAAAACDs/mjJJ2yUIcsE/s200-R/antivirus_pro_2008.png" width="200" /></a><b>antivirus2008t-pro .com</b> - (91.203.92.64; 78.157.142.7)<br />
<b>antivirus2008pro-download1 .com<br />
antivirus2008pro-download2 .com<br />
scanner.antivir64 .com<br />
antivirus2008t-pro .com<br />
antivirus-2008y-pro .com</b><br />
<br />
<b>&nbsp;systemscanner2009 .com</b> - (89.18.189.44; 208.88.53.114)<br />
<b>xpdownloadserver .com&nbsp;&nbsp;&nbsp; <br />
global-advers .com<br />
xpantivirus .com&nbsp;&nbsp;&nbsp; <br />
updatesantivirus .com<br />
windows-scannernv .com</b><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpkn-kX73I/AAAAAAAACD0/GOsFiicPQXs/s1600-h/xp_anti_virus.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="160" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpkn-kX73I/AAAAAAAACD0/AekOVq9ibn0/s200-R/xp_anti_virus.png" width="200" /></a><b>ratemyblog1 .com</b> - 208.88.53.114<br />
<b>windows-scanner2009 .com<br />
systemscanner2009 .com<br />
antivirus-database .com<br />
antivirus2009professional .com<br />
antivirus-2009pro .com<br />
antivirus2009-scanner .com<br />
global-advers .com<br />
drivemedirect .com<br />
windows-scannernv .com</b><br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpmSONqTJI/AAAAAAAACEE/4Cukn7sK9ek/s1600-h/fake_IE_7.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="160" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SKpmSONqTJI/AAAAAAAACEE/iHExDhLb0z4/s200-R/fake_IE_7.png" width="200" /></a><b>webscweb-scannerfree .com</b> - (58.65.238.106; 208.88.53.180)<br />
<b>freebmwx3 .com<br />
mytube4 .com<br />
beginner2009 .com<br />
webscweb-scannerfree .com<br />
antivirus2009-software .com<br />
antivirus-database .com<br />
purchase-anti .com</b><br />
<br />
<b><br />
onlinescannerxp .com<br />
virus-onlinescanner .com<br />
spywareonlinescanner .com<br />
xponlinescanner .com<br />
virus-securityscanner .com<br />
virus-securityscanner .com<br />
webscannerfreever .com<br />
blazervips .com<br />
global-advers .com<br />
xpantivirus .com&nbsp;&nbsp;&nbsp; <br />
drivemedirect .com<br />
windows-scannernv .com</b><br />
<br />
<a href="http://2.bp.blogspot.com/_wICHhTiQmrA/SKplujVb0XI/AAAAAAAACD8/laUP6HFKiPc/s1600-h/xp_anti_virus2.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/_wICHhTiQmrA/SKplujVb0XI/AAAAAAAACD8/vH2l1Xo0k0Y/s200-R/xp_anti_virus2.png" /></a><b>mytube4 .com</b> - 58.65.238.106<br />
<b>beginner2009 .com<br />
webscweb-scannerfree .com<br />
securityscannerfree .com<br />
xpcleaner-online .com<br />
streamhotvideo .com<br />
xpcleanerpro .com<br />
onlinescannerxp .com<br />
online-xpcleaner .com<br />
antispyguard-scanner .com<br />
virus-onlinescanner .com<br />
microsoft.browsersecuritycenter .com<br />
fastupdateserver .com<br />
blazervips .com<br />
xpantivirus .com<br />
drivemedirect .com<br />
fastwebway .com<br />
xpantivirussecurity .com<br />
wordpress.firm .in<br />
megacodec .biz<br />
mcprivate .biz</b><br />
<br />
<b>internet-defense2009 .com </b>- 84.16.252.73<b><br />
myfreespace3 .com<br />
greatvideo3 .com<br />
internet-defense2009 .com<br />
windows-defense .com<br />
3gigabytes .com<br />
teledisons .com<br />
updatesantivirus .com<br />
update-direct .com<br />
xp-protectsoft .com</b><br />
<br />
<b>top-pc-scanner .com - </b>(91.203.92.50; 92.62.101.43)<b><br />
nortonsoft .com - </b>(91.186.11.5)<b><br />
powerantivirus-2009 .com - (</b>91.208.0.233)<b><br />
powerantivirus2009 .com - </b>(91.208.0.233)<b><br />
pwrantivirus .com - </b>(91.208.0.231)<b><br />
xp-guard .com - </b>(92.62.101.35)<b><br />
xpertantivirus .com - </b>(91.208.0.230)<b><br />
internetscanner2009 .com - </b>(89.149.229.168)<br />
<br />
Where's the business model here? Where it's always been, upon installation of the rogue security software, the malware campaigner earns up to 40% revenue from the rogue security software's vendor.<br />
<br />
<b>Related posts:</b><br />
<a href="http://ddanchev.blogspot.com/2008/04/localized-fake-security-software.html">Localized Fake Security Software</a><br />
<a href="http://ddanchev.blogspot.com/2007/12/diverse-portfolio-of-fake-security.html">Diverse Portfolio of Fake Security Software</a><br />
<a href="http://ddanchev.blogspot.com/2008/05/got-your-xpshield-up-and-running.html">Got Your XPShield Up and Running?</a><br />
<a href="http://ddanchev.blogspot.com/2008/05/fake-pestpatrol-security-software.html">Fake PestPatrol Security Software</a><br />
<a href="http://ddanchev.blogspot.com/2007/10/rbns-fake-security-software.html">RBN's Fake Security Software</a><br />
<a href="http://http//ddanchev.blogspot.com/2008/07/lazy-summer-days-at-ukrtelegroup-ltds.html">Lazy Summer Days at UkrTeleGroup Ltd</a><br />
<br />
<b></b><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=h33YSK"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=h33YSK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=jVrJfK"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=jVrJfK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=FyAb7k"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=FyAb7k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=1wEuVk"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=1wEuVk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=zeV8HK"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=zeV8HK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=Xb2U2K"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=Xb2U2K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=1JfUGk"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=1JfUGk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/368786894" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 18 Aug 2008 21:51:48 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/fake security software">fake security software</category>
      <category domain="http://www.securityratty.com/tag/portfolio">portfolio</category>
      <category domain="http://www.securityratty.com/tag/diverse portfolio">diverse portfolio</category>
      <category domain="http://www.securityratty.com/tag/rogue security software">rogue security software</category>
      <category domain="http://www.securityratty.com/tag/domains">domains</category>
      <category domain="http://www.securityratty.com/tag/domains remain">domains remain</category>
      <category domain="http://www.securityratty.com/tag/drivemedirect">drivemedirect</category>
      <category domain="http://www.securityratty.com/tag/global-advers">global-advers</category>
      <category domain="http://www.securityratty.com/tag/lazy summer days">lazy summer days</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/368786894/diverse-portfolio-of-fake-security.html">A Diverse Portfolio of Fake Security Software - Part Two</source>
    </item>
    <item>
      <title><![CDATA[Microsoft Puts Out 11 Fixes, Pulls Another]]></title>
      <link>http://www.securityratty.com/article/44120fe698f9ecd13fed0f070d170698</link>
      <guid>http://www.securityratty.com/article/44120fe698f9ecd13fed0f070d170698</guid>
      <description><![CDATA[Microsoft released its largest batch of security fixes since February 2007: 11 software updates designed to plug 26 holes in Windows, Office and other...]]></description>
      <content:encoded><![CDATA[Microsoft released its largest batch of security fixes since February 2007: 11 software updates designed to plug 26 holes in Windows, Office and other products.
<p><a href="http://feeds.computerworld.com/~a/Computerworld/Security/News?a=3mkNQz"><img src="http://feeds.computerworld.com/~a/Computerworld/Security/News?i=3mkNQz" border="0"></img></a></p><img src="http://feeds.computerworld.com/~r/Computerworld/Security/News/~4/367767251" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 18 Aug 2008 03:30:35 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/security fixes">security fixes</category>
      <category domain="http://www.securityratty.com/tag/windows">windows</category>
      <category domain="http://www.securityratty.com/tag/holes">holes</category>
      <category domain="http://www.securityratty.com/tag/office">office</category>
      <category domain="http://www.securityratty.com/tag/plug">plug</category>
      <category domain="http://www.securityratty.com/tag/software">software</category>
      <category domain="http://www.securityratty.com/tag/batch">batch</category>
      <category domain="http://www.securityratty.com/tag/february">february</category>
      <source url="http://feeds.computerworld.com/~r/Computerworld/Security/News/~3/367767251/article.do">Microsoft Puts Out 11 Fixes, Pulls Another</source>
    </item>
  </channel>
</rss>
