<?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: flow]]></title>
    <link>http://securityratty.com/tag/flow</link>
    <description></description>
    <pubDate>Wed, 11 Jun 2008 06:45:54 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[MBTA Hacking Injunction Lifted]]></title>
      <link>http://securityratty.com/article/68d65816825f3a808d946a2980aee0f8</link>
      <guid>http://securityratty.com/article/68d65816825f3a808d946a2980aee0f8</guid>
      <description><![CDATA[Earlier today, the US District Court dealt a victory to the MBTA hackers and the EFF, lifting the injunction issued on August 9th to prevent the three MIT students from presenting their findings at...]]></description>
      <content:encoded><![CDATA[<p>Earlier today, the US District Court <a href="http://www.eff.org/press/archives/2008/08/19">dealt a victory</a> to the MBTA hackers and the EFF, lifting the injunction issued on August 9th to prevent the three MIT students from presenting their findings at <a href="http://defcon.org/">DEFCON 16</a>.  In summary:</p>
<blockquote><p>The lawsuit claimed that the students&#8217; planned presentation would violate the Computer Fraud and Abuse Act (CFAA) by enabling others to defraud the MBTA of transit fares. A different federal judge, meeting in a special Saturday session, ordered the trio not to disclose for ten days any information that could be used by others to get free subway rides.</p>
<p>&#8220;The judge today correctly found that it was unlikely that the CFAA would apply to security researchers giving an academic talk,&#8221; said EFF Staff Attorney Marcia Hofmann. &#8220;A presentation at a security conference is not some sort of computer intrusion. It&#8217;s protected speech and vital to the free flow of information about computer security vulnerabilities. Silencing researchers does not improve security &#8212; the vulnerability was there before the students discovered it and would remain in place regardless of whether the students publicly discussed it or not.&#8221;</p></blockquote>
<p>This sets a good precedent for future cases, and perhaps next time a similar situation arises, a judge will not be so quick to issue a gag order.  It&#8217;s not a happy ending yet though, as the <a href="http://www.eff.org/files/filenode/MBTA_v_Anderson/mbta-v-anderson-complaint.pdf">original lawsuit</a> is still in effect.</p>
<p>As Chris Wysopal <a href="http://www.veracode.com/blog/2008/08/sorry-charliecard-your-security-model-is-broken/">pointed out last week</a>, the MBTA&#8217;s ire is misdirected.  Rather than suing the vendor who sold them the defective system, they sued and attempted to silence the students who discovered the weakness.  This is 2008, not 1988 &#8212; did they honestly think a gag order would prevent the information from reaching the general public?   The DEFCON presentation was already available on the <a href="http://en.wikipedia.org/wiki/Series_of_tubes">Intertubes</a> prior to the injunction being issued, and the MBTA attorneys included a copy of the confidential whitepaper with their filing, thereby making it public.  </p>
<p>I guess you wouldn&#8217;t expect that a transit authority would have paid any attention to the<a href="http://www.schneier.com/blog/archives/2005/07/cisco_harasses.html">Ciscogate fiasco</a> from a few years ago. <a href="http://cryptome.org/lynn-cisco-jpg.htm">That presentation</a> never got out either, did it?  All that taxpayer money the MBTA spent on ridiculous lawsuits and restraining orders could have been put toward fixing the security flaws.  What a concept.</p>
]]></content:encoded>
      <pubDate>Wed, 20 Aug 2008 01:49:55 +0000</pubDate>
      <category domain="http://securityratty.com/tag/mbta">mbta</category>
      <category domain="http://securityratty.com/tag/students">students</category>
      <category domain="http://securityratty.com/tag/students publicly">students publicly</category>
      <category domain="http://securityratty.com/tag/defcon presentation">defcon presentation</category>
      <category domain="http://securityratty.com/tag/defcon">defcon</category>
      <category domain="http://securityratty.com/tag/mbta hackers">mbta hackers</category>
      <category domain="http://securityratty.com/tag/presentation">presentation</category>
      <category domain="http://securityratty.com/tag/mit students">mit students</category>
      <category domain="http://securityratty.com/tag/judge">judge</category>
      <source url="http://www.veracode.com/blog/2008/08/mbta-hacking-injunction-lifted/">MBTA Hacking Injunction Lifted</source>
    </item>
    <item>
      <title><![CDATA[Two-way formatted data binding in ASP.NET]]></title>
      <link>http://securityratty.com/article/defaefd1679588644fb6df7a435f5f6a</link>
      <guid>http://securityratty.com/article/defaefd1679588644fb6df7a435f5f6a</guid>
      <description><![CDATA[Two way data binding in ASP.NET is easy, just use the Bind expression and data will flow between your web controls and your data source flawlessly. Until that is, you try to use a format string...]]></description>
      <content:encoded><![CDATA[<p>Two way data binding in ASP.NET is easy, just use the Bind expression and data will flow between your web controls and your data source flawlessly. Until that is, you try to use a format string:</p> <p>Bind(&quot;AmountCharged&quot;, &quot;{0:C}&quot;)</p> <p>While this displays just as you&#39;d expect (e.g., $200), it doesn&#39;t do so well when you submit an edit that includes the same value ($200):</p> <p><span style="font-weight:normal;font-size:14pt;color:maroon;font-family:&#39;Verdana&#39;;"><i>Input string was not in a correct format.</i></span></p> <p>I searched around and didn&#39;t find much in the way of a clean solution, but I did solve the problem with just a few lines of code. The trick is to handle the data-bound control&#39;s Updating event. Since I was working with a GridView, my solution looked a bit like this:</p><pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">asp:GridView</span> <span class="attr">DataSourceID</span><span class="kwrd">=&#39;myDataSource&#39;</span>
              <span class="attr">OnRowUpdating</span><span class="kwrd">=&#39;FixFormatting&#39;</span>
              <span class="attr">AutoGenerateColumns</span><span class="kwrd">=&#39;false&#39;</span>
              <span class="attr">CellPadding</span><span class="kwrd">=&quot;3&quot; ...&gt;</span></pre>
<p>Notice the OnRowUpdating handler that I&#39;ve installed in my grid view. That code looks like this:</p><pre class="csharpcode"><span class="kwrd">protected</span> <span class="kwrd">void</span> FixFormatting(<span class="kwrd">object</span> sender, GridViewUpdateEventArgs args)
{
    <span class="kwrd">decimal</span> amountPaid = ParseDecimal((<span class="kwrd">string</span>)args.NewValues[<span class="str">&quot;AmountPaid&quot;</span>]);
    args.NewValues[<span class="str">&quot;AmountPaid&quot;</span>] = amountPaid;
}</pre>
<p>When you handle this event, you&#39;re given a dictionary of old and new values, which appear to come directly from the controls (in my case, a TextBox was used to gather the updated data AmountPaid, so the type of object that I found in NewValues[&quot;AmountPaid&quot;] was a string. I wrote a little helper method called ParseDecimal that parses a string into a decimal value, allowing currency characters, decimal points, and thousands separators. I also allowed a blank value to indicate zero:</p><pre class="csharpcode"><span class="kwrd">public</span> <span class="kwrd">static</span> <span class="kwrd">decimal</span> ParseDecimal(<span class="kwrd">string</span> <span class="kwrd">value</span>)
{
    <span class="kwrd">if</span> (<span class="kwrd">string</span>.IsNullOrEmpty(<span class="kwrd">value</span>))
        <span class="kwrd">return</span> 0;
    <span class="kwrd">return</span> Decimal.Parse(<span class="kwrd">value</span>,
        NumberStyles.AllowThousands |
        NumberStyles.AllowDecimalPoint |
        NumberStyles.AllowCurrencySymbol,
        CultureInfo.InstalledUICulture);
}
</pre>
<p>This solved the problem quite nicely. Now two-way binding works with formatted data.</p><div style="clear:both;"></div><img src="http://www.pluralsight.com/community/aggbug.aspx?PostID=52504" width="1" height="1">]]></content:encoded>
      <pubDate>Fri, 15 Aug 2008 16:22:37 +0000</pubDate>
      <category domain="http://securityratty.com/tag/data">data</category>
      <category domain="http://securityratty.com/tag/data amountpaid">data amountpaid</category>
      <category domain="http://securityratty.com/tag/amountpaid">amountpaid</category>
      <category domain="http://securityratty.com/tag/data-bound control">data-bound control</category>
      <category domain="http://securityratty.com/tag/decimal amountpaid">decimal amountpaid</category>
      <category domain="http://securityratty.com/tag/return decimal">return decimal</category>
      <category domain="http://securityratty.com/tag/return">return</category>
      <category domain="http://securityratty.com/tag/data source flawlessly">data source flawlessly</category>
      <category domain="http://securityratty.com/tag/decimal">decimal</category>
      <source url="http://www.pluralsight.com/community/blogs/keith/archive/2008/08/15/two-way-formatted-data-binding-in-asp-net.aspx">Two-way formatted data binding in ASP.NET</source>
    </item>
    <item>
      <title><![CDATA[3 reasons to speed legacy to next-gen network migration]]></title>
      <link>http://securityratty.com/article/fa1979689b875cc386d3f13c62fc756e</link>
      <guid>http://securityratty.com/article/fa1979689b875cc386d3f13c62fc756e</guid>
      <description><![CDATA[It's about revenue flow. Telecom providers have three good reasons - customer demand, economics and network equipment to speed their transition from legacy to next-gen telecom networks. Here's how to...]]></description>
      <content:encoded><![CDATA[:  It's about revenue flow. Telecom providers have three good reasons - customer demand, economics and network equipment &ndash; to speed their transition from legacy to next-gen telecom networks.  Here's how to go about it.<img src="http://feeds.feedburner.com/~r/WhatisEnterpriseItTipsAndExpertAdvice/~4/355357202" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 04 Aug 2008 05:47:27 +0000</pubDate>
      <category domain="http://securityratty.com/tag/reasons">reasons</category>
      <category domain="http://securityratty.com/tag/telecom networks">telecom networks</category>
      <category domain="http://securityratty.com/tag/telecom providers">telecom providers</category>
      <category domain="http://securityratty.com/tag/network equipment">network equipment</category>
      <category domain="http://securityratty.com/tag/legacy">legacy</category>
      <category domain="http://securityratty.com/tag/speed">speed</category>
      <category domain="http://securityratty.com/tag/customer demand">customer demand</category>
      <category domain="http://securityratty.com/tag/revenue flow">revenue flow</category>
      <category domain="http://securityratty.com/tag/transition">transition</category>
      <source url="http://feeds.feedburner.com/~r/WhatisEnterpriseItTipsAndExpertAdvice/~3/355357202/0,289483,sid103_gci1323419,00.html">3 reasons to speed legacy to next-gen network migration</source>
    </item>
    <item>
      <title><![CDATA[HP's NAC- What I've Been Wanting to Tell You (but couldn't)]]></title>
      <link>http://securityratty.com/article/6314f59af5298d2d86c804d96c34fce9</link>
      <guid>http://securityratty.com/article/6314f59af5298d2d86c804d96c34fce9</guid>
      <description><![CDATA[Well everyone- theres something Ive been wanting to tell you and now, after a year , I can
Because of non-disclosure and other confidentiality contracts with various partners, vendors and...]]></description>
      <content:encoded><![CDATA[<P><strong>Well everyone- there&#8217;s something I&#8217;ve been wanting to tell you and now, after a <em>year</em>, I can!</strong></P>
<P>Because of non-disclosure and other confidentiality contracts with various partners, vendors and manufacturers, we&#8217;ve had sealed lips for almost exactly 12 months. Now that it&#8217;s been made public by the media, I can share a little information with you and explain why I think you should be excited. </P>
<P><strong>What cat is out of the bag now?</strong> HP ProCurve&#8217;s network access control solution&nbsp;leverages endpoint management technology from StillSecure&#8217;s Secure Access solution. Information Week&nbsp;spilled the beans, so to speak, in Mike Fratto&#8217;s recent <A class=offsite-link-inline title="Information Week's 2008 NAC Report" href="http://nac.informationweek.com/" target=_blank>2008 NAC Survey Analytic Report</A>. (See page 32)</P>
<P>Now, at this point, I can probably lump you into one of three groups&#8230;<strong> 1)</strong> You don&#8217;t care or have no clue what this means <strong>2)</strong> You care but think this means HP &#8216;has no NAC&#8217;&#8230; or group <strong>3)</strong> You know about StillSecure&#8217;s success and ProCurve&#8217;s integration and think this is a great combination.</P>
<P><strong>I&#8217;m sure everyone will have their own opinion</strong>- I happen to be in Group 3. Why? Because HP has taken the power of their servers, leveraged a very solid endpoint management tool and incorporated a variety of other management and security features by way of their identity management solution. </P><strong>
<ul>
<li>The endpoint security</strong>. StillSecure&#8217;s Safe Access solution has been winning awards and earning stars for years. You can probably Google it, or check out some of <A class=offsite-link-inline title="Alan's Blog" href="http://www.stillsecureafteralltheseyears.com" target=_blank>Shimel&#8217;s blog</A>&nbsp; posts, such as <A class=offsite-link-inline href="http://www.stillsecureafteralltheseyears.com/ashimmy/2008/07/when-is-4-out-o.html" target=_blank>this one</A>, with 4- and 5-star <A class=offsite-link-inline href="http://www.scmagazineus.com/StillSecure-Safe-Access/Review/2460/" target=_blank>reviews from SC Magazine</A>. In fact, just this year (and in previous years) Safe Access was voted Best Endpoint Security Solution by SC Magazine and has won numerous other awards and accolades from various analysts and media firms. They have a clean, user-friendly GUI, a solid Linux platform and a variety of testing methods, deployment options and switch integrations. (And no, you don&#8217;t need ProCurve switches, the NAC integration is ready for your Cisco, Extreme, or whatever you have). </li>
</ul><strong>
<ul>
<li>User management.</strong> Combine one of the highest-rated endpoint security solutions with ProCurve switches, the #2 leader in the switching market (and Magic Quadrant resident) and the full integration with <A class=offsite-link-inline title="ProCurve IDM" href="http://www.hp.com/rnd/products/management/idm/overview.htm" target=_blank>ProCurve&#8217;s Identity Driven Manager</A> platform and you have one amazingly capable access control system. With ProCurve IDM, you can integrate directly with their NAC 800 appliance to offer per-user (or per-group) ACLs, QoS, restrictions or priviliges. Rules can be identity-based, time-based, location-based, or a combination of all. And, IDM eases 802.1X integration by offering users a central management and repository for user settings and VLAN assignments; it really is ProCurve&#8217;s special sauce and a distinguishing feature. </li>
</ul><strong>
<ul>
<li>Switch security</strong>. The integration of advanced switch security functions, such as DHCP snooping, Dynamic ARP protection and dynamic IP lockdown gives ProCurve another leg-up to fight common known attacks for both in-line and out-of-band NAC deployments. </li>
</ul><strong>
<ul>
<li>Zero-day protection</strong>. It gets better, the new Dynamic Configuration Arbiter (DCA) functions in ProCurve&#8217;s Pro-vision switches gives customers the unique advantage of integrating the NAC and IDM with ProCurve&#8217;s <A class=offsite-link-inline title="ProCurve NIM" href="http://www.hp.com/rnd/products/management/ProCurve_Network_Immunity_Manager_1.0/overview.htm" target=_blank>Network Immunity Solution</A> (NIM). NIM uses flow analysis from sFlow and&nbsp;network behaviour anomaly detection (NBAD) to detect and automatically remediate on the edge. In English, that means we can use ProCurve&#8217;s NIM to detect attacks and take action at the edge port, such as blocking the port, locking out the MAC address of the offender, rate-limiting, or even mirroring the traffic to an IDS for further inspection. The super-nice part is, all the sFlow and NBAD works on wireless too. (Hey <A class=offsite-link-inline title="Stiennon on Security, NWW" href="http://www.networkworld.com/community/stiennon" target=_blank>Stiennon</A>, did you hear that?) </li>
</ul><strong>
<ul>
<li>Full integration.</strong> Unlike some of the other network-based NAC vendors, ProCurve has done an exceptional job of integrating these features and we&#8217;ll continue to see more integration in future revisions of the softwares and as more TNC/TCG integration frameworks are released (such as IF-MAP). </li>
</ul>
<P>I think the strong integration with the infrastructure and the ability to leverage a mature endpoint integrity will make HP a &#8216;real&#8217; player in the NAC market moving forward. </P>
<P>Not to knock other NAC solutions- Choosing a NAC is like selecting the perfect wine for your dish- there&#8217;s no 1 &#8216;right&#8217; choice for all occasions. Each have their advantages and disadvantages. There are several that have special sauces and you&#8217;ll actually be seeing more on that soon&#8230; </P>
<P># # #<br></P>
]]></content:encoded>
      <pubDate>Tue, 22 Jul 2008 18:29:11 +0000</pubDate>
      <category domain="http://securityratty.com/tag/nac">nac</category>
      <category domain="http://securityratty.com/tag/integration">integration</category>
      <category domain="http://securityratty.com/tag/tnctcg integration frameworks">tnctcg integration frameworks</category>
      <category domain="http://securityratty.com/tag/nac integration">nac integration</category>
      <category domain="http://securityratty.com/tag/nac vendors">nac vendors</category>
      <category domain="http://securityratty.com/tag/nac solutions-">nac solutions-</category>
      <category domain="http://securityratty.com/tag/procurve">procurve</category>
      <category domain="http://securityratty.com/tag/procurve idm">procurve idm</category>
      <category domain="http://securityratty.com/tag/nac market">nac market</category>
      <source url="http://www.securityuncorked.com/security-uncorked/2008/7/22/hps-nac-what-ive-been-wanting-to-tell-you-but-couldnt.html">HP's NAC- What I've Been Wanting to Tell You (but couldn't)</source>
    </item>
    <item>
      <title><![CDATA[Snort Security Platform 3.0 Beta Released]]></title>
      <link>http://securityratty.com/article/1f4e2b6789774132eea1a5417ead2a1e</link>
      <guid>http://securityratty.com/article/1f4e2b6789774132eea1a5417ead2a1e</guid>
      <description><![CDATA[Marty Roesch and company have just announced the release of Snort 3.0 beta
From Snort.org
Were pleased to introduce our first beta release built on the new Snort 3.0 architecture. The Snort 3.0...]]></description>
      <content:encoded><![CDATA[<p>Marty Roesch and company have just announced the release of Snort 3.0 beta. </p>
<p>From Snort.org:</p>
<blockquote><p>We’re pleased to introduce our first beta release built on the new Snort 3.0 architecture. The Snort 3.0 architecture consists of two primary components: a software platform called the Snort Security Platform (SnortSP) 3.0, which is shipping in beta form in this release, and traffic analysis engine modules that plug into SnortSP. This beta test release contains one engine module which contains the Snort 2.8.2 detection engine implemented as a SnortSP engine module. SnortSP is an open-source platform for running packet-based network security applications. It provides many of the common functions required by programs that deal with packet processing such as configuration loading, event generation and traffic logging, data acquisition, protocol decoding and validation, flow management, and more.</p></blockquote>
<p>They provide you an opportunity to provide feedback on the beta release as well &#8220;sspneta SHIFT 2 sourcefire D0T com&#8221;.</p>
<p>Downloading my copy now.</p>
<p><a href="http://www.snort.org/dl/snortsp/">Article Link</a></p>

<p><a href="http://feeds.feedburner.com/~a/Liquidmatrix?a=LTShft"><img src="http://feeds.feedburner.com/~a/Liquidmatrix?i=LTShft" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Liquidmatrix?a=YgoefI"><img src="http://feeds.feedburner.com/~f/Liquidmatrix?i=YgoefI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Liquidmatrix?a=PrSy0i"><img src="http://feeds.feedburner.com/~f/Liquidmatrix?i=PrSy0i" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Liquidmatrix?a=2fImNi"><img src="http://feeds.feedburner.com/~f/Liquidmatrix?i=2fImNi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Liquidmatrix?a=KgMMQi"><img src="http://feeds.feedburner.com/~f/Liquidmatrix?i=KgMMQi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Liquidmatrix?a=HZ0Mni"><img src="http://feeds.feedburner.com/~f/Liquidmatrix?i=HZ0Mni" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Liquidmatrix/~4/323662680" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 30 Jun 2008 21:11:34 +0000</pubDate>
      <category domain="http://securityratty.com/tag/beta">beta</category>
      <category domain="http://securityratty.com/tag/release">release</category>
      <category domain="http://securityratty.com/tag/beta release">beta release</category>
      <category domain="http://securityratty.com/tag/snort security platform">snort security platform</category>
      <category domain="http://securityratty.com/tag/snort">snort</category>
      <category domain="http://securityratty.com/tag/engine module">engine module</category>
      <category domain="http://securityratty.com/tag/snortsp engine module">snortsp engine module</category>
      <category domain="http://securityratty.com/tag/beta test release">beta test release</category>
      <category domain="http://securityratty.com/tag/snortsp">snortsp</category>
      <source url="http://feeds.feedburner.com/~r/Liquidmatrix/~3/323662680/">Snort Security Platform 3.0 Beta Released</source>
    </item>
    <item>
      <title><![CDATA[Links List 6.27.08]]></title>
      <link>http://securityratty.com/article/8d5a94cb377694fae8da52b080f88521</link>
      <guid>http://securityratty.com/article/8d5a94cb377694fae8da52b080f88521</guid>
      <description><![CDATA[Peanut butter and chocolate. Beavis and Butthead. Social networking and CMDB? Heres a great blog post on the recently released myCMDB from Managed Objects . The IT Skeptic is as funny as ever
We heard...]]></description>
      <content:encoded><![CDATA[<p>Peanut butter and chocolate. Beavis and Butthead. Social networking and CMDB? Here’s a great blog post on the recently released <a href="http://www.itskeptic.org/node/644" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.itskeptic.org');" target="_blank">myCMDB from Managed Objects</a>. The IT Skeptic is as funny as ever.
<p>We heard a lot about cloud computing at the Gartner show this week. You can read a bit about their take on it <a href="http://blog.sciencelogic.com/a-hot-cloudless-computing-day-in-florida/06/2008"  target="_blank">here</a>. While we’ve been musing on the different ways we monitor cloud computing resources, <a href="http://www.webware.com/8301-1_109-9975354-2.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.webware.com');" target="_blank">Hyperic is already announcing their solution to monitor Amazon’s cloud computing availability</a>. <a href="http://www.informationweek.com/news/hardware/utility_ondemand/showArticle.jhtml?articleID=208800360" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.informationweek.com');" target="_blank">Hyperic believes</a> that “making use of cloud resources would be more popular if the customers had an independent means to monitor cloud services.” They plan to offer the monitoring service to other cloud companies this year. However, <a href="http://www.johnmwillis.com/amazon/taking-the-hype-out-of-hyperics-new-cloudstatus/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.johnmwillis.com');" target="_blank">John Willis questions the hype of Hyperic</a>.
<p>Here are some interesting <a href="http://networkinstruments.wordpress.com/2008/06/20/most-companies-fail-to-use-netflow/" onclick="javascript:pageTracker._trackPageview('/outbound/article/networkinstruments.wordpress.com');" target="_blank">NetFlow use stats</a> from our friends at Network Instruments. In a survey they did a few months ago, only 23% of respondents used NetFlow to monitor network performance; 60% didn’t use flow tech and 17% weren’t sure they had anything for it. I have to say we are asked at every Interop show we do if we support NetFlow so the numbers are slightly surprising but useful.
<p>Kuala Lumpur is bullish on <a href="http://www.bladewatch.com/2008/06/23/talking-about-sun-and-virtualization/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.bladewatch.com');" target="_blank">Sun’s virtualization strategy</a>.
<p>Just like at the Gartner show, one of the tracks at the Burton Group’s conference this week is on virtualization. This post on the Data Center Strategies blog covers Day 1 with some interesting notes on <a href="http://dcsblog.burtongroup.com/data_center_strategies/2008/06/catalyst-day-1.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/dcsblog.burtongroup.com');" target="_blank">where virtualization needs to go</a>, from clarity around software licensing and support to the use of raw storage (connecting VMs directly to LUNs) to improve VM performance, provide better integration with storage and data management solutions, and prevent vendor lock-in.</p>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=ea11358c-69de-4e80-9804-e964a8930b70&amp;title=Links+List+6.27.08&amp;url=http%3A%2F%2Fblog.sciencelogic.com%2Flinks-list-62708%2F06%2F2008" onclick="javascript:pageTracker._trackPageview('/outbound/article/sharethis.com');">ShareThis</a></p>]]></content:encoded>
      <pubDate>Fri, 27 Jun 2008 16:02:04 +0000</pubDate>
      <category domain="http://securityratty.com/tag/monitor cloud services">monitor cloud services</category>
      <category domain="http://securityratty.com/tag/monitor cloud">monitor cloud</category>
      <category domain="http://securityratty.com/tag/cloud">cloud</category>
      <category domain="http://securityratty.com/tag/cloud resources">cloud resources</category>
      <category domain="http://securityratty.com/tag/monitor amazons cloud">monitor amazons cloud</category>
      <category domain="http://securityratty.com/tag/cloud companies">cloud companies</category>
      <category domain="http://securityratty.com/tag/virtualization">virtualization</category>
      <category domain="http://securityratty.com/tag/support netflow">support netflow</category>
      <category domain="http://securityratty.com/tag/suns virtualization strategy">suns virtualization strategy</category>
      <source url="http://blog.sciencelogic.com/links-list-62708/06/2008">Links List 6.27.08</source>
    </item>
    <item>
      <title><![CDATA[Taking a second look at Rohati]]></title>
      <link>http://securityratty.com/article/6473a18d588db2e7115028a3818a3bea</link>
      <guid>http://securityratty.com/article/6473a18d588db2e7115028a3818a3bea</guid>
      <description><![CDATA[Last week in response to Richard Stiennon's glowing write up , I questioned what it is exactly that Rohati does. Well someone from Rohati must have seen it and I was contacted by the Rohati team and...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p>Last week in response to<a href="http://www.networkworld.com/community/node/28837"> Richard Stiennon's glowing write up</a>, <a href="http://www.stillsecureafteralltheseyears.com/ashimmy/2008/06/if-rohati-is-ki.html">I questioned</a> what it is exactly that Rohati does. Well someone from Rohati must have seen it and I was contacted by the Rohati team and offered a peek and a deep explanation of exactly what Rohati does.&nbsp; So today I had a chance to speak with Shane Buckley, CEO, Prashant Ghandi VP of product management and strategy and Steven Wastie, VP of marketing.&nbsp; I was impressed that such a triumvirate of power players from the Rohati team took the time to speak to me.&nbsp; But I guess after I wrote what I did, it was followed up by <a href="http://securityuncorked.squarespace.com/security-uncorked/2008/6/15/network-based-entitlement-a-rose-by-any-other-name.html">JJ writing her article</a> on it and than <a href="http://securityincite.com/blog/mike-rothman/the-daily-incite-june-17-2008">Rothman piling on</a> with his own two cents.&nbsp; </p>

<p><a onclick="window.open(this.href, '_blank', 'width=800,height=617,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false" href="http://www.stillsecureafteralltheseyears.com/.shared/image.html?/photos/uncategorized/2008/06/20/rohati_2.png"><img title="Rohati_2" height="231" alt="Rohati_2" src="http://www.stillsecureafteralltheseyears.com/ashimmy/images/2008/06/20/rohati_2.png" width="300" border="0" style="FLOAT: right; MARGIN: 0px 0px 5px 5px" /></a> Give the Rohati team credit for recognizing the power of blogs to influence the influencer and reaching out to stem the tide.&nbsp; It just goes to show you how far blogging has come. But enough about the power of blogs, lets talk about Rohati.</p>

<p>The best way for me to describe Rohati is that it is layer 7 ACLs to control access to applications.&nbsp; Where we already have security at the perimeter and at the edge, Rohati is about controlling access at the server/application.&nbsp; The diagram on the left (click on it to get a bigger version), is a good illustration of how Rohati works. By integrating with LDAPs Rohati can assign you an access policy to any application.&nbsp; Based upon that Rohati gives a very fine grain level of access control at the application layer.&nbsp; It acts as a proxy to the app server for both regular and encrypted traffic.&nbsp; Because the ACLs are on the Rohati box itself, there really is not any integration with switches per say and so no integration worries.</p>

<p>The only problem is that the Rohati box has to be able to handle the traffic flow.&nbsp; Hence the box is a big honker.&nbsp; The cheap one is about 20k list I believe and the industrial size version is 80k. This product is aimed squarely at the data center space and is sold through channels. </p>

<p>Will Rohati succeed.&nbsp; Yes, I think it will.&nbsp; I think they have taken a unique approach to a security issue that will continue to grow in years to come.&nbsp; Application access is an area that I think is still up and coming.&nbsp; In a period of nothing is ever new in security, the Rohati team seems to have found something that has not been done before in a packaged dedicated way like this.&nbsp; If nothing else, with all of the ex-Cisco folks there, Cisco will eat its young and buy the technology back in.</p>

<p>We will watch Rohati's progress in the months to come.&nbsp; At the very least, it seems they are blog savvy enough to navigate the waters of social media.&nbsp; Maybe they will start their own blog soon. </p>

<div class="zemanta-pixie" style="MARGIN-TOP: 10px; HEIGHT: 15px"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/34d1a82e-ac7c-4b2a-93de-e36fb04203ba/"><img class="zemanta-pixie-img" alt="Zemanta Pixie" src="http://img.zemanta.com/reblog_a.png?x-id=34d1a82e-ac7c-4b2a-93de-e36fb04203ba" style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; FLOAT: right; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none" /></a></div></div>
]]></content:encoded>
      <pubDate>Thu, 19 Jun 2008 20:33:04 +0000</pubDate>
      <category domain="http://securityratty.com/tag/rohati">rohati</category>
      <category domain="http://securityratty.com/tag/rohati team credit">rohati team credit</category>
      <category domain="http://securityratty.com/tag/rohati team">rohati team</category>
      <category domain="http://securityratty.com/tag/describe rohati">describe rohati</category>
      <category domain="http://securityratty.com/tag/ldaps rohati">ldaps rohati</category>
      <category domain="http://securityratty.com/tag/rohati box">rohati box</category>
      <category domain="http://securityratty.com/tag/access">access</category>
      <category domain="http://securityratty.com/tag/application layer">application layer</category>
      <category domain="http://securityratty.com/tag/application">application</category>
      <source url="http://www.stillsecureafteralltheseyears.com/ashimmy/2008/06/taking-a-second.html">Taking a second look at Rohati</source>
    </item>
    <item>
      <title><![CDATA[Taking a second look at Rohati]]></title>
      <link>http://securityratty.com/article/8cd98e832330dcae9c2a3d41890525b1</link>
      <guid>http://securityratty.com/article/8cd98e832330dcae9c2a3d41890525b1</guid>
      <description><![CDATA[Last week in response to Richard Stiennon's glowing write up , I questioned what it is exactly that Rohati does. Well someone from Rohati must have seen it and I was contacted by the Rohati team and...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p>Last week in response to<a href="http://www.networkworld.com/community/node/28837"> Richard Stiennon's glowing write up</a>, <a href="http://www.stillsecureafteralltheseyears.com/ashimmy/2008/06/if-rohati-is-ki.html">I questioned</a> what it is exactly that Rohati does. Well someone from Rohati must have seen it and I was contacted by the Rohati team and offered a peek and a deep explanation of exactly what Rohati does.&nbsp; So today I had a chance to speak with Shane Buckley, CEO, Prashant Ghandi VP of product management and strategy and Steven Wastie, VP of marketing.&nbsp; I was impressed that such a triumvirate of power players from the Rohati team took the time to speak to me.&nbsp; But I guess after I wrote what I did, it was followed up by <a href="http://securityuncorked.squarespace.com/security-uncorked/2008/6/15/network-based-entitlement-a-rose-by-any-other-name.html">JJ writing her article</a> on it and than <a href="http://securityincite.com/blog/mike-rothman/the-daily-incite-june-17-2008">Rothman piling on</a> with his own two cents.&nbsp; </p>

<p><a href="http://www.stillsecureafteralltheseyears.com/.shared/image.html?/photos/uncategorized/2008/06/19/rohati.gif"><img title="Rohati" height="231" alt="Rohati" src="http://www.stillsecureafteralltheseyears.com/ashimmy/images/2008/06/19/rohati.gif" width="300" border="0" style="FLOAT: right; MARGIN: 0px 0px 5px 5px" /></a> Give the Rohati team credit for recognizing the power of blogs to influence the influencer and reaching out to stem the tide.&nbsp; It just goes to show you how far blogging has come. But enough about the power of blogs, lets talk about Rohati.</p>

<p>The best way for me to describe Rohati is that it is layer 7 ACLs to control access to applications.&nbsp; Where we already have security at the perimeter and at the edge, Rohati is about controlling access at the server/application.&nbsp; The diagram on the left (click on it to get a bigger version), is a good illustration of how Rohati works. By integrating with LDAPs Rohati can assign you an access policy to any application.&nbsp; Based upon that Rohati gives a very fine grain level of access control at the application layer.&nbsp; It acts as a proxy to the app server for both regular and encrypted traffic.&nbsp; Because the ACLs are on the Rohati box itself, there really is not any integration with switches per say and so no integration worries.</p>

<p>The only problem is that the Rohati box has to be able to handle the traffic flow.&nbsp; Hence the box is a big honker.&nbsp; The cheap one is about 20k list I believe and the industrial size version is 80k. This product is aimed squarely at the data center space and is sold through channels. </p>

<p>Will Rohati succeed.&nbsp; Yes, I think it will.&nbsp; I think they have taken a unique approach to a security issue that will continue to grow in years to come.&nbsp; Application access is an area that I think is still up and coming.&nbsp; In a period of nothing is ever new in security, the Rohati team seems to have found something that has not been done before in a packaged dedicated way like this.&nbsp; If nothing else, with all of the ex-Cisco folks there, if nothing else Cisco will eat its young and buy the technology back in.</p>

<p>We will watch Rohati's progress in the months to come.&nbsp; At the very least, it seems they are blog savvy enough to navigate the waters of social media.&nbsp; Maybe they will start their own blog soon. </p>

<div class="zemanta-pixie" style="MARGIN-TOP: 10px; HEIGHT: 15px"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/34d1a82e-ac7c-4b2a-93de-e36fb04203ba/"><img class="zemanta-pixie-img" alt="Zemanta Pixie" src="http://img.zemanta.com/reblog_a.png?x-id=34d1a82e-ac7c-4b2a-93de-e36fb04203ba" style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; FLOAT: right; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none" /></a></div></div>

<p><a href="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?a=kBt7Rt"><img src="http://feeds.feedburner.com/~a/StillsecureAfterAllTheseYears?i=kBt7Rt" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=h6I1RI"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=h6I1RI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=QOyNKI"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=QOyNKI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=AB2KYI"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=AB2KYI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=BpPKxI"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=BpPKxI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=t5Hrei"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=t5Hrei" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?a=96guNi"><img src="http://feeds.feedburner.com/~f/StillsecureAfterAllTheseYears?i=96guNi" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~4/315941778" height="1" width="1"/>]]></content:encoded>
      <pubDate>Thu, 19 Jun 2008 19:33:04 +0000</pubDate>
      <category domain="http://securityratty.com/tag/rohati">rohati</category>
      <category domain="http://securityratty.com/tag/rohati team credit">rohati team credit</category>
      <category domain="http://securityratty.com/tag/rohati team">rohati team</category>
      <category domain="http://securityratty.com/tag/describe rohati">describe rohati</category>
      <category domain="http://securityratty.com/tag/ldaps rohati">ldaps rohati</category>
      <category domain="http://securityratty.com/tag/rohati box">rohati box</category>
      <category domain="http://securityratty.com/tag/access">access</category>
      <category domain="http://securityratty.com/tag/application layer">application layer</category>
      <category domain="http://securityratty.com/tag/application">application</category>
      <source url="http://feeds.feedburner.com/~r/StillsecureAfterAllTheseYears/~3/315941778/taking-a-second.html">Taking a second look at Rohati</source>
    </item>
    <item>
      <title><![CDATA[Contributing to the Official CISSP Courseware]]></title>
      <link>http://securityratty.com/article/df934ed7ecee1c2897ea24a98aa4a0ab</link>
      <guid>http://securityratty.com/article/df934ed7ecee1c2897ea24a98aa4a0ab</guid>
      <description><![CDATA[I promised a while ago to let you all in on some of the various projects Ive been working on over the past few months. One I havent shared with you yet is my participation in contributing as a SME to...]]></description>
      <content:encoded><![CDATA[<p>I promised a while ago to let you all in on some of the various projects I&#8217;ve been working on over the past few months. One I haven&#8217;t shared with you yet is my participation in contributing as a SME to the official <strong><a class="offsite-link-inline" href="http://www.isc2.org/" target="_blank">(ISC)2</a> courseware for CISSP</strong> certification. </p><p>It&#8217;s a huge undertaking with <strong>10 domains</strong> chock full of every security topic you can imagine, <strong>20 contributing SMEs</strong> from all over the worls, a handful of <strong>editors</strong> and <strong>1 man</strong> to bring it all together. Our team leader, <a class="offsite-link-inline" href="http://www.linkedin.com/pub/0/672/bab" target="_blank">Dean Bushmiller</a>&nbsp;has been the Project Manager for both versions 8 and 9 of the CISSP courseware and does an amazing job.</p><p>Each of the SMEs and editors have put a lot of thought and time into the materials,&nbsp;in an effort to create the best and most relevant&nbsp;content, topic&nbsp;arrangement and flow possible. You&#8217;ve seen how big these books are- that&#8217;s a lotta&#8217; stuff to pull together and I admire the group, especially the domain wranglers and Dean, for keeping it all on track. </p><p>It&#8217;s a strange and exciting project. I can&#8217;t say it&#8217;s completely&nbsp;foreign to me, many years ago I created content for advanced Microsoft Office courses and developed official Computer Competency Training for K-12s for use in schools here. However, a project with this much mass is definitely unique. </p><p>So, that&#8217;s another little project I&#8217;ve been working on for the past several months&#8230; and will be continuing for several more. On those occasions I drop off the face of Blog World, it&#8217;s sometimes because I&#8217;m using every free moment to try and keep up with these types of projects and deadlines. </p><p># # #</p><p>&nbsp;</p>
]]></content:encoded>
      <pubDate>Sun, 15 Jun 2008 14:53:16 +0000</pubDate>
      <category domain="http://securityratty.com/tag/official">official</category>
      <category domain="http://securityratty.com/tag/cissp courseware">cissp courseware</category>
      <category domain="http://securityratty.com/tag/courseware">courseware</category>
      <category domain="http://securityratty.com/tag/project manager">project manager</category>
      <category domain="http://securityratty.com/tag/project">project</category>
      <category domain="http://securityratty.com/tag/official computer competency">official computer competency</category>
      <category domain="http://securityratty.com/tag/content">content</category>
      <category domain="http://securityratty.com/tag/microsoft office courses">microsoft office courses</category>
      <category domain="http://securityratty.com/tag/dean">dean</category>
      <source url="http://www.securityuncorked.com/security-uncorked/2008/6/15/contributing-to-the-official-cissp-courseware.html">Contributing to the Official CISSP Courseware</source>
    </item>
    <item>
      <title><![CDATA[Cotton Traders confirms that their website was compromised]]></title>
      <link>http://securityratty.com/article/bf111990caad3724772db18cb2b78b6d</link>
      <guid>http://securityratty.com/article/bf111990caad3724772db18cb2b78b6d</guid>
      <description><![CDATA[Technorati Tag: Security Breach

Date Reported
6/10/08

Organization
Cotton Traders Ltd

Contractor/Consultant/Branch
None

Victims
Customers

Number Affected
thought to be up to 38,000

Cotton...]]></description>
      <content:encoded><![CDATA[Technorati Tag: <a href="http://technorati.com/tag/security+breach" rel="tag">Security Breach</a><br><br>
<img src="http://breachblog.com/images/95781-88451/cotton.jpg" align="right" height="94" width="169"><font size="2"><span style="font-weight: bold;">Date Reported: </span><br>6/10/08<br><br><span style="font-weight: bold;">Organization: </span><br><a href="http://www.cottontraders.co.uk/">Cotton Traders Ltd.</a> <br><br><span style="font-weight: bold;">Contractor/Consultant/Branch:</span><br>None<br><br><span style="font-weight: bold;">Victims:</span><br>Customers<br><br><span style="font-weight: bold;">Number Affected:</span><br>"thought to be up to 38,000"*<br><br><font size="1">*Cotton Traders claims this figure is "widely inaccurate" but isn't supplying the correct figure</font><br><br><span style="font-weight: bold;">Types of Data:</span><br>"addresses and credit card details"<br><br><span style="font-weight: bold;">Breach Description:</span><br>"Clothing firm Cotton Traders has confirmed that customers’ addresses and credit card details were stolen during a hack on its website in January."<br><br><span style="font-weight: bold;">Reference URL:</span><br><a href="http://news.bbc.co.uk/2/hi/technology/7446871.stm">BBC News</a> <br><a href="http://www.information-age.com/home/information-age-today/439866/up-to-38000-credit-cards-stolen-in-cotton-traders-hack.thtml">Information Age</a> <br><a href="http://www.silicon.com/retailandleisure/0,3800011842,39244963,00.htm">CNET Networks (Silicon.com)</a> <br><a href="http://www.channelregister.co.uk/2008/06/11/cotton_traders_hack/">The Register</a> <br><br><span style="font-weight: bold;">Report Credit:</span><br>BBC News and an informed reader of The Breach Blog<br><br><span style="font-weight: bold;">Response:</span><br>From the online sources cited above:<br><br>The credit card details of up to 38,000 customers of clothing firm Cotton Traders were stolen following a hack of its website<br><br>It was initially reported that 38,000 card details were stolen. Cotton Traders claim the number is "substantially less" but refuse to confirm the actual number.<br><span style="font-style: italic;">[Evan] Why is Cotton Traders not disclosing the number of persons affected by the breach?&nbsp; I think they do more damage to their reputation by not appearing open and honest about the breach.&nbsp; I can't think of any significant risk in sharing this information.</span><br><br>The firm has not confirmed the size of the breach but it has acknowledged the site was attacked early this year. <br><br>Barclaycard was contacted as soon as it learned of the attack, and most cards were stopped in January<br><br>"Those involved were notified at the time and card replaced,"<br><span style="font-style: italic;">[Evan] Really?&nbsp; In what manner were the people involved notified?&nbsp; Typically, when people are notified, they talk and/or share their experiences.&nbsp; BBC News reports about this breach ~5 months after the incident, so I wonder if people really were notified "at the time".</span><br><br>The payment industry's trade body said it was serious because hackers accessed details for "card not present" fraud<br><br>customer addresses were also stolen in the hack<br><br>a specialist police force was investigating the case<br><br>In a statement, Cotton Traders said all of its customers' credit card data was encrypted on the website<br><span style="font-style: italic;">[Evan] Hmmm.&nbsp; How and where was the data encrypted?&nbsp; Due to the lack of disclosed details, we are left to speculate.&nbsp; I can tell you from my past experiences that encryption is typically used for data in transit (from the front-end web server to the client) and sometimes where data is at rest (stored in the database).&nbsp; It is not uncommon for data to flow unencrypted between the back-end (database) and front-end (web server).&nbsp; Let's assume that this was a well </span></font><span style="font-style: italic;">architected </span><font size="2"><span style="font-style: italic;">ecommerce platform (from an information security standpoint), and that data is encrypted between the front and back end components.&nbsp; The information still exists for a some amount of time on the front-end server in a non-encrypted state.&nbsp; If the front-end web server were compromised, it is completely conceivable that the information confidentiality was compromised.&nbsp; I am not even going to speculate where and how encryption keys could be managed, but obviously this is another critical component of the architecture.</span><br><br>Cotton Traders, a specialist clothing outfit founded by ex-England rugby stars Fran Cotton and Steve Smith, said the potential to misuse the data is low because the credit card information was encrypted.<br><span style="font-style: italic;">[Evan] See my comments above.&nbsp; More information is required before a claim like the "potential to misuse the data is low" can be verified.</span><br><br>Earlier this year we identified a security issue. We immediately brought in industry security experts to resolve the problem.<br><span style="font-style: italic;">[Evan] Who are the "industry security experts"?</span><br><br>"Cotton Traders have recently upgraded all security on their website which has been validated by leading Industry experts."<br><br>"We would like to reassure all our customers that their data is secure and that the Cotton Traders website meets all leading Industry security standards."<br><br>The exact method used to hack the Cotton Traders website is not known.<br><br>Cotton Traders warned that other major retailers would be vulnerable to the same attack saying its website has always met "leading security standards".<br><span style="font-style: italic;">[Evan] How do you make a claim like this and not share?!&nbsp; If other major retailers "would be vulnerable to the same attack", then shouldn't they and the information security industry be notified ASAP?&nbsp; Maybe they/we have, but I don't think so.&nbsp; The fact that the bad guys share information so much better than us good guys has been an "industry vulnerability" that has existed for many years.&nbsp; This seems like another example of the communication barrier that still exists between "industry experts".</span><br><br>The firm has said customers worried about their cards should contact their card provider.<br><br>Security groups say the attack highlights the need for laws governing companies' response to breaches, as called for by silicon.com's Full Disclosure campaign.<br><span style="font-style: italic;">[Evan] Unfortunately, we need laws to force organizations to do the right things that they should have been doing all along.&nbsp; If organizations were managed well globally, would we need laws like breach notification statutes, SOX, HIPAA. etc.?&nbsp; The chances of organizations being well managed globally is a pipe dream.</span><br><br><span style="font-weight: bold;">Commentary:</span><br>I don't know what irks me more about breaches like this, the breach itself or the poor response. <br><br><span style="font-weight: bold;">Past Breaches:</span><br>Unknown</font><br><br>
<script src="http://feeds.feedburner.com/%7Es/breachblog?i=http://breachblog.com/2008/06/11/cotton.aspx" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
      <pubDate>Wed, 11 Jun 2008 06:45:54 +0000</pubDate>
      <category domain="http://securityratty.com/tag/cotton traders">cotton traders</category>
      <category domain="http://securityratty.com/tag/credit card details">credit card details</category>
      <category domain="http://securityratty.com/tag/website">website</category>
      <category domain="http://securityratty.com/tag/card details">card details</category>
      <category domain="http://securityratty.com/tag/information security standpoint">information security standpoint</category>
      <category domain="http://securityratty.com/tag/information">information</category>
      <category domain="http://securityratty.com/tag/card">card</category>
      <category domain="http://securityratty.com/tag/firm cotton traders">firm cotton traders</category>
      <category domain="http://securityratty.com/tag/front-end server">front-end server</category>
      <source url="http://breachblog.com/2008/06/11/cotton.aspx">Cotton Traders confirms that their website was compromised</source>
    </item>
  </channel>
</rss>
