<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>loosy|goosy|ness - Blog - bugs</title>
    <link>http://www.loosy-goosy-ness.com/</link>
    <description>]..lost &amp; found in translation between bits &amp; bytes..[</description>
    <language>en-us</language>
    <copyright>Christian Maier</copyright>
    <lastBuildDate>Fri, 08 Aug 2008 09:46:48 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>agentcoyote@googlemail.com</managingEditor>
    <webMaster>agentcoyote@googlemail.com</webMaster>
    <item>
      <trackback:ping>http://www.loosy-goosy-ness.com/Trackback.aspx?guid=257c0797-c2ad-4239-9075-c4db45989fc6</trackback:ping>
      <pingback:server>http://www.loosy-goosy-ness.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.loosy-goosy-ness.com/PermaLink,guid,257c0797-c2ad-4239-9075-c4db45989fc6.aspx</pingback:target>
      <dc:creator>Christian</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
[QUTOE]<br /></p>
        <p>
          <b>Las Vegas (NV) – The Internet relies on trust, but what if all that trust comes
tumbling down?  That’s exactly the problem noted security researcher Dan Kaminsky
described today in his Black Hat talk about DNS cache poisoning.  Several months
ago, Kaminsky discovered a vulnerability in the DNS protoctol that allowed bogus name
information to be sent to other servers and desktop computers – in essence hackers
could redirect web surfers, chat clients and even email servers to machines of their
choosing.  Specific details about the vulnerability and the ways to exploit it
have been kept secret until today …</b>
        </p>
        <p>
Kaminsky is the director of penetration testing for IOActive and specializes in playing
around with DNS.  He says he found the vulnerability by accident while he was
poking around for other “toys”. To fully understand the bug, let’s go into a brief
introduction into how DNS or domain name service works.  Network gurus can probably
skip the next few paragraphs. 
</p>
        <p align="center">
          <img title="Image" height="386" alt="Image" hspace="6" src="http://www.tgdaily.com/images/stories/article_images/conventions/blackhat2008/dankaminsky-450.jpg" width="450" border="0" />
        </p>
        <p>
Almost every Internet service you use, from email to web browsing uses DNS convert
the easily remembered names like www.google.com, www.youtube.com and others into IP
address like 123.456.789.123.  This conversion is needed because people can remember
names easier.  Also companies can change names while keeping all their services
pointed to the same numerical IP address.<br />
Behind the scenes, DNS servers make this magic happen by holding a database of DNS
records which are lists of names with corresponding IP addresses – think of it as
a big list of example.com = 123.456.789.123, example2.com = XXX.XXX.XXX.XXX, etc. 
Client computers ask for an IP address by sending a DNS request to the server and
the server will reply back with the answer.  Of course servers can only hold
so much information, and will hand off the request to a more authoritative server,
if it doesn’t know the answer.  The requests can be further bounced up the chain
until they reach the ultimate or root domain name servers for the Internet. 
If these guys don’t know the answer, then the name to IP address mapping doesn’t exist.<br />
Now imagine yourself as a 411 operator who has to find telephone numbers when asked
about a certain place - let’s say Outback Steak House in Torrance, California (our
favorite place in the world).  On the first call, you’d probably type it into
your computer and wait for the answer, but let’s say the place is really popular and
you get tons of calls every day for the place.  Eventually, a smart operator
would write the number on a Sticky-Note and post it on the monitor for quick retrieval. 
Then when a person calls, you simply read the number on the note, rather than taking
the time to type it into the computer.  Well this is exactly what DNS servers
do in form of cache.<br />
Kaminksy’s DNS bug, as some people are calling it, exploits this cache by sending
malicious requests and once a sufficient number of requests have been sent, the hacker
can start rewriting the entries.  It’s important to distinguish that the actual
records of the DNS server is not corrupted by this bug, rather it’s the entries in
the cache itself.<br />
Kaminsky sat down with us afterwards to give us all the gory details that would make
the average man’s head explode, but hey that’s why you come to TG Daily isn’t it. 
His attack forces your local domain name server (which is probably your Internet router)
to basically perform all the work.  The bad guy forces the DNS server to purposely
miss the cache by asking for the IP address of crazy domain names like 1.foo.com,
2.foo.com, 3.foo.com.  Your local domain name server won’t know the details so
it then asks other servers to obtain the answer.<br />
As requests and replies flow out and back to your local server, the attacker then
unleashes a torrent of specially crafted packets to the victim domain name server. 
These packets try to guess the transaction ID of the DNS reply which is a number that
ranges from 1 to 65536.  The attacker also has to forward the packet to the correct
port which in most cases is the default DNS port 53.<br />
The attack is basically a race of a the hacker stream of DNS replies versus the real
reply coming from the real DNS server.  Once the victim DNS server receives a
reply with a valid transaction ID, the attacker can substitute any IP address for
the domain name.  “The hacker’s packet blows away the response from the real
server,” Kaminsky told TG Daily.
</p>
        <p align="center">
          <img title="Image" height="349" alt="Image" hspace="6" src="http://www.tgdaily.com/images/stories/article_images/conventions/blackhat2008/kaminsky_dns.jpg" width="450" border="0" />
        </p>
        <p align="center">
          <b>Kaminsky was kind enough to draw out the attack for us.  The client computer
is on the left and the first node to the right is your local domain name server. </b>
        </p>
        <p>
Ok, so I’m sure some of you see two big problems with this.  First, how the heck
do you guess the correct transaction ID out of more than 65000 numbers and how do
you get the local domain name server to issue the query that starts the whole ball
rolling?  Kaminsky says most DNS servers simply increment their transaction ids
which makes guessing them fairly trivial.  Also some implementations of DNS are
run on a buggy random number generator that produces predictable patterns of numbers. 
As far as getting the domain name server to issue the query, Kaminsky told use there
are at least eight ways that he knows of and probably tons more that he doesn’t. 
“Sometimes you can just ask and the server will issue a query, but it’s amazingly
easy to get a DNS server to look something up,” he said. 
</p>
        <p>
So what does a hacker gain from attacking DNS servers?  According to Kaminsky,
owning the .COM dns space would get you pretty much anything you wanted.  Everything
from intercepting emails to taking over spam filters could be accomplished. 
He even outlined grabbing passwords to webmail and other services by exploiting the
“Forgot Your Password” feature used by many vendors.  But perhaps the biggest
risk was to SSL security because certificate vendors could be duped into giving certs
to bogus companies. 
</p>
        <p>
SSL certificate authorities issue the certificates by identifying the applicant through
email.  The vendor looks up the domain’s address in WHOIS and then sends an email
to the mail address contained in the record.  But if you were able to poison
the DNS to redirect Microsoft’s DNS entry, then you could conceivably gain a Microsoft
or another large company’s certificate.<br />
Kaminsky found the bug approximately five months ago and initially worked solely with
vendors to patch the bug because he feared any leak would invite malicious hackers
into taking over the Internet.  “I spent the last few months terrified that companies
would have their emails stolen because of a bug I found,” he told us.  
<br />
Kaminsky was lambasted by some security researchers because hackers, by their very
nature, are quite the peer oriented group.  Those critics were eventually silenced
after Kaminsky had a conference call with the doubters.<br />
In a press conference after the talk, Kaminsky told reporters that vendors have been
“fantastic” in responding and patching the bug.  Microsoft even hosted a summit
on March 31st where Kaminsky and fellow researchers flew to Redmond Washington in
a marathon session to hammer out a fix – something that took thousands of man hours
and “thousands of pizzas”.<br />
That patch, dubbed the “sledgehammer fix” by Kaminsky, randomized the transaction
IDs and upped the range to more than a 100,000,000 possibilities.  Hopefully
a competent IT administrator would notice hundreds of millions of malicious packets
hitting their DNS servers, Kaminsky said.<br />
On July 8th, most of the major vendors like Microsoft, Sun, Cisco and Red Hat had
patched their servers and Kaminksy has stayed in constant contact with major web companies
like MySpace, Craigslist and eBay, all in the hopes of educating IT administrators
of the problem.  “I’ve been on the phone a lot, a whole lot,” he said, adding
that he doesn’t want to look at his mobile phone bill for the last month.<br />
But Kaminsky warns that the danger isn’t completely over and that the next bug may
not come with as much warning and the hacker finding it may not be as considerate. 
“They probably won’t be as friendly as me,” he said.<br />
[/QUOTE] 
</p>
        <p>
          <strong>Source:</strong>
          <a title="http://www.tgdaily.com/content/view/38772/108/" href="http://www.tgdaily.com">www.tgdaily.com</a>
        </p>
        <img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=257c0797-c2ad-4239-9075-c4db45989fc6" />
      </body>
      <title>Security guru describes DNS flaw, says Internet Armageddon narrowly averted</title>
      <guid isPermaLink="false">http://www.loosy-goosy-ness.com/PermaLink,guid,257c0797-c2ad-4239-9075-c4db45989fc6.aspx</guid>
      <link>http://www.loosy-goosy-ness.com/2008/08/08/SecurityGuruDescribesDNSFlawSaysInternetArmageddonNarrowlyAverted.aspx</link>
      <pubDate>Fri, 08 Aug 2008 09:46:48 GMT</pubDate>
      <description>&lt;p&gt;
[QUTOE]&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Las Vegas (NV) – The Internet relies on trust, but what if all that trust comes
tumbling down?&amp;nbsp; That’s exactly the problem noted security researcher Dan Kaminsky
described today in his Black Hat talk about DNS cache poisoning.&amp;nbsp; Several months
ago, Kaminsky discovered a vulnerability in the DNS protoctol that allowed bogus name
information to be sent to other servers and desktop computers – in essence hackers
could redirect web surfers, chat clients and even email servers to machines of their
choosing.&amp;nbsp; Specific details about the vulnerability and the ways to exploit it
have been kept secret until today …&lt;/b&gt; 
&lt;p&gt;
Kaminsky is the director of penetration testing for IOActive and specializes in playing
around with DNS.&amp;nbsp; He says he found the vulnerability by accident while he was
poking around for other “toys”. To fully understand the bug, let’s go into a brief
introduction into how DNS or domain name service works.&amp;nbsp; Network gurus can probably
skip the next few paragraphs. 
&lt;p align="center"&gt;
&lt;img title="Image" height="386" alt="Image" hspace="6" src="http://www.tgdaily.com/images/stories/article_images/conventions/blackhat2008/dankaminsky-450.jpg" width="450" border="0"&gt;
&lt;/p&gt;
&lt;p&gt;
Almost every Internet service you use, from email to web browsing uses DNS convert
the easily remembered names like www.google.com, www.youtube.com and others into IP
address like 123.456.789.123.&amp;nbsp; This conversion is needed because people can remember
names easier.&amp;nbsp; Also companies can change names while keeping all their services
pointed to the same numerical IP address.&lt;br&gt;
Behind the scenes, DNS servers make this magic happen by holding a database of DNS
records which are lists of names with corresponding IP addresses – think of it as
a big list of example.com = 123.456.789.123, example2.com = XXX.XXX.XXX.XXX, etc.&amp;nbsp;
Client computers ask for an IP address by sending a DNS request to the server and
the server will reply back with the answer.&amp;nbsp; Of course servers can only hold
so much information, and will hand off the request to a more authoritative server,
if it doesn’t know the answer.&amp;nbsp; The requests can be further bounced up the chain
until they reach the ultimate or root domain name servers for the Internet.&amp;nbsp;
If these guys don’t know the answer, then the name to IP address mapping doesn’t exist.&lt;br&gt;
Now imagine yourself as a 411 operator who has to find telephone numbers when asked
about a certain place - let’s say Outback Steak House in Torrance, California (our
favorite place in the world).&amp;nbsp; On the first call, you’d probably type it into
your computer and wait for the answer, but let’s say the place is really popular and
you get tons of calls every day for the place.&amp;nbsp; Eventually, a smart operator
would write the number on a Sticky-Note and post it on the monitor for quick retrieval.&amp;nbsp;
Then when a person calls, you simply read the number on the note, rather than taking
the time to type it into the computer.&amp;nbsp; Well this is exactly what DNS servers
do in form of cache.&lt;br&gt;
Kaminksy’s DNS bug, as some people are calling it, exploits this cache by sending
malicious requests and once a sufficient number of requests have been sent, the hacker
can start rewriting the entries.&amp;nbsp; It’s important to distinguish that the actual
records of the DNS server is not corrupted by this bug, rather it’s the entries in
the cache itself.&lt;br&gt;
Kaminsky sat down with us afterwards to give us all the gory details that would make
the average man’s head explode, but hey that’s why you come to TG Daily isn’t it.&amp;nbsp;
His attack forces your local domain name server (which is probably your Internet router)
to basically perform all the work.&amp;nbsp; The bad guy forces the DNS server to purposely
miss the cache by asking for the IP address of crazy domain names like 1.foo.com,
2.foo.com, 3.foo.com.&amp;nbsp; Your local domain name server won’t know the details so
it then asks other servers to obtain the answer.&lt;br&gt;
As requests and replies flow out and back to your local server, the attacker then
unleashes a torrent of specially crafted packets to the victim domain name server.&amp;nbsp;
These packets try to guess the transaction ID of the DNS reply which is a number that
ranges from 1 to 65536.&amp;nbsp; The attacker also has to forward the packet to the correct
port which in most cases is the default DNS port 53.&lt;br&gt;
The attack is basically a race of a the hacker stream of DNS replies versus the real
reply coming from the real DNS server.&amp;nbsp; Once the victim DNS server receives a
reply with a valid transaction ID, the attacker can substitute any IP address for
the domain name.&amp;nbsp; “The hacker’s packet blows away the response from the real
server,” Kaminsky told TG Daily.
&lt;/p&gt;
&lt;p align="center"&gt;
&lt;img title="Image" height="349" alt="Image" hspace="6" src="http://www.tgdaily.com/images/stories/article_images/conventions/blackhat2008/kaminsky_dns.jpg" width="450" border="0"&gt;
&lt;/p&gt;
&lt;p align="center"&gt;
&lt;b&gt;Kaminsky was kind enough to draw out the attack for us.&amp;nbsp; The client computer
is on the left and the first node to the right is your local domain name server. &lt;/b&gt; 
&lt;p&gt;
Ok, so I’m sure some of you see two big problems with this.&amp;nbsp; First, how the heck
do you guess the correct transaction ID out of more than 65000 numbers and how do
you get the local domain name server to issue the query that starts the whole ball
rolling?&amp;nbsp; Kaminsky says most DNS servers simply increment their transaction ids
which makes guessing them fairly trivial.&amp;nbsp; Also some implementations of DNS are
run on a buggy random number generator that produces predictable patterns of numbers.&amp;nbsp;
As far as getting the domain name server to issue the query, Kaminsky told use there
are at least eight ways that he knows of and probably tons more that he doesn’t.&amp;nbsp;
“Sometimes you can just ask and the server will issue a query, but it’s amazingly
easy to get a DNS server to look something up,” he said. 
&lt;p&gt;
So what does a hacker gain from attacking DNS servers?&amp;nbsp; According to Kaminsky,
owning the .COM dns space would get you pretty much anything you wanted.&amp;nbsp; Everything
from intercepting emails to taking over spam filters could be accomplished.&amp;nbsp;
He even outlined grabbing passwords to webmail and other services by exploiting the
“Forgot Your Password” feature used by many vendors.&amp;nbsp; But perhaps the biggest
risk was to SSL security because certificate vendors could be duped into giving certs
to bogus companies. 
&lt;p&gt;
SSL certificate authorities issue the certificates by identifying the applicant through
email.&amp;nbsp; The vendor looks up the domain’s address in WHOIS and then sends an email
to the mail address contained in the record.&amp;nbsp; But if you were able to poison
the DNS to redirect Microsoft’s DNS entry, then you could conceivably gain a Microsoft
or another large company’s certificate.&lt;br&gt;
Kaminsky found the bug approximately five months ago and initially worked solely with
vendors to patch the bug because he feared any leak would invite malicious hackers
into taking over the Internet.&amp;nbsp; “I spent the last few months terrified that companies
would have their emails stolen because of a bug I found,” he told us.&amp;nbsp; 
&lt;br&gt;
Kaminsky was lambasted by some security researchers because hackers, by their very
nature, are quite the peer oriented group.&amp;nbsp; Those critics were eventually silenced
after Kaminsky had a conference call with the doubters.&lt;br&gt;
In a press conference after the talk, Kaminsky told reporters that vendors have been
“fantastic” in responding and patching the bug.&amp;nbsp; Microsoft even hosted a summit
on March 31st where Kaminsky and fellow researchers flew to Redmond Washington in
a marathon session to hammer out a fix – something that took thousands of man hours
and “thousands of pizzas”.&lt;br&gt;
That patch, dubbed the “sledgehammer fix” by Kaminsky, randomized the transaction
IDs and upped the range to more than a 100,000,000 possibilities.&amp;nbsp; Hopefully
a competent IT administrator would notice hundreds of millions of malicious packets
hitting their DNS servers, Kaminsky said.&lt;br&gt;
On July 8th, most of the major vendors like Microsoft, Sun, Cisco and Red Hat had
patched their servers and Kaminksy has stayed in constant contact with major web companies
like MySpace, Craigslist and eBay, all in the hopes of educating IT administrators
of the problem.&amp;nbsp; “I’ve been on the phone a lot, a whole lot,” he said, adding
that he doesn’t want to look at his mobile phone bill for the last month.&lt;br&gt;
But Kaminsky warns that the danger isn’t completely over and that the next bug may
not come with as much warning and the hacker finding it may not be as considerate.&amp;nbsp;
“They probably won’t be as friendly as me,” he said.&lt;br&gt;
[/QUOTE] 
&lt;p&gt;
&lt;strong&gt;Source:&lt;/strong&gt; &lt;a title="http://www.tgdaily.com/content/view/38772/108/" href="http://www.tgdaily.com"&gt;www.tgdaily.com&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=257c0797-c2ad-4239-9075-c4db45989fc6" /&gt;</description>
      <category>bugs</category>
      <category>EN</category>
      <category>internet</category>
      <category>tech</category>
    </item>
    <item>
      <trackback:ping>http://www.loosy-goosy-ness.com/Trackback.aspx?guid=b7074fc2-9aa4-4200-9ec0-ce8c6204f3ce</trackback:ping>
      <pingback:server>http://www.loosy-goosy-ness.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.loosy-goosy-ness.com/PermaLink,guid,b7074fc2-9aa4-4200-9ec0-ce8c6204f3ce.aspx</pingback:target>
      <dc:creator>Christian</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
[QUOTE]<br />
We're not trying to hate, but we think it's about time Microsoft acknowledged that
the ball's been dropped -- and then pick it back up. Stop promising bug fixes and
vaporous new features, and stop talking about future Zune products when the current
product is ailing. Here are five simple things Microsoft should do to fix the Zune
right now, and even make it into a somewhat aggressive contender in one of the most
cutthroat gadget categories. In order:
</p>
        <ol>
          <li>
Fix the DRM, syncing, and system bugs, and get firmware v1.3 out the door!<br /></li>
          <li>
Add useful WiFi features: wireless streaming to friends, Zune Pass (subscription)
song transfer to friends' Zunes (á la MusicGremlin), computer-free downloads content
downloads.<br /></li>
          <li>
Add podcast and vidcast support. It doesn't even have to be as comprehensive as the
iTMS, just a basic RSS reader / enclosure scraper or something.<br /></li>
          <li>
Increase codec support. Go out on a limb and add open (read: free) codecs like FLAC,
APE, OGG, XviD; if you really want to make your customers happy, belly up to the bar
and license DivX.<br /></li>
          <li>
Drop the price. For most consumers, there is still a huge mental barrier in paying
$250 for a Zune when you can pay the same $250 for an iPod. One isn't necessarily
better than the other, but people really love the iPod. Make it $230 MSRP, and let
that sink down to like $210 for online retailers. People will freak out that this
player, that does all these things it does, is barely more than two bills.</li>
        </ol>
        <p>
[/QUOTE]
</p>
        <p>
Full Story: <a href="http://www.engadget.com/2007/03/20/five-things-microsoft-needs-to-do-to-fix-the-zune/">engadget.com</a></p>
        <img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=b7074fc2-9aa4-4200-9ec0-ce8c6204f3ce" />
      </body>
      <title>Five things Microsoft needs to do to fix the Zune</title>
      <guid isPermaLink="false">http://www.loosy-goosy-ness.com/PermaLink,guid,b7074fc2-9aa4-4200-9ec0-ce8c6204f3ce.aspx</guid>
      <link>http://www.loosy-goosy-ness.com/2007/03/21/FiveThingsMicrosoftNeedsToDoToFixTheZune.aspx</link>
      <pubDate>Wed, 21 Mar 2007 14:48:42 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
[QUOTE]&lt;br&gt;
We're not trying to hate, but we think it's about time Microsoft acknowledged that
the ball's been dropped -- and then pick it back up. Stop promising bug fixes and
vaporous new features, and stop talking about future Zune products when the current
product is ailing. Here are five simple things Microsoft should do to fix the Zune
right now, and even make it into a somewhat aggressive contender in one of the most
cutthroat gadget categories. In order:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Fix the DRM, syncing, and system bugs, and get firmware v1.3 out the door!&lt;br&gt;
&lt;/li&gt;
&lt;li&gt;
Add useful WiFi features: wireless streaming to friends, Zune Pass (subscription)
song transfer to friends' Zunes (á la MusicGremlin), computer-free downloads content
downloads.&lt;br&gt;
&lt;/li&gt;
&lt;li&gt;
Add podcast and vidcast support. It doesn't even have to be as comprehensive as the
iTMS, just a basic RSS reader / enclosure scraper or something.&lt;br&gt;
&lt;/li&gt;
&lt;li&gt;
Increase codec support. Go out on a limb and add open (read: free) codecs like FLAC,
APE, OGG, XviD; if you really want to make your customers happy, belly up to the bar
and license DivX.&lt;br&gt;
&lt;/li&gt;
&lt;li&gt;
Drop the price. For most consumers, there is still a huge mental barrier in paying
$250 for a Zune when you can pay the same $250 for an iPod. One isn't necessarily
better than the other, but people really love the iPod. Make it $230 MSRP, and let
that sink down to like $210 for online retailers. People will freak out that this
player, that does all these things it does, is barely more than two bills.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
[/QUOTE]
&lt;/p&gt;
&lt;p&gt;
Full Story: &lt;a href="http://www.engadget.com/2007/03/20/five-things-microsoft-needs-to-do-to-fix-the-zune/"&gt;engadget.com&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=b7074fc2-9aa4-4200-9ec0-ce8c6204f3ce" /&gt;</description>
      <category>bugs</category>
      <category>EN</category>
      <category>microsoft</category>
      <category>multimedia</category>
    </item>
    <item>
      <trackback:ping>http://www.loosy-goosy-ness.com/Trackback.aspx?guid=5e23d437-5da7-408c-9fd1-30bf33a566f8</trackback:ping>
      <pingback:server>http://www.loosy-goosy-ness.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.loosy-goosy-ness.com/PermaLink,guid,5e23d437-5da7-408c-9fd1-30bf33a566f8.aspx</pingback:target>
      <dc:creator>Christian</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p align="center">
          <a href="http://www.loosy-goosy-ness.com/content/binary/WindowsLiveWriter/COMSurrogatefunktioniertnichtmehr_136A3/COMSurrogate%5B11%5D.jpg" atomicselection="true">
            <img height="231" src="http://www.loosy-goosy-ness.com/content/binary/WindowsLiveWriter/COMSurrogatefunktioniertnichtmehr_136A3/COMSurrogate_thumb%5B9%5D.jpg" width="403" />
          </a>
        </p>
        <p>
        </p>
        <p>
Wenn man regelmäßig bei Dateioperationen oder auch nur beim Öffnen von Ordnern die
Meldung "<strong>COM Surrogate funktioniert nicht mehr</strong>" erhält, dann liegt
das meist an fehlerhaften Video-Codecs (nicht Vista-kompatible Codecs). Außerdem stürzt
das <strong>Windows Media Center</strong> beim Zugriff auf das Videos Verzeichnis
deswegen auch ab!
</p>
        <p>
Bekannt als Auslöser für das Problem sind vor allem alle Nero-Versionen <strong>vor</strong> 7.5.9.0
!!! Nach dem Deinstallieren von Nero tauchte der Fehler nicht mehr auf!
</p>
        <img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=5e23d437-5da7-408c-9fd1-30bf33a566f8" />
      </body>
      <title>COM Surrogate funktioniert nicht mehr</title>
      <guid isPermaLink="false">http://www.loosy-goosy-ness.com/PermaLink,guid,5e23d437-5da7-408c-9fd1-30bf33a566f8.aspx</guid>
      <link>http://www.loosy-goosy-ness.com/2006/12/21/COMSurrogateFunktioniertNichtMehr.aspx</link>
      <pubDate>Thu, 21 Dec 2006 21:05:33 GMT</pubDate>
      <description>&lt;p align=center&gt;
&lt;a href="http://www.loosy-goosy-ness.com/content/binary/WindowsLiveWriter/COMSurrogatefunktioniertnichtmehr_136A3/COMSurrogate%5B11%5D.jpg" atomicselection="true"&gt;&lt;img height=231 src="http://www.loosy-goosy-ness.com/content/binary/WindowsLiveWriter/COMSurrogatefunktioniertnichtmehr_136A3/COMSurrogate_thumb%5B9%5D.jpg" width=403&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Wenn man regelmäßig bei Dateioperationen oder auch nur beim Öffnen von Ordnern die
Meldung "&lt;strong&gt;COM Surrogate funktioniert nicht mehr&lt;/strong&gt;" erhält, dann liegt
das meist an fehlerhaften Video-Codecs (nicht Vista-kompatible Codecs). Außerdem stürzt
das &lt;strong&gt;Windows Media Center&lt;/strong&gt; beim Zugriff auf das Videos Verzeichnis
deswegen auch ab!
&lt;/p&gt;
&lt;p&gt;
Bekannt als Auslöser für das Problem sind vor allem alle Nero-Versionen &lt;strong&gt;vor&lt;/strong&gt; 7.5.9.0
!!! Nach dem Deinstallieren von Nero tauchte der Fehler nicht mehr auf!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=5e23d437-5da7-408c-9fd1-30bf33a566f8" /&gt;</description>
      <category>bugs</category>
      <category>DE</category>
      <category>microsoft</category>
      <category>vista</category>
    </item>
    <item>
      <trackback:ping>http://www.loosy-goosy-ness.com/Trackback.aspx?guid=76fc20f3-d1ae-478f-8c06-a954ee0da00d</trackback:ping>
      <pingback:server>http://www.loosy-goosy-ness.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.loosy-goosy-ness.com/PermaLink,guid,76fc20f3-d1ae-478f-8c06-a954ee0da00d.aspx</pingback:target>
      <dc:creator>Christian</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p align="center">
Someone has forgotten something :)
</p>
        <p align="center">
          <img src="http://img.thedailywtf.com/images/200611/pup/McDonalds.JPG" />
        </p>
        <p>
        </p>
        <img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=76fc20f3-d1ae-478f-8c06-a954ee0da00d" />
      </body>
      <title>No Dialtone!</title>
      <guid isPermaLink="false">http://www.loosy-goosy-ness.com/PermaLink,guid,76fc20f3-d1ae-478f-8c06-a954ee0da00d.aspx</guid>
      <link>http://www.loosy-goosy-ness.com/2006/11/13/NoDialtone.aspx</link>
      <pubDate>Mon, 13 Nov 2006 15:38:06 GMT</pubDate>
      <description>&lt;p align=center&gt;
