<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>RGN - Raiders Game Net</title>
		<link>http://forums.raidersmerciless.com/</link>
		<description>Raiders Game Net Support for and by Users CoD,RO,HOS,MOH,BC2,BF</description>
		<language>en</language>
		<lastBuildDate>Thu, 09 Sep 2010 04:27:03 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.raidersmerciless.com/disturbed/misc/rss.jpg</url>
			<title>RGN - Raiders Game Net</title>
			<link>http://forums.raidersmerciless.com/</link>
		</image>
		<item>
			<title>MS investigates public IE CSS XSS flaw</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12454&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 11:22:52 GMT</pubDate>
			<description>*Microsoft investigates public IE CSS XSS flaw; Twitter, Hotmail vulnerable* 
 
  
          
*By Peter Bright | Last updated about 10 hours ago* 
...</description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Microsoft investigates public IE CSS XSS flaw; Twitter, Hotmail vulnerable</b></font></font><br />
</div> <br />
         <br />
<font size="1"><font color="RoyalBlue"><i><b>By Peter Bright | Last updated about 10 hours ago</b></i></font></font><br />
<br />
<div style="float: right; margin-left:10px"><img src="http://static.arstechnica.net/2010/09/07/flies_bug_ars.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>Late last week, a security flaw in Internet Explorer 8 was <a href="http://seclists.org/fulldisclosure/2010/Sep/64" target="_blank">publicly disclosed</a>  to the Full Disclosure mailing list. The flaw allows attackers to steal  private information from online services such as web mail and Twitter,  allowing attackers to, for example, delete e-mails or send tweets from  their victims' accounts.<br />
<br />
  The post was made by Google employee Chris Evans. He stated that the  reason for going public was to try to persuade Microsoft to fix the  problem&#8212;the new flaw is a variant on an <a href="http://scarybeastsecurity.blogspot.com/2009/12/generic-cross-browser-cross-domain.html" target="_blank">older attack</a>, and the details of the flaw were made public in a <a href="http://websec.sv.cmu.edu/css/css.pdf" target="_blank">paper</a>  authored by Carnegie Mellon students that Evans reviewed. While the  other major browser vendors have made fixes to their browsers to prevent  attack&#8212;Chrome 4.0.249.78, Safari 4.0.5, and most recently Firefox 3.6.7  and 3.5.11 all include protection against the flaw&#8212;Microsoft has thus  far failed to update Internet Explorer to provide protection.<br />
<br />
                   The attack compromises the <i>same-origin policy</i>. The  same-origin policy is designed to prevent scripts from one domain from  accessing data belonging to another domain. For example, a script from  example.org should not be able to access cookies or page content from  twitter.com. These attacks, where one site (controlled by the attacker)  compromises the secret data of another site, are called cross-site  scripting (XSS) attacks. There are many different ways that a site on  one domain can embed content from another domain; images are commonly  embedded in this way, as are Flash movies to deliver content from sites  like YouTube.<br />
<br />
  This particular attack uses a different approach to embed: it uses  cascading stylesheets (CSS), which are used to control the fonts,  colors, and layout of HTML pages. CSS is particularly interesting for  this style of attack because of the way in which it is interpreted by  the browser. The CSS specification requires browsers to be extremely <a href="http://www.w3.org/TR/CSS2/syndata.html#parsing-errors" target="_blank">forgiving</a>  of improperly-formed CSS. In part, this is so that future versions of  CSS can include new features without breaking page display in browsers  that do not support those new features; in part, it's due to <a href="http://en.wikipedia.org/wiki/Robustness_principle" target="_blank">Postel's law</a>&#8212;the concept that computer programs should be as generous as possible in their interpretation of data they are given.<br />
<br />
  This fault-tolerant handling of CSS files is what leads to the  vulnerability. A malicious page can tell the browser to embed any other  page and to try to treat that embedded page as if it were CSS. Most of  the time, even with CSS's error-tolerant parsing, this won't achieve  anything. HTML pages just look too different from CSS to be successfully  parsed as CSS. However, if the embedded page is written in just the  right way, it will look sufficiently like CSS to trick the browser into  interpreting it as such.<br />
