<?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: clean]]></title>
    <link>http://securityratty.com/tag/clean</link>
    <description></description>
    <pubDate>Thu, 18 Sep 2008 02:34:11 +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://securityratty.com/article/5dc5d012cfad6c070272eeb8f4c0dc2b</link>
      <guid>http://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://securityratty.com/tag/process execution breaks">process execution breaks</category>
      <category domain="http://securityratty.com/tag/execution">execution</category>
      <category domain="http://securityratty.com/tag/process">process</category>
      <category domain="http://securityratty.com/tag/methods query process">methods query process</category>
      <category domain="http://securityratty.com/tag/hardware breakpoint">hardware breakpoint</category>
      <category domain="http://securityratty.com/tag/hardware">hardware</category>
      <category domain="http://securityratty.com/tag/process information">process information</category>
      <category domain="http://securityratty.com/tag/target process">target process</category>
      <category domain="http://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[Vulnerabilities and Office Versions]]></title>
      <link>http://securityratty.com/article/33580f773ea9bcdfab98d5db31b1fd04</link>
      <guid>http://securityratty.com/article/33580f773ea9bcdfab98d5db31b1fd04</guid>
      <description><![CDATA[Most of the ink on Microsoft vulnerability coverage goes to browsers and operating systems, but in a way the best progress vulnerabilities have made has been in Microsoft Office. Some of the great...]]></description>
      <content:encoded><![CDATA[Most of the ink on Microsoft vulnerability coverage goes to browsers and operating systems, but in a way the best progress vulnerabilities have made has been in Microsoft Office. Some of the great attacks of all time (remember LoveLetter?) have been through Office bugs, and I believe most targeted attacks over the last few years have utilized vulnerabilities in Office document parsers.

That's why it's encouraging that Microsoft has done a much better job in making current versions of Office secure, as <a href="http://blogs.msdn.com/david_leblanc/archive/2008/11/17/improvements-in-office-security.aspx">David LeBlanc's recent blog shows</a>. He claims that the company has really stepped up the security testing for Office 2003 SP3 and Office 2007, and that it shows up in the number of reported vulnerabilities. The trend is clear: There are about half as many vulnerabilities as for earlier versions.

There may be a little flaw in the analysis in that LeBlanc studied reports during the period from 9/18/2007 to 11/17/2008. By that time earlier Office versions had been around for a long time and many vulnerabilities had already been reported on them. But even so, it makes the numbers all the more impressive for the new versions; the older ones had already had the low-hanging fruit picked clean and yet they still had CVE numbers in excess of the new ones. It seems there is no low-hanging vulnerability fruit in new versions of Office.

Are you running an old version of Office? Are you running Office 2003 SP2, which <a href="http://blogs.eweek.com/cheap_hack/content/office/office_2003_sp2_approaching_end_of_life.html">reached the end of support life in October</a>? If so, you are exposing yourself to more known threats than you may think.

Office versions are not plug-and-play interchangeable. It's unfortunate that Microsoft saw fit to accompany Office 2007's security enhancements with a radical user interface change. I personally have gotten used to it, but I can see an enterprise being intimidated by the training it would necessitate.

If you feel you're stuck in Office 2003, at the very least it's irresponsible to linger on in an old service pack. Do what you can to move on to SP3.
<p><a href="http://feedads.googleadservices.com/~at/4uM3tOE5mU12QfUHAZpBRMt2y_E/a"><img src="http://feedads.googleadservices.com/~at/4uM3tOE5mU12QfUHAZpBRMt2y_E/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/RSS/cheap_hack/~4/cnC-qNVdwk4" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 01 Dec 2008 04:19:33 +0000</pubDate>
      <category domain="http://securityratty.com/tag/office versions">office versions</category>
      <category domain="http://securityratty.com/tag/office">office</category>
      <category domain="http://securityratty.com/tag/microsoft office">microsoft office</category>
      <category domain="http://securityratty.com/tag/versions">versions</category>
      <category domain="http://securityratty.com/tag/office secure">office secure</category>
      <category domain="http://securityratty.com/tag/office bugs">office bugs</category>
      <category domain="http://securityratty.com/tag/vulnerabilities">vulnerabilities</category>
      <category domain="http://securityratty.com/tag/office document parsers">office document parsers</category>
      <category domain="http://securityratty.com/tag/accompany office">accompany office</category>
      <source url="http://feeds.ziffdavisenterprise.com/~r/RSS/cheap_hack/~3/cnC-qNVdwk4/vulnerabilities_and_office_versions.html">Vulnerabilities and Office Versions</source>
    </item>
    <item>
      <title><![CDATA[America's CTO]]></title>
      <link>http://securityratty.com/article/7370017881b0de9957b3253bdde1e5eb</link>
      <guid>http://securityratty.com/article/7370017881b0de9957b3253bdde1e5eb</guid>
      <description><![CDATA[I hope this message gets through to the Obama people - Bill Joy would be an amazingly good pick for the newly created CTO cabinet post. A grand slam to the upper deck. You can count the people with as...]]></description>
      <content:encoded><![CDATA[<p>I hope <a href="http://bits.blogs.nytimes.com/2008/11/05/john-doerrs-advice-for-barack-obama-hire-bill-joy/">this message</a> gets through to the Obama people - Bill Joy would be an amazingly good pick for the newly created CTO cabinet post. A grand slam to the upper deck. You can count the people with as a good a track record in technology on one hand.</p><br /><div>Also, I could not agree more with John Doerr on these points:</div><br /><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; ">The next question from the president-elect was what single policy issue he could focus on that would most help entrepreneurs.</span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;"><br /></span><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; ">“The most important thing he’s got to do is kick-start a huge amount of research and innovation in energy,” said Mr. Doerr, who backed Google and Amazon.com and has invested heavily in clean energy technology for the last few years.</span><br /><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; "><br /></span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; ">The nation now invests less than $1 billion a year in renewable energy versus $32 billion a year in health care, Mr. Doerr said. “I think we’ve just scratched the surface in terms of clean ways to use energy, to produce energy. It’s the challenge of our generation.”</span><br /><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; "><br /></span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; ">How to do that? Double the number of engineers who graduate from American universities each year to 60,000, Mr. Doerr said. Bring more women into the field, and encourage foreigners who study engineering here to stay here.</span><br /><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; "><br /></span></p></blockquote><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px; ">“What we do is bring foreign nationals to the world’s greatest universities. We train them, invest in them and make them go home,” he said. “What kind of national strategy is that? So I would staple a green card to the diploma.”</span></p></blockquote><p><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;"><br /></span></p><div><span style="color: #333333; font-family: georgia; font-size: 10px; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; font-size: 1.4em; line-height: 1.5em; "><span id="more-1803"></span></p></span></div><div><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;">While it is amazing that it took until 2009 for the US to have a CTO as a cabinet level position, it is very cool to think about all the things that could happen going forward. As Neal Stephenson said the US is only world class at three things - 1. Movies, 2. High speed pizza delivery and 3. Software development.</span></div><div><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;"><br /></span></div><div><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;">If you read your </span><a href="http://edgeperspectives.typepad.com/edge_perspectives/">John Hagel</a><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;"> and </span><a href="http://www.johnseelybrown.com/">JSB</a><span style="color: #333333; font-family: georgia; font-size: 14px; line-height: 21px;">, then you know that innovation is the only sustainable edge. Luckily its hard wired into our system, but it will be helpful to have a seat at the table for certain things. &#0160;</span></div>]]></content:encoded>
      <pubDate>Sat, 08 Nov 2008 13:08:05 +0000</pubDate>
      <category domain="http://securityratty.com/tag/energy">energy</category>
      <category domain="http://securityratty.com/tag/produce energy">produce energy</category>
      <category domain="http://securityratty.com/tag/renewable energy versus">renewable energy versus</category>
      <category domain="http://securityratty.com/tag/cto">cto</category>
      <category domain="http://securityratty.com/tag/clean energy technology">clean energy technology</category>
      <category domain="http://securityratty.com/tag/clean">clean</category>
      <category domain="http://securityratty.com/tag/doerr">doerr</category>
      <category domain="http://securityratty.com/tag/john doerr">john doerr</category>
      <category domain="http://securityratty.com/tag/technology">technology</category>
      <source url="http://1raindrop.typepad.com/1_raindrop/2008/11/americas-cto.html">America's CTO</source>
    </item>
    <item>
      <title><![CDATA[VC and IPO Outlook]]></title>
      <link>http://securityratty.com/article/33a99f11764689af12c7674da3dc0464</link>
      <guid>http://securityratty.com/article/33a99f11764689af12c7674da3dc0464</guid>
      <description><![CDATA[Forbes interviews venture capitalist Charlie Harris. He is the Chairman of Harris and Harris (NASDAQ: TINY ) a venture capital fund which is focused on funding nanotech companies. He is bullish...]]></description>
      <content:encoded><![CDATA[<p>Forbes <a href="http://www.forbes.com/video/?video=fvn/wolf/jw_harris110508">interviews</a> venture capitalist Charlie Harris. He is the Chairman of <a href="http://tinytechvc.com/">Harris and Harris</a>&#0160;(NASDAQ:<a href="http://finance.google.com/finance?q=tiny">TINY</a>) a venture capital fund which is focused on funding nanotech companies. He is bullish looking forward from today for a couple of reasons</p><br /><div>1. We have an eight year back log of good companies and ideas due to a poor IPO environment, we have had an eight year drought in IPOs but still lots of good ideas out there.</div><br /><div>2. Clean tech theme has a lot of room left to grow</div><br /><div>3. The recent financial crisis has revealed and removed a lot of risks</div><br /><div>4. The best businesses are started in times of economic distress. Dislocation equals opportunity. Companies that start during financial distress have tremendous discipline to survive.</div><br /><div>Somewhat surprisingly for a person with 100% of his fund invested in nanotech, he does not see nanotech as the leader of a next IPO bookm. He seems to see nanotech as an enabling technology (my words not his) so you will see nanotech enabling clean fuel, cancer drugs and so on, and these individual spaces could boom, but not an &quot;all things nanotech&quot; type boom.</div>]]></content:encoded>
      <pubDate>Fri, 07 Nov 2008 06:07:37 +0000</pubDate>
      <category domain="http://securityratty.com/tag/nanotech companies">nanotech companies</category>
      <category domain="http://securityratty.com/tag/companies">companies</category>
      <category domain="http://securityratty.com/tag/nanotech">nanotech</category>
      <category domain="http://securityratty.com/tag/fund">fund</category>
      <category domain="http://securityratty.com/tag/venture capital fund">venture capital fund</category>
      <category domain="http://securityratty.com/tag/poor ipo environment">poor ipo environment</category>
      <category domain="http://securityratty.com/tag/dislocation equals opportunity">dislocation equals opportunity</category>
      <category domain="http://securityratty.com/tag/clean tech theme">clean tech theme</category>
      <category domain="http://securityratty.com/tag/recent financial crisis">recent financial crisis</category>
      <source url="http://1raindrop.typepad.com/1_raindrop/2008/11/vc-and-ipo-outlook.html">VC and IPO Outlook</source>
    </item>
    <item>
      <title><![CDATA[On Being Informative, or Seeing Through The Fog]]></title>
      <link>http://securityratty.com/article/525775c15c5a11217da6325a35c96ec8</link>
      <guid>http://securityratty.com/article/525775c15c5a11217da6325a35c96ec8</guid>
      <description><![CDATA[UPDATE: @MYRCURIAL from the great site Liquidmatrix says that I need to post the following warning
YOU MAY NOT WANT TO PROCESS THIS PRIOR TO YOUR 11TH CUP OF COFFEE

Carrying on from yesterdays post a...]]></description>
      <content:encoded><![CDATA[<p>==================================</p>
<p>UPDATE:  @MYRCURIAL from the great site <strong><a href="http://www.liquidmatrix.org/blog/">Liquidmatrix</a></strong> says that<strong> <a href="http://twitter.com/myrcurial/status/980493800">I need to post the following warning</a></strong>:</p>
<p><span class="entry-content"> YOU MAY NOT WANT TO PROCESS THIS PRIOR TO YOUR 11TH CUP OF COFFEE</span></p>
<p>==================================</p>
<p>Carrying on from yesterday&#8217;s post a bit, I&#8217;m happy to admit that Chris&#8217; poem is right: we don&#8217;t have nearly the information we need now when we&#8217;re supposed to have &#8220;control&#8221; over our assets, putting things in a hosted/asp/cloud/buzzword model ain&#8217;t going to help our quest for visibility. My intention was/is to show that you need visibility (in part one) and then today explain that unfortunately, that&#8217;s only half the picture.</p>
<p>Today&#8217;s follow-on is about the fact that whatever visibility we can contractually enforce (be it in the &#8220;cloud&#8221; or in our own perimeter) has to be informative (Amrit, this is why I was plugging you with those variance questions on Twitter yesterday).  That is, we can ask whatever IT department (ours, theirs, whomever) for all sorts of information, and maybe they&#8217;ll even give it to us.  But we&#8217;re not really ready to:</p>
<ul>
<li>Know what to ask for</li>
<li>Use it to create wisdom</li>
</ul>
<p>A really salient example of this from outside IT hit my browser this morning.  Now it&#8217;s not at all my intention to be political or endorse one candidate over another.  Those who know me know I&#8217;m fiercely independent.  But this morning there&#8217;s a headline on a well-read news website about how one candidate is now &#8220;+2&#8243; over another in a Gallup poll of &#8220;likely voters&#8221;. The source is <a href="http://www.gallup.com/poll/111124/Gallup-Daily-Likely-Voters-Traditional.aspx"><strong>here</strong></a>.</p>
<p><a href="http://www.gallup.com/poll/111124/Gallup-Daily-Likely-Voters-Traditional.aspx"><img class="alignnone" title="Gallup +2" src="http://www.riskmanagementinsight.com/media/images/weblog/gallup.jpg" alt="" width="597" height="452" /></a></p>
<p>That is a screen grab from Gallup&#8217;s website that shows the &#8220;+2&#8243;.   I have to ask - how informative is this information?  Part of the problem is that Gallup&#8217;s methods are hidden as some sort of &#8220;secret sauce&#8221; (their <strong><a href="http://www.gallup.com/poll/111268/How-Gallups-likely-voter-models-work.aspx">FAQ section</a></strong> doesn&#8217;t help much, either).  But regardless of the quality of the measurement, this &#8220;+2&#8243; has no context - we don&#8217;t really know what this information means with regards to an actual election.  Nor is there any predictive element (I hate the using the word predictive, but it&#8217;s common nomenclature - so there you go).  We don&#8217;t have what we need from this Gallup poll to create wisdom about the ability of either candidate to be elected.</p>
<p>Allow me show you what I mean by way of contrast.  Take a look at Nate Silver&#8217;s work at <strong><a href="http://www.fivethirtyeight.com/">http://www.fivethirtyeight.com/</a></strong>.  Now I&#8217;ve been long familiar with Nate due to his work in baseball.  He&#8217;s been at these sorts of &#8216;predictive&#8217; analytics around our shared passion: creating wisdom from baseball statistics.</p>
<p>What Nate is doing at 538 is applying that acumen from his baseball work to the political process.  He&#8217;s breaking down the vote not just on popularity among likely voters, but in the context of the electoral college, accounting for variance and uncertainty, running Monte Carlo simulations and taking into account all sorts of polling information.  The result is really quite amazing. Here&#8217;s just one graph he presents - it&#8217;s the most similar to the Gallup one above, but you should really visit the site to understand the difference in quality of information and to check out the predictive elements he creates.</p>
<p><a href="http://www.fivethirtyeight.com/"><img class="alignnone" src="http://www.riskmanagementinsight.com/media/images/weblog/538.jpg" alt="" width="376" height="377" /></a></p>
<p><strong>NOT ALL INFORMATION IS CREATED EQUAL</strong>, <em>AND NOT ALL  JUDGMENTS ARE CREATED EQUALLY</em></p>
<p>And take a look at the contrast, here:</p>
<p>On one hand you have Gallup giving us a &#8220;+2&#8243; advantage to a particular candidate.  Now Gallup themselves draws no conclusion but, as digested, how many readers do you think take this as evidence that the election is *really* close?</p>
<p>On the other hand, 538&#8217;s predictions show a 348/189 electoral college split, and one candidate winning 96% of the time in simulated elections.  That doesn&#8217;t seem close at all!</p>
<p><strong>RISK MANAGEMENT</strong></p>
<p>It is these predictive elements that we need in order to make better strategy and decisions.  I&#8217;ve been talking in the past about risk management&#8217;s inability to link current state to systemic causes, and this &#8220;context&#8221; is what predictive analytics provide.  We might have all sorts of visibility into our environment, and measurement of various amounts of variability that visibility gives us. But unless we have context to create wisdom, it&#8217;s all just, as Chris says, &#8220;machinations&#8221;.  <em><strong>We have to move beyond &#8220;+2&#8243;.<br />
</strong></em></p>
<p>So Cloud/Grid/Utility/ASP/TimeShare/Whatever you want to call it - security will have to clean up our own mess first before we can do a good job with or without a perimeter.  Once we can start moving beyond &#8220;+2&#8243; statements, then we can know what sort of visibility we require into an ability to Prevent, Detect, and Respond.</p>
]]></content:encoded>
      <pubDate>Wed, 29 Oct 2008 10:18:36 +0000</pubDate>
      <category domain="http://securityratty.com/tag/gallup">gallup</category>
      <category domain="http://securityratty.com/tag/gallup poll">gallup poll</category>
      <category domain="http://securityratty.com/tag/information">information</category>
      <category domain="http://securityratty.com/tag/visibility">visibility</category>
      <category domain="http://securityratty.com/tag/electoral college split">electoral college split</category>
      <category domain="http://securityratty.com/tag/predictive analytics provide">predictive analytics provide</category>
      <category domain="http://securityratty.com/tag/predictive analytics">predictive analytics</category>
      <category domain="http://securityratty.com/tag/electoral college">electoral college</category>
      <category domain="http://securityratty.com/tag/wisdom">wisdom</category>
      <source url="http://riskmanagementinsight.com/riskanalysis/?p=503">On Being Informative, or Seeing Through The Fog</source>
    </item>
    <item>
      <title><![CDATA[Malware? We don't need no stinking malware!]]></title>
      <link>http://securityratty.com/article/cbb029a08a78820b5ef90b69579719a1</link>
      <guid>http://securityratty.com/article/cbb029a08a78820b5ef90b69579719a1</guid>
      <description><![CDATA[Written by Oliver Fisher

This site may harm your computer
You may have seen those words in Google search results but what do they mean? If you click the search result link you get another warning...]]></description>
      <content:encoded><![CDATA[<span class="byline-author">Written by Oliver Fisher</span><br /><br /><span style="font-weight: bold;">"This site may harm your computer"</span><br />You may have seen those words in Google search results — but what do they mean? If you click the search result link you get another warning page instead of the website you were expecting. But if the web page was your grandmother's baking blog, you're still confused. Surely your grandmother hasn't been secretly honing her l33t computer hacking skills at night school. Google must have made a mistake and your grandmother's web page is just fine...<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_LMSk7hTEaIE/SQI_1LfaQYI/AAAAAAAAtcc/zI4emYNyj4g/s1600-h/example.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 125px;" src="http://3.bp.blogspot.com/_LMSk7hTEaIE/SQI_1LfaQYI/AAAAAAAAtcc/zI4emYNyj4g/s320/example.png" alt="" id="BLOGGER_PHOTO_ID_5260837497572311426" border="0" /></a><br /><br />I work with the team that helps put the warning in Google's search results, so let me try to explain. The good news is that your grandmother is still kind and <a href="http://fitz.blogspot.com/2008/10/everybody-should-have-one.html">loves turtles</a>. She isn't trying to start a botnet or steal credit card numbers. The bad news is that her website or the server that it runs on probably has a security vulnerability, most likely from some out-of-date software. That vulnerability has been exploited and malicious code has been added to your grandmother's website. It's most likely an invisible script or iframe that pulls content from another website that tries to attack any computer that views the page. If the attack succeeds, then viruses, spyware, key loggers, botnets, and other nasty stuff will get installed.<br /><br />If you see the warning on a site in Google's search results, it's a good idea to pay attention to it. Google has automatic scanners that are constantly looking for these sorts of web pages. I help build the scanners and continue to be surprised by how accurate they are. There is almost certainly something wrong with the website even if it is run by someone you trust. The automatic scanners make unbiased decisions based on the malicious content of the pages, not the reputation of the webmaster.<br /><br />Servers are just like your home computer and need constant updating. There are lots of tools that make building a website easy, but each one adds some risk of being exploited. Even if you're diligent and keep all your website components updated, your web host may not be. They control your website's server and may not have installed the most recent OS patches. And it's not just innocent grandmothers that this happens to. There have been warnings on the websites of banks, sports teams, and corporate and government websites.<br /><br /><span style="font-weight: bold;">Uh-oh... I need help!</span><br />Now that we understand what the malware label means in search results, what do you do if you're a webmaster and Google's scanners have found malware on your site?<br /><br />There are some resources to help clean things up. The Google Webmaster Central blog has <a href="http://googlewebmastercentral.blogspot.com/2008/04/my-sites-been-hacked-now-what.html">some tips</a> and a <a href="http://googlewebmastercentral.blogspot.com/2007/09/quick-security-checklist-for-webmasters.html">quick security checklist for webmasters</a>. <a href="http://stopbadware.org/">Stopbadware.org</a> has great information, and their <a href="http://groups.google.com/group/stopbadware">forums</a> have a number of helpful and knowledgeable volunteers who may be able to help (sometimes I'm one of them). You can also use the Google SafeBrowsing diagnostics page for your site (http://www.google.com/safebrowsing/diagnostic?site=<i>&lt;site-name-here&gt;</i>) to see specific information about what Google's automatic scanners have found. If your site has been flagged, Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> lists some of the URLs that were scanned and found to be infected.<br /><br />Once you've cleaned up your website, use Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> to <a href="http://googlewebmastercentral.blogspot.com/2008/08/hey-google-i-no-longer-have-badware.html">request a malware review</a>. The automatic systems will rescan your website and the warning will be removed if the malware is gone.<br /><br /><span style="font-weight: bold;">Advance warning</span><br />I often hear webmasters asking Google for advance warning before a malware label is put on their website. When the label is applied, Google usually <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=45432#2">emails the website owners</a> and then posts a warning in Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a>. But no warning is given ahead of time - <span style="font-weight: bold;">before</span> the label is applied - so a webmaster can't quickly clean up the site before a warning is applied.<br /><br />But, look at the situation from the user's point of view. As a user, I'd be pretty annoyed if Google sent me to a site it knew was dangerous. Even a short delay would expose some users to that risk, and it doesn't seem justified. I know it's frustrating for a webmaster to see a malware label on their website. But, ultimately, protecting users against malware makes the internet a safer place and everyone benefits, both webmasters and users.<br /><br />Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> has started a test to provide <a href="http://googlewebmastercentral.blogspot.com/2008/10/message-center-warnings-for-hackable.html">warnings to webmasters</a> that their server software may be vulnerable. Responding to that warning and updating server software can prevent your website from being compromised with malware. The best way to avoid a malware label is to never have any malware on the site!<br /><br /><span style="font-weight: bold;">Reviews</span><br />You can request a review via Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> and you can see the status of the review there. If you think the review is taking too long, make sure to check the status. Finding all the malware on a site is difficult and the automated scanners are far more accurate than humans. The scanners may have found something you've missed and the review may have failed.  If your site has a malware label, Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> will also list some sample URLs that have problems. This is not a full list of all of the problem URLs (because that's often very, very long), but it should get you started.<br /><br />Finally, don't confuse a malware review with a <a href="http://googlewebmastercentral.blogspot.com/2008/07/requesting-reconsideration-using-google.html">request for reconsideration</a>. If Google's automated scanners find malware on your website, the site will usually not be removed from search results. There is also a different process that removes spammy websites from Google search results. If that's happened and you disagree with Google, you should submit a <a href="http://googlewebmastercentral.blogspot.com/2008/07/requesting-reconsideration-using-google.html">reconsideration request</a>. But if your site has a malware label, a reconsideration request won't do any good — for malware you need to file a malware review from the Overview page.<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_LMSk7hTEaIE/SQJAJQN-pYI/AAAAAAAAtck/DOkV2_QwJdQ/s1600-h/example2.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 202px;" src="http://4.bp.blogspot.com/_LMSk7hTEaIE/SQJAJQN-pYI/AAAAAAAAtck/DOkV2_QwJdQ/s320/example2.png" alt="" id="BLOGGER_PHOTO_ID_5260837842438759810" border="0" /></a><br /><br /><span style="font-weight: bold;">How long will a review take?</span><br />Webmasters are eager to have a Google malware label removed from their site and often ask how long a review of the site will take. Both the original scanning and the review process are fully automated. The systems analyze large portions of the internet, which is big place, so the review may not happen immediately. Ideally, the label will be removed within a few hours. At its longest, the process should take a day or so.<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/GoogleOnlineSecurityBlog?a=Cuj5M"><img src="http://feeds.feedburner.com/~f/GoogleOnlineSecurityBlog?i=Cuj5M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/GoogleOnlineSecurityBlog?a=v7cwm"><img src="http://feeds.feedburner.com/~f/GoogleOnlineSecurityBlog?i=v7cwm" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GoogleOnlineSecurityBlog/~4/431137747" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 24 Oct 2008 10:25:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/malware">malware</category>
      <category domain="http://securityratty.com/tag/google malware label">google malware label</category>
      <category domain="http://securityratty.com/tag/label">label</category>
      <category domain="http://securityratty.com/tag/malware review">malware review</category>
      <category domain="http://securityratty.com/tag/tools">tools</category>
      <category domain="http://securityratty.com/tag/webmaster tools lists">webmaster tools lists</category>
      <category domain="http://securityratty.com/tag/malware label">malware label</category>
      <category domain="http://securityratty.com/tag/webmaster tools">webmaster tools</category>
      <category domain="http://securityratty.com/tag/google">google</category>
      <source url="http://feeds.feedburner.com/~r/GoogleOnlineSecurityBlog/~3/431137747/malware-we-dont-need-no-stinking.html">Malware? We don't need no stinking malware!</source>
    </item>
    <item>
      <title><![CDATA[Malware? We don't need no stinking malware!]]></title>
      <link>http://securityratty.com/article/7b001609aa5afd4ad270a86d179c2f41</link>
      <guid>http://securityratty.com/article/7b001609aa5afd4ad270a86d179c2f41</guid>
      <description><![CDATA[Written by Oliver Fisher

This site may harm your computer
You may have seen those words in Google search results but what do they mean? If you click the search result link you get another warning...]]></description>
      <content:encoded><![CDATA[<span class="byline-author">Written by Oliver Fisher</span><br /><br /><span style="font-weight: bold;">"This site may harm your computer"</span><br />You may have seen those words in Google search results — but what do they mean? If you click the search result link you get another warning page instead of the website you were expecting. But if the web page was your grandmother's baking blog, you're still confused. Surely your grandmother hasn't been secretly honing her l33t computer hacking skills at night school. Google must have made a mistake and your grandmother's web page is just fine...<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_LMSk7hTEaIE/SQI_1LfaQYI/AAAAAAAAtcc/zI4emYNyj4g/s1600-h/example.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 125px;" src="http://3.bp.blogspot.com/_LMSk7hTEaIE/SQI_1LfaQYI/AAAAAAAAtcc/zI4emYNyj4g/s320/example.png" alt="" id="BLOGGER_PHOTO_ID_5260837497572311426" border="0" /></a><br /><br />I work with the team that helps put the warning in Google's search results, so let me try to explain. The good news is that your grandmother is still kind and <a href="http://fitz.blogspot.com/2008/10/everybody-should-have-one.html">loves turtles</a>. She isn't trying to start a botnet or steal credit card numbers. The bad news is that her website or the server that it runs on probably has a security vulnerability, most likely from some out-of-date software. That vulnerability has been exploited and malicious code has been added to your grandmother's website. It's most likely an invisible script or iframe that pulls content from another website that tries to attack any computer that views the page. If the attack succeeds, then viruses, spyware, key loggers, botnets, and other nasty stuff will get installed.<br /><br />If you see the warning on a site in Google's search results, it's a good idea to pay attention to it. Google has automatic scanners that are constantly looking for these sorts of web pages. I help build the scanners and continue to be surprised by how accurate they are. There is almost certainly something wrong with the website even if it is run by someone you trust. The automatic scanners make unbiased decisions based on the malicious content of the pages, not the reputation of the webmaster.<br /><br />Servers are just like your home computer and need constant updating. There are lots of tools that make building a website easy, but each one adds some risk of being exploited. Even if you're diligent and keep all your website components updated, your web host may not be. They control your website's server and may not have installed the most recent OS patches. And it's not just innocent grandmothers that this happens to. There have been warnings on the websites of banks, sports teams, and corporate and government websites.<br /><br /><span style="font-weight: bold;">Uh-oh... I need help!</span><br />Now that we understand what the malware label means in search results, what do you do if you're a webmaster and Google's scanners have found malware on your site?<br /><br />There are some resources to help clean things up. The Google Webmaster Central blog has <a href="http://googlewebmastercentral.blogspot.com/2008/04/my-sites-been-hacked-now-what.html">some tips</a> and a <a href="http://googlewebmastercentral.blogspot.com/2007/09/quick-security-checklist-for-webmasters.html">quick security checklist for webmasters</a>. <a href="http://stopbadware.org/">Stopbadware.org</a> has great information, and their <a href="http://groups.google.com/group/stopbadware">forums</a> have a number of helpful and knowledgeable volunteers who may be able to help (sometimes I'm one of them). You can also use the Google SafeBrowsing diagnostics page for your site (http://www.google.com/safebrowsing/diagnostic?site=<i>&lt;site-name-here&gt;</i>) to see specific information about what Google's automatic scanners have found. If your site has been flagged, Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> lists some of the URLs that were scanned and found to be infected.<br /><br />Once you've cleaned up your website, use Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> to <a href="http://googlewebmastercentral.blogspot.com/2008/08/hey-google-i-no-longer-have-badware.html">request a malware review</a>. The automatic systems will rescan your website and the warning will be removed if the malware is gone.<br /><br /><span style="font-weight: bold;">Advance warning</span><br />I often hear webmasters asking Google for advance warning before a malware label is put on their website. When the label is applied, Google usually <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=45432#2">emails the website owners</a> and then posts a warning in Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a>. But no warning is given ahead of time - <span style="font-weight: bold;">before</span> the label is applied - so a webmaster can't quickly clean up the site before a warning is applied.<br /><br />But, look at the situation from the user's point of view. As a user, I'd be pretty annoyed if Google sent me to a site it knew was dangerous. Even a short delay would expose some users to that risk, and it doesn't seem justified. I know it's frustrating for a webmaster to see a malware label on their website. But, ultimately, protecting users against malware makes the internet a safer place and everyone benefits, both webmasters and users.<br /><br />Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> has started a test to provide <a href="http://googlewebmastercentral.blogspot.com/2008/10/message-center-warnings-for-hackable.html">warnings to webmasters</a> that their server software may be vulnerable. Responding to that warning and updating server software can prevent your website from being compromised with malware. The best way to avoid a malware label is to never have any malware on the site!<br /><br /><span style="font-weight: bold;">Reviews</span><br />You can request a review via Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> and you can see the status of the review there. If you think the review is taking too long, make sure to check the status. Finding all the malware on a site is difficult and the automated scanners are far more accurate than humans. The scanners may have found something you've missed and the review may have failed.  If your site has a malware label, Google's <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a> will also list some sample URLs that have problems. This is not a full list of all of the problem URLs (because that's often very, very long), but it should get you started.<br /><br />Finally, don't confuse a malware review with a <a href="http://googlewebmastercentral.blogspot.com/2008/07/requesting-reconsideration-using-google.html">request for reconsideration</a>. If Google's automated scanners find malware on your website, the site will usually not be removed from search results. There is also a different process that removes spammy websites from Google search results. If that's happened and you disagree with Google, you should submit a <a href="http://googlewebmastercentral.blogspot.com/2008/07/requesting-reconsideration-using-google.html">reconsideration request</a>. But if your site has a malware label, a reconsideration request won't do any good — for malware you need to file a malware review from the Overview page.<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_LMSk7hTEaIE/SQJAJQN-pYI/AAAAAAAAtck/DOkV2_QwJdQ/s1600-h/example2.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 202px;" src="http://4.bp.blogspot.com/_LMSk7hTEaIE/SQJAJQN-pYI/AAAAAAAAtck/DOkV2_QwJdQ/s320/example2.png" alt="" id="BLOGGER_PHOTO_ID_5260837842438759810" border="0" /></a><br /><br /><span style="font-weight: bold;">How long will a review take?</span><br />Webmasters are eager to have a Google malware label removed from their site and often ask how long a review of the site will take. Both the original scanning and the review process are fully automated. The systems analyze large portions of the internet, which is big place, so the review may not happen immediately. Ideally, the label will be removed within a few hours. At its longest, the process should take a day or so.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/GoogleOnlineSecurityBlog?a=SIUWOyG4"><img src="http://feedproxy.google.com/~f/GoogleOnlineSecurityBlog?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/GoogleOnlineSecurityBlog?a=62ZsGul3"><img src="http://feedproxy.google.com/~f/GoogleOnlineSecurityBlog?i=62ZsGul3" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/GoogleOnlineSecurityBlog/~4/FIyRCnLebV4" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 24 Oct 2008 10:25:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/malware">malware</category>
      <category domain="http://securityratty.com/tag/google malware label">google malware label</category>
      <category domain="http://securityratty.com/tag/label">label</category>
      <category domain="http://securityratty.com/tag/malware review">malware review</category>
      <category domain="http://securityratty.com/tag/tools">tools</category>
      <category domain="http://securityratty.com/tag/webmaster tools lists">webmaster tools lists</category>
      <category domain="http://securityratty.com/tag/malware label">malware label</category>
      <category domain="http://securityratty.com/tag/webmaster tools">webmaster tools</category>
      <category domain="http://securityratty.com/tag/google">google</category>
      <source url="http://feedproxy.google.com/~r/GoogleOnlineSecurityBlog/~3/FIyRCnLebV4/malware-we-dont-need-no-stinking.html">Malware? We don't need no stinking malware!</source>
    </item>
    <item>
      <title><![CDATA[Compromised Portfolios of Legitimate Domains for Sale]]></title>
      <link>http://securityratty.com/article/5b1e0d15dd199fd7476dbd877e605255</link>
      <guid>http://securityratty.com/article/5b1e0d15dd199fd7476dbd877e605255</guid>
      <description><![CDATA[Is the demand for access to compromised legitimate portfolios of domains -- where the price is based on the pagerank and is shaped by the number of domains in question -- the main growth factor for...]]></description>
      <content:encoded><![CDATA[<a href="http://1.bp.blogspot.com/_wICHhTiQmrA/SQHOMySS3JI/AAAAAAAACWQ/Hs8QGER1I60/s1600-h/compromised_web_hosting_portfolio.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img alt="" border="0" id="BLOGGER_PHOTO_ID_5260712558797708434" src="http://1.bp.blogspot.com/_wICHhTiQmrA/SQHOMySS3JI/AAAAAAAACWQ/Hs8QGER1I60/s200/compromised_web_hosting_portfolio.jpg" style="cursor: pointer; float: left; height: 103px; margin: 0pt 10px 10px 0pt; width: 200px;" /></a>Is the demand for access to <a href="http://ddanchev.blogspot.com/2008/08/compromised-cpanel-accounts-for-sale.html">compromised legitimate portfolios of domains</a> -- where the price is based on the pagerank and is shaped by the number of domains in question -- the main growth factor for the increasing supply of such stolen accounting data, or is it the result of cybercriminals data mining their botnets for accounting data that would provide them with access to such <a href="http://ddanchev.blogspot.com/2008/09/adult-network-of-1448-domains.html">portfolios of high trafficked domains with clean reputation</a>? Moreover, would such a data mining approach made easily possible due to the availability of botnet parsing services and stolen accounting data dumps streaming directly from a botnet, would in fact be the more efficient approach in injecting their malicious presence on as many hosts as possible, next to the plain simple <a href="http://ddanchev.blogspot.com/2008/10/massive-sql-injection-attacks-chinese.html">massive SQL injection approach</a>?<br />
<br />
As always, it's a matter of who you're dealing with, and their understanding of the exclusiveness of a particular underground item at a given period of time. This exclusiveness is inevitably going to increase due to the fact that they're several "vendors" that are already purchasing access to such portfolios, as well as compromised Cpanel accounts as a core business, the access to which they would later on either resell at a higher price enjoying the underground market's lack of transparency, or directly monetize and break-even immediatelly. As for this particular proposition for an account with 404 domains in it, it's interesting to monitor how the seller is soliciting bids from multiple sources by leaving the price an open topic, clearly indicating his low profile into the underground ecosystem. How come? An experienced seller or buyer would be offering or requesting page rank verification respectively.<br />
<br />
With nearly each and every aspect of cybercrime already available as a service, or literally outsourced as a process to those supposidely excelling into a particular practice, building capabilities for data mining botnets is no longer a requirement, with the people behind the botnets monetizing all the data coming from it by soliciting deals of accounting data dumps based on a particular country only.<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=KaXaM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=KaXaM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=5JUrM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=5JUrM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=iASQm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=iASQm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=H5nPm"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=H5nPm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=OsSgM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=OsSgM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=WgfUM"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=WgfUM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=o6U7m"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=o6U7m" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/430818024" height="1" width="1"/>]]></content:encoded>
      <pubDate>Fri, 24 Oct 2008 06:24:33 +0000</pubDate>
      <category domain="http://securityratty.com/tag/data">data</category>
      <category domain="http://securityratty.com/tag/data dumps based">data dumps based</category>
      <category domain="http://securityratty.com/tag/data dumps">data dumps</category>
      <category domain="http://securityratty.com/tag/domains">domains</category>
      <category domain="http://securityratty.com/tag/cybercriminals data">cybercriminals data</category>
      <category domain="http://securityratty.com/tag/portfolios">portfolios</category>
      <category domain="http://securityratty.com/tag/based">based</category>
      <category domain="http://securityratty.com/tag/access">access</category>
      <category domain="http://securityratty.com/tag/botnets">botnets</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/430818024/compromised-portfolios-of-legitimate.html">Compromised Portfolios of Legitimate Domains for Sale</source>
    </item>
    <item>
      <title><![CDATA[Kip Hawley Responds to My Airport Security Antics]]></title>
      <link>http://securityratty.com/article/2e95c109ca3f99365400804e6c31b4dd</link>
      <guid>http://securityratty.com/article/2e95c109ca3f99365400804e6c31b4dd</guid>
      <description><![CDATA[Kip Hawley, head of the TSA, has responded to my airport security penetration testing , published in The Atlantic
Unfortunately, there's not really anything to his response. It's obvious he doesn't...]]></description>
      <content:encoded><![CDATA[<p>Kip Hawley, head of the TSA, has <a href="http://www.tsa.gov/blog/2008/10/tsas-take-on-atlantic-article.html">responded</a> to my <a href="http://www.schneier.com/blog/archives/2008/10/me_helping_evad.html">airport security penetration testing</a>, published in <i>The Atlantic</i>.</p>

<p>Unfortunately, there's not really anything to his response.  It's obvious he doesn't want to admit that they've been checking ID's all this time to no purpose whatsoever, so he just emits vague generalities like a frightened squid filling the water with ink.  Yes, some of the stunts in article are silly (who cares if people fly with Hezbollah T-shirts?) so that gives him an opportunity to minimize the real issues.</p>

<blockquote>Watch-lists and identity checks are important and effective security measures. We identify dozens of terrorist-related individuals a week and stop No-Flys regularly with our watch-list process.</blockquote>

<p>It is simply impossible that the TSA catches dozens of terrorists every week. If it were true, the administration would be trumpeting this all over the press -- it would be an amazing success story in their war on terrorism.  But note that Hawley doesn't exactly say that; he calls them "terrorist-related individuals."  Which means exactly what?  People so dangerous they can't be allowed to fly for any reason, yet so innocent they can't be arrested -- even under the provisions of the Patriot Act.</p>

<p>And if Secretary Chertoff is telling the truth when he <a href="http://www.cnn.com/2008/TRAVEL/10/22/no.fly.lists/index.html">says</a> that there are only 2,500 people on the no-fly list and fewer than 16,000 people on the selectee list -- they're the ones that get extra screening -- and that most of them live outside the U.S., then it is statistically impossible that the TSA identifies "dozens" of these people every week.  The math just doesn't make sense.</p>

<p>And I also don't believe this:</p>

<blockquote>Behavior detection works and we have 2,000 trained officers at airports today. They alert us to people who may pose a threat but who may also have items that could elude other layers of physical security.</blockquote>

<p>It does work, but I don't see the TSA doing it properly.  (Fly El Al if you want to see it done properly.)  But what I think Hawley is doing is engaging in a little bit of psychological manipulation.  Like sky marshals, the real benefit of behavior detection isn't whether or not you do it but whether or not the bad guys <i>believe</i> you're doing it.  If they think you are doing behavior detection at security checkpoints, or have sky marshals on every airplane, then you don't actually have to do it.  It's the threat that's the deterrent, not the actual security system.</p>

<p>This doesn't impress me, either:</p>

<blockquote>Items carried on the person, be they a 'beer belly' or concealed objects in very private areas, are why we are buying over 100 whole body imagers in upcoming months and will deploy more over time. In the meantime, we use hand-held devices that detect hydrogen peroxide and other explosives compounds as well as targeted pat-downs that require private screening.</blockquote>

<p>Optional security measures don't work, because the bad guys will opt not to use them.  It's like those air-puff machines at some airports now.  They're probably great at detecting explosive residue off clothing, but every time I have seen the machines in operation, the passengers have the option whether to go through the lane with them or another lane.  What possible good is that?</p>

<p>The closest thing to a real response from Hawley is that the terrorists might get caught stealing credit cards.</p>

<blockquote>Using stolen credit cards and false documents as a way to get around watch-lists makes the point that forcing terrorists to use increasingly risky tactics has its own security value.</blockquote>

<p>He's right about that.  And, truth be told, that was my sloppiest answer during the original intervied.  Thinking about it afterwards, it's far more likely is that someone with a clean record and a legal credit card will buy the various plane tickets.</p>

<p>This is new:</p>

<blockquote>Boarding pass scanners and encryption are being tested in eight airports now and more will be coming.</blockquote>

<p>Ignoring for a moment that "eight airports" nonsense -- unless you do it at every airport, the bad guys will choose the airport where you don't do it to launch their attack -- this is an excellent idea.  The reason my attack works, the reason I can get through TSA checkpoints with a fake boarding pass, is that the TSA never confirms that the information on the boarding pass matches a legitimate reservation.  If all TSA checkpoints had boarding pass scanners that connected to the airlines' computers, this attack would not work.  (Interestingly enough, I noticed exactly this system at the Dublin airport earlier this month.)</p>

<blockquote>Stopping the ‘James Bond’ terrorist is truly a team effort and I whole-heartedly agree that the best way to stop those attacks is with intelligence and law enforcement working together.</blockquote>

<p>This isn't about "Stopping the 'James Bond' terrorist," it's about stopping terrorism.  And if all this focus on airports, even assuming it starts working, shifts the terrorists to other targets, we haven't gotten a whole lot of security for our money.</p>

<p>FYI:  I did a <a href="http://www.schneier.com/interview-hawley.html">long interview</a> with Kip Hawley last year. If you haven't read it, I strongly recommend you do.  I pressed him on these and many other points, and didn't get very good answers then, either.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=eD30M"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=eD30M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=Ih06M"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=Ih06M" border="0"></img></a>
</div>]]></content:encoded>
      <pubDate>Thu, 23 Oct 2008 02:24:17 +0000</pubDate>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/airport">airport</category>
      <category domain="http://securityratty.com/tag/effective security measures">effective security measures</category>
      <category domain="http://securityratty.com/tag/dublin airport">dublin airport</category>
      <category domain="http://securityratty.com/tag/airport security penetration">airport security penetration</category>
      <category domain="http://securityratty.com/tag/security checkpoints">security checkpoints</category>
      <category domain="http://securityratty.com/tag/kip hawley">kip hawley</category>
      <category domain="http://securityratty.com/tag/tsa">tsa</category>
      <category domain="http://securityratty.com/tag/tsa identifies">tsa identifies</category>
      <source url="http://www.schneier.com/blog/archives/2008/10/kip_hawley_resp.html">Kip Hawley Responds to My Airport Security Antics</source>
    </item>
    <item>
      <title><![CDATA[The NSA Teams Up with the Chinese Government to Limit Internet Anonymity]]></title>
      <link>http://securityratty.com/article/503f5010550f387cf3db2d9c00072cbb</link>
      <guid>http://securityratty.com/article/503f5010550f387cf3db2d9c00072cbb</guid>
      <description><![CDATA[Definitely strange bedfellows : A United Nations agency is quietly drafting technical standards, proposed by the Chinese government, to define methods of tracing the original source of Internet...]]></description>
      <content:encoded><![CDATA[<p>Definitely <a href="http://news.cnet.com/8301-13578_3-10040152-38.html">strange bedfellows</a>:</p>

<blockquote>A United Nations agency is quietly drafting technical standards, proposed by the Chinese government, to define methods of tracing the original source of Internet communications and potentially curbing the ability of users to remain anonymous.

<p>The U.S. National Security Agency is also participating in the "IP Traceback" drafting group, named Q6/17, which is meeting next week in Geneva to work on the traceback proposal. Members of Q6/17 have declined to release key documents, and meetings are closed to the public.</p>

<p>[...]</p>

<p>A second, <a href="http://politechbot.com/docs/itu.traceback.use.cases.requirements.091108.txt">apparently leaked ITU document</a> offers surveillance and monitoring justifications that seem well-suited to repressive regimes:</p>

<blockquote>A political opponent to a government publishes articles putting the government in an unfavorable light. The government, having a law against any opposition, tries to identify the source of the negative articles but the articles having been published via a proxy server, is unable to do so protecting the anonymity of the author.</blockquote></blockquote>

<p>This is being sold as a way to go after the bad guys, but it won't help.  Here's Steve Bellovin <a href="http://www.cs.columbia.edu/~smb/blog/2008-09/2008-09-04.html">on that issue</a>:</p>

<blockquote>First, very few attacks these days use spoofed source addresses; the real IP address already tells you where the attack is coming from. Second, in case of a DDoS attack, there are too many sources; you can't do anything with the information. Third, the machine attacking you is almost certainly someone else's hacked machine and tracking them down (and getting them to clean it up) is itself time-consuming.</blockquote>

<p>TraceBack is most useful in monitoring the activities of large masses of people.  But of course, that's why the Chinese and the NSA are so interested in this proposal in the first place.</p>

<p>It's hard to figure out what the endgame is; the U.N. doesn't have the authority to impose Internet standards on anyone.  In any case, this idea is counter to the U.N. Universal Declaration of Human Rights, Article 19:  "Everyone has the right to freedom of opinion and expression; this right includes freedom to hold opinions without interference and to seek, receive and impart information and ideas through any media and regardless of frontiers."   In the U.S., it's counter to the First Amendment, which has long permitted anonymous speech.  On the other hand, basic human and constitutional rights have been jettisoned left and right in the years after 9/11; why should this be any different?</p>

<p>But when the Chinese government and the NSA get together to enhance their ability to spy on the world, you have to wonder what's gone wrong with the world.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=ROw6L"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=ROw6L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/schneier/fulltext?a=dQUlL"><img src="http://feeds.feedburner.com/~f/schneier/fulltext?i=dQUlL" border="0"></img></a>
</div>]]></content:encoded>
      <pubDate>Thu, 18 Sep 2008 02:34:11 +0000</pubDate>
      <category domain="http://securityratty.com/tag/government">government</category>
      <category domain="http://securityratty.com/tag/chinese government">chinese government</category>
      <category domain="http://securityratty.com/tag/chinese">chinese</category>
      <category domain="http://securityratty.com/tag/articles">articles</category>
      <category domain="http://securityratty.com/tag/negative articles">negative articles</category>
      <category domain="http://securityratty.com/tag/government publishes articles">government publishes articles</category>
      <category domain="http://securityratty.com/tag/source">source</category>
      <category domain="http://securityratty.com/tag/proposal">proposal</category>
      <category domain="http://securityratty.com/tag/original source">original source</category>
      <source url="http://www.schneier.com/blog/archives/2008/09/the_nsa_teams_u.html">The NSA Teams Up with the Chinese Government to Limit Internet Anonymity</source>
    </item>
  </channel>
</rss>