Someone has forgotten something :)
&lt;/p&gt;
&lt;p align=center&gt;
&lt;img src="http://img.thedailywtf.com/images/200611/pup/McDonalds.JPG"&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=76fc20f3-d1ae-478f-8c06-a954ee0da00d" /&gt;</description>
      <category>bugs</category>
      <category>EN</category>
      <category>funny</category>
    </item>
    <item>
      <trackback:ping>http://www.loosy-goosy-ness.com/Trackback.aspx?guid=5e2f01b8-4365-4c89-9197-fbd3051b056f</trackback:ping>
      <pingback:server>http://www.loosy-goosy-ness.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.loosy-goosy-ness.com/PermaLink,guid,5e2f01b8-4365-4c89-9197-fbd3051b056f.aspx</pingback:target>
      <dc:creator>Christian</dc:creator>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p align="center">
I tried to burn a DVD ISO on Vista RC2 ... yeah, check this beautiful german
translation of the error message:
</p>
        <p align="center">
          <img height="351" alt="fehlermeldung.jpg" src="http://www.loosy-goosy-ness.com/content/binary/fehlermeldung.jpg" width="453" border="0" />
        </p>
        <img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=5e2f01b8-4365-4c89-9197-fbd3051b056f" />
      </body>
      <title>Vista RC2 Translation Bug</title>
      <guid isPermaLink="false">http://www.loosy-goosy-ness.com/PermaLink,guid,5e2f01b8-4365-4c89-9197-fbd3051b056f.aspx</guid>
      <link>http://www.loosy-goosy-ness.com/2006/10/28/VistaRC2TranslationBug.aspx</link>
      <pubDate>Sat, 28 Oct 2006 12:33:35 GMT</pubDate>
      <description>&lt;p align=center&gt;
I&amp;nbsp;tried to burn a DVD ISO on Vista RC2 ... yeah, check this beautiful german
translation of the error message:
&lt;/p&gt;
&lt;p align=center&gt;
&lt;img height=351 alt=fehlermeldung.jpg src="http://www.loosy-goosy-ness.com/content/binary/fehlermeldung.jpg" width=453 border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.loosy-goosy-ness.com/aggbug.ashx?id=5e2f01b8-4365-4c89-9197-fbd3051b056f" /&gt;</description>
      <category>bugs</category>
      <category>DE</category>
      <category>EN</category>
      <category>funny</category>
    </item>
  </channel>
</rss>