<?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: urge]]></title>
    <link>http://securityratty.com/tag/urge</link>
    <description></description>
    <pubDate>Wed, 16 Apr 2008 10:21:05 +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[African officials urge use of IT for disaster management]]></title>
      <link>http://securityratty.com/article/63bf749199b9fe5c43b212aa971e5b75</link>
      <guid>http://securityratty.com/article/63bf749199b9fe5c43b212aa971e5b75</guid>
      <description><![CDATA[African countries need to make better use of ICT in order to do a better job of managing both natural and man-made disasters, according to a cross section of political and technology officials...]]></description>
      <content:encoded><![CDATA[African countries need to make better use of ICT in order to do a better job of managing both natural and man-made disasters, according to a cross section of political and technology officials speaking at an International Telecommunications Union forum in Lusaka last week.]]></content:encoded>
      <pubDate>Sun, 20 Jul 2008 20:00:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/man-made disasters">man-made disasters</category>
      <category domain="http://securityratty.com/tag/technology officials">technology officials</category>
      <category domain="http://securityratty.com/tag/union forum">union forum</category>
      <category domain="http://securityratty.com/tag/cross section">cross section</category>
      <category domain="http://securityratty.com/tag/african countries">african countries</category>
      <category domain="http://securityratty.com/tag/week">week</category>
      <category domain="http://securityratty.com/tag/lusaka">lusaka</category>
      <category domain="http://securityratty.com/tag/natural">natural</category>
      <category domain="http://securityratty.com/tag/job">job</category>
      <source url="http://www.networkworld.com/news/2008/072108-african-officials-urge-use-of.html?fsrc=rss-security">African officials urge use of IT for disaster management</source>
    </item>
    <item>
      <title><![CDATA[Apple does about-face, fixes Safari's 'carpet bomb' bug]]></title>
      <link>http://securityratty.com/article/861a77b7dbc06ce0be86363d83677e23</link>
      <guid>http://securityratty.com/article/861a77b7dbc06ce0be86363d83677e23</guid>
      <description><![CDATA[Apple has updated the Windows version of Safari, patching four flaws including one that prompted rival Microsoft to urge users to stop using Apple's...]]></description>
      <content:encoded><![CDATA[Apple has updated the Windows version of Safari, patching four flaws including one that prompted rival Microsoft to urge users to stop using Apple's browser.
<p><a href="http://feeds.computerworld.com/~a/Computerworld/Security/News?a=Q7spvo"><img src="http://feeds.computerworld.com/~a/Computerworld/Security/News?i=Q7spvo" border="0"></img></a></p><img src="http://feeds.computerworld.com/~r/Computerworld/Security/News/~4/315916872" height="1" width="1"/>]]></content:encoded>
      <pubDate>Thu, 19 Jun 2008 09:00:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/apple">apple</category>
      <category domain="http://securityratty.com/tag/windows version">windows version</category>
      <category domain="http://securityratty.com/tag/rival microsoft">rival microsoft</category>
      <category domain="http://securityratty.com/tag/urge users">urge users</category>
      <category domain="http://securityratty.com/tag/safari">safari</category>
      <category domain="http://securityratty.com/tag/stop">stop</category>
      <category domain="http://securityratty.com/tag/browser">browser</category>
      <category domain="http://securityratty.com/tag/flaws">flaws</category>
      <source url="http://feeds.computerworld.com/~r/Computerworld/Security/News/~3/315916872/article.do">Apple does about-face, fixes Safari's 'carpet bomb' bug</source>
    </item>
    <item>
      <title><![CDATA[Researchers urge ransomware victims to try file-recovery app]]></title>
      <link>http://securityratty.com/article/1218b5a8c2057a9de6b84cb31e15f892</link>
      <guid>http://securityratty.com/article/1218b5a8c2057a9de6b84cb31e15f892</guid>
      <description><![CDATA[Moscow-based Kaspersky Lab is telling ransomeware victims of Gpcode.ak how to recover data thought lost to the...]]></description>
      <content:encoded><![CDATA[Moscow-based Kaspersky Lab is telling ransomeware victims of Gpcode.ak how to recover data thought lost to the extortionists.
<p><a href="http://feeds.computerworld.com/~a/Computerworld/Security/News?a=jXC01O"><img src="http://feeds.computerworld.com/~a/Computerworld/Security/News?i=jXC01O" border="0"></img></a></p><img src="http://feeds.computerworld.com/~r/Computerworld/Security/News/~4/313150758" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 16 Jun 2008 09:00:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/kaspersky lab">kaspersky lab</category>
      <category domain="http://securityratty.com/tag/recover data">recover data</category>
      <category domain="http://securityratty.com/tag/ransomeware victims">ransomeware victims</category>
      <category domain="http://securityratty.com/tag/extortionists">extortionists</category>
      <category domain="http://securityratty.com/tag/gpcode">gpcode</category>
      <category domain="http://securityratty.com/tag/lost">lost</category>
      <source url="http://feeds.computerworld.com/~r/Computerworld/Security/News/~3/313150758/article.do">Researchers urge ransomware victims to try file-recovery app</source>
    </item>
    <item>
      <title><![CDATA[Hurricane season officially begins in 24 hours and many are doing nothing about it.]]></title>
      <link>http://securityratty.com/article/d169cefcc2cac4223d5f769a472fdb1e</link>
      <guid>http://securityratty.com/article/d169cefcc2cac4223d5f769a472fdb1e</guid>
      <description><![CDATA[I was watching the weather channel yesterday to see what the weekend would be like and was surprised to learn that the price of oil is being blamed for people's lack of preparation leading up to...]]></description>
      <content:encoded><![CDATA[I was watching the weather channel yesterday to see what the weekend would be like and was surprised to learn that the price of oil is being blamed for people's lack of preparation leading up to hurricane season. <br /><br /><br />According to the broadcaster, 50% of people living in areas that are most likely to be hit by hurricanes have not conducted any disaster planning whatsoever.  Of people surveyed, 30% admitted that they will wait until they hear warnings on the television before they do anything.  The report said that this is the first time since Huricanes Katrina and Rita struck, that people were so poorly prepared.  <br /><br /><br />One very interesting fact that 95% of people do not realize is that garages are the most vulnerable area of a dwelling to be hit by a Hurricane.  The Hurricane will tear off the roof of the house right after gaining access to the property through the garage. We would urge all of our readers living in areas susceptible to hurricanes to make sure that their garages are well secured.  Times may be tight and the cost of fuel is becoming more and more burdensome but there is no point losing your house when you just may have been able to prevent it.  <br /><br />If you didn't realize this fact about your garage, check it out today.  Time may be running out.<div class="blogger-post-footer">Visit Sexton Executive Security at www.sextonsecurity.com</div>]]></content:encoded>
      <pubDate>Fri, 30 May 2008 23:50:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/hurricane">hurricane</category>
      <category domain="http://securityratty.com/tag/hurricane season">hurricane season</category>
      <category domain="http://securityratty.com/tag/people">people</category>
      <category domain="http://securityratty.com/tag/weather channel yesterday">weather channel yesterday</category>
      <category domain="http://securityratty.com/tag/rita struck">rita struck</category>
      <category domain="http://securityratty.com/tag/garages">garages</category>
      <category domain="http://securityratty.com/tag/hurricanes">hurricanes</category>
      <category domain="http://securityratty.com/tag/time">time</category>
      <category domain="http://securityratty.com/tag/huricanes katrina">huricanes katrina</category>
      <source url="http://www.thebulletproofblog.com/2008/05/hurricane-season-officially-begins-in.html">Hurricane season officially begins in 24 hours and many are doing nothing about it.</source>
    </item>
    <item>
      <title><![CDATA[Parents can't afford to let their guard down when it comes to their children's safety]]></title>
      <link>http://securityratty.com/article/f4271355521860175541d0aa7fa6d4c5</link>
      <guid>http://securityratty.com/article/f4271355521860175541d0aa7fa6d4c5</guid>
      <description><![CDATA[I was very fortunate last night to have been able to attend a presentation in Richmond by the well known Criminal and Behavioral Profiler, Dr. Clinton Van Zandt
Dr. Van Zandt adressed a dinner which...]]></description>
      <content:encoded><![CDATA[I was very fortunate last night to have been able to attend a presentation in Richmond by the well known Criminal and Behavioral Profiler, Dr. Clinton Van Zandt.<br />Dr. Van Zandt adressed a dinner which was organized by the <a href="http://piava.wordpress.com/">Private Investigators Association of Virgina.</a>  Attendees were kept spell bound by inside sories involving the Jon Bennet Ramsey murder, The Unibomber, The Beltway Snipers and more. <br /><br /></span><br />Last month I was also fortunate to have been able to hear Col. Dave Grossman speak eloquently and passionately about the tragic school shootings in which he has been called in to assist educators and parents understand.  One thing is clear from listening to both men, parents need to be ever mindful of the fact that they are their children's protectors.  They are the sheepdogs, ever on the lookout for marauding wolves.<br /><br />If you are a parent, or an educator or a security professional, I strongly urge you to read up on the teachings of these learned men and jump at the opportunity to hear them live if at all possible.  I personally guarantee you that you will not be disappointed.<div class="blogger-post-footer">Visit Sexton Executive Security at www.sextonsecurity.com</div>]]></content:encoded>
      <pubDate>Fri, 23 May 2008 00:35:00 +0000</pubDate>
      <category domain="http://securityratty.com/tag/clinton van zandt">clinton van zandt</category>
      <category domain="http://securityratty.com/tag/van zandt">van zandt</category>
      <category domain="http://securityratty.com/tag/parents">parents</category>
      <category domain="http://securityratty.com/tag/tragic school shootings">tragic school shootings</category>
      <category domain="http://securityratty.com/tag/strongly urge">strongly urge</category>
      <category domain="http://securityratty.com/tag/behavioral profiler">behavioral profiler</category>
      <category domain="http://securityratty.com/tag/security professional">security professional</category>
      <category domain="http://securityratty.com/tag/inside sories">inside sories</category>
      <category domain="http://securityratty.com/tag/investigators association">investigators association</category>
      <source url="http://www.thebulletproofblog.com/2008/05/parents-cant-afford-to-let-their-guard.html">Parents can't afford to let their guard down when it comes to their children's safety</source>
    </item>
    <item>
      <title><![CDATA[Spring ISD mobile devices stolen along with personal student information]]></title>
      <link>http://securityratty.com/article/f51f56449615943eec1d39d3cb6103f3</link>
      <guid>http://securityratty.com/article/f51f56449615943eec1d39d3cb6103f3</guid>
      <description><![CDATA[Technorati Tag: Security Breach

Date Reported
5/16/08

Organization
Spring Independent School District (&quot;Spring ISD

Contractor/Consultant/Branch
None

Victims
Students

Number Affected
8,000

Types...]]></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/springisd.jpg" align="right" height="90" width="194"><font size="2"><span style="font-weight: bold;">Date Reported: </span><br>5/16/08<br><br><span style="font-weight: bold;">Organization: </span><br><a href="http://www.springisd.org/default.aspx?name=homepage">Spring Independent School District ("Spring ISD")</a> <br><br><span style="font-weight: bold;">Contractor/Consultant/Branch:</span><br>None<br><br><span style="font-weight: bold;">Victims:</span><br>Students<br><br><span style="font-weight: bold;">Number Affected:</span><br>~8,000<br><br><span style="font-weight: bold;">Types of Data:</span><br>"personal information, including name, social security number or state-assigned identification number, gender, name of school, grade and birthday"<br><br><span style="font-weight: bold;">Breach Description:</span><br>"Spring ISD has been informing the parents of about 8,000 students of an incident that occurred in the evening on Wednesday, May 14 that involves the students’ personal information. The Spring ISD testing coordinator’s car was broken into while she was making a stop at a business on her way home from work that evening and a Spring ISD laptop computer and an external flash drive were stolen."<br><br><span style="font-weight: bold;">Reference URL:</span><br><a href="http://www.springisd.org/default.aspx?name=may08.laptop">Spring ISD News</a> <br><a href="http://www.chron.com/disp/story.mpl/metropolitan/5786308.html">Houston Chronicle</a> <br><a href="http://abclocal.go.com/ktrk/story?section=news/local&amp;id=6146241">ABC Channel 13 News</a> <br><br><span style="font-weight: bold;">Report Credit:</span><br>Spring ISD<br><br><span style="font-weight: bold;">Response:</span><br>From the online sources cited above:<br><br>Spring ISD has been informing the parents of about 8,000 students of an incident that occurred in the evening on Wednesday, May 14 that involves the students’ personal information.<br><br>The Spring ISD testing coordinator’s car was broken into while she was making a stop at a business on her way home from work that evening and a Spring ISD laptop computer and an external flash drive were stolen.<br><span style="font-style: italic;">[Evan] The fact that the district allows personal student information to be stored on mobile devices is very troubling.&nbsp; There is no mention of encryption, so I will assume that there was none.&nbsp; This is very careless.</span><br><br>The coordinator's computer bag was stolen from her vehicle between 5:30 and 7 p.m. Wednesday when she stopped to run an errand near Mason Road and Beltway 8, on her way home from work<br><br>The coordinator had the laptop, Curry said, because the job responsibilities often require her to work nights and weekends.<br><span style="font-style: italic;">[Evan] Fine.&nbsp; This is the reason why many organizations use laptops.&nbsp; The problem is the lack of control and security.&nbsp; If an organization decides to employ laptops, then the organization MUST ensure that they are adequately protected.</span><br style="font-style: italic;"><br>The flash drive contains the Texas Assessment of Knowledge and Skills (TAKS) results of third and fifth graders who have taken the first round of reading and math tests, eighth graders who have taken the first round of math tests and 11th and 12th graders who have taken the exit level retest.<br><br>In addition, the drive contains the students’ personal information, including name, social security number or state-assigned identification number, gender, name of school, grade and birthday.<br><span style="font-style: italic;">[Evan] Why in the *&amp;^$ does a testing coordinator have Social Security numbers on a laptop and/or flash drive?!&nbsp; A Social Security number should have no correlation to testing scores.</span><br style="font-style: italic;"><br>This also applies to students who are in those testing groups but were absent when the testing took place. <br><br>Personal phone calls were made to the parents of these students on Thursday, letters were sent home with students and the letters are being mailed to homes also in an effort to help parents quickly take steps to protect their children from identity theft.<br><br>"The district immediately contacted federal agencies to make them aware of the theft, and we are checking to see whether there is any thing else we can do on behalf of the individual students. In the meantime, we urge parents to use the information we have provided," said Regina Curry, assistant superintendent for communications and community relations. <br><br>The theft is being investigated by the Harris County Sheriff’s Department and every effort is being made to recover the equipment.<br><br>The district has reported the incident to the Texas Education Agency Test Security Task Force and will comply with whatever action they require. <br><br>"This incident is highly regrettable and the district is looking at potential security precautions to protect the students’ personal information in the future," Curry said.<br><span style="font-style: italic;">[Evan] I'm sure that the district regrets the incident, but careless acts have consequences and this should have been known beforehand.</span><br style="font-style: italic;"><br>Anyone with information about the theft is urged to call the Harris County Sheriff's Office Burglary and Theft Division at 713-967-5770 or the Spring ISD Police Department at 832-764-4911.<br><br><span style="font-weight: bold;">Commentary:</span><br>I try to be politically correct in many of my comments although sometimes I push the boundaries.&nbsp; I can't think of a word right now that adequately expresses my thoughts.&nbsp; Where was common sense?&nbsp; It could be argued that many breaches we read about entail a certain amount of dumbness, but this one definitely strikes a chord.&nbsp; <br><br>Who in their right mind would allow highly-confidential personal information to be carried around on mobile devices?&nbsp; Without encryption?&nbsp; When it isn't necessary?&nbsp; It puzzles me.<br><br>I feel like I should say more, but my high blood pressure has gone high enough for the day.&nbsp; I should rest. <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/05/18/springisd.aspx" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
      <pubDate>Sun, 18 May 2008 19:01:44 +0000</pubDate>
      <category domain="http://securityratty.com/tag/information">information</category>
      <category domain="http://securityratty.com/tag/students personal information">students personal information</category>
      <category domain="http://securityratty.com/tag/personal information">personal information</category>
      <category domain="http://securityratty.com/tag/isd">isd</category>
      <category domain="http://securityratty.com/tag/students">students</category>
      <category domain="http://securityratty.com/tag/individual students">individual students</category>
      <category domain="http://securityratty.com/tag/isd laptop computer">isd laptop computer</category>
      <category domain="http://securityratty.com/tag/external flash drive">external flash drive</category>
      <category domain="http://securityratty.com/tag/drive">drive</category>
      <source url="http://breachblog.com/2008/05/18/springisd.aspx">Spring ISD mobile devices stolen along with personal student information</source>
    </item>
    <item>
      <title><![CDATA[A coward exposes personal information on 40% of Chileans]]></title>
      <link>http://securityratty.com/article/a890175464a0c736ed03e75a745166d8</link>
      <guid>http://securityratty.com/article/a890175464a0c736ed03e75a745166d8</guid>
      <description><![CDATA[Technorati Tag: Security Breach

Date Reported
5/10/08

Organization
Chilean Government

Contractor/Consultant/Branch
None

Victims
Chilean residents

Number Affected
6,000,000

Types of Data
names,...]]></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/chile.jpg" align="right" height="70" width="72"><font size="2"><span style="font-weight: bold;">Date Reported: </span><br>5/10/08<br><br><span style="font-weight: bold;">Organization: </span><br><a href="http://www.chileangovernment.cl/">Chilean Government</a> <br><br><span style="font-weight: bold;">Contractor/Consultant/Branch:</span><br>None<br><br><span style="font-weight: bold;">Victims:</span><br>Chilean residents<br><br><span style="font-weight: bold;">Number Affected:</span><br>~6,000,000<br><br><span style="font-weight: bold;">Types of Data:</span><br>"names, addresses, telephone numbers and taxpayer identification numbers"<br><br><span style="font-weight: bold;">Breach Description:</span><br>"An anonymous hacker has posted personal data about 6 million Chilean residents on the Internet, highlighting wider privacy problems in the country.&nbsp; The data was posted early Saturday morning on Fayerwayer.com, a popular Chilean technology blog."<br><br><span style="font-weight: bold;">Reference URL:</span><br><a href="http://www.fayerwayer.com/2008/05/alerta-se-filtran-datos-personales-de-6-millones-de-chilenos-via-internet/">Fayerwayer.com Alert</a><br><a href="http://abcnews.go.com/Technology/GadgetGuide/story?id=4841870">ABC News</a> <br><a href="http://www.thetechherald.com/article.php/200820/963/Anonymous-Coward-posts-information-to-prove-point">The Tech Herald</a> <br><a href="http://www.iht.com/articles/ap/2008/05/11/america/LA-GEN-Chile-Data-Leaked.php">International Herald Tribune</a> <br><a href="http://www.vnunet.com/vnunet/news/2216464/six-million-chileans-details-online">vnunet.com</a> <br><br><span style="font-weight: bold;">Report Credit:</span><br>JI Stark, Fayerwayer.com<br><br><span style="font-weight: bold;">Response:</span><br>From the online sources cited above:<br><br><img src="http://images.quickblogcast.com/95781-88451/alerta.jpg" border="0" width="500"><br><br>ORIGINAL POST TEXT GOOGLE TRANSLATED<br>Something really horrible has just come to our comments.&nbsp; Moments after writing about the purchase of Inquisitor by Yahoo, an anonymous comment left three links to download two files that contain databases in CSV of public and private institutions where there is sensitive information of millions of Chileans, like RUN - Role purely national identification number Chilean -, socio-economic data, electoral, educational, addresses, and telephone numbers individuals, among others.<br><br>We urge that these files if they see us please not download or disseminated by any electronic means.<br><br>It is extremely dangerous what can happen - and what can happen to you, as the only disseminate is an offence punishable by law - in the case that such senstive data failling to the hands unscrupulous.&nbsp; It seriously.<br><br>Update 02:46 AM (GMT -4): The team of FireWire is doing everything in its power at this time to cooperate and ensure that this situation is resolved as soon as possible. <br><br>Update 03:25 AM (GMT -4): The topics in our forums with links to the files were deleted. The FireWire forums require registration, so that data - although most likely false, including IP's mask - will be put in the hands of the authorities.<br><br>Update 04:45 PM (GMT -4): The Cybercrime Brigade of the Investigative Police of Chile already contacted us, told us about the progress of the investigation that is already under way and we extend all cooperation that is within our grasp. <br><br>END OF ORIGINAL POST TEXT<br><br>A hacker has obtained the personal details of around six million Chileans from government and military servers and posted them on a technology blog.<br><span style="font-style: italic;">[Evan] "Anonymous Coward" posted the information in the comments of the </span><a style="font-style: italic;" href="http://www.fayerwayer.com/2008/05/yahoo-se-hace-de-inquisitor/">purchase of Inquisitor by Yahoo </a><span style="font-style: italic;">posting on <a href="http://www.fayerwayer.com.</span><a">www.fayerwayer.com.</span><a</a> href="http://www.fayerwayer.com.%3C/span%3E%3Cbr%3E%3Cbr%3EThe"><br><br></a>The hacker, who calls himself "Anonymous Coward," posted three compressed files of data that included names, addresses, telephone numbers and taxpayer identification numbers for Chilean residents, said Leo Prieto, Fayerwayer.com's director.<br><br>The data was taken early Friday from servers at the Education Ministry, the electoral service and the military<br><br>it was first reported to police early Saturday by Leo Prieto, the administrator of a local technology-oriented Internet site who discovered links to the information online.<br><br>Among the data was a list of students who receive preferential public transportation rates, including one of President Michelle Bachelet's two daughters<br><br>Despite the information's prompt removal from the Internet, some people may have downloaded it "and it may still be around on the Internet,"<br><br>over the following days the files started popping up on other sites including Google's Blogger<br><span style="font-style: italic;">[Evan] You can't un-disclose confidential information.&nbsp; Once the confidentiality of information has been compromised, it is always going to be compromised.</span><br><br>Reports claim that the hacker performed the stunt to highlight poor levels of data protection in Chile.<br><span style="font-style: italic;">[Evan] What idiot would pull such a stunt and claim such a ridiculous justification?</span><br><br>In a note accompanying the files, Anonymous Coward said he posted the databases to draw attention to the poor data protection measures in the country<br><span style="font-style: italic;">[Evan] This is the worst way to draw attention to poor data protection.&nbsp; What "Anonymous Coward" did was create 6,000,000+ enemies and put his/her very well being at risk.&nbsp; He/she caused an extraordinary amount of harm to almost 40% of Chile's population and made a complete ass out of him/herself.</span><br><br>El Mercurio reported that it had access to some of the data, including a file in which the hacker said he intended "to demonstrate how poorly protected the data in Chile is, and how nobody works to protect it."<br><br>The files include tips on what to do with the data and how best to access it.<br><br>"Chile may be on the other side of the world, but the scale of this data breach should not be ignored," said Graham Cluley, senior technology consultant at security firm Sophos.<br><br>"No matter how moral or ethical the motive, this prank was irresponsible and has left almost 40 per cent of Chile's population at risk of identity theft."<br><br>Cluley added that all organisations around the world should see this as a wake-up call and ensure that all personal and sensitive information is stored securely.<br><span style="font-style: italic;">[Evan] You would think that the 94,000,000 credit card numbers stolen from TJX, or the 26,500,000 Social Security numbers on the stolen Veterans Affairs laptop, or the 25,000,000 personal records lost on CDs from HM Customs and Revenue would wake organizations up.&nbsp; There is still this illogical thought in organizations that "this will never happen to us".&nbsp; It <span style="font-weight: bold;">DOES </span>and <span style="font-weight: bold;">IT WILL</span>.&nbsp; I'm not even going to get into information security personnel that lack skill and have business leaders fooled into thinking that they are doing the right thing(s).</span><br><br>"Whether or not the loss results in a fine is almost irrelevant; the consequences of falling victim to such an attack can mean irreversible damage to reputation and customer confidence."<br><span style="font-style: italic;">[Evan] I couldn't agree with Mr. Cluley any more.&nbsp; This is a guy that "gets it".</span><br><br><span style="font-weight: bold;">Commentary:</span><br>Unbelievable.&nbsp; The evil in some people.&nbsp; So let's say that "Anonymous Coward" is caught (I think chances are better that 50/50).&nbsp; Now what?&nbsp; How do you punish someone whose actions put 6,000,000 people at risk of losing their identities.&nbsp; These people will live with some level of fear for a very long time.&nbsp; Punishment will be severe, but how severe is enough?&nbsp; This will be an interesting story to follow.<br><br>Let's not lose sight of another issue with this breach.&nbsp; What is the Chilean government doing to protect confidential information and what does it intend to do in response to this breach?&nbsp; Obviously the government needs to secure information better, but how will they respond to 40% of their residents being exposed to fraud and all that comes with it?&nbsp; I don't know what can be done short of re-assigning government issued identifiers to Chilean residents.&nbsp; This breach (or series of breaches) could be very costly to residents, the Chilean economy and the government. <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/05/16/chile.aspx" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
      <pubDate>Fri, 16 May 2008 09:56:50 +0000</pubDate>
      <category domain="http://securityratty.com/tag/personal">personal</category>
      <category domain="http://securityratty.com/tag/information">information</category>
      <category domain="http://securityratty.com/tag/chilean residents">chilean residents</category>
      <category domain="http://securityratty.com/tag/residents">residents</category>
      <category domain="http://securityratty.com/tag/poor data protection">poor data protection</category>
      <category domain="http://securityratty.com/tag/data protection">data protection</category>
      <category domain="http://securityratty.com/tag/personal data">personal data</category>
      <category domain="http://securityratty.com/tag/breach description">breach description</category>
      <category domain="http://securityratty.com/tag/breach">breach</category>
      <source url="http://breachblog.com/2008/05/16/chile.aspx">A coward exposes personal information on 40% of Chileans</source>
    </item>
    <item>
      <title><![CDATA[Cornerstone Fitness for Women information found in discarded file cabinet]]></title>
      <link>http://securityratty.com/article/0f0557fdc4dfeb37420b65decbea2603</link>
      <guid>http://securityratty.com/article/0f0557fdc4dfeb37420b65decbea2603</guid>
      <description><![CDATA[Technorati Tag: Security Breach

Date Reported
4/30/08

Organization
Cornerstone Fitness for Women

Contractor/Consultant/Branch
None

Victims
Customers

Number Affected
Unknown

Types of Data
Names,...]]></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/cornerstone.jpg" align="right" height="82" width="197"><font size="2"><span style="font-weight: bold;">Date Reported: </span><br>4/30/08<br><br><span style="font-weight: bold;">Organization: </span><br><a href="http://cornerstonefitnessrgv.com/">Cornerstone Fitness for Women</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>Unknown<br><br><span style="font-weight: bold;">Types of Data:</span><br>Names, addresses, phone numbers and in many instances Social Security numbers copies of checks and credit card information<br><br><span style="font-weight: bold;">Breach Description:</span><br>"EDINBURG - A local company that operates several fitness centers across the region could be fined if investigators substantiate allegations it left clients' sensitive personal information in a trash bin."<br><br><span style="font-weight: bold;">Reference URL:</span><br><a href="http://www.newschannel5.tv/2008/4/30/990568/Cornerstone-Identification-Problems">KRGV-TV Newschannel 5</a> <br><a href="http://www.themonitor.com/news/http_11597___article.html/www_idtheft2.html">The Monitor</a> <br><a href="http://www.brownsvilleherald.com/news/local_86350___article.html/fined_clients.html">The Brownsville Herald</a> <br><br><span style="font-weight: bold;">Report Credit:</span><br>KRGV-TV Newschannel 5<br><br><span style="font-weight: bold;">Response:</span><br>From the online sources cited above:<br><br>EDINBURG - A local company that operates several fitness centers across the region could be fined if investigators substantiate allegations it left clients' sensitive personal information in a trash bin.<br><br>This story came to our attention after NEWSCHANNEL 5's Lisa Cortez received a phone call from a complete stranger on her cell phone.<br><br>He had Lisa's contract from Cornerstone Fitness.<br><br>He knew not only her phone number, but also her address, employer, and a copy of a check used to pay her account.<br><br>He also had about 30 other contracts.<br><br>It has everything you would want to know about them. I think those people deserve to know about it, " said Zumwalt. (Sammy Zumwalt, the person that called Ms. Cortez)<br><br>All contracts list names, addresses and phone numbers. Some of them list social security numbers and have copies of checks and credit cards.<br><br>Zumwalt says his friend found a filing cabinet in a dumpster behind the former Cornerstone Fitness Center for Women in Edinburg.<br><br>The center shut down several months ago.<br><span style="font-style: italic;">[Evan] This isn't the first time that we have read about an organization vacating a location and leaving sensitive information behind (unsecured).&nbsp; Just in the past few months there was </span><a style="font-style: italic;" href="http://breachblog.com/2008/03/19/affordable.aspx">Affordable Realty</a><span style="font-style: italic;"> in March, and </span><a style="font-style: italic;" href="http://breachblog.com/2008/02/29/unionmortgage.aspx">Union Mortgage</a><span style="font-style: italic;"> and </span><a style="font-style: italic;" href="http://breachblog.com/2008/02/21/firstmagnus.aspx">First Magnus</a><span style="font-style: italic;"> in February.</span><br><br>The paperwork was in Zumwalt's room for several weeks.<br><br>Recently, he decided to go through the stack of papers and came across the sensitive information.<br><br>Zumwalt turned the contracts over to NEWSCHANNEL 5.<br><span style="font-style: italic;">[Evan] Why NEWSCHANNEL 5 and not the police or the Texas Attorney General?&nbsp; Do you think somebody wanted their 15 minutes of fame?</span><br><br>"At this point, we don't know what happened. This is not our usual practice. We are investigating it. We've been in the business for 10 years and this is the first time we hear of something like this. " (Joseph De la garza, one of the fitness club's owners)<br><br>NEWSCHANNEL 5 sorted through the contracts and contacted several members from the pile.<br><br>Cornerstone tells NEWSCHANNEL 5 they carefully guard all sensitive client information.<br><br>State Sen. Juan "Chuy" Hinojosa, D-McAllen, urged Texas Attorney General Greg Abbott to investigate, according to Jerry Strickland, a spokesman for the attorney general's office.<br><span style="font-style: italic;">[Evan] I guess this is one good thing about reporting it to the media instead of the authorities.&nbsp; Mr. Hinojosa sees it on TV and pushes for an investigation.</span><br><br>"A lot of businesses are being very careless in the way they handle personal information," Hinojosa said. "Businesses (are required) to shred all information they no longer need."<br><span style="font-style: italic;">[Evan] Oh yes, very true.</span><br><br><span style="font-weight: bold;">Victim Reaction:</span><br>"I mean, I don't even know how to explain how I feel, because I am so in shock," said one woman after we read her social security number.<br><br>Denise Grant told NEWSCHANNEL 5, "You never realize how important this information is until you have to try to prove that you are who you say you are." (a woman who claims to have been an victim of identity theft before)<br><br><span style="font-weight: bold;">Commentary:</span><br>Well, we all know (or should know) that this type of breach is nothing new, but I am keyed in on what Mr. Hinojosa stated, "A lot of businesses are being very careless in the way they handle personal information".&nbsp; <br><br>What will urge businesses to be more careful and secure personal information better?&nbsp; More laws?&nbsp; More costly fines?&nbsp; More laws mean more compliance.&nbsp; More compliance means more cost to companies.&nbsp; More cost to companies means more expensive goods and services.&nbsp; Seems that the same argument holds true for fines.<br><br>Maybe we should stop using a single identifier for all things personal (i.e. Social Security numbers).&nbsp; Do you think that the credit bureaus and the rest of the financial industry would go for such a radical idea?&nbsp; Do you know how the credit bureaus make money (I won't go into this now)?&nbsp; This would be a tough battle to fight.<br><br>An easy to implement solution does not exist.&nbsp; We have walked so far down this road that I think we may have gotten a little lost.&nbsp; <br><br>I have ranted long enough.&nbsp; On to the next breach, right? <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/05/05/cornerstone.aspx" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
      <pubDate>Mon, 05 May 2008 10:01:48 +0000</pubDate>
      <category domain="http://securityratty.com/tag/information">information</category>
      <category domain="http://securityratty.com/tag/secure personal information">secure personal information</category>
      <category domain="http://securityratty.com/tag/sensitive information">sensitive information</category>
      <category domain="http://securityratty.com/tag/handle personal information">handle personal information</category>
      <category domain="http://securityratty.com/tag/personal">personal</category>
      <category domain="http://securityratty.com/tag/credit card information">credit card information</category>
      <category domain="http://securityratty.com/tag/cornerstone fitness">cornerstone fitness</category>
      <category domain="http://securityratty.com/tag/cornerstone tells newschannel">cornerstone tells newschannel</category>
      <category domain="http://securityratty.com/tag/newschannel">newschannel</category>
      <source url="http://breachblog.com/2008/05/05/cornerstone.aspx">Cornerstone Fitness for Women information found in discarded file cabinet</source>
    </item>
    <item>
      <title><![CDATA[Woule the Do not Track registry work like the Do not call registry?]]></title>
      <link>http://securityratty.com/article/e634128f8ecad9edb84e18caa8c9975a</link>
      <guid>http://securityratty.com/article/e634128f8ecad9edb84e18caa8c9975a</guid>
      <description><![CDATA[Im not sure how good an idea this is. Im on every do not call list I can find and I still get calls. I do believe if you use my data to make a profit, you should reimburse me a lil


clipped from...]]></description>
      <content:encoded><![CDATA[<div > Im not sure how good an idea this is. Im on every do not call list I can find and I still get calls.<br/>I do believe if you use my data to make a profit, you should reimburse me a lil. </div>
<table cellpadding="0" cellspacing="0" width="100%" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;">
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" width="100%" class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;">
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" width="100%" style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;">
<tr>
<td valign="top"><a href="http://clipmarks.com/clipmark/CC11B4DA-EEC0-468D-96CA-EAD2DFDCC3CF/" title="go to this clipmark"><img src="http://content.clipmarks.com/blog_icon/5c896c3f-a087-46cb-9df2-aecbb03bcb25/CC11B4DA-EEC0-468D-96CA-EAD2DFDCC3CF/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /></a>clipped from <a title="http://news.yahoo.com/s/nm/20080415/wr_nm/internet_privacy_dc" href="http://news.yahoo.com/s/nm/20080415/wr_nm/internet_privacy_dc" style="font-size: 11px;">news.yahoo.com</a></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" width="100%" style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;">
<tr>
<td valign="top"><!-- CLIPPED FROM: http://news.yahoo.com/s/nm/20080415/wr_nm/internet_privacy_dc -->
<div style="margin: 4px 0px; color: #000000; font-size: 20px;">
					<DIV class="source"><br />
                                                						<A href="http://us.rd.yahoo.com/dailynews/reuters/brand/SIG=pd7i95;_ylt=AsVbDlSPobVSnQnY5izKWSgh2.cA/*http://www.reuters.com"><IMG width="94" height="27" border="0" alt="Reuters" src="http://l.yimg.com/us.yimg.com/i/us/nws/p/reuters_logo_94.png" /></A><br />
                                                					</DIV><br />
                                        Consumer groups urge &#8220;do not track&#8221; registry                </div>
</td>
</tr>
</table>
<div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"></div>
<table cellpadding="0" cellspacing="0" width="100%" style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;">
<tr>
<td valign="top"><!-- CLIPPED FROM: http://news.yahoo.com/s/nm/20080415/wr_nm/internet_privacy_dc --><P><br />
                        WASHINGTON (Reuters) -<br />
Two consumer groups asked the<br />
<SPAN id="lw_1208335574_0" class="yshortcuts">Federal Trade Commission</SPAN> on Tuesday to create a &#8220;do not track<br />
list&#8221; that would allow computer users to bar advertisers from<br />
collecting information about them.<br />
                        </P></td>
</tr>
</table>
</td>
</tr>
</table>
<div style="margin: 0px 6px 6px 4px;">
<table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="background:transparent;border-width:0px;padding:0px;">&nbsp;</td>
<td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"><a href="http://clipmarks.com/share/CC11B4DA-EEC0-468D-96CA-EAD2DFDCC3CF/blog/" title="blog or email this clip"><img src="http://content9.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /></a></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
]]></content:encoded>
      <pubDate>Wed, 16 Apr 2008 10:21:05 +0000</pubDate>
      <category domain="http://securityratty.com/tag/track registry">track registry</category>
      <category domain="http://securityratty.com/tag/track">track</category>
      <category domain="http://securityratty.com/tag/list">list</category>
      <category domain="http://securityratty.com/tag/call list">call list</category>
      <category domain="http://securityratty.com/tag/federal trade commission">federal trade commission</category>
      <category domain="http://securityratty.com/tag/computer users">computer users</category>
      <category domain="http://securityratty.com/tag/consumer">consumer</category>
      <category domain="http://securityratty.com/tag/bar advertisers">bar advertisers</category>
      <category domain="http://securityratty.com/tag/lil">lil</category>
      <source url="http://spywarebiz.com/spywarebizblog/?p=429">Woule the Do not Track registry work like the Do not call registry?</source>
    </item>
  </channel>
</rss>
