<?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: restart]]></title>
    <link>http://securityratty.com/tag/restart</link>
    <description></description>
    <pubDate>Thu, 17 Apr 2008 17:38:20 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[MS08-067 and the SDL]]></title>
      <link>http://securityratty.com/article/df5eba2c21ebdf631d2dd9fbe82532ab</link>
      <guid>http://securityratty.com/article/df5eba2c21ebdf631d2dd9fbe82532ab</guid>
      <description><![CDATA[Hi, Michael here
No doubt you are aware of the out-of-band security bulletin issued by the Microsoft Security Response Center today, and like all security vulnerabilities, this is a vulnerability we...]]></description>
      <content:encoded><![CDATA[<P mce_keep="true">Hi, Michael here.</P>
<P>No doubt you are aware of the out-of-band security bulletin issued by the <A href="http://www.microsoft.com/technet/security/Bulletin/MS08-067.mspx" mce_href="http://www.microsoft.com/technet/security/Bulletin/MS08-067.mspx">Microsoft Security Response Center</A> today, and like all security vulnerabilities, this is a vulnerability we can learn from and, if necessary, can use to shape future versions of the Security Development Lifecycle (SDL).</P>
<P>Before I get into some of the details, it's important to understand that the SDL is designed as a multi-pronged security process to help systemically reduce security vulnerabilities. In theory, if one facet of the SDL process fails to prevent or catch a bug, then some other facet should prevent or catch the bug. The SDL also mandates the use of security defenses, because we know full well that the SDL process will never catch all security bugs. As we have said many times, the goal of the SDL is to "Reduce vulnerabilities, and reduce the severity of what's missed."</P>
<P>In this post, I want to focus on the SDL-required code analysis, code review, fuzzing and compiler and operating system defenses and how they fared.</P>
<H3>Code Analysis and Review</H3>
<P>I want to start by analyzing the code to understand why we did not find this bug through manual code review nor through the use of our static analysis tools. First, the code in question is reasonably complex code to canonicalize path names; for example, strip out ‘..' characters and such to arrive at the simplest possible directory name. The bug is a stack-based buffer overflow inside a loop; finding buffer overruns in loops, especially complex loops, is difficult to detect with a high degree of probability without producing many false positives. At a later date I will publish more of the source code for the function. </P>
<P>The loop inside the function walks along an incoming string to determine if a character in the path might be a dot, dot-dot, slash or backslash and if it is then applies canonicalization algorithms.</P>
<P>The irony of the bug is it occurs while calling a bounded function call:</P>
<BLOCKQUOTE>
<P>_tcscpy_s(previousLastSlash, pBufferEnd - previousLastSlash, ptr + 2);</P></BLOCKQUOTE>
<P>This function is a macro that expands to <A href="http://msdn.microsoft.com/en-us/library/td1esda9(VS.80).aspx" mce_href="http://msdn.microsoft.com/en-us/library/td1esda9(VS.80).aspx">wcscpy_s</A>(dest, len, source); technically, the bug is not in the call to wcscpy_s, but it's in the way the arguments are calculated. As I alluded to, all three arguments are highly dynamic and constantly updated within the while() loop. There is a great deal of pointer arithmetic in this loop. Without going into all the gory attack details, given a specific path, and after the while() loop has been passed through a few times, the pointer, previousLastSlash, gets clobbered. </P>
<P>In my opinion, hand reviewing this code and successfully finding this bug would require a great deal of skill and luck. So what about tools?&nbsp; It's very difficult to design an algorithm which can analyze C or C++ code for these sorts of errors.&nbsp; The possible variable states grows very, very quickly.&nbsp; It's even more difficult to take such algorithms and scale them to non-trivial code bases. This is made more complex as the function accepts a highly variable argument, it's not like the argument is the value 1, 2 or 3! Our present toolset does not catch this bug. </P>
<P>Ok, now I'm really going out on a limb with this next section.</P>
<P>Over the last year or so I've noticed that the security vulnerabilities across Microsoft, but most noticeably in Windows have become bugs of a class I call "onesey - twosies" in other words, one-off bugs. There is a good side and a bad side to this. First the good news; I think perhaps we have removed a good number of the low-hanging security vulnerabilities from many of our products, especially the newer code. The bad news is, we'll continue to have vulnerabilities because you cannot train a developer to hunt for unique bugs, and creating tools to find such bugs is also hard to do without incurring an incredible volume of false positives. With all that said, I will add detail about one-off bugs to our internal education; I think it's important to make people aware that even with great tools and great security-savvy engineers, there are still bugs that are very hard to find.</P>
<H3>Fuzz Testing</H3>
<P>I'll be blunt; our fuzz tests did not catch this and they should have. So we are going back to our fuzzing algorithms and libraries to update them accordingly. For what it's worth, we constantly update our fuzz testing heuristics and rules, so this bug is not unique.</P>
<H3>Defenses</H3>
<P>If you want the full details of the defenses, and how they come into play on Windows Vista and Windows Server 2008, I urge you to read teh SVRD team's in-depth <A href="http://blogs.technet.com/swi/" mce_href="http://blogs.technet.com/swi/">analysis</A>&nbsp;once it is posted.</P>
<P>A big focus of the SDL is to define and require defenses because we have no allusions about finding or preventing all security vulnerabilities by attempting to get the code right all the time, because no-one can do that. No one. &nbsp;See my comment above about one-off bugs! </P>
<P>Let's look at each SDL mandated requirement and how they fared in light of this vulnerability.</P>
<H4>-GS</H4>
<P>The -GS story is not so simple. A lot of code is executed before a cookie check is made and the attacker can control the overflow because the overflow starts at an offset before the stack buffer, rather than at the stack buffer itself. So the attacker can overwrite other frames on the call stack, corresponding to functions that return before a cookie check is made. That's a long way of saying that -GS was not meant to prevent this type of scenarios.</P>
<H4>ASLR and NX</H4>
<P>The code fully complies with the SDL, and is linked with /DYNAMICBASE and /NXCOMPAT on Windows Vista and Windows Server 2008. There are great defenses when used together, and reduce the chance of a successful attack substantially. Also, the stack offset is randomized too, making a deterministic attack even more unlikely.</P>
<H4>Service Restart Policy</H4>
<P>By default the affected service is marked to restart only twice after a crash on Windows Vista and Windows Server 2008, which means the attacker has only two attempts to get the attack right. Prior to Windows Vista, the attacker has unlimited attempts because the service restarts indefinitely. </P>
<H4>Authentication</H4>
<P>Thanks to mandatory integrity control (MIC) settings (which comes courtesy of UAC) the networking endpoint that leads to the vulnerable code requires authentication on Windows Vista and Windows Server 2008 by default. Prior to Windows Vista, the end point is always anonymous, so anyone can attack it, so long as the attacker can traverse the firewall. This is a great example of SDL's focus on attack surface reduction; requiring authentication means the number of attackers that can access the entry point is dramatically reduced.</P>
<H4>Firewall</H4>
<P>We enabled the firewall by default in Windows XP SP2 and later, this was a direct learning from the Blaster worm. By default, ports 139 and 445 are not opened to the Internet on Windows XP SP2, Windows Vista and Windows Server 2008. </P>
<H3>Summary</H3>
<P>The $64,000 question we ask ourselves when we issue any bulletin is "did SDL fail?" and the answer in this case is categorically "No!" No because as I said earlier the goal of the SDL is "Reduce vulnerabilities, and reduce the severity of what you miss." Windows Vista and Windows Server 2008 customers are protected by the defenses in the operating system that have been crafted in part by the SDL. The development team who built the affected component compiled and linked with the appropriate settings as described in "<A href="http://msdn.microsoft.com/en-us/library/bb430720.aspx" mce_href="http://msdn.microsoft.com/en-us/library/bb430720.aspx">Windows Vista ISV Security</A>" and <A href="http://www.microsoft.com/mspress/books/10723.aspx" mce_href="http://www.microsoft.com/mspress/books/10723.aspx">Writing Secure Code for Windows Vista</A> so that their service is protected by the operating system. </P>
<P>The team did not poke holes through the firewall unnecessarily, in accordance with the SDL.</P>
<P>The team reduced their attack surface, in accordance with the SDL, by requiring authenticated connections rather than anonymous connections by default.</P>
<P>We know that the SDL-mandated -GS has very strict heuristics so some functions are not protected by a stack cookie, but in this case, there is no buffer on the stack, so there will be no cookie. We know this. There are no plans to remedy this in the short term. </P>
<P>Fuzzing missed the bug, so we will update our fuzz testing heuristics, but we continually update our fuzzing heuristics anyway. </P>
<P>In short, based on what we know right now, Windows Vista and Windows Server 2008 customers are protected because of the SDL-mandated defenses in the operating system, and because the development team adhered to the letter of the SDL to take advantage of those defenses.</P>
<P>Chalk one up for Windows Vista and later and the SDL!</P>
<P>As usual, questions and comments are very welcome.</P><img src="http://blogs.msdn.com/aggbug.aspx?PostID=9012073" width="1" height="1">]]></content:encoded>
      <pubDate>Wed, 22 Oct 2008 21:09:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/manual code review">manual code review</category>
      <category domain="http://securityratty.com/tag/code review">code review</category>
      <category domain="http://securityratty.com/tag/vulnerabilities">vulnerabilities</category>
      <category domain="http://securityratty.com/tag/reduce security vulnerabilities">reduce security vulnerabilities</category>
      <category domain="http://securityratty.com/tag/sdl">sdl</category>
      <category domain="http://securityratty.com/tag/windows">windows</category>
      <category domain="http://securityratty.com/tag/windows server">windows server</category>
      <category domain="http://securityratty.com/tag/sdl process fails">sdl process fails</category>
      <category domain="http://securityratty.com/tag/sdl process">sdl process</category>
      <source url="http://blogs.msdn.com/sdl/archive/2008/10/22/ms08-067.aspx">MS08-067 and the SDL</source>
    </item>
    <item>
      <title><![CDATA[FBI Announces They Operated and Closed the Dark Market Site]]></title>
      <link>http://securityratty.com/article/d41d35e862df52fd061da3218e9f9e38</link>
      <guid>http://securityratty.com/article/d41d35e862df52fd061da3218e9f9e38</guid>
      <description><![CDATA[Something rings strange to me in these reports of the Feds having operated a forum and marketplace site for hackers, Dark Market. The article in Wired claims the Feds were tracking hackers movements...]]></description>
      <content:encoded><![CDATA[<p>Something rings strange to me in <a rel="nofollow" target="_blank" href="http://blog.wired.com/27bstroke6/2008/10/darkmarket-post.html">these reports</a> of the Feds having operated a forum and marketplace site for hackers, Dark Market. The article in Wired claims the Feds were tracking hacker&#8217;s movements and acquiring intelligence so they could perform a sting operation and catch the criminals. Then they closed the site and publicly announced their involvement with it:</p>
<blockquote><p>The FBI almost certainly closed DarkMarket in preparation for a global wave of arrests that will unfold in the next month or so. The site was likely shuttered to avoid an Agatha Christie scenario in which a diminishing pool of cybercrooks are free to speculate about why they&#8217;re disappearing one-by-one like the hapless dinner guests in <em>Ten Little Indians</em>.</p></blockquote>
<p>How on Earth does that make sense? If they close the market and announce their involvement, now they&#8217;ve given up their cover and surely all the hackers already know the FBI is on to them. They can simply move and restart their operations somewhere else.</p>
<p>Read the whole <a rel="nofollow" target="_blank" href="http://blog.wired.com/27bstroke6/2008/10/darkmarket-post.html">Wired article </a>here.</p>]]></content:encoded>
      <pubDate>Wed, 15 Oct 2008 07:00:31 +0000</pubDate>
      <category domain="http://securityratty.com/tag/site">site</category>
      <category domain="http://securityratty.com/tag/market">market</category>
      <category domain="http://securityratty.com/tag/dark market">dark market</category>
      <category domain="http://securityratty.com/tag/fbi">fbi</category>
      <category domain="http://securityratty.com/tag/marketplace site">marketplace site</category>
      <category domain="http://securityratty.com/tag/hackers movements">hackers movements</category>
      <category domain="http://securityratty.com/tag/hackers">hackers</category>
      <category domain="http://securityratty.com/tag/hapless dinner guests">hapless dinner guests</category>
      <category domain="http://securityratty.com/tag/agatha christie scenario">agatha christie scenario</category>
      <source url="http://feeds.feedburner.com/~r/itsecurity/~3/421823951/">FBI Announces They Operated and Closed the Dark Market Site</source>
    </item>
    <item>
      <title><![CDATA[Something in the latest Windows update is hosing my laptop]]></title>
      <link>http://securityratty.com/article/039d0aa242a56743a72cb5e4b8801f19</link>
      <guid>http://securityratty.com/article/039d0aa242a56743a72cb5e4b8801f19</guid>
      <description><![CDATA[Readers of this blog know that I am not a Microsoft basher. So when I complain about something regarding Microsoft I am not doing it to just kick dirt on them. But something in the latest Windows...]]></description>
      <content:encoded><![CDATA[<div>Readers of this blog know that I am not a Microsoft basher. So when I complain about something regarding Microsoft I am not doing it to just kick dirt on them. But something in the latest Windows update is killing my laptop. I downloaded the latest update as part of the automated update a few days ago. It said I had to restart the computer for the updates to take effect. I waited to restart since I was on the road and just hibernating my computer.<br><br>Since coming home this weekend I rebooted and the problems have started. First of all when I have Outlook running at the same time as IE they seem to be interfering with each other and the computer just freezes with "not responding" messages in both title bars. As much as that sucks, eventually it seems to work its way out and the page refreshes. However, another fatal error happens consistently now where the cursor just freezes, the screen locks and there is nothing I can do to shake it lose without powering down by holding the power button. Then of course on reboot I have to go through dreaded Outlook "check the file for problems" check which chews up another 15 minutes.<br><br>This is getting really tired now. Thankfully I am out in Colorado tomorrow and will have our IT folks have a look. But having my computer lock up is not fun. If it is indeed due to the latest hotfix I am going to be really upset. There is just no excuse for this. Those Power Macs are starting to look might good!</div>
<p><a href="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?a=uGtLOP"><img src="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?i=uGtLOP" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=SKlTIH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=SKlTIH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=LnbhLH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=LnbhLH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=rwp7HH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=rwp7HH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=miG4OH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=miG4OH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=QqpmOh"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=QqpmOh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=dBp63h"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=dBp63h" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/293126909" height="1" width="1"/>]]></content:encoded>
      <pubDate>Sun, 18 May 2008 15:25:50 +0000</pubDate>
      <category domain="http://securityratty.com/tag/computer lock">computer lock</category>
      <category domain="http://securityratty.com/tag/computer">computer</category>
      <category domain="http://securityratty.com/tag/microsoft">microsoft</category>
      <category domain="http://securityratty.com/tag/microsoft basher">microsoft basher</category>
      <category domain="http://securityratty.com/tag/laptop">laptop</category>
      <category domain="http://securityratty.com/tag/days ago">days ago</category>
      <category domain="http://securityratty.com/tag/kick dirt">kick dirt</category>
      <category domain="http://securityratty.com/tag/windows">windows</category>
      <category domain="http://securityratty.com/tag/fatal error">fatal error</category>
      <source url="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~3/293126909/something-in-th.html">Something in the latest Windows update is hosing my laptop</source>
    </item>
    <item>
      <title><![CDATA[The hackers that couldn't code straight]]></title>
      <link>http://securityratty.com/article/758d3cfe02807cd3236b0e66fd656006</link>
      <guid>http://securityratty.com/article/758d3cfe02807cd3236b0e66fd656006</guid>
      <description><![CDATA[Had to laugh reading this story about the three men charged with hacking and installing a packet-sniffer at several Dave and Buster restaurants across the US. The scam did result in hundreds of...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p>Had to laugh reading <a href="http://news.yahoo.com/s/pcworld/20080512/tc_pcworld/145781" target="_blank">this story</a> about the three men charged with hacking and installing a packet-sniffer at several Dave and Buster restaurants across the US. The scam did result in hundreds of thousands of dollars of fraudulent bank card charges. However, the packet sniffer software was so buggy that when it was first installed at the first Dave and Busters, it did not even work and captured no credit card data.&nbsp; The next version of the program worked a little better, but it seems the criminals had to continually go back to the restaurants and restart the program when it hung up!</p> <p>I don't know what is more disgusting.&nbsp; The lack of quality of the sniffer program or the apparent lack of any security at all by the folks running the restaurants.&nbsp; In any event I see a bright future for the outsourcing of hacking programs to people who can do a better job than this Apple Dumpling Gang.</p></div>

<p><a href="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?a=Yrqwzz"><img src="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?i=Yrqwzz" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=8PFb7H"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=8PFb7H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=nC0aoH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=nC0aoH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=onGv6H"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=onGv6H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=6nmRtH"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=6nmRtH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=H45juh"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=H45juh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=k2sq7h"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=k2sq7h" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/289114912" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 12 May 2008 17:25:43 +0000</pubDate>
      <category domain="http://securityratty.com/tag/program">program</category>
      <category domain="http://securityratty.com/tag/sniffer program">sniffer program</category>
      <category domain="http://securityratty.com/tag/restaurants">restaurants</category>
      <category domain="http://securityratty.com/tag/buster restaurants">buster restaurants</category>
      <category domain="http://securityratty.com/tag/apparent lack">apparent lack</category>
      <category domain="http://securityratty.com/tag/credit card data">credit card data</category>
      <category domain="http://securityratty.com/tag/packet sniffer software">packet sniffer software</category>
      <category domain="http://securityratty.com/tag/lack">lack</category>
      <category domain="http://securityratty.com/tag/dave">dave</category>
      <source url="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~3/289114912/the-hackers-tha.html">The hackers that couldn't code straight</source>
    </item>
    <item>
      <title><![CDATA[30 tech myths debunked]]></title>
      <link>http://securityratty.com/article/8cce43a993528cd61433e952b4890b8b</link>
      <guid>http://securityratty.com/article/8cce43a993528cd61433e952b4890b8b</guid>
      <description><![CDATA[Go to the Start menu, click on Run and type &quot;convert C:windows mac OS&quot; and wait for 10 minutes and restart. This hidden command will convert your regular Windows PC into a Macintosh with Leopard. You...]]></description>
      <content:encoded><![CDATA[Go to the Start menu, click on Run and type "convert C:\windows mac_OS" and wait for 10 minutes and restart. This hidden command will convert your regular Windows PC into a Macintosh with Leopard. You didn't really believe this, did you? For the record, that is just plain impossible. But then, there are several myths floating around about PCs and gadgets that actually seem plausible. Some are just bad practical jokes (like e-mails saying Microsoft or AOL would donate money for every forward sent) while some are distorted facts. Even for a techie, it sometimes becomes difficult to tell fact from fiction -- so here is a collection of some popular misconceptions and our explanations to help clear the air.]]></content:encoded>
      <pubDate>Thu, 24 Apr 2008 20:00:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/bad practical jokes">bad practical jokes</category>
      <category domain="http://securityratty.com/tag/popular misconceptions">popular misconceptions</category>
      <category domain="http://securityratty.com/tag/plain impossible">plain impossible</category>
      <category domain="http://securityratty.com/tag/windows mac">windows mac</category>
      <category domain="http://securityratty.com/tag/myths">myths</category>
      <category domain="http://securityratty.com/tag/start menu">start menu</category>
      <category domain="http://securityratty.com/tag/convert">convert</category>
      <category domain="http://securityratty.com/tag/regular windows">regular windows</category>
      <category domain="http://securityratty.com/tag/e-mails">e-mails</category>
      <source url="http://www.networkworld.com/news/2008/042508-30-tech-myths.html?fsrc=rss-security">30 tech myths debunked</source>
    </item>
    <item>
      <title><![CDATA[Chinese Hacktivists Waging People's Information Warfare Against CNN]]></title>
      <link>http://securityratty.com/article/05c9fa38479affa4d154230adf02a08e</link>
      <guid>http://securityratty.com/article/05c9fa38479affa4d154230adf02a08e</guid>
      <description><![CDATA[Empowering and coordinating script kiddies by releasing DIY DDoS tools (backdoored as well) during the DDoS attacks against Estonia for instance, is exactly what is happening in the time of blogging...]]></description>
      <content:encoded><![CDATA[<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_wICHhTiQmrA/SA0mJdDpixI/AAAAAAAABmQ/Urb3lYBmDhU/s1600-h/hackcnn.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_wICHhTiQmrA/SA0mJdDpixI/AAAAAAAABmQ/Urb3lYBmDhU/s200/hackcnn.jpg" alt="" id="BLOGGER_PHOTO_ID_5191847889288661778" border="0" /></a>Empowering and coordinating script kiddies by <a href="http://ddanchev.blogspot.com/2007/10/empowering-script-kiddies.html">releasing DIY DDoS tools (backdoored as well)</a> during the <a href="http://ddanchev.blogspot.com/2007/08/your-point-of-view-requested.html">DDoS attacks against Estonia</a> for instance, is exactly what is happening in the time of blogging with a massive forum and IM coordination between Chinese netizens enticed to install a pre-configured to flood CNN.com piece of malware. Both of these coordinated incidents greatly illustrate what <a href="http://ddanchev.blogspot.com/2007/10/peoples-information-warfare-concept.html">people's information warfare, and the malicious culture of participation</a> is all about. The PSYOPS <span style="font-weight: bold;">anti-cnn.com</span> initiative is maturing into a central coordination point for recruiting DDoS participants on a nationalism level. Some info on <span style="font-weight: bold;">hackcnn.com</span>, the malware, internal commentary on behalf of the hacktivists, and who's behind it :<br /><br /><span style="font-weight: bold;">hackcnn.com</span> (58.49.59.253)<br />58.48.0.0-58.55.255.255 CHINANET-HB CHINANET Hubei province network China Telecom A12<br />Xin-Jie-Kou-Wai Street Beijing 100088,<br />China, Beijing 100000<br />tel:  101 1010000<br />fax:  101 1010000<br />china@hackcnn.com<br /><br />Upon execution of the tool, 18 TCP Connection Attempts to cnn.com (<span style="font-weight: bold;">64.236.91.24:80</span>) start, trying to access the following file at CNN.com :<br /><br />- Request: <span style="font-weight: bold;">GET /aux/con/com1/../../[LAG]../.%./../../../../fakecnn/redflag-stay-here.php.aspx.asp.cfm.jsp</span><br />Response: 400 "Bad Request"<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_wICHhTiQmrA/SA0pB9DpiyI/AAAAAAAABmY/2oFEElHWyFs/s1600-h/hackcnn_tool.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_wICHhTiQmrA/SA0pB9DpiyI/AAAAAAAABmY/2oFEElHWyFs/s200/hackcnn_tool.jpg" alt="" id="BLOGGER_PHOTO_ID_5191851058974526242" border="0" /></a>antiCnn.exe<br />Scanner results : 3% Scanner(1/36) found malware!<br />TROJAN.DOWNLOADER.GEN<br />File size: 174592 bytes<br />MD5...: c03abd4d871cd83fe00df38536f26422<br />SHA1..: 0502c74ee90e110ceed3cbb81b2ee53d26068691<br />Released by : Red Flag Cyber Operations nixrumor@gmail.com<br /><br />From a network reconnaissance perspective, the Chinese hacktivists didn't even bother to take care of Apache's /server status, and therefore we're easily able<br />to obtain such juicy inside information about hackcnn.com such as :<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_wICHhTiQmrA/SA0p_tDpizI/AAAAAAAABmg/8oIPp-wM404/s1600-h/sports_cnn_ddosed.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_wICHhTiQmrA/SA0p_tDpizI/AAAAAAAABmg/8oIPp-wM404/s200/sports_cnn_ddosed.jpg" alt="" id="BLOGGER_PHOTO_ID_5191852119831448370" border="0" /></a>Current Time: Tuesday, 22-Apr-2008 07:00:56<br />Restart Time: Monday, 21-Apr-2008 15:25:39<br />Parent Server Generation: 0<br />Server uptime: 15 hours 35 minutes 17 seconds<br />Total accesses: 291670 - Total Traffic: 533.8 MB<br />5.2 requests/sec - 9.7 kB/second - 1918 B/request<br />4 requests currently being processed, 246 idle workers<br /><br />Internal commentary excerpts regarding the motivation and their updates on the first DDoS round :<br /><br />"<span style="font-style: italic;">Our team of non-governmental organisations, We only private network enthusiasts. However, we have a patriotic heart, We will absolutely not permit any person to discredit our motherland under any name, We are committed to attack some spreading false information, and malicious slander, libel, support Tibet independence site.</span>"<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_wICHhTiQmrA/SA0t6dDpi0I/AAAAAAAABmo/oNfnCtMt6ns/s1600-h/sports_cnn_defaced_1.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_wICHhTiQmrA/SA0t6dDpi0I/AAAAAAAABmo/oNfnCtMt6ns/s200/sports_cnn_defaced_1.jpg" alt="" id="BLOGGER_PHOTO_ID_5191856427683646274" border="0" /></a>"<span style="font-style: italic;">User to a black CNN website suffer the same name. Yesterday, some Internet users attacked the domain name contains a "cnn" sports Web site, leaving protest speech, but reporters did not check the site found a relationship with CNN.</span>  <span style="font-style: italic;">Yesterday's attack was th</span><span style="font-style: italic;">e website with the domain name sports.si.cnn.com engaged in the work of the network of residents in Urumqi Mr. Chen, at about 2 pm, the attackers up a website hackcnn.com know, the "CNN sub-station" invasion and modify their pages. "Tug-of-war administrator and hackers," Mr. Chen said, after sports.si.cnn.com pages sometimes normal, and sometimes been modified. 16:50, the reporter saw on the pages left in bilingual text and flash animation, stressed that Tibet is a part of China, cnn protest against prejudice and false reports, the title page column was changed to "F * * kCNN!. "</span>  <span style="font-style: italic;">A few minutes later, the web site to enter a user ID and password before connecting, "evidently administrator of the authority." Chen analysis. Yesterday, the reporter tried to contact the attack, but received no response. Reporter verify that the contact address sports.si.cnn.com Pennsylvania in the United States, and the sports channel CNN web site is not the same, did not disclose information with the CNN.</span>"<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_wICHhTiQmrA/SA0uEtDpi1I/AAAAAAAABmw/eBx0cveCP5A/s1600-h/sports_cnn_defaced_2.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_wICHhTiQmrA/SA0uEtDpi1I/AAAAAAAABmw/eBx0cveCP5A/s200/sports_cnn_defaced_2.jpg" alt="" id="BLOGGER_PHOTO_ID_5191856603777305426" border="0" /></a>DDoS-ing is one thing, defacing is entirely another, try <a href="http://209.85.135.104/search?q=cache:bP4fl_vKGtwJ:sports.si.cnn.com/test.htm+%22fuck+cnn%22&amp;hl=en&amp;ct=clnk&amp;cd=8"><span style="color:black;"><span style="color:blue;">sports.si.cnn.com/test.htm</span></span></a> which was last defaced yesterday spreading "<span style="font-style: italic;">We are not against the western media, but against the lies and fabricated stories in the media</span>", "<span style="font-style: italic;">We are not against the western people, but against the prejudice from the western society.!</span>" messages.<br /><br />According to forum postings however, now that they've sent a signal, the attitude is shifting from attacking CNN to Western media in general. Thankfully, just like the case with <a href="http://ddanchev.blogspot.com/2007/11/electronic-jihad-v30-what-cyber-jihad.html">the  Electronic Jihad program</a>, they did not put a lot of efforts into ensuring the lifecycle of the tool will remain as long as possible, by introducing a way to automatically update the tool with new targets. In fact, in <a href="http://ddanchev.blogspot.com/2007/08/cyber-jihadist-dos-tool.html">the Electronic Jihad case</a>, the hardcoded update locations were all down priot to releasing the tool, making a bit more efforts cunsuming to finally manage to <a href="http://ddanchev.blogspot.com/2007/11/electronic-jihads-targets-list.html">obtain the targets list</a>.<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=Y8er0oG"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=Y8er0oG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=U8qwQ1G"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=U8qwQ1G" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=6x6u2fg"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=6x6u2fg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=z5wKCqg"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=z5wKCqg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=lglljMG"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=lglljMG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=4Hn9S4G"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=4Hn9S4G" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?a=UBIyLWg"><img src="http://feeds.feedburner.com/~f/DanchoDanchevOnSecurityAndNewMedia?i=UBIyLWg" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~4/275221877" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 21 Apr 2008 22:25:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/cnn">cnn</category>
      <category domain="http://securityratty.com/tag/cnn sub-station">cnn sub-station</category>
      <category domain="http://securityratty.com/tag/flood cnn">flood cnn</category>
      <category domain="http://securityratty.com/tag/sports web site">sports web site</category>
      <category domain="http://securityratty.com/tag/site">site</category>
      <category domain="http://securityratty.com/tag/psyops anti-cnn">psyops anti-cnn</category>
      <category domain="http://securityratty.com/tag/contact address sports">contact address sports</category>
      <category domain="http://securityratty.com/tag/contact">contact</category>
      <category domain="http://securityratty.com/tag/sports">sports</category>
      <source url="http://feeds.feedburner.com/~r/DanchoDanchevOnSecurityAndNewMedia/~3/275221877/chinese-hacktivists-waging-peoples.html">Chinese Hacktivists Waging People's Information Warfare Against CNN</source>
    </item>
    <item>
      <title><![CDATA[Cloud Computing Defined #1]]></title>
      <link>http://securityratty.com/article/d41ca43cec9e3549c8a87645a21b637b</link>
      <guid>http://securityratty.com/article/d41ca43cec9e3549c8a87645a21b637b</guid>
      <description><![CDATA[From the ESM blog
IMO, A the holy grail cloud has only two primary characteristics and five secondary add-ons
Primary
1) It uses commodity based hardware as its base. Hardware can be replaced at...]]></description>
      <content:encoded><![CDATA[<p><a href="http://cloudsecurity.org/blog/wp-content/uploads/2008/04/cloud-computing-101.png"><img class="aligncenter size-full wp-image-12" title="cloud-computing-101" src="http://cloudsecurity.org/blog/wp-content/uploads/2008/04/cloud-computing-101.png" alt="Cloud Computing 101" width="307" height="46" /></a></p>
<p>From the <a title="ESM blog" href="http://www.johnmwillis.com/cloud-computing/cloud-computing-and-the-enterprise/">ESM blog</a>:</p>
<blockquote><p>IMO, A the holy grail cloud has only two primary characteristics and five secondary add-ons.</p>
<p>Primary</p>
<p>1) It uses commodity based hardware as it’s base. Hardware can be replaced at anytime and have no effect on the cloud.<br />
2) It uses commodity based software containers. For example an image should be able to be pulled from one cloud provider to any other cloud provider.</p>
<p>Some secondary characteristics are:</p>
<p>1) Virtualization<br />
2) Abstraction layer for the hardware, software, and configuration of systems.<br />
3) Pay as you go with no lock-in<br />
4) Dynamic horizontal and vertical scaling<br />
5) Flexible migration and restart capabilities</p></blockquote>
<p>What&#8217;s your definition of Cloud Computing?</p>
<img src="http://feeds.feedburner.com/~r/CloudSecurity/~4/272448567" height="1" width="1"/>]]></content:encoded>
      <pubDate>Thu, 17 Apr 2008 17:38:20 +0000</pubDate>
      <category domain="http://securityratty.com/tag/cloud">cloud</category>
      <category domain="http://securityratty.com/tag/holy grail cloud">holy grail cloud</category>
      <category domain="http://securityratty.com/tag/cloud provider">cloud provider</category>
      <category domain="http://securityratty.com/tag/hardware">hardware</category>
      <category domain="http://securityratty.com/tag/commodity based hardware">commodity based hardware</category>
      <category domain="http://securityratty.com/tag/primary">primary</category>
      <category domain="http://securityratty.com/tag/primary characteristics">primary characteristics</category>
      <category domain="http://securityratty.com/tag/dynamic horizontal">dynamic horizontal</category>
      <category domain="http://securityratty.com/tag/secondary characteristics">secondary characteristics</category>
      <source url="http://feeds.feedburner.com/~r/CloudSecurity/~3/272448567/">Cloud Computing Defined #1</source>
    </item>
  </channel>
</rss>