<br />
  For example, <a href="http://twitter.com/scarybeaststest/status/22869034262" target="_blank">this (deliberately constructed) tweet</a> looks just enough like CSS that, when used as a CSS file, the browser will interpret the page as if it were, in part, CSS. &lt;style&gt;@import url(&quot;http://twitter.com/scarybeaststest/status/22869034262&quot;); &lt;/style&gt;   CSS lets you load stylesheets from anywhere<br />
 <br />
  This is a problem, because although scripts on the malicious page  cannot, in general, read information that has been embedded from other  domains, they <i>can</i> programmatically access CSS rules, even if  those CSS rules came from CSS files loaded from other domains&#8212;and even  if those &quot;CSS rules&quot; came from files that were not really CSS at all.<br />
<br />
  This problem is in general mitigated by the CSS specification.  Although it demands that browsers be liberal in their interpretation,  there are limits: strings wrapped in double quote marks, for example,  should not be able to contain new lines. The end of the line should  cause the end of the string. Though this does not eliminate the problem,  it does mean that it would require extremely bad luck for the issue to  ever manifest itself as a real problem.<br />
<br />
  The exception, however, is Internet Explorer. Internet Explorer is  even more lenient than the CSS specification says it should be. In  particular, it will disregard line-breaks embedded in strings, and will  instead attempt to parse <i>everything</i> as part of the string. CSS uses such strings for, among other things, font families and URLs. The <a href="http://twitter.com/scarybeaststest" target="_blank">example</a>  tweet, when interpreted as CSS, begins specifying the font family, but  rather than including a font name, it just has a double quote mark. This  starts a string, causing Internet Explorer to treat <i>everything</i> that follows as part of font's name.<br />
<br />
  This includes secret information. When signed in to Twitter, every  page includes an &quot;authenticity token.&quot; This is used to prevent arbitrary  sites from making Twitter updates on someone's behalf without their  knowledge&#8212;every tweet made via the Twitter website must include the  correct authenticity token. That should be safe&#8212;it's a standard  technique for preventing XSS attacks similar to this, and unlike <a href="http://arstechnica.com/security/guides/2010/09/twitter-a-case-study-on-how-to-do-oauth-wrong.ars" target="_blank">other aspects</a>  of Twitter's security, is properly implemented&#8212;because the same-origin  policy should prevent sites from stealing the authenticity token from  Twitter pages.<br />
<br />
   &lt;HTML ignored by the CSS parser&gt; {} body {     font-family:&quot; HTML&gt; treated as if it were part of the font name&gt;   This is how Internet Explorer  interprets the page as CSS. Everything before the tweet is ignored;  everything after becomes part of the font name.<br />
 <br />
  But using this CSS-based XSS attack, any malicious page that embeds  this tweet as if it were CSS can read the authenticity token. With that  knowledge, it can freely tweet using someone else's credentials. Similar  techniques are used to secure web mail systems against XSS attacks, and  the same CSS-based techniques can be used to defeat them, too. The  paper describes using the method against IMDB, Yahoo! Mail, and Hotmail,  and the Full Disclosure post demonstrates the attack against Twitter.<br />
<br />
  In addition to demonstrating the attack, the paper also describes  ways in which it can be guarded against. At its heart, the problem is  with how the CSS specification is written; if the specification required  stricter handling of CSS files, it would not be possible to steal data  in this way. The specification is well-intentioned, as the lenient  parsing makes it easier to update CSS to incorporate new features, and  sufficiently many sites depend on lenient handling that no browser can  afford to be completely strict. An effective trade-off is to use lenient  parsing for CSS loaded from the same domain, and stricter parsing&#8212;that  gives up when an error is encountered, rather than trying to persevere  until it comes across anything that looks like CSS&#8212;when loading CSS from  other domains.<br />
<br />
  Four of the mainstream browsers&#8212;Opera, Safari, Chrome, and  Firefox&#8212;have been updated to do precisely this. The exception is  Internet Explorer 8; it uses lenient CSS parsing rules regardless of the  domain used to access a CSS file. This is made especially unfortunate  by Internet Explorer's uniquely vulnerable status&#8212;because the browser is  even more lenient than it ought to be, it's far more vulnerable than  the others. It's this combination of a lack of a patch and greater  vulnerability that caused Chris Evans to report the flaw publicly.<br />
<br />
  The Internet Explorer 9 Platform Previews are also vulnerable to the  same issue. Though the previews have made great strides in improving  their standards compliance, all four previews show the same excessively  lenient, nonstandard behavior as Internet Explorer 8. Older versions of  the browser are also likely to be affected.<br />
<br />
  Microsoft has responded that it is <a href="http://twitter.com/msftsecresponse/status/22934606564" target="_blank">investigating</a>  the flaw, but no patch is available yet; indeed, the tweet is the only  response the company has made. Those curious can check out a simple <a href="http://scary.beasts.org/misc/twitter.html" target="_blank">proof of concept</a> that will demonstrate the issue by posting to Twitter as the currently logged-in user.<br />
<br />
  This is not the first time that a Google employee has publicly disclosed a Microsoft security flaw; <a href="http://arstechnica.com/microsoft/news/2010/07/disgruntled-security-researchers-take-aim-at-microsoft.ars" target="_blank">Tavis Ormandy</a>  received both criticism and support for his decision to make public a  flaw back in June. This situation is a little different, however; this  flaw is undoubtedly public, thanks to the Carnegie Mellon paper and the  fixes made by other browsers. Evans believes that Microsoft may even  have known about the problem as far back as 2008; if true, it makes the  lack of response particularly embarrassing.<br />
<br />
<a href="http://arstechnica.com/microsoft/news/2010/09/microsoft-investigates-public-ie-css-xss-flaw-twitter-hotmail-vulnerable.ars" target="_blank"><i><b>SOURCE</b></i></a><br />
<div align="center"><font color="White"><b>*********</b></font><br />
</div><br />
<font color="Yellow"><i><b>Will the never-ending flow of BUGGY software from Microsoft ever abate?</b></i></font></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12454</guid>
		</item>
		<item>
			<title>MS investigates public IE CSS XSS flaw</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12453&amp;goto=newpost</link>
			<pubDate>Wed, 08 Sep 2010 11:21:51 GMT</pubDate>
			<description>*Microsoft investigates public IE CSS XSS flaw; Twitter, Hotmail vulnerable* 
 
  
          
*By Peter Bright | Last updated about 10 hours ago* 
...</description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Microsoft investigates public IE CSS XSS flaw; Twitter, Hotmail vulnerable</b></font></font><br />
</div> <br />
         <br />
<font size="1"><font color="RoyalBlue"><i><b>By Peter Bright | Last updated about 10 hours ago</b></i></font></font><br />
<br />
<div style="float: right; margin-left:10px"><img src="http://static.arstechnica.net/2010/09/07/flies_bug_ars.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>       <br />
                                       Late last week, a security flaw in Internet Explorer 8 was <a href="http://seclists.org/fulldisclosure/2010/Sep/64" target="_blank">publicly disclosed</a>  to the Full Disclosure mailing list. The flaw allows attackers to steal  private information from online services such as web mail and Twitter,  allowing attackers to, for example, delete e-mails or send tweets from  their victims' accounts.<br />
<br />
  The post was made by Google employee Chris Evans. He stated that the  reason for going public was to try to persuade Microsoft to fix the  problem—the new flaw is a variant on an <a href="http://scarybeastsecurity.blogspot.com/2009/12/generic-cross-browser-cross-domain.html" target="_blank">older attack</a>, and the details of the flaw were made public in a <a href="http://websec.sv.cmu.edu/css/css.pdf" target="_blank">paper</a>  authored by Carnegie Mellon students that Evans reviewed. While the  other major browser vendors have made fixes to their browsers to prevent  attack—Chrome 4.0.249.78, Safari 4.0.5, and most recently Firefox 3.6.7  and 3.5.11 all include protection against the flaw—Microsoft has thus  far failed to update Internet Explorer to provide protection.<br />
<br />
                   The attack compromises the <i>same-origin policy</i>. The  same-origin policy is designed to prevent scripts from one domain from  accessing data belonging to another domain. For example, a script from  example.org should not be able to access cookies or page content from  twitter.com. These attacks, where one site (controlled by the attacker)  compromises the secret data of another site, are called cross-site  scripting (XSS) attacks. There are many different ways that a site on  one domain can embed content from another domain; images are commonly  embedded in this way, as are Flash movies to deliver content from sites  like YouTube.<br />
<br />
  This particular attack uses a different approach to embed: it uses  cascading stylesheets (CSS), which are used to control the fonts,  colors, and layout of HTML pages. CSS is particularly interesting for  this style of attack because of the way in which it is interpreted by  the browser. The CSS specification requires browsers to be extremely <a href="http://www.w3.org/TR/CSS2/syndata.html#parsing-errors" target="_blank">forgiving</a>  of improperly-formed CSS. In part, this is so that future versions of  CSS can include new features without breaking page display in browsers  that do not support those new features; in part, it's due to <a href="http://en.wikipedia.org/wiki/Robustness_principle" target="_blank">Postel's law</a>—the concept that computer programs should be as generous as possible in their interpretation of data they are given.<br />
<br />
  This fault-tolerant handling of CSS files is what leads to the  vulnerability. A malicious page can tell the browser to embed any other  page and to try to treat that embedded page as if it were CSS. Most of  the time, even with CSS's error-tolerant parsing, this won't achieve  anything. HTML pages just look too different from CSS to be successfully  parsed as CSS. However, if the embedded page is written in just the  right way, it will look sufficiently like CSS to trick the browser into  interpreting it as such.<br />
<br />
  For example, <a href="http://twitter.com/scarybeaststest/status/22869034262" target="_blank">this (deliberately constructed) tweet</a> looks just enough like CSS that, when used as a CSS file, the browser will interpret the page as if it were, in part, CSS.<br />
     [code]&lt;style&gt;@import url(&quot;http://twitter.com/scarybeaststest/status/22869034262&quot;); &lt;/style&gt;[code]   CSS lets you load stylesheets from anywhere<br />
 <br />
  This is a problem, because although scripts on the malicious page  cannot, in general, read information that has been embedded from other  domains, they <i>can</i> programmatically access CSS rules, even if  those CSS rules came from CSS files loaded from other domains—and even  if those &quot;CSS rules&quot; came from files that were not really CSS at all.<br />
<br />
  This problem is in general mitigated by the CSS specification.  Although it demands that browsers be liberal in their interpretation,  there are limits: strings wrapped in double quote marks, for example,  should not be able to contain new lines. The end of the line should  cause the end of the string. Though this does not eliminate the problem,  it does mean that it would require extremely bad luck for the issue to  ever manifest itself as a real problem.<br />
<br />
  The exception, however, is Internet Explorer. Internet Explorer is  even more lenient than the CSS specification says it should be. In  particular, it will disregard line-breaks embedded in strings, and will  instead attempt to parse <i>everything</i> as part of the string. CSS uses such strings for, among other things, font families and URLs. The <a href="http://twitter.com/scarybeaststest" target="_blank">example</a>  tweet, when interpreted as CSS, begins specifying the font family, but  rather than including a font name, it just has a double quote mark. This  starts a string, causing Internet Explorer to treat <i>everything</i> that follows as part of font's name.<br />
<br />
  This includes secret information. When signed in to Twitter, every  page includes an &quot;authenticity token.&quot; This is used to prevent arbitrary  sites from making Twitter updates on someone's behalf without their  knowledge—every tweet made via the Twitter website must include the  correct authenticity token. That should be safe—it's a standard  technique for preventing XSS attacks similar to this, and unlike <a href="http://arstechnica.com/security/guides/2010/09/twitter-a-case-study-on-how-to-do-oauth-wrong.ars" target="_blank">other aspects</a>  of Twitter's security, is properly implemented—because the same-origin  policy should prevent sites from stealing the authenticity token from  Twitter pages.<br />
<br />
   &lt;HTML ignored by the CSS parser&gt; {} body {     font-family:&quot; HTML&gt; treated as if it were part of the font name&gt;   This is how Internet Explorer  interprets the page as CSS. Everything before the tweet is ignored;  everything after becomes part of the font name.<br />
 <br />
  But using this CSS-based XSS attack, any malicious page that embeds  this tweet as if it were CSS can read the authenticity token. With that  knowledge, it can freely tweet using someone else's credentials. Similar  techniques are used to secure web mail systems against XSS attacks, and  the same CSS-based techniques can be used to defeat them, too. The  paper describes using the method against IMDB, Yahoo! Mail, and Hotmail,  and the Full Disclosure post demonstrates the attack against Twitter.<br />
<br />
  In addition to demonstrating the attack, the paper also describes  ways in which it can be guarded against. At its heart, the problem is  with how the CSS specification is written; if the specification required  stricter handling of CSS files, it would not be possible to steal data  in this way. The specification is well-intentioned, as the lenient  parsing makes it easier to update CSS to incorporate new features, and  sufficiently many sites depend on lenient handling that no browser can  afford to be completely strict. An effective trade-off is to use lenient  parsing for CSS loaded from the same domain, and stricter parsing—that  gives up when an error is encountered, rather than trying to persevere  until it comes across anything that looks like CSS—when loading CSS from  other domains.<br />
<br />
  Four of the mainstream browsers—Opera, Safari, Chrome, and  Firefox—have been updated to do precisely this. The exception is  Internet Explorer 8; it uses lenient CSS parsing rules regardless of the  domain used to access a CSS file. This is made especially unfortunate  by Internet Explorer's uniquely vulnerable status—because the browser is  even more lenient than it ought to be, it's far more vulnerable than  the others. It's this combination of a lack of a patch and greater  vulnerability that caused Chris Evans to report the flaw publicly.<br />
<br />
  The Internet Explorer 9 Platform Previews are also vulnerable to the  same issue. Though the previews have made great strides in improving  their standards compliance, all four previews show the same excessively  lenient, nonstandard behavior as Internet Explorer 8. Older versions of  the browser are also likely to be affected.<br />
<br />
  Microsoft has responded that it is <a href="http://twitter.com/msftsecresponse/status/22934606564" target="_blank">investigating</a>  the flaw, but no patch is available yet; indeed, the tweet is the only  response the company has made. Those curious can check out a simple <a href="http://scary.beasts.org/misc/twitter.html" target="_blank">proof of concept</a> that will demonstrate the issue by posting to Twitter as the currently logged-in user.<br />
<br />
  This is not the first time that a Google employee has publicly disclosed a Microsoft security flaw; <a href="http://arstechnica.com/microsoft/news/2010/07/disgruntled-security-researchers-take-aim-at-microsoft.ars" target="_blank">Tavis Ormandy</a>  received both criticism and support for his decision to make public a  flaw back in June. This situation is a little different, however; this  flaw is undoubtedly public, thanks to the Carnegie Mellon paper and the  fixes made by other browsers. Evans believes that Microsoft may even  have known about the problem as far back as 2008; if true, it makes the  lack of response particularly embarrassing.<br />
<br />
<a href="http://arstechnica.com/microsoft/news/2010/09/microsoft-investigates-public-ie-css-xss-flaw-twitter-hotmail-vulnerable.ars" target="_blank"><i><b>SOURCE</b></i></a><br />
<div align="center"><font color="White"><b>*********</b></font><br />
</div><br />
<font color="Yellow"><i><b>Will the never-ending flow of BUGGY software from Microsoft ever abate?</b></i></font></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12453</guid>
		</item>
		<item>
			<title>Server Event Schedule</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12451&amp;goto=newpost</link>
			<pubDate>Tue, 07 Sep 2010 19:57:26 GMT</pubDate>
			<description>http://www.raidersmerciless.com/images/rgn_sm.png 
 
 
* 
 
SERVER EVENT SCHEDULE*</description>
			<content:encoded><![CDATA[<div><div style="float: left; margin-right:10px"><img src="http://www.raidersmerciless.com/images/rgn_sm.png" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div><br />
<br />
<br />
<div align="center"><font color="MediumTurquoise"><b><br />
<br />
<font size="3">SERVER EVENT SCHEDULE</font></b></font><br />
</div><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
24 hr/7days<br />
<br />
<u><b>Monday:</b></u>    ................................ World at War/CoD5<br />
<br />
<br />
<u><b>Tuesday:</b></u>   ................................ RGN Vietnam Mod/WaW<br />
<br />
<br />
<u><b>Wednesday:</b></u>   .......................... Modern Warfare/ CoD4<br />
<br />
<br />
<u><b>Thursday:</b></u>   .............................. World at War/CoD5<br />
<br />
<br />
<u><b>Friday:</b></u>   ................................... Red Orchestra: OSTFront 41-45/ RO<br />
<br />
<br />
Open House Weekends.... player's choice!<br />
<br />
<br />
Suggestions?  Comments?</div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=293">RGN Servers - NEWS</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12451</guid>
		</item>
		<item>
			<title>Labor Day 2010</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12441&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 12:17:28 GMT</pubDate>
			<description>Image: http://a.imageshack.us/img530/7169/laborday10.gif  
 
 
*To all our friends and visitors from the entire staff at RGN* 
  
 
Image:...</description>
			<content:encoded><![CDATA[<div><div align="center"><img src="http://a.imageshack.us/img530/7169/laborday10.gif" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<br />
<font size="6"><b>To all our friends and visitors from the entire staff at <font color="red">R</font><font color="white">G</font><font color="blue">N</font></b></font></div> <br />
<br />
<div align="center"><img src="http://a.imageshack.us/img835/8990/laborday1.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div> <br />
<br />
<div align="center"><font size="5"><b>Have a safe and enjoyable last Holiday of Summer</b></font></div> <br />
<br />
<div align="center"><img src="http://a.imageshack.us/img718/7088/cookouts75.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div> <br />
 <br />
<div align="center"><font size="5"><b>You earned it!</b></font></div><br />
 <br />
<div align="center"><img src="http://a.imageshack.us/img188/3316/30968958.png" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>OneShot</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12441</guid>
		</item>
		<item>
			<title><![CDATA[AT&T Claims are Misleading]]></title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12428&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 13:18:40 GMT</pubDate>
			<description><![CDATA[*IETF: AT&T's Net neutrality claim is 'misleading'* 
 
* 
by Declan McCullagh - September 2, 2010 3:53 PM PDT * 
 
 
*   The head of the Internet's...]]></description>
			<content:encoded><![CDATA[<div><font size="3"><font color="MediumTurquoise"><div align="center"><b>IETF: AT&amp;T's Net neutrality claim is 'misleading'</b></div></font></font><br />
<b><i><font size="1"><font color="RoyalBlue"><br />
by Declan McCullagh - September 2, 2010 3:53 PM PDT </font></font></i></b><br />
<br />
<br />
<b><i><font color="White">   The head of the Internet's leading standards body said Thursday that it  is &quot;misleading&quot; for AT&amp;T to claim that its push to charge customers  for high-priority service is technically justified. </font></i></b><br />
<br />
  Internet Engineering Task Force chairman Russ Housley told CNET that  AT&amp;T's arguments to federal regulators, which cited networking  standards to justify &quot;paid prioritization&quot; of network traffic, were  invalid. <br />
<br />
  <div style="float: right; margin-left:10px"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/09/03/0910ATTglobe.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div> <br />
  &quot;AT&amp;T in their letter (to the Federal Communications Commission)  says the <br />
<br />
IETF envisioned this,&quot; Housley said. &quot;That's not my view.&quot; <br />
  <br />
This particular debate began earlier this week, when AT&amp;T <a href="http://news.cnet.com/8301-13578_3-20015231-38.html" target="_blank">sent the FCC a letter</a> (<a href="http://www.politechbot.com/docs/att.paid.prioritization.letter.fcc.083110.pdf" target="_blank">PDF</a>)  arguing that telecommunications providers need the ability to set  different prices for different forms of Internet service. Paid  prioritization, AT&amp;T said, was a form of network management that was  &quot;fully contemplated by the IETF&quot; more than a decade ago. <br />
  <br />
At 24 years old, the IETF is a highly respected organization of  engineers and computer scientists that intentionally shies away from  Washington politicking. That's partly because the group is  international--half of its meetings are held outside North America--but  also because IETF participants tend to admit that they have relatively  little expertise in non-technical areas touching on law and economics. <br />
  <br />
AT&amp;T did not immediately respond to a request for comment on Thursday. AT&amp;T Vice President Hank Hultquist said in a <a href="http://attpublicpolicy.com/government-policy/narrowing-the-debate-on-paid-prioritization/" target="_blank">blog post</a> earlier in the day that he was inviting critics to a &quot;public forum,&quot; and pointed to <a href="http://fjallfoss.fcc.gov/ecfs/document/view?id=7020910733" target="_blank">a letter</a> from the New America Foundation that he said lent support to AT&amp;T's views. <br />
  <br />
&quot;We didn't foresee AT&amp;T throwing our name into this discussion,&quot; the  IETF's Housley said. He added: &quot;This characterization of the IETF  standard and the use of the term 'paid prioritization' by AT&amp;T is  misleading.&quot; <br />
  <br />
Everyone agrees that, in the late 1990s, the IETF revised its networking  standards to allow network operators to assign up to 64 different  traffic &quot;classes,&quot; meaning priority levels. That concept of  &quot;differentiated services&quot; is referred to today as DiffServ, which allows  high-priority communications like videoconferencing to be labeled with a  higher priority than bulk file-transfer protocols that aren't as  sensitive to brief slowdowns. <br />
  <br />
A July 1999 IETF specification (<a href="http://tools.ietf.org/html/rfc2638" target="_blank">RFC 2638</a>)  discusses paid prioritization by saying: &quot;It is expected that premium  traffic would be allocated a small percentage of the total network  capacity, but that it would be priced much higher.&quot; Another  specification (<a href="http://tools.ietf.org/html/rfc2475" target="_blank">RFC 2475</a>)  published half a year earlier says that setting different priorities  for packets will &quot;accommodate heterogeneous application requirements and  user expectations&quot; and &quot;permit differentiated pricing of Internet  service.&quot; (An RFC is a policy document, often accepted as standards,  published by the IETF.) <br />
  <br />
The disagreement arises from what happens if Video Site No. 1 and Video  Site No. 2 both mark their streams as high priority. &quot;If two sources of  video are marking their stuff the same, then that's where the ugliness  of this debate begins,&quot; Housley says. &quot;The RFC doesn't talk about  that...If they put the same tags, they'd expect the same service from  the same provider.&quot; <br />
  Which is, by the way, more or less what liberal advocacy groups like  Free Press have told the FCC. &quot;DiffServ was not designed to be a tool to  allow the network provider to drive application-level discrimination,&quot;  Free Press Research Director Derek Turner said earlier this week. <br />
  <br />
Ever since a federal appeals court <a href="http://news.cnet.com/8301-13578_3-20001825-38.html" target="_blank">torpedoed</a> the FCC's attempt to punish Comcast, pro-regulation groups have been <a href="http://news.cnet.com/8301-13578_3-20013806-38.html" target="_blank">lobbying</a>  agency Chairman Julius Genachowski for a new set of regulations, while a  majority of members of the U.S. Congress has opposed the idea. Google  and Verizon responded by <a href="http://news.cnet.com/8301-30686_3-20013072-266.html" target="_blank">announcing</a> their own <a href="http://googlepublicpolicy.blogspot.com/2010/08/joint-policy-proposal-for-open-internet.html" target="_blank">proposal</a>, which includes a &quot;presumption&quot; that paid prioritization on wired networks is illegal. <br />
  <br />
On the broader question of Net neutrality, though, including what any  laws or regulations should say, the IETF has not taken a formal  position. The group discussed the topic at a meeting in Stockholm in  July 2009 but did not reach a consensus leading to a public position  statement. <br />
  <b><br />
Update Friday 12:30 a.m. PDT:</b> I heard back from AT&amp;T  spokesman Michael Balmoris, who said: &quot;Our letter highlighted recent  Free Press filings at the FCC, which insisted that compensation  arrangements were inconceivable under the IETF documentation for  Differentiated Services (DiffServ). We simply quoted from the IETF  documents, which state otherwise.&quot;<br />
 <br />
 And there seems to be some disagreement about whether Russ Housley  was speaking for the entire IETF. George Ou, policy director at the  Digital Society think tank, sent me e-mail analyzing the RFCs and  saying: &quot;In the context of Housley essentially calling AT&amp;T a liar,  his comments are outrageously deceptive.&quot;<br />
<br />
<a href="http://news.cnet.com/8301-13578_3-20015498-38.html?tag=topTechContentWrap;editorPicks" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12428</guid>
		</item>
		<item>
			<title><![CDATA[AT&T Wants to Charge MORE]]></title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12416&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 12:31:14 GMT</pubDate>
			<description><![CDATA[*AT&T: Net rules must allow 'paid prioritization'* 
  
*by Declan McCullagh - August 31, 2010 2:17 PM PDT* 
 
 ...]]></description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>AT&amp;T: Net rules must allow 'paid prioritization'</b></font></font><font color="MediumTurquoise"><br />
</font></div> <br />
<font size="1"><font color="RoyalBlue"><i><b>by Declan McCullagh - August 31, 2010 2:17 PM PDT</b></i></font></font><br />
<br />
  <div style="float: right; margin-left:10px"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/08/31/110606_att_quest.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div> <br />
  <i><b>AT&amp;T said Tuesday that any Net neutrality plan restricting its  ability to engage in &quot;paid prioritization&quot; of network traffic would be  harmful and contrary to the fundamental principles of the Internet. </b></i><br />
  <br />
Telecommunications providers need the ability to set different prices  for different forms of Internet service, AT&amp;T said, adding that it  already has &quot;hundreds&quot; of customers who have paid extra for  higher-priority services. <br />
<br />
  &quot;Our view is that if the Federal Communications Commission is going to  be making policy decisions on this front, it should base them on the  facts, as opposed to dogma,&quot; an AT&amp;T representative told CNET on  Tuesday. In a <a href="http://attpublicpolicy.com/government-policy/the-danger-of-dogma/" target="_blank">blog post</a>, AT&amp;T vice president Hank Hultquist argued that the <a href="http://www.ietf.org/" target="_blank">Internet Engineering Task Force's specifications</a> specifically permit paid prioritization. <br />
<br />
  The flap over paid prioritization started a few weeks ago when Free Press, a pro-regulatory advocacy group, sent letters (<a href="http://www.politechbot.com/docs/free.press.paid.prioritization.july28.083110.pdf" target="_blank">No. 1</a> and <a href="http://www.politechbot.com/docs/free.press.paid.prioritization.august3.083110.pdf" target="_blank">No. 2</a>)  to the FCC dubbing the concept &quot;discriminatory&quot; and claiming it will  &quot;only benefit the few content giants that have deep enough pockets to  pay for favorable treatment.&quot; <br />
<br />
  In a telephone interview on Tuesday, Free Press research director Derek  Turner said that allowing paid prioritization would undercut the entire  concept of Net neutrality, which had its previous legal foundation swept  away earlier this year when a federal appeals court <a href="http://news.cnet.com/8301-13578_3-20001825-38.html" target="_blank">shot down</a> the FCC's attempt to punish Comcast for temporarily throttling BitTorrent transfers. <br />
<br />
  Since that ruling, liberal interest groups have been <a href="http://news.cnet.com/8301-13578_3-20013806-38.html" target="_blank">lobbying</a>  FCC chairman Julius Genachowski for a new set of regulations, while a  majority of members of the U.S. Congress has opposed the idea. Google  and Verizon responded by <a href="http://news.cnet.com/8301-30686_3-20013072-266.html" target="_blank">announcing</a> their own <a href="http://googlepublicpolicy.blogspot.com/2010/08/joint-policy-proposal-for-open-internet.html" target="_blank">proposal</a>, which includes a &quot;presumption&quot; that paid prioritization on wired networks is illegal. <br />
<br />
  &quot;A ban on paid prioritization is the DNA of the open Internet,&quot; Turner  said. He called AT&amp;T's arguments a &quot;straw man,&quot; saying that: &quot;What  AT&amp;T is describing is a practice that we have no problem with, which  is that an end user can buy a T1 and set priority flags, and AT&amp;T  respects those priority flags.&quot; <br />
<br />
  <b>Prioritization 'expected'</b><br />
But the designers of the protocols  that make up the modern Internet had something a bit more ambitious in  mind. In the late 1990s, the <a href="http://www.ietf.org/" target="_blank">Internet Engineering Task Force</a> revised those standards to allow network operators to assign up to 64 different traffic &quot;classes,&quot; meaning priority levels. <br />
<br />
  Free Press &quot;wants to force consumers to be charged higher rates to pay  for the construction of more broadband infrastructure than would be  needed if networks could be better managed,&quot; says <a href="http://www.pff.org/about/printfriendlybios/Szoka.html" target="_blank">Berin Szoka</a>, a senior fellow at the <a href="http://www.pff.org/" target="_blank">Progress and Freedom Foundation</a>, which has been critical of new broadband regulations. <br />
<br />
  A July 1999 IETF specification (<a href="http://tools.ietf.org/html/rfc2638" target="_blank">RFC 2638</a>)  discusses paid prioritization by saying: &quot;It is expected that premium  traffic would be allocated a small percentage of the total network  capacity, but that it would be priced much higher.&quot; Another  specification (<a href="http://tools.ietf.org/html/rfc2475" target="_blank">RFC 2475</a>)  published half a year earlier says that setting different priorities  for packets will &quot;accommodate heterogeneous application requirements and  user expectations&quot; and &quot;permit differentiated pricing of Internet  service.&quot; <br />
<br />
  Today that concept of &quot;differentiated services&quot; is referred to as  DiffServ. It's part of quality-of-service technologies that companies  like AT&amp;T offer, usually to business customers, that rely on  DiffServ packet headers to group different types of classes of service  together. Real-time voice communication may be ranked the highest,  followed by financial transactions, then e-mail, and finally bulk  file-transfer protocols that aren't as sensitive to brief slowdowns. <br />
<br />
  It's true that DiffServ markings are typically used inside corporate  networks to support applications like VoIP. But a video-conferencing  site that has connectivity through AT&amp;T could presumably use  DiffServ to prioritize its packets over, say, online shopping and  BitTorrent transfers--and keep that priority all the way to an AT&amp;T  home customer. <br />
<br />
  Which is precisely the argument that AT&amp;T is making. In a strongly-worded letter (<a href="http://www.politechbot.com/docs/att.paid.prioritization.letter.fcc.083110.pdf" target="_blank">PDF</a>)  sent Monday to the FCC, AT&amp;T says that the protocol specification  &quot;in no way limits the use of DiffServ to packets marked by 'end users,'  as opposed to content providers or network operators.&quot; <br />
<br />
  &quot;The (FCC) should view with healthy skepticism the opinions it receives  on technical Internet matters from an advocacy group with no  demonstrable expertise or operational experience in those matters,&quot;  AT&amp;T's letter says. <br />
<br />
&quot;Paid prioritization over Internet access is  not, as Free Press maintains, some lurking future menace that would  pervert the intent of the IETF. To the contrary, it was fully  contemplated by the IETF.&quot; <br />
<br />
  Free Press' Turner disagrees. &quot;DiffServ was not designed to be a tool to  allow the network provider to drive application-level discrimination,&quot;  he says. He says that his organization will send a letter to the FCC by  Wednesday explaining its position. <br />
<br />
<a href="http://news.cnet.com/8301-13578_3-20015231-38.html?tag=topStories1" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12416</guid>
		</item>
		<item>
			<title>Google testing voice calling in Gmail</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12383&amp;goto=newpost</link>
			<pubDate>Wed, 25 Aug 2010 13:16:39 GMT</pubDate>
			<description>*Google testing voice calling in Gmail* 
 
  
*Image: http://i.i.com.com/cnwk.1d/i/tim//2010/08/24/popup.png  
Google could soon launch a...</description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Google testing voice calling in Gmail</b></font></font><br />
</div> <br />
<div align="center"><font size="1"><i><b><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/08/24/popup.png" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /><br />
Google could soon launch a voice-calling feature within Google Chat<br />
that resembles the user interface used in Google Voice.</b></i></font> <font size="1"><i><b>(Credit: CNET) </b></i></font><br />
</div> <br />
<b><i><font size="1"><font color="RoyalBlue">by Tom Krazit - August 24, 2010 5:06 PM PDT </font></font></i></b><br />
<br />
Google could be ready to turn Gmail into a communications hub  by adding the ability to make phone calls from the Google Chat  interface.<br />
<br />
 CNET has learned that Google is testing a Web-based  service within Gmail that will allow users to place phone calls from  their in-boxes. It's launched from the Google Chat window on the lower  left-hand side of a Gmail page and allows users to place and receive  calls from within their contacts through a user interface that strongly  resembles the one used in Google Voice.<br />
<br />
 Google has been edging in this direction for some time. <a href="http://www.google.com/talk/about.html" target="_blank">Google Talk</a> was released years ago as a VoIP (voice over Internet Protocol) desktop client, and it has also spent a lot of time and money <a href="http://cnettv.cnet.com/activate-phone-google-voice/9742-1_53-50089693.html" target="_blank">evangelizing Google Voice</a>, a service that transcribes voice mails and allows users to have one phone number that rings multiple phones.<br />
<br />
<div style="float: right; margin-left:10px"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/08/24/callhistory.png" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>  <div align="right"><font size="1"><i><b>The call history screen on Google's new<br />
Web-based voice calling application.</b></i></font><br />
<font size="1"><i><b>  (Credit: CNET) </b></i></font><br />
</div>  <br />
But a Web-based VOIP client--which is what the new service  appears to be--is another matter entirely. This is the likely  culmination of Google's work to integrate Gizmo5's similar product, <a href="http://news.cnet.com/8301-30684_3-10397006-265.html" target="_blank">which it acquired late last year</a>, into its arsenal. Hints that such a service was coming first surfaced in June on the <a href="http://googlesystem.blogspot.com/2010/06/google-voice-to-integrate-with-gmail-as.html" target="_blank">Google Operating System blog</a>, which is not affiliated with Google.<br />
<br />
  It's not clear if Google Voice will be changing, or whether this new  service is a completely separate offering. The user interfaces appear  the same--for example, the same icons are used to label missed calls or  placed calls--but Google Voice is not a VoIP service. Users of the new  chat/phone call service aren't required to have a Google Voice account,  and calls placed to U.S. or Canadian numbers will be free, with  discounts on international calls as compared to standard rates.<br />
<br />
  Skype is the obvious target of such an application, but there are lots  of companies that make both desktop-based and Web-based VoIP clients.<br />
 <br />
  &quot;Google is always testing new features and products, but we have  nothing specific to announce right now,&quot; a Google representative said.<br />
<br />
<b><i><a href="http://news.cnet.com/8301-30684_3-20014617-265.html?tag=topStories2" target="_blank">SOURCE</a></i></b></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12383</guid>
		</item>
		<item>
			<title>MS warns about app security flaw</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12373&amp;goto=newpost</link>
			<pubDate>Tue, 24 Aug 2010 10:58:25 GMT</pubDate>
			<description>*Microsoft warns about application security flaw 
* 
 
*by Ina Fried - August 23, 2010 4:07 PM PDT * 
 
 
   *Microsoft issued an advisory on Monday...</description>
			<content:encoded><![CDATA[<div><b><font size="3"><font color="MediumTurquoise"><div align="center">Microsoft warns about application security flaw</div></font></font></b><br />
<br />
<b><i><font size="1"><font color="RoyalBlue">by Ina Fried - August 23, 2010 4:07 PM PDT </font></font></i></b><br />
<br />
<br />
   <i><b>Microsoft issued an advisory on Monday about a security issue that could leave many Windows applications vulnerable to attack. </b></i><br />
<br />
   <div style="float: right; margin-left:10px"><img src="http://i.i.com.com/cnwk.1d/i/ne/pg/generic/windowsLaptop.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>The advisory deals with a type of attack mechanism known as DLL  preloading, or binary planting. Although the attack mechanism is not new  or entirely unique to Windows, Microsoft acknowledged that there  appears to be a new remote-attack vector that could allow more systems  to be attacked quickly. <br />
<br />
 Two researchers at the University of California at Davis published a  paper earlier this year on how programs that were vulnerable could be  automatically detected. In recent days, security expert and Metasploit  creator HD Moore <a href="http://blog.metasploit.com/2010/08/exploiting-dll-hijacking-flaws.html" target="_blank">published more information about this issue</a> and is adding the vulnerability to his Metasploit program. <br />
 <br />
Moore said he did so in an effort to both make customers aware and  encourage vendors to patch their applications, and he noted that he  opted not to publicly list all the affected programs, though he did  release a tool that helps users uncover which of their software could be  vulnerable. <br />
 <br />
&quot;As a compromise between releasing the full list of affected products  and not saying anything at all, I decided to push a generic exploit  module to the Metasploit Framework and release an audit kit that can be  used to identify affected applications on a particular system,&quot; Moore  said in a blog post.&quot; The audit kit should make it easier for other  folks to identify vulnerable applications and hopefully have them  addressed by the vendor.&quot; <br />
<br />
 The existence of such proof-of-concept code makes it likely that an  attack could appear in the wild soon, according to Joshua Talbot, a  senior intelligence manager for Symantec security response. &quot;Attackers  then look at that and try to adapt it for their own uses,&quot; he said. <br />
 <br />
Last Thursday, security research firm Acros Security <a href="http://www.securityfocus.com/archive/1/513190" target="_blank">warned that iTunes was vulnerable</a>  to such an attack. However, Moore and others point out that the  vulnerability appears to affect far more than just iTunes, with  potentially dozens of Windows programs similarly open to attack. <br />
 <br />
In the past, such attacks have required a malicious library to be  implanted onto a local system. However, new research shows how the  malicious code could also be planted on a network share, potentially  making it much easier to attack vulnerable systems. <br />
 <br />
In its advisory on Monday, Microsoft said it has also issued guidance to  developers on how to avoid the vulnerability and that it is checking  its own code to see if any Microsoft products are at risk. <br />
 <br />
&quot;We are currently conducting a thorough investigation into how this new vector may affect Microsoft products,&quot; Microsoft said <a href="http://blogs.technet.com/b/msrc/archive/2010/08/21/microsoft-security-advisory-2269637-released.aspx" target="_blank">in a blog post</a>. <br />
 <br />
Microsoft said it has also released a software tool that &quot;allows system  administrators to mitigate the risk of the vulnerability in question by  altering the library-loading behavior for the operating system or for  specific applications.&quot; <br />
 <br />
Attacks using such libraries have been growing, as Windows and other  operating systems have become more hardened to attacks that exploit  memory corruption flaws, Talbot said. <br />
 <br />
Talbot recommended that users look at a mitigation suggested by  Microsoft that involves changing a registry key setting so that  libraries cannot be loaded over a network. Talbot also suggested that  users take other steps, such as being cautious when clicking links or  visiting unknown sites and also to make sure that their antivirus  software is up-to-date. <br />
<br />
 Current antivirus software won't necessarily stop a vulnerability from  being exploited, Talbot said, but the software can sometimes detect the  payloads that an attacker might try to install on a vulnerable system. <br />
<br />
<a href="http://news.cnet.com/8301-13860_3-20014475-56.html?tag=topStories2" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12373</guid>
		</item>
		<item>
			<title>Scorpion German Thread Temp Moved...</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12366&amp;goto=newpost</link>
			<pubDate>Sun, 22 Aug 2010 19:45:00 GMT</pubDate>
			<description>Scorpion, 
 
I have temporarily moved your post to our staff section so that we have the opportunity to get the translation exact.  I do know what it...</description>
			<content:encoded><![CDATA[<div>Scorpion,<br />
<br />
I have temporarily moved your post to our staff section so that we have the opportunity to get the translation exact.  I do know what it is basically about but I want the exact translation.<br />
<br />
From what I did understand of it you are perfectly free to play where you like and to have whatever mod on your server that makes you happy.   We also have the right to admin our servers as we see fit so as to make everyone as happy as we possibly can.</div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=26">RGN Servers - General Discussion</category>
			<dc:creator>Mr.Ray</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12366</guid>
		</item>
		<item>
			<title>Broadband Speeds are Bogus</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12337&amp;goto=newpost</link>
			<pubDate>Wed, 18 Aug 2010 10:05:00 GMT</pubDate>
			<description><![CDATA[*Your fears confirmed: "up to" Broadband Speeds are Bogus* 
 
  
          
*By Nate Anderson* 
                     ...]]></description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Your fears confirmed: &quot;up to&quot; Broadband Speeds are Bogus</b></font></font><br />
</div> <br />
         <br />
<font size="1"><font color="RoyalBlue"><i><b>By Nate Anderson</b></i></font></font><br />
                     <br />
<div style="float: right; margin-left:10px"><img src="http://static.arstechnica.com/bandwidth_throttle_snail_ars.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>Broadband providers in the US have long hawked their wares in &quot;up to&quot;  terms. You know—&quot;up to&quot; 10Mbps, where &quot;up to&quot; sits like a tiny pebble  beside the huge font size of the raw number.<br />
<br />
  In reality, no one gets these speeds. That's not news to the techno-literate, of course, but a <a href="http://www.fcc.gov/Daily_Releases/Daily_Business/2010/db0813/DOC-300902A1.pdf" target="_blank">new Federal Communications Commission report</a>  (PDF) shines a probing flashlight on the issue and makes a sharp  conclusion: broadband users get, on average, a mere 50 percent of that  &quot;up to&quot; speed they had hoped to achieve.<br />
<br />
                  After crunching the data, FCC wonks have concluded that ISPs  advertised an average (mean) &quot;up to&quot; download speed of 6.7Mbps in 2009.  That's not what broadband users got, though.<br />
<br />
  &quot;However, FCC analysis shows that the median actual speed consumers  experienced in the first half of 2009 was roughly 3 Mbps, while the  average (mean) actual speed was approximately 4 Mbps,&quot; says the report.  &quot;Therefore actual download speeds experienced by US consumers appear to  lag advertised speeds by roughly 50 percent.&quot;<br />
<br />
  The agency used metrics data from Akamai and comScore to make this  determination, though a more accurate direct measurement is currently  taking place under FCC auspices. The more accurate measurement will put  small boxes in people's homes for weeks at a time, recording actual line  speeds in thousands of US homes at all times of the day and night. But,  until that data set is complete, Internet traffic data from Akamai and  comScore will have to suffice.<br />
<br />
<b><i><a href="http://arstechnica.com/tech-policy/news/2010/08/your-worst-fears-confirmed-real-broadband-speeds-half-of-whats-advertised.ars" target="_blank">SOURCE</a></i></b></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12337</guid>
		</item>
		<item>
			<title>Facebook dislike a Scam</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12331&amp;goto=newpost</link>
			<pubDate>Tue, 17 Aug 2010 11:32:48 GMT</pubDate>
			<description><![CDATA[*Sophos flags Facebook "dislike button" Scam 
* 
 
*by Caroline McCarthy - August 16, 2010* 
...]]></description>
			<content:encoded><![CDATA[<div><b><font size="3"><font color="MediumTurquoise"><div align="center">Sophos flags Facebook &quot;<i>dislike button</i>&quot; Scam</div></font></font></b><br />
<br />
<b><i><font size="1"><font color="RoyalBlue">by Caroline McCarthy - August 16, 2010</font></font></i></b><br />
<br />
<div style="float: left; margin-right:10px"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/07/12/facebook.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>Security firm Sophos has highlighted yet another scam that's  zipping around Facebook in the form of a third-party application, this  one spreading in the form of links claiming to be from friends that  encourage members to install a Facebook &quot;dislike button.&quot;<br />
<br />
 Sophos wrote about the scam <a href="http://www.sophos.com/blogs/gc/g/2010/08/16/facebook-dislike-button" target="_blank">in a blog post Monday</a>, pointing out that a link to it tends to appear in wall posts that appear to be from the user's friends (<i>&quot;I just got the Dislike button, so now I can dislike all of your dumb posts lol!!&quot;</i>)  but which are actually automated messages from friends who have already  been duped. The scam's purpose is to force users to complete a survey  contained in the application, a bit of trickery that has already been  known to be perpetuated through scam links like &quot;Justin Bieber trying to  flirt&quot; and &quot;Anaconda coughs up a hippo,&quot; the two of which presumably  would be enticing to rather different demographics of Facebook users.<br />
<br />
 As Facebook's surging membership numbers have blazed past 500 million  around the world, its channels of fast social connection and messaging  have become <a href="http://news.cnet.com/8301-13577_3-20004549-36.html" target="_blank">a prime target for scammers and viruses</a>. This one's particularly nasty because a &quot;dislike button,&quot; offering some kind of counterpoint to <a href="http://news.cnet.com/8301-1023_3-10160112-93.html" target="_blank">Facebook's own &quot;like&quot; button</a>, is something that many members have been clamoring for.<br />
<br />
 Beyond tricking a user into completing a survey, and hence gaining  access to your profile and the ability to spam your friends, there  doesn't appear to be much about the scam that's dangerous. Eventually,  after the user completes the survey, it does redirect to <a href="https://addons.mozilla.org/en-US/firefox/addon/13672/" target="_blank">FaceMod</a>, the maker of a Facebook-based &quot;dislike&quot; button that takes the form of a <a href="http://www.cnet.com/firefox-3/" target="_blank">Firefox</a> browser plug-in. Sophos points out that the scam does not appear to have any direct connection to FaceMod.<br />
<br />
 &quot;If you really want to try out FaceMod's add-on (and note - we're not  endorsing it, and haven't verified if it works or not), get it direct  from the Firefox Add-ons Web page, not by giving a rogue application  permission to access your Facebook profile,&quot; the Sophos post by analyst  Graham Cluley read.<br />
<br />
<a href="http://news.cnet.com/8301-13577_3-20013762-36.html?tag=topTechContentWrap;editorPicks" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12331</guid>
		</item>
		<item>
			<title>VJ Day Victory over Japan</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12317&amp;goto=newpost</link>
			<pubDate>Sun, 15 Aug 2010 12:10:42 GMT</pubDate>
			<description>Image: http://www.history.navy.mil/photos/images/ac00001/ac02719.jpg  
 
*Surrender of Japan, Tokyo Bay, 2 September 1945* 
 
  
    Japanese...</description>
			<content:encoded><![CDATA[<div><div align="center"><img src="http://www.history.navy.mil/photos/images/ac00001/ac02719.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<b>Surrender of Japan, Tokyo Bay, 2 September 1945</b><br />
</div> <br />
    Japanese representatives on board USS <i>Missouri</i> (BB-63)     during the surrender ceremonies, 2 September 1945.<br />
<br />
    Standing in front are:<blockquote>     Foreign Minister Mamoru Shigemitsu (wearing top hat) and General     Yoshijiro Umezu, Chief of the Army General Staff.<br />
    Behind them are three representatives each of the Foreign Ministry,     the Army and the Navy. They include, in middle row, left to right:<br />
    Major General Yatsuji Nagai, Army;<br />
    Katsuo Okazaki, Foreign Ministry;<br />
    Rear Admiral Tadatoshi Tomioka, Navy;<br />
    Toshikazu Kase, Foreign Ministry, and<br />
    Lieutenant General Suichi Miyakazi, Army.<br />
    In the the back row, left to right (not all are visible):<br />
    Rear Admiral Ichiro Yokoyama, Navy;<br />
    Saburo Ota, Foreign Ministry;<br />
    Captain Katsuo Shiba, Navy, and<br />
    Colonel Kaziyi Sugita, Army.<br />
</blockquote><i>(Identities those in second and third rows are from an annotated     photograph in Naval Historical Center files.) </i><br />
<br />
<center><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/D3LyuWg8QTo"></param><embed src="http://www.youtube.com/v/D3LyuWg8QTo" type="application/x-shockwave-flash" width="525" height="344"></embed></object></center><br />
<br />
Dec 7, 1941 - For many veterans and their families, memories of <i>VJ Day</i> aren't as sharp as  those of <i>Dec. 7, 1941</i>. Then again, there was a question at the time as to when  <i>VJ Day</i> actually occurred. <i>VJ Day</i>, or Victory in <a href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;tbs=tl:1&amp;q=japan&amp;#37;20day&amp;sa=X&amp;ei=_NdnTP20FYS8lQf8r6ChBQ&amp;ved=0CCoQ0AEoADAA" target="_blank">Japan Day</a>, marked the day the  <a href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;tbs=tl:1&amp;q=japanese&amp;sa=X&amp;ei=_NdnTP20FYS8lQf8r6ChBQ&amp;ved=0CCsQ0AEoATAA" target="_blank">Japanese</a> surrendered to the Allies <b>...</b><br />
<br />
<br />
Never Forget<b><a href="http://en.wikipedia.org/wiki/Attack_on_Pearl_Harbor" target="_blank"> Pearl Harbor</a></b> and especially<b><a href="http://en.wikipedia.org/wiki/Bataan_Death_March" target="_blank"> The Bataan Death March.</a></b><blockquote>On the Bataan Death March, approximately 54,000 of the 75,000 prisoners reached their destination - Camp O'Donnell. </blockquote></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12317</guid>
		</item>
		<item>
			<title>Stuxnet could hijack power plants, refineries</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12308&amp;goto=newpost</link>
			<pubDate>Fri, 13 Aug 2010 11:31:33 GMT</pubDate>
			<description>*Stuxnet could hijack power plants, refineries* 
 
 * 
by Elinor Mills - August 13, 2010 4:00 AM PDT   * 
* 
   A worm that targets critical...</description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Stuxnet could hijack power plants, refineries</b></font></font><br />
</div> <font size="1"><font color="RoyalBlue"><i><b><br />
by Elinor Mills - August 13, 2010 4:00 AM PDT   </b></i></font></font><br />
<i><b><br />
   A worm that targets critical infrastructure companies doesn't just steal  data, it leaves a back door that could be used to remotely and secretly  control plant operations, a Symantec researcher said on Thursday.</b></i><br />
<br />
  The Stuxnet worm infected industrial control system companies around  the world, particularly in Iran and India but also companies in the U.S.  energy industry, Liam O'Murchu, manager of operations for Symantec  Security Response, told CNET. He declined to say how may companies may  have been infected or to identify any of them.<br />
<br />
 &quot;This is quite a  serious development in the threat landscape,&quot; he said. &quot;It's essentially  giving an attacker control of the physical system in an industrial  control environment.&quot; <br />
 <br />
 <div style="float: right; margin-left:10px"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/08/13/Cyberdefense.jpg" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></div>The malware, which made headlines <a href="http://news.cnet.com/8301-27080_3-20011159-245.html" target="_blank">in July</a>,  is written to steal code and design projects from databases inside  systems found to be running Siemens Simatic WinCC software used to  control systems such as industrial manufacturing and utilities. The  Stuxnet software also <a href="http://www.symantec.com/connect/blogs/stuxnet-introduces-first-known-rootkit-scada-devices" target="_blank">has been found</a>  to upload its own encrypted code to the Programmable Logic Controllers  (PLCs) that control the automation of industrial processes and which are  accessed by Windows PCs. It's unclear at this point what the code does,  O'Murchu said.<br />
<br />
 An attacker could use the back door to remotely  do any number of things on the computer, like download files, execute  processes, and delete files, but an attacker could also conceivably  interfere with critical operations of a plant to do things like close  valves and shut off output systems, according to O'Murchu. <br />
<br />
 &quot;For  example, at an energy production plant, the attacker would be able to  download the plans for how the physical machinery in the plant is  operated and analyze them to see how they want to change how the plant  operates, and then they could inject their own code into the machinery  to change how it works,&quot; he said. <br />
<br />
 The Stuxnet worm propagates by  exploiting a hole in all versions of Windows in the code that processes  shortcut files ending in &quot;.lnk.&quot; It infects machines via USB drives but  can also be embedded in a Web site, remote network share, or Microsoft  Word document, Microsoft said. <br />
<br />
 Microsoft issued an emergency  patch for the Windows Shortcut hole last week, but just installing the  patch is not enough to protect systems running the Siemens program  because the malware is capable of hiding code in the system that could  allow a remote attacker to interfere with plant operations without  anyone at the company knowing, according to O'Murchu.<br />
<br />
 &quot;There may  be additional functionality introduced into how a pipeline or energy  plant works that the company may or may not be aware of,&quot; he said. &quot;So,  they need to go back and audit their code to make sure the plant is  working the way they had intended, which is not a simple task.&quot;<br />
<br />
  Symantec researchers know what the malware is capable of but not what it  does exactly because they are not done analyzing the code. For  instance, &quot;we know it checks the data and depending on the date it will  take different actions, but we don't know what the actions are yet,&quot;  O'Murchu said. <br />
<br />
 This new information about the threat prompted <a href="http://news.cnet.com/8301-27080_3-20004505-245.html" target="_blank">Joe Weiss</a>,  an expert in industrial control security, to send an e-mail on  Wednesday to dozens of members of Congress and U.S. government officials  asking them to give the Federal Energy Regulatory Commission (FERC)  emergency powers to require that utilities and others involved in  providing critical infrastructure take extra precautions to secure their  systems. The emergency action is needed because PLCs are outside the  normal scope of the North American Electric Reliability Corp.'s Critical  Infrastructure Protection standards, he said. <br />
<br />
 &quot;The Grid  Security Act provides emergency powers to FERC in emergency situations.  We have one now,&quot; he wrote. &quot;This is essentially a weaponized hardware  Trojan&quot; affecting PLCs used inside power plants, off-shore oil rigs  (including Deepwater Horizon), the U.S. Navy's facilities on ships and  in shore and centrifuges in Iran, he wrote.<br />
<br />
 &quot;We don't know what a control system cyberattack would look like, but this could be it,&quot; he said in an interview. <br />
<br />
  The situation indicates a problem not just with one worm, but major  security issues across the industry, he added. People fail to realize  you can't just apply security solutions used in the information  technology world to protect data to the industrial control world, he  said. For example, Department of Energy intrusion detection testing  didn't and would not have found this particular threat and anti-virus  didn't and wouldn't protect against it, Weiss said.<br />
<br />
 &quot;Antivirus provides a false sense of security because they buried this stuff in the firmware,&quot; he said. <br />
<br />
 <a href="http://news.cnet.com/8301-11128_3-20012459-54.html" target="_blank">Last week</a>,  a Department of Energy report concluded that the U.S. is leaving its  energy infrastructure open to cyberattacks by not performing basic  security measures, such as regular patching and secure coding practices.  Researchers worry about security problems in <a href="http://news.cnet.com/8301-27080_3-20007672-245.html" target="_blank">smart meters</a> being deployed in homes around the world, while <a href="http://news.cnet.com/8301-1009_3-10216702-83.html" target="_blank">problems with the electrical grid</a> in general have been discussed for decades. One researchers at the Defcon hacker conference <a href="http://news.cnet.com/8301-27080_3-20012027-245.html" target="_blank">in late July</a> described security problems in the industry as a &quot;ticking time bomb.&quot;<br />
<br />
  Asked to comment on Weiss' action, O'Murchu said it was a good move. &quot;I  do think this is a very serious threat,&quot; he said. &quot;I don't think the  appropriate people have realized yet the seriousness of the threat.&quot;<br />
<br />
 Symantec has been getting information about computers infected by the worm, which appears to date back <a href="http://www.symantec.com/connect/blogs/w32stuxnet-variants" target="_blank">at least to June 2009</a>, by observing connections the victim computers have made to the Stuxnet command-and-control server. <br />
<br />
  &quot;We're trying to contact infected companies and inform them and working  with authorities,&quot; O'Murchu said. &quot;We're not able to tell remotely if  (any foreign attack) code was injected or not. We can just tell that a  certain company was infected and certain computers within that company  had the Siemens software installed.&quot;<br />
<br />
 O'Murchu speculated that a  large company interested in industrial espionage or someone working on  behalf of a nation-state could be behind the attack because of its  complexity, including the high cost of acquiring a zero-day exploit for  an unpatched Windows hole, the programming skills and knowledge of  industrial control systems that would be necessary and the fact that the  attacker tricks victim computers into accepting the malware by using  counterfeit digital signatures. <br />
<br />
 &quot;There is a lot of code in the  threat. It's a large project,&quot; he said. &quot;Who would be motivated to  create a threat like this? You can draw your own conclusions based on  the countries targeted. There is no evidence to indicate who exactly  could be behind it.&quot;<br />
<br />
<a href="http://news.cnet.com/8301-27080_3-20013545-245.html?tag=topStories1" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12308</guid>
		</item>
		<item>
			<title>Zeus Trojan steals $1 mln from U.K. banks</title>
			<link>http://forums.raidersmerciless.com/showthread.php?t=12288&amp;goto=newpost</link>
			<pubDate>Wed, 11 Aug 2010 09:47:15 GMT</pubDate>
			<description>*Zeus Trojan steals $1 million from U.K. bank accounts* 
 
 * 
by Elinor Mills - August 10, 2010 2:54 PM PDT * 
 
Image:...</description>
			<content:encoded><![CDATA[<div><div align="center"><font size="3"><font color="MediumTurquoise"><b>Zeus Trojan steals $1 million from U.K. bank accounts</b></font></font><br />
</div> <font size="1"><font color="RoyalBlue"><i><b><br />
by Elinor Mills - August 10, 2010 2:54 PM PDT </b></i></font></font><br />
<br />
<div align="center"><a href="http://i.i.com.com/cnwk.1d/i/tim//2010/08/10/M86BankTrojan.png" target="_blank"><img src="http://i.i.com.com/cnwk.1d/i/tim//2010/08/10/M86BankTrojan.png" border="0" alt="" class="tcattdimgresizer" onload="NcodeImageResizer.createOn(this);" /></a><br />
 <font size="1"><i><b>This illustration shows the different moving parts to the online scam. </b></i></font><br />
<font size="1"><i><b>  (Credit: M86 Security) </b></i></font></div>  <br />
Consumers and businesses in Great Britain have lost more than  $1 million so far this summer from a Trojan that is infecting their  computers, prompting them to log into their bank accounts, and then is  surreptitiously transferring money to scammers in other countries,  security researchers said on Tuesday.<br />
<br />
 About 3,000 bank accounts  were found to be compromised at one financial institution, which was not  identified, according to a white paper released by M86 Security. <br />
<br />
  The multilevel scheme uses a combination of a new version of the Zeus  keylogger and password stealer Trojan, which targets Windows-based  computers and runs on major browsers, and exploit toolkits to get around  anti-fraud systems used at bank Web sites, the report found.<br />
<br />
  Bank sites that offer two-factor authentication, such as one-time  passcodes and ID tokens, are ineffective because the malware has taken  over the browser after the victim has logged into the banking site,  Bradley Anstis, vice president of technology strategy at M86 Security,  told CNET.<br />
<br />
 &quot;This latest iteration of Zeus is dedicated to online  banking,&quot; and is bringing malware to a new level of technical  sophistication, Anstis said. The Trojan uses encrypted communications  between the infected computers and the command-and-control servers and  performs illegal online banking transactions,&quot; he said. M86 Security is  working with law enforcement.<br />
<br />
 It appears to works similarly to the <a href="http://news.cnet.com/8301-27080_3-10363836-245.html" target="_blank">URLZone bank Trojan</a> reported by Finjan a year ago that targeted German bank customers.<br />
<br />
 <i><b>Here's how the latest online scam works. </b></i><br />
  <br />
A computer user is compromised by either visiting a legitimate Web site  that is secretly hosting the malware, or a site designed to host the  malware, or a legitimate site hosting the malware in an advertisement.  The primary attack came through malicious advertisements, including ads  delivered by Yahoo's Yieldmanager.com, the report said.<br />
<br />
 The  malware redirects a Web surfer to an exploit kit, either the Eleonore  Exploit Toolkit or the Phoenix Exploit Toolkit, that then exploits a  vulnerability on the surfer's computer and drops the Trojan on the  machine. The Eleonore Exploit Toolkit includes exploits for  vulnerabilities in Adobe Reader, Java, and Internet Explorer, among  others.<br />
<br />
 &quot;The initial infection where the exploit kit compromised  the victim's machine used a number of vulnerabilities that we list in  the paper, one of those was an IE vulnerability that affected IE v6  &amp; v7,&quot; Anstis said. &quot;However that was only one of the six or so  vulnerabilities that could have been used for this initial infection.  The exploit kit tests the victim machine for each one in order to get a  successful infection.&quot; <br />
<br />
 While more than 280,000 compromised  computers were running some variant of Windows, there were about 3,000  Macs running the exploit kit that were part of the botnet, along with  about 300 PlayStations and seven machines running <a href="http://www.cnet.com/nintendo-wii.html" target="_blank">Nintendo Wii</a>, the report found. <br />
<br />
  The Trojan contacts a command-and-control server located in Eastern  Europe to get instructions that sit on the victim's computer, waiting  for the opportunity to act. <br />
<br />
 When the user accesses his or her  bank Web site, the Trojan transfers the log-in ID, date of birth, and a  security number to the command-and-control server. Once the user  accesses the transactional section of the bank Web site, the Trojan  receives new JavaScript code from the outside server to replace the  original bank JavaScript used for the transaction form.<br />
<br />
 When the  user interacts with the transaction form for legitimate business, the  Trojan works behind the scenes to manipulate the transaction. First it  checks the account balance and if it is over a certain amount it will  determine how much to steal within a limit so as not to trigger  automatic fraud detection alarms. <br />
<br />
 The money is transferred to  bank accounts of so-called &quot;money mules,&quot; typically innocent people  recruited to use their own bank accounts to funnel money through. From  there, the money is transferred to accounts in other countries that are  controlled by the scammers.<br />
<br />
 Anstis declined to identify the bank  whose customers were targeted. &quot;Interestingly, this company did offer  free security software,&quot; he said. Either &quot;the owners of the compromised  accounts didn't take them up (on the offer) or the software wasn't  effective.&quot; <br />
<br />
<a href="http://news.cnet.com/8301-27080_3-20013246-245.html?tag=topStories2" target="_blank"><i><b>SOURCE</b></i></a></div>

]]></content:encoded>
			<category domain="http://forums.raidersmerciless.com/forumdisplay.php?f=2">RGN World News Desk</category>
			<dc:creator>Mike_Nomad</dc:creator>
			<guid isPermaLink="true">http://forums.raidersmerciless.com/showthread.php?t=12288</guid>
		</item>
	</channel>
</rss>
