<?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: anti-virus]]></title>
    <link>http://www.securityratty.com/tag/anti-virus</link>
    <description></description>
    <pubDate>Fri, 14 Nov 2008 02:00:00 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[Anti-Debugging Series - Part I]]></title>
      <link>http://www.securityratty.com/article/5dc5d012cfad6c070272eeb8f4c0dc2b</link>
      <guid>http://www.securityratty.com/article/5dc5d012cfad6c070272eeb8f4c0dc2b</guid>
      <description><![CDATA[For those that dont know, anti-debugging is the implementation of one or more techniques within computer code that hinders attempts at reverse engineering or debugging a target process. Typically this...]]></description>
      <content:encoded><![CDATA[<p>For those that don&#8217;t know, anti-debugging is the implementation of one or more techniques within computer code that hinders attempts at reverse engineering or debugging a target process. Typically this is achieved by detecting minute differences in memory, operating system, process information, latency, etc. that occur when a process is started in or attached to by a debugger compared to when it is not. Most research into anti-debugging has been conducted from the vantage point of a reverse engineer attempting to bypass the techniques that have been implemented. Limited data has been presented that demonstrates anti-debugging methods in a high level language that the average developer can understand. It is with this in mind that I hope to begin a series of posts that present some of the methods of anti-debugging in a clear, concise, and well documented fashion. The end goal of this series is to arm developers with the techniques and knowledge that will allow them to add a layer of protection to their software while simultaneous educating reverse engineers in some of the anti-debugging methods used by malware authors today.</p>
<p>Before we delve into the intricacies of individual methods of anti-debugging let&#8217;s use this post to define the classes of anti-debugging that we will be discussing. While other classes may exist, the definition of these classes is an attempt to include the majority of anti-debugging methods in use today. There is some overlap between classifications and we may have left out some methods due to limited exposure or effectiveness.</p>
<p><strong>API Based Anti-Debugging</strong><br />
API based anti-debugging is the most straightforward and possibly the easiest to understand for a typical developer. Using both documented and undocumented API calls, these methods query process and system information to determine the existence or operation of a debugger. From single line calls such as IsDebuggerPresent() and CheckRemoteDebugger() to slightly more complex methods including debugger detaching and CloseHandle() checks. These methods are generally trivial to add to an existing code base and many can even be implemented in as few as two or three lines.</p>
<p><strong>Exception Based Anti-Debugging</strong><br />
Exception based anti-debugging is slightly different than your basic API based techniques. Many times when a debugger is attached to a process, exceptions are trapped and handled by the debugger without regard to passing the exception back to the application for continued execution. Occasionally these exceptions can even crash or terminate a process when run under a debugger and be handled gracefully when running clean. It is these discrepancies that makes exception based anti-debugging techniques possible.</p>
<p><strong>Process and Thread Block Anti-Debugging</strong><br />
Some of the API based anti-debugging methods use published functions to query information from within the process and thread blocks for our running code. Many API based detections can be subverted within a debugger by hooking the API call and returning values that indicate a clean process. One way around this subversion is to directly query the process and thread blocks, bypassing the API calls. Direct analysis of the process and thread blocks, while more complex, can lead to a more accurate and high assurance result.</p>
<p><strong>Modified Code Anti-Debugging</strong><br />
One of the methods that a debugger uses to signal a breakpoint is to insert a break byte into the running code at the location that it wishes to stop execution. The process execution breaks when this value is seen, giving control to the debugger. When the program is resumed, the breakpoint value is removed and replaced with the original byte, the execution backed up one byte, and the program is resumed. Detection of software based breakpoints can be achieved by analyzing the process for modifications from the expected norm.</p>
<p><strong>Hardware and Register Based Anti-Debugging</strong><br />
A second way that a debugger can break the execution of a process is by using a hardware breakpoint. A hardware breakpoint relies upon CPU registers to store the pertinent information and to detect when the target break addresses are seen on the bus. A break interrupt is triggered at the appropriate time based on these register values. Reading or modifying the hardware can allow for the detection of a debugger.</p>
<p><strong>Timing and Latency Anti-Debugging</strong><br />
Finally timing and latency can be used as an effective anti-debugging method. When executing a program within a debugger, specifically when single stepping, a much larger latency occurs between execution of instructions. This latency can be detected and compared against a reasonable threshold to detect the existence of a debugger attached to our process.</p>
<p>Each of the classes of anti-debugging outlined above has merit when used individually to protect a process. While none of them can be assured to ever protect a program from a determined reverse engineer or debugger, implementation of these techniques (or many of them if appropriate) can sufficiently slow down the debugging process and hopefully make the attacker spend his time on other, easier, ventures. In the remainder of this series on anti-debugging we will review in depth some of the more interesting methods of each of the above classes. So bring along your debugger and your development environment and let the games begin.</p>
]]></content:encoded>
      <pubDate>Tue, 02 Dec 2008 17:56:25 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/process execution breaks">process execution breaks</category>
      <category domain="http://www.securityratty.com/tag/execution">execution</category>
      <category domain="http://www.securityratty.com/tag/process">process</category>
      <category domain="http://www.securityratty.com/tag/methods query process">methods query process</category>
      <category domain="http://www.securityratty.com/tag/hardware breakpoint">hardware breakpoint</category>
      <category domain="http://www.securityratty.com/tag/hardware">hardware</category>
      <category domain="http://www.securityratty.com/tag/process information">process information</category>
      <category domain="http://www.securityratty.com/tag/target process">target process</category>
      <category domain="http://www.securityratty.com/tag/methods">methods</category>
      <source url="http://www.veracode.com/blog/2008/12/anti-debugging-series-part-i/">Anti-Debugging Series - Part I</source>
    </item>
    <item>
      <title><![CDATA[Yet Another Web Malware Exploitation Kit in the Wild]]></title>
      <link>http://www.securityratty.com/article/5caa05f53942f1ddb87a74f20c2c3599</link>
      <guid>http://www.securityratty.com/article/5caa05f53942f1ddb87a74f20c2c3599</guid>
      <description><![CDATA[With business-minded malicious attackers embracing basic marketing practices like branding, it is becoming increasingly harder, if not pointless to keep track of all XYZ-Packs currently in...]]></description>
      <content:encoded><![CDATA[<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/STR4MhsqHZI/AAAAAAAACfY/EnFEn5S9XMY/s1600-h/5Qqp497mdd.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_wICHhTiQmrA/STR4MhsqHZI/AAAAAAAACfY/EnFEn5S9XMY/s200/5Qqp497mdd.png" /></a>With business-minded malicious attackers embracing basic marketing practices like branding, it is becoming increasingly harder, if not pointless to keep track of all XYZ-Packs currently in circulation. How come? Due to their open source nature allowing modifications, claiming copyright over the modified and re-branded kit, the source code of core web malware exploitation kits continue representing the foundation source code for each and every newly released kit.<br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://2.bp.blogspot.com/_wICHhTiQmrA/STSLw4XodgI/AAAAAAAACfg/0WZInEH3pD4/s1600-h/gPdiZb9b7u_.PNG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/_wICHhTiQmrA/STSLw4XodgI/AAAAAAAACfg/0WZInEH3pD4/s200/gPdiZb9b7u_.PNG" /></a>In fact, the practice is becoming so evident, that anecdotal evidence in the form of monitoring ongoing communications between sellers and buyers reveals actual attempts of intellectual property enforcement in the form of&nbsp; exchange of flames between an author of a original kit, and a newly born author who seems to have copied over 80% of his source code, changed the layout, re-branded it, added several more exploits and started pitching it as the most exclusive kit there is available in the underground marketplace.<br />
<br />
<div style="text-align: left;"></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://4.bp.blogspot.com/_wICHhTiQmrA/STSL6Yo0fFI/AAAAAAAACfo/7OQAGGmvwHg/s1600-h/9CtxtBWp6S_.PNG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/_wICHhTiQmrA/STSL6Yo0fFI/AAAAAAAACfo/7OQAGGmvwHg/s200/9CtxtBWp6S_.PNG" /></a>What's new about this particular kit anyway? Changed iframe and js obfuscation techniques, doesn't require MySQL to run, with several modified Adobe Acrobat and Flash exploits - all patched and publicly obtainable. This is precisely where the marketing pitch ends for the majority of malware kits released during the last quarter. <br />
<br />
As always, there are noticable exceptions to the common wisdom that time-to-underground market isn't allowing them to innovate, but thankfully, these exceptions aren't yet going mainstream. What is going to change in the upcoming 2009? Web malware exploitation kits are slowly maturing into multi-user cybercrime platforms, where traffic management coming from the SQL injected or malware embedded sites is automatically exploited with access to the infected hosts or to the traffic volume in general offered for sale under a flat rate, or on a volume basis.<br />
<br />
Converging traffic management with drive-by exploitation and offering the output for sale, all from a single web interface, is precisely what <a href="http://ddanchev.blogspot.com/2007/07/malware-embedded-sites-increasing.html">malicious economies of scale</a> is all about.<br />
<br />
<b>Related posts:</b><br />
<a href="http://blogs.zdnet.com/security/?p=2217">Cybercriminals release Christmas themed web malware exploitation kit</a><cite></cite><b></b><br />
<a href="http://ddanchev.blogspot.com/2008/11/new-web-malware-exploitation-kit-in.html">New Web Malware Exploitation Kit in the Wild</a><b></b><br />
<a href="http://ddanchev.blogspot.com/2008/11/modified-zeus-crimeware-kit-gets.html">Modified Zeus Crimeware Kit Gets a Performance Boost</a><b>&nbsp;</b><br />
<a href="http://ddanchev.blogspot.com/2008/11/zeus-crimeware-kit-gets-carding-layout.html">Zeus Crimeware Kit Gets a Carding Layout</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/web-based-malware-emphasizes-on-anti.html">Web Based Malware Emphasizes on Anti-Debugging Features</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/copycat-web-malware-exploitation-kit.html">Copycat Web Malware Exploitation Kit Comes with Disclaimer</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/web-based-malware-eradicates-rootkits.html">Web Based Malware Eradicates Rootkits and Competing Malware</a><br />
<a href="http://ddanchev.blogspot.com/2008/09/two-copycat-web-malware-exploitation.html">Two Copycat Web Malware Exploitation Kits in the Wild</a><br />
<a href="http://ddanchev.blogspot.com/2008/09/copycat-web-malware-exploitation-kits.html">Copycat Web Malware Exploitation Kits are Faddish</a><br />
<a href="http://ddanchev.blogspot.com/2008/08/web-based-botnet-command-and-control.html">Web Based Botnet Command and Control Kit 2.0</a> <br />
<a href="http://ddanchev.blogspot.com/2008/02/blackenergy-ddos-bot-web-based-c.html">BlackEnergy  DDoS Bot Web Based</a><br />
<a href="http://ddanchev.blogspot.com/2007/09/new-ddos-malware-kit-in-wild.html">A  New DDoS Malware Kit in the Wild</a><br />
<a href="http://ddanchev.blogspot.com/2008/05/small-pack-web-malware-exploitation-kit.html">The  Small Pack Web Malware Exploitation Kit</a><br />
<a href="http://ddanchev.blogspot.com/2006/11/nuclear-grabber-toolkit.html">The  Nuclear Grabber Kit</a><br />
<a href="http://ddanchev.blogspot.com/2008/02/rbns-phishing-activities.html">The  Apophis Kit</a><br />
<a href="http://ddanchev.blogspot.com/2007/08/nuclear-malware-kit.html">Nuclear  Malware Kit</a><br />
<a href="http://ddanchev.blogspot.com/2008/01/random-js-malware-exploitation-kit.html">The  Random JS Malware Exploitation Kit</a><br />
<a href="http://ddanchev.blogspot.com/2007/11/metaphisher-malware-kit-spotted-in-wild.html">Metaphisher  Malware Kit Spotted in the Wild</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=gqSxO"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=gqSxO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=kPWXO"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=kPWXO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=IWaVo"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=IWaVo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=AQnUo"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=AQnUo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=z4nXO"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=z4nXO" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=f162O"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=f162O" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=zFrIo"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=zFrIo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/472427816" height="1" width="1"/>]]></content:encoded>
      <pubDate>Tue, 02 Dec 2008 03:24:43 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/kit">kit</category>
      <category domain="http://www.securityratty.com/tag/malware exploitation kit">malware exploitation kit</category>
      <category domain="http://www.securityratty.com/tag/nuclear malware kit">nuclear malware kit</category>
      <category domain="http://www.securityratty.com/tag/zeus crimeware kit">zeus crimeware kit</category>
      <category domain="http://www.securityratty.com/tag/malware">malware</category>
      <category domain="http://www.securityratty.com/tag/exclusive kit">exclusive kit</category>
      <category domain="http://www.securityratty.com/tag/nuclear grabber kit">nuclear grabber kit</category>
      <category domain="http://www.securityratty.com/tag/apophis kit">apophis kit</category>
      <category domain="http://www.securityratty.com/tag/ddos malware kit">ddos malware kit</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/472427816/yet-another-web-malware-exploitation.html">Yet Another Web Malware Exploitation Kit in the Wild</source>
    </item>
    <item>
      <title><![CDATA[Lenovo arms ThinkPads with Intel's built-in security]]></title>
      <link>http://www.securityratty.com/article/9141ee02b9952d5ffc6d5bf3da6083dd</link>
      <guid>http://www.securityratty.com/article/9141ee02b9952d5ffc6d5bf3da6083dd</guid>
      <description><![CDATA[Lenovo Group said that its ThinkPad T400 laptop computers will now ship with anti-theft technology from Intel and Absolute Software built...]]></description>
      <content:encoded><![CDATA[Lenovo Group said that its ThinkPad T400 laptop computers will now ship with anti-theft technology from Intel and Absolute Software built in.<br style="clear: both;"/>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:7333373b7b518f5259dbf0495341da7b:RuDOj9BhvNpov6tAr9oVnk1Fuu30lY2ZYrXHmGbl%2BWjTLiXf2n%2FNoTFO3NkzgK5rq3SPavIk5XWe'><img border='0' title='Add to digg' alt='Add to digg' src='http://www.pheedo.com/images/mm/digg.gif'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:c2687f6c4a7303bfb56965c91feca71d:wDCZiKQLt9hzFDhvs1%2FZ3nw3VxwQLbzlNz3nVaLC8KejgrD0Cq%2B4BWr16Y1NvpnQYg7ZwmYfFz1%2FDw%3D%3D'><img border='0' title='Add to StumbleUpon' alt='Add to StumbleUpon' src='http://www.pheedo.com/images/mm/stumbleit.gif'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:716cd939c09474c65528fa49836be205:x8FTKEnE8TCuwRRs9y3aEh8gfADucoZUPwPh5nLaPwymoqNDgn%2FqpvQye6vPYjHuUgGaSDOR%2BRGhOQ%3D%3D'><img border='0' title='Add to Twitter' alt='Add to Twitter' src='http://www.pheedo.com/images/mm/twitter.png'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:cf8169dbebc2d92de18c637693767cb7:yzEGCv4ujel05LU9k7kpLaIwYeBk14SSnIQa9AIbi0ifYKx01XDjOD1sIR2RehZ54D8ZR%2FtWklv31Q%3D%3D'><img border='0' title='Add to Slashdot' alt='Add to Slashdot' src='http://www.pheedo.com/images/mm/slashdot.png'/></a>
<br style="clear: both;"/>
<a href="http://www.pheedo.com/click.phdo?s=379448a1a15a8dcc288f9c83547226fe&p=1"><img alt="" style="border: 0;" border="0" src="http://www.pheedo.com/img.phdo?s=379448a1a15a8dcc288f9c83547226fe&p=1"/></a>
<img src="http://www.pheedo.com/feeds/tracker.php?i=379448a1a15a8dcc288f9c83547226fe" style="display: none;" border="0" height="1" width="1" alt=""/>
]]></content:encoded>
      <pubDate>Tue, 02 Dec 2008 02:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/absolute software">absolute software</category>
      <category domain="http://www.securityratty.com/tag/anti-theft technology">anti-theft technology</category>
      <category domain="http://www.securityratty.com/tag/lenovo">lenovo</category>
      <category domain="http://www.securityratty.com/tag/intel">intel</category>
      <category domain="http://www.securityratty.com/tag/ship">ship</category>
      <source url="http://feeds.computerworld.com/click.phdo?i=379448a1a15a8dcc288f9c83547226fe">Lenovo arms ThinkPads with Intel's built-in security</source>
    </item>
    <item>
      <title><![CDATA[Microsoft purges phony security software from 1 million PCs]]></title>
      <link>http://www.securityratty.com/article/2c7627bacb4d8cd9f29396d90b6be6c8</link>
      <guid>http://www.securityratty.com/article/2c7627bacb4d8cd9f29396d90b6be6c8</guid>
      <description><![CDATA[Microsoft said that the anti-malware tool it pushes to Windows users as part of Patch Tuesday removed fake security software from nearly a million PCs over nine days this...]]></description>
      <content:encoded><![CDATA[Microsoft said that the anti-malware tool it pushes to Windows users as part of Patch Tuesday removed fake security software from nearly a million PCs over nine days this month.<br style="clear: both;"/>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:e5e26fe1684306c156289873b0428084:HdxAycwHrdSclt8sUEdbDH9m0%2BYv2q2sUGmF4JvRCMGx%2FVGKLWxmSUml2xR10IWr5O9WuVmTGRQQ'><img border='0' title='Add to digg' alt='Add to digg' src='http://www.pheedo.com/images/mm/digg.gif'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:a36e06b6d01e375594d6ebd9a2128338:YpV5sG4VlMiOxXN0pTux5baZVkB4BmcGx06cm%2FhCXT5ZyGw3RG4BXMRRjC7u0sKbenUUFEomZxT3VQ%3D%3D'><img border='0' title='Add to StumbleUpon' alt='Add to StumbleUpon' src='http://www.pheedo.com/images/mm/stumbleit.gif'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:0e9018ff9bc0075e05957b9867d050e0:eeQo5%2FAhFYrxf8y4pzeY6GoXLSoW0Rjpwi5P6YlikaXuHte0rR8xHRSkE8jUjxRWNap3WbLl93tbzw%3D%3D'><img border='0' title='Add to Twitter' alt='Add to Twitter' src='http://www.pheedo.com/images/mm/twitter.png'/></a>
  <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:64c02a7ee51be791534d1b7d6b103f41:7Wz3VX%2Fh6Nk4RY3M3VlqzNrEasgUoczKTUlbtiWObSG28LLfJxJdoRiHcY24ux%2FyAakflgyiedmifA%3D%3D'><img border='0' title='Add to Slashdot' alt='Add to Slashdot' src='http://www.pheedo.com/images/mm/slashdot.png'/></a>
<br style="clear: both;"/>
<a href="http://www.pheedo.com/click.phdo?s=348e8daf44b5779cbc24a4485328a575&p=1"><img alt="" style="border: 0;" border="0" src="http://www.pheedo.com/img.phdo?s=348e8daf44b5779cbc24a4485328a575&p=1"/></a>
<img src="http://www.pheedo.com/feeds/tracker.php?i=348e8daf44b5779cbc24a4485328a575" style="display: none;" border="0" height="1" width="1" alt=""/>
]]></content:encoded>
      <pubDate>Fri, 21 Nov 2008 02:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/million pcs">million pcs</category>
      <category domain="http://www.securityratty.com/tag/fake security software">fake security software</category>
      <category domain="http://www.securityratty.com/tag/anti-malware tool">anti-malware tool</category>
      <category domain="http://www.securityratty.com/tag/patch tuesday">patch tuesday</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/windows users">windows users</category>
      <category domain="http://www.securityratty.com/tag/month">month</category>
      <category domain="http://www.securityratty.com/tag/pushes">pushes</category>
      <category domain="http://www.securityratty.com/tag/days">days</category>
      <source url="http://feeds.computerworld.com/click.phdo?i=348e8daf44b5779cbc24a4485328a575">Microsoft purges phony security software from 1 million PCs</source>
    </item>
    <item>
      <title><![CDATA[MS AV Out and Free ... Uh-Oh]]></title>
      <link>http://www.securityratty.com/article/c11f864ccd2c2dd9f5e1fa6ef8d8a18d</link>
      <guid>http://www.securityratty.com/article/c11f864ccd2c2dd9f5e1fa6ef8d8a18d</guid>
      <description><![CDATA[With headlines like &quot; MS Destroys the Consumer AV Market ,&quot; the news hit ... well, hit the fan like the proverbial... well, you know what

Is it really &quot; Good-bye Big Yellow and Little Red? &quot; Probably...]]></description>
      <content:encoded><![CDATA[With headlines like "<a href="http://www.grumpysecurityguy.com/ms-destroys-the-consumer-av-market/">MS Destroys the Consumer AV Market</a>," <a href="http://www.microsoft.com/Presspass/press/2008/nov08/11-18NoCostSecurityPR.mspx">the news</a>  hit ... well, hit the fan like the proverbial... well, you know what :-) <br /><br />Is it really "<span style="font-style: italic;">Good-bye Big Yellow and Little Red?</span>"  Probably not, as this new offering is aimed at consumers and lower-end SMBs; large orgs will still pay ransom ... eh, subscription fees for their AV.  It was also interesting to read some of the comments, like "OMG, I so hate paying for AV... and now I won't have to."  If such sentiment is indeed widespread, maybe MS choose a really, really good moment to come out with this!<br /><br />The most fun comments are found on the <a href="http://windowsonecare.spaces.live.com">OneCare team blog</a> <a href="http://windowsonecare.spaces.live.com/blog/cns%21C29701F38A601141%2110418.entry">here</a>. Esp. see this one: "<span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"><span style="font-family:Calibri;font-size:100%;color:#000000;"><span style="font-style: italic;">a majority of consumers around the world do not have up-to-date antivirus, antispyware and antimalware protection</span>" (</span></span>now they will, thanks to MS! :-)<span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"><span style="font-family:Calibri;font-size:100%;color:#000000;">) and "</span></span><span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"><span style="font-family:Calibri;font-size:100%;color:#000000;">this new offering will focus on getting the majority of consumers the essential protection they need by providing comprehensive, real-time anti-malware protection, covering such threats as viruses, spyware, rootkits, trojans, and other emerging threats, in a single [FREE!], focused solution.</span></span><span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"><span style="font-family:Calibri;font-size:100%;color:#000000;">"</span></span><div class="blogger-post-footer">About me: http://www.chuvakin.org</div><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?a=h001N"><img src="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?i=h001N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?a=z96hN"><img src="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?i=z96hN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?a=k6jfN"><img src="http://feeds.feedburner.com/~f/AntonChuvakinPersonalBlog?i=k6jfN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AntonChuvakinPersonalBlog/~4/458898788" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 19 Nov 2008 10:44:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/fun comments">fun comments</category>
      <category domain="http://www.securityratty.com/tag/comments">comments</category>
      <category domain="http://www.securityratty.com/tag/real-time anti-malware protection">real-time anti-malware protection</category>
      <category domain="http://www.securityratty.com/tag/hit">hit</category>
      <category domain="http://www.securityratty.com/tag/onecare team blog">onecare team blog</category>
      <category domain="http://www.securityratty.com/tag/news hit">news hit</category>
      <category domain="http://www.securityratty.com/tag/consumers">consumers</category>
      <category domain="http://www.securityratty.com/tag/essential protection">essential protection</category>
      <category domain="http://www.securityratty.com/tag/single free">single free</category>
      <source url="http://feeds.feedburner.com/~r/AntonChuvakinPersonalBlog/~3/458898788/ms-av-out-and-free-uh-oh.html">MS AV Out and Free ... Uh-Oh</source>
    </item>
    <item>
      <title><![CDATA[Political Changes for IP Law and Technology]]></title>
      <link>http://www.securityratty.com/article/8d0c726dee223a40ed7b7097c568283e</link>
      <guid>http://www.securityratty.com/article/8d0c726dee223a40ed7b7097c568283e</guid>
      <description><![CDATA[Naturally with the economic turmoil and political transition, some changes are in the works for the way technology is governed on a Federal level
For one thing, the House Judiciarys Subcommittee on...]]></description>
      <content:encoded><![CDATA[<p>Naturally with the economic turmoil and political transition, some changes are in the works for the way technology is governed on a Federal level:</p>
<p>For one thing, the House Judiciary&#8217;s Subcommittee on the Internet, Courts and IP will be losing its control over IP Law, which will be handled at the <a rel="nofollow" target="_blank" href="http://arstechnica.com/news.ars/post/20081117-internet-ip-legislation-gets-promoted-to-house-big-leagues.html">full House level </a>in the future:</p>
<blockquote><p>According to a committee aide who spoke with Ars on background, the decision was driven by simple numbers: as interest in IP issues has grown in recent years, so has the SCIIP. Handling them at the full committee level allows all the members to get their fingers in the pie. The swap also recognizes the complexity of legislation affecting IP, and avoids the need to get half the Judiciary Committee caught up with the subcommittee&#8217;s discussions.</p></blockquote>
<p>Instead the Subcommittee will reign over anti-trust issues&#8211;some fear that this will be a victory for content holders, while other experts argue the fears are unfounded.</p>
<p>What other changes are in the works, and who will play the largest role in determining the future of technology law? Well, if you have some ideas, you can nominate yourself or other people for Ars Technica&#8217;s &#8220;<a rel="nofollow" target="_blank" href="http://arstechnica.com/news.ars/post/20081118-whos-top-in-tech-policy-our-new-people-to-watch-list.html">People to Watch</a>&#8221; list.</p>]]></content:encoded>
      <pubDate>Wed, 19 Nov 2008 08:48:09 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/technology">technology</category>
      <category domain="http://www.securityratty.com/tag/law">law</category>
      <category domain="http://www.securityratty.com/tag/ars technicas people">ars technicas people</category>
      <category domain="http://www.securityratty.com/tag/ars">ars</category>
      <category domain="http://www.securityratty.com/tag/people">people</category>
      <category domain="http://www.securityratty.com/tag/subcommittee">subcommittee</category>
      <category domain="http://www.securityratty.com/tag/house judiciarys subcommittee">house judiciarys subcommittee</category>
      <category domain="http://www.securityratty.com/tag/technology law">technology law</category>
      <category domain="http://www.securityratty.com/tag/anti-trust issuessome fear">anti-trust issuessome fear</category>
      <source url="http://feeds.feedburner.com/~r/itsecurity/~3/458756012/">Political Changes for IP Law and Technology</source>
    </item>
    <item>
      <title><![CDATA[Microsoft dumps OneCare, slates free security software for '09]]></title>
      <link>http://www.securityratty.com/article/0b6660d6b48a08152bd537cfb6c7dccd</link>
      <guid>http://www.securityratty.com/article/0b6660d6b48a08152bd537cfb6c7dccd</guid>
      <description><![CDATA[Microsoft will dump its Windows Live OneCare consumer security software next year and instead give away revamped, streamlined anti-malware software that it's calling...]]></description>
      <content:encoded><![CDATA[Microsoft will dump its Windows Live OneCare consumer security software next year and instead give away revamped, streamlined anti-malware software that it's calling "Morro."<br style="clear: both;"/>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:194333d30cc4a45414c4021b03deab65:FfLPghFl7GujE%2FWs9nrRsMw2J2wJSp8CWhtXhQzmDYX9iASX2tCl3qEVW%2BFVIzzgZ%2BilSjVQmB4A'><img border='0' title='Add to digg' alt='Add to digg' src='http://www.pheedo.com/images/mm/digg.gif'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:e014e02ef702646d5a9ed2c84bde187c:K23sGUCX1Bfljoq7Ae74%2BKzdB5Z7rkAdfaW%2BmGVDh29mkNGvQ9ccVnD%2BrL1%2FL2dYj4iAmNfzC%2BL%2FzA%3D%3D'><img border='0' title='Add to StumbleUpon' alt='Add to StumbleUpon' src='http://www.pheedo.com/images/mm/stumbleit.gif'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:e8aa082c89501b7de01d37207b96ca16:qp8ESgVqI2g26tXlUir3hxoKU77t%2BRPJ5qMR0jOSDvpFrKIMiY6XcNJfs4e3aQF9qfcZDkLZ0d7wAA%3D%3D'><img border='0' title='Add to Twitter' alt='Add to Twitter' src='http://www.pheedo.com/images/mm/twitter.png'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:b34620ed7e6c6fe3fa834d41a469d0fc:x4ET0M0wPeLFVWSyJPbv9FgYMg2I9PaG8hzKuav7km4uyniUIYWZ%2F5hovwheF9OqOxprTnENj7zX3g%3D%3D'><img border='0' title='Add to Slashdot' alt='Add to Slashdot' src='http://www.pheedo.com/images/mm/slashdot.png'/></a>
<br style="clear: both;"/>  <img alt="" style="border: 0; height:1px; width:1px;" border="0" src="http://www.pheedo.com/img.phdo?i=a0bfff55fb7c4c5527a5ed36ea5d58b0" height="1" width="1"/>
<img src="http://www.pheedo.com/feeds/tracker.php?i=a0bfff55fb7c4c5527a5ed36ea5d58b0" style="display: none;" border="0" height="1" width="1" alt=""/>]]></content:encoded>
      <pubDate>Wed, 19 Nov 2008 02:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/anti-malware software">anti-malware software</category>
      <category domain="http://www.securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://www.securityratty.com/tag/morro">morro</category>
      <category domain="http://www.securityratty.com/tag/dump">dump</category>
      <source url="http://feeds.computerworld.com/click.phdo?i=a0bfff55fb7c4c5527a5ed36ea5d58b0">Microsoft dumps OneCare, slates free security software for '09</source>
    </item>
    <item>
      <title><![CDATA[New Web Malware Exploitation Kit in the Wild]]></title>
      <link>http://www.securityratty.com/article/b14bf267debe94a6c65be57f5460b9a5</link>
      <guid>http://www.securityratty.com/article/b14bf267debe94a6c65be57f5460b9a5</guid>
      <description><![CDATA[Oops, they keep doing it, again and again - trying to cash-in on the biased exclusiveness of web malware exploitation kits in general, which when combined with active branding is supposed to make them...]]></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/SSM95r20KJI/AAAAAAAACd8/zSHqY21iofM/s1600-h/XYZ_web_exploitation_malware_kit_1.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/_wICHhTiQmrA/SSM95r20KJI/AAAAAAAACd8/zSHqY21iofM/s200/XYZ_web_exploitation_malware_kit_1.JPG" /></a>Oops, they keep doing it, again and again - trying to cash-in on the biased exclusiveness of web malware exploitation kits in general, which when combined with active branding is supposed to make them rich. However, despite the low price of $300 in this particular case, this copycat kit is once again lacking any signification differentiation factors besides perhaps the 20+ exploits targeting Opera and Internet Explorer included within.<br />
<br />
<div style="text-align: left;"><a href="http://3.bp.blogspot.com/_wICHhTiQmrA/SSNBwwoW4tI/AAAAAAAACeE/TafqAoH3ohM/s1600-h/XYZ_web_exploitation_malware_kit_2.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_wICHhTiQmrA/SSNBwwoW4tI/AAAAAAAACeE/TafqAoH3ohM/s200/XYZ_web_exploitation_malware_kit_2.JPG" /></a> Marketed for novice users, despite lacking any key features worth being worried about, it's still managing to maintain a steady infection rate of unpatched Opera browsers. Such statistics obtained in an OSINT fashion always provide a realistic perspective on publicly known facts, like the one where millions of end users continue getting exploited due to their overall misunderstanding of today's threatscape driven by the ubiquitous web exploitation kits.<b>&nbsp;</b></div><div style="text-align: left;"></div><div style="text-align: left;"></div><div style="text-align: left;"></div><div style="text-align: left;"></div><div style="text-align: left;"></div><div style="text-align: left;"></div><div style="text-align: left;"><br />
<b>Related posts:</b></div><div class="separator" style="clear: both; text-align: center;"></div><a href="http://ddanchev.blogspot.com/2008/11/modified-zeus-crimeware-kit-gets.html">Modified Zeus Crimeware Kit Gets a Performance Boost</a><b>&nbsp;</b><br />
<a href="http://ddanchev.blogspot.com/2008/11/zeus-crimeware-kit-gets-carding-layout.html">Zeus Crimeware Kit Gets a Carding Layout</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/web-based-malware-emphasizes-on-anti.html">Web Based Malware Emphasizes on Anti-Debugging Features</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/copycat-web-malware-exploitation-kit.html">Copycat Web Malware Exploitation Kit Comes with Disclaimer</a><br />
<a href="http://ddanchev.blogspot.com/2008/10/web-based-malware-eradicates-rootkits.html">Web Based Malware Eradicates Rootkits and Competing Malware</a><br />
<a href="http://ddanchev.blogspot.com/2008/09/two-copycat-web-malware-exploitation.html">Two Copycat Web Malware Exploitation Kits in the Wild</a><br />
<a href="http://ddanchev.blogspot.com/2008/09/copycat-web-malware-exploitation-kits.html">Copycat Web Malware Exploitation Kits are Faddish</a><br />
<a href="http://ddanchev.blogspot.com/2008/08/web-based-botnet-command-and-control.html">Web Based Botnet Command and Control Kit 2.0</a> <br />
<a href="http://ddanchev.blogspot.com/2008/02/blackenergy-ddos-bot-web-based-c.html">BlackEnergy  DDoS Bot Web Based</a><br />
<a href="http://ddanchev.blogspot.com/2007/09/new-ddos-malware-kit-in-wild.html">A  New DDoS Malware Kit in the Wild</a><br />
<a href="http://ddanchev.blogspot.com/2008/05/small-pack-web-malware-exploitation-kit.html">The  Small Pack Web Malware Exploitation Kit</a><br />
<a href="http://ddanchev.blogspot.com/2006/11/nuclear-grabber-toolkit.html">The  Nuclear Grabber Kit</a><br />
<a href="http://ddanchev.blogspot.com/2008/02/rbns-phishing-activities.html">The  Apophis Kit</a><br />
<a href="http://ddanchev.blogspot.com/2007/08/nuclear-malware-kit.html">Nuclear  Malware Kit</a><br />
<a href="http://ddanchev.blogspot.com/2008/01/random-js-malware-exploitation-kit.html">The  Random JS Malware Exploitation Kit</a><br />
<a href="http://ddanchev.blogspot.com/2007/11/metaphisher-malware-kit-spotted-in-wild.html">Metaphisher  Malware Kit Spotted in the Wild</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=8y1lN"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=8y1lN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=IOKKN"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=IOKKN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=uqbmn"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=uqbmn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=jfHFn"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=jfHFn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=FJVwN"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=FJVwN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=BxLfN"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=BxLfN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=zWfkn"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=zWfkn" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/458244891" height="1" width="1"/>]]></content:encoded>
      <pubDate>Wed, 19 Nov 2008 01:15:01 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/malware">malware</category>
      <category domain="http://www.securityratty.com/tag/malware exploitation kit">malware exploitation kit</category>
      <category domain="http://www.securityratty.com/tag/web based malware">web based malware</category>
      <category domain="http://www.securityratty.com/tag/nuclear malware kit">nuclear malware kit</category>
      <category domain="http://www.securityratty.com/tag/ddos malware kit">ddos malware kit</category>
      <category domain="http://www.securityratty.com/tag/zeus crimeware kit">zeus crimeware kit</category>
      <category domain="http://www.securityratty.com/tag/wild">wild</category>
      <category domain="http://www.securityratty.com/tag/key features worth">key features worth</category>
      <category domain="http://www.securityratty.com/tag/metaphisher malware kit">metaphisher malware kit</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/458244891/new-web-malware-exploitation-kit-in.html">New Web Malware Exploitation Kit in the Wild</source>
    </item>
    <item>
      <title><![CDATA[Chertoff: We're Closing that Boarding-Pass Loophole]]></title>
      <link>http://www.securityratty.com/article/3b5d0643ba1c89f45e89e3a29eb5104e</link>
      <guid>http://www.securityratty.com/article/3b5d0643ba1c89f45e89e3a29eb5104e</guid>
      <description><![CDATA[Five years later, the Department of Homeland Security gets around to fixing a security hole that allows people to easily fly under an alias, bypassing anti-terror name...]]></description>
      <content:encoded><![CDATA[Five years later, the Department of Homeland Security gets around to fixing a security hole that allows people to easily fly under an alias, bypassing anti-terror name screening.<br style="clear: both;"/>
  <img alt="" style="border: 0; height:1px; width:1px;" border="0" src="http://www.pheedo.com/img.phdo?i=7bd5c081d16f1327492d06ca5f79d021" height="1" width="1"/>
<img src="http://www.pheedo.com/feeds/tracker.php?i=7bd5c081d16f1327492d06ca5f79d021" style="display: none;" border="0" height="1" width="1" alt=""/><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/wired/politics/privacy?a=oUuKN"><img src="http://feeds.feedburner.com/~f/wired/politics/privacy?i=oUuKN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/wired/politics/privacy?a=pWmYn"><img src="http://feeds.feedburner.com/~f/wired/politics/privacy?i=pWmYn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/wired/politics/privacy?a=jGlsn"><img src="http://feeds.feedburner.com/~f/wired/politics/privacy?i=jGlsn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/wired/politics/privacy?a=L3EzN"><img src="http://feeds.feedburner.com/~f/wired/politics/privacy?i=L3EzN" border="0"></img></a>
 <a href="http://feeds.wired.com/~f/wired/politics/security?a=p0jSN"><img src="http://feeds.wired.com/~f/wired/politics/security?i=p0jSN" border="0"></img></a> <a href="http://feeds.wired.com/~f/wired/politics/security?a=FcgYn"><img src="http://feeds.wired.com/~f/wired/politics/security?i=FcgYn" border="0"></img></a> <a href="http://feeds.wired.com/~f/wired/politics/security?a=pEzPn"><img src="http://feeds.wired.com/~f/wired/politics/security?i=pEzPn" border="0"></img></a> <a href="http://feeds.wired.com/~f/wired/politics/security?a=kg0tN"><img src="http://feeds.wired.com/~f/wired/politics/security?i=kg0tN" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wired/politics/privacy/~4/456393341" height="1" width="1"/><img src="http://feeds.wired.com/~r/wired/politics/security/~4/456393343" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 17 Nov 2008 15:57:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/homeland security">homeland security</category>
      <category domain="http://www.securityratty.com/tag/security hole">security hole</category>
      <category domain="http://www.securityratty.com/tag/people">people</category>
      <category domain="http://www.securityratty.com/tag/department">department</category>
      <category domain="http://www.securityratty.com/tag/anti-terror">anti-terror</category>
      <category domain="http://www.securityratty.com/tag/alias">alias</category>
      <category domain="http://www.securityratty.com/tag/easily">easily</category>
      <source url="http://feeds.wired.com/~r/wired/politics/security/~3/456393343/chertoff-were-c.html">Chertoff: We're Closing that Boarding-Pass Loophole</source>
    </item>
    <item>
      <title><![CDATA[Apple plays catch-up, ads anti-fraud safeguard to Safari]]></title>
      <link>http://www.securityratty.com/article/949c25cc922a5535dd873e46a0e7d378</link>
      <guid>http://www.securityratty.com/article/949c25cc922a5535dd873e46a0e7d378</guid>
      <description><![CDATA[In an update to its Safari Web browser, Apple on Thursday patched several security flaws and added anti-phishing protection -- making it the last major browser to receive the feature that blocks known...]]></description>
      <content:encoded><![CDATA[In an update to its Safari Web browser, Apple on Thursday patched several security flaws and added anti-phishing protection -- making it the last major browser to receive the feature that blocks known identity-stealing sites.<br style="clear: both;"/>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:a81f524bd87796a718dc935f96bf64b0:aSLzi9e0JNzXSvY%2Bu9Uu8Tjtpg%2F4VbUZU9as2mAYqkph%2FaWDgX%2Fg6ZJ88MzCtOlxyUmJrbM5R1%2BC'><img border='0' title='Add to digg' alt='Add to digg' src='http://www.pheedo.com/images/mm/digg.gif'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:d8058c83a09391fc4a875abd9273c2d8:Ove5%2FRPNbN39Bq7RW42e86yXw8B3yA2Lmd0kYc0RNiZJ0qUxXiSDKVYB%2BiVnGo25Wi%2B%2BmSFFjWtwXQ%3D%3D'><img border='0' title='Add to StumbleUpon' alt='Add to StumbleUpon' src='http://www.pheedo.com/images/mm/stumbleit.gif'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:214c44e436c54d95e2ce19b25f6330a5:VU3q1pVu8lQRivyhKfuFEEeIp6oe7xEg%2FGcKB7WpSGHxaNbUzGZvcATtWxKd2FFoM%2Budcc0CCW2dIQ%3D%3D'><img border='0' title='Add to Twitter' alt='Add to Twitter' src='http://www.pheedo.com/images/mm/twitter.png'/></a>
    <a style='font-size: 10px; color: maroon;' href='http://www.pheedo.com/hostedMorselClick.php?hfmm=v3:0dc6c5d43e324af14a12a7a2b45a2503:13wLNFM%2BYtZruwJ7RAnLKf9A0uh96L%2BKy67UBuEOBm969rJuTqDb%2B%2Fyod1adK6BW%2BH10Um%2Bk7tAuaw%3D%3D'><img border='0' title='Add to Slashdot' alt='Add to Slashdot' src='http://www.pheedo.com/images/mm/slashdot.png'/></a>
<br style="clear: both;"/>  <img alt="" style="border: 0; height:1px; width:1px;" border="0" src="http://www.pheedo.com/img.phdo?i=c57d1d9341b46aa89dfe1a3a5f949aeb" height="1" width="1"/>
<img src="http://www.pheedo.com/feeds/tracker.php?i=c57d1d9341b46aa89dfe1a3a5f949aeb" style="display: none;" border="0" height="1" width="1" alt=""/>]]></content:encoded>
      <pubDate>Fri, 14 Nov 2008 02:00:00 +0000</pubDate>
      <category domain="http://www.securityratty.com/tag/safari web browser">safari web browser</category>
      <category domain="http://www.securityratty.com/tag/apple">apple</category>
      <category domain="http://www.securityratty.com/tag/major browser">major browser</category>
      <category domain="http://www.securityratty.com/tag/security flaws">security flaws</category>
      <category domain="http://www.securityratty.com/tag/protection">protection</category>
      <category domain="http://www.securityratty.com/tag/sites">sites</category>
      <category domain="http://www.securityratty.com/tag/blocks">blocks</category>
      <category domain="http://www.securityratty.com/tag/receive">receive</category>
      <category domain="http://www.securityratty.com/tag/feature">feature</category>
      <source url="http://feeds.computerworld.com/click.phdo?i=c57d1d9341b46aa89dfe1a3a5f949aeb">Apple plays catch-up, ads anti-fraud safeguard to Safari</source>
    </item>
  </channel>
</rss>
