<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>uncompiled.com &#187; Vulnerabilities</title>
	<atom:link href="http://www.uncompiled.com/category/vulnerabilities/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uncompiled.com</link>
	<description>Technology News That You Need</description>
	<lastBuildDate>Fri, 30 Jul 2010 01:19:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Mac OS X WebDAV kernel extension local	denial-of-service</title>
		<link>http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/</link>
		<comments>http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 13:58:52 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Exploits]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1398</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>===================================================================<br />
 Mac OS X WebDAV kernel extension local denial-of-service<br />
 July 26, 2010<br />
 CVE-2010-1794<br />
===================================================================</p>
<p>==Description==</p>
<p>&#8220;Web-based Distributed Authoring and Versioning, or WebDAV, is a set<br />
of extensions to the Hypertext Transfer Protocol that allows computer<br />
users to edit and manage files collaboratively on remote World Wide<br />
Web servers.&#8221; [1]</p>
<p>Mac OS X supports WebDAV shares natively as a filesystem, implemented<br />
as a kernel extension.  Local users can mount WebDAV shares using the<br />
&#8220;mount_webdav&#8221; utility included in most default installations.</p>
<p>The WebDAV kernel extension is vulnerable to a denial-of-service issue<br />
that allows a local unprivileged user to trigger a kernel panic due to<br />
a memory overallocation.  This vulnerability has been verified with<br />
proof-of-concept code.  The vulnerable code is in the webdav_mount()<br />
function, and reads as:</p>
<p>MALLOC(fmp->pm_socket_name, struct sockaddr *, args.pa_socket_namelen,<br />
M_TEMP, M_WAITOK);</p>
<p>&#8220;args&#8221; is a user-controlled struct provided as an argument to a<br />
request to mount a WebDAV share, and there is no checking of the<br />
&#8220;pa_socket_namelen&#8221; field.  If a user were to issue a mount request<br />
with a very large value for this field, this will trigger a kernel<br />
panic, since in BSD-based kernels (such as XNU), MALLOC() with<br />
M_WAITOK will result in a panic when the requested memory cannot be<br />
allocated.</p>
<p>==Notes on Disclosure==</p>
<p>My disclosure of this issue prior to an official fix is not meant to<br />
be taken as a statement against Apple&#8217;s management of security issues.<br />
 Local denial-of-service issues are by nature low impact &#8211; many<br />
security teams do not regard these as security-relevant at all.  I<br />
believe the chances of exploitation of this in real life are<br />
practically non-existent.  Given that the vulnerability resides in an<br />
open source kernel extension, I chose to disclose this issue so that<br />
concerned administrators can apply a fix immediately, while the rest<br />
of us can benefit from a little increased awareness of potentially<br />
unsafe memory allocation situations.  Apple&#8217;s security team was<br />
contacted prior to disclosure, and I&#8217;m sure they&#8217;ll incorporate a fix<br />
in a future release.</p>
<p>==Solution==</p>
<p>The WebDAV kernel extension can be obtained online [2].  The following<br />
patch can be applied to this extension, after which it should be<br />
recompiled to replace the existing extension at<br />
/System/Library/Extensions/webdav_fs.kext:</p>
<p>&#8212; webdav_fs.kextproj.orig/webdav_fs.kmodproj/webdav_vfsops.c<br />
2010-07-21 09:51:09.000000000 -0400<br />
+++ webdav_fs.kextproj/webdav_fs.kmodproj/webdav_vfsops.c<br />
2010-07-21 10:32:43.000000000 -0400<br />
@@ -319,6 +319,12 @@ static int webdav_mount(struct mount *mp<br />
     }</p>
<p>     /* Get the server sockaddr from the args */<br />
+    if(args.pa_socket_namelen > NAME_MAX)<br />
+    {<br />
+        error = EINVAL;<br />
+        goto bad;<br />
+    }<br />
+<br />
     MALLOC(fmp->pm_socket_name, struct sockaddr *,<br />
args.pa_socket_namelen, M_TEMP, M_WAITOK);<br />
     error = copyin(args.pa_socket_name, fmp->pm_socket_name,<br />
args.pa_socket_namelen);<br />
     if (error)</p>
<p>==Credits==</p>
<p>This vulnerability was discovered by Dan Rosenberg (dan.j.rosenberg () gmail com).</p>
<p>==References==</p>
<p>CVE identifier CVE-2010-1794 has been assigned to this issue by Apple.</p>
<p>[1] http://en.wikipedia.org/wiki/WebDAV<br />
[2] http://opensource.apple.com/source/webdavfs/webdavfs-293/webdav_fs.kextproj/webdav_fs.kmodproj/</p>
<p><a href="http://seclists.org/fulldisclosure/2010/Jul/360">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;n=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;t=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;srcUrl=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;srcTitle=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Mac%20OS%20X%20WebDAV%20kernel%20extension%20local%09denial-of-service%22&amp;body=Link: http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;t=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;title=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service+-+http://b2l.me/acttwg&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/&amp;submitHeadline=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Mac+OS+X+WebDAV+kernel+extension+local%09denial-of-service&amp;body=Link: http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/07/mac-os-x-webdav-kernel-extension-localdenial-of-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bluetooth at heart of gas station credit-card scam</title>
		<link>http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/</link>
		<comments>http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 18:35:25 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Legal]]></category>
		<category><![CDATA[Social Engineering]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1390</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>Thieves are stealing credit-card numbers through skimmers they secretly installed inside pumps at gas stations in the U.S., using Bluetooth wireless to transmit stolen card numbers, says law enforcement investigating the incidents.</p>
<p>&#8220;We&#8217;ve sent detectives out to every gas station within a mile of (U.S.) Interstate (highway) 75,&#8221; says Lt. Steve Maynard, spokesman for the Alachua County Sheriff&#8217;s Office in Gainesville, Fla., which last Thursday was first notified about a suspicious skimming device discovered by a maintenance worker at a Shell Station. So far, three card-skimming devices hidden in gas pumps at three stations have been discovered by the Alachua County Sheriff&#8217;s Office, and the U.S. Secret Service has been notified as part of the gas-pump card-skimming investigation.</p>
<p>The Secret Service may be best known as the U.S. president&#8217;s bodyguard, but it is also responsible for investigating fraud and computer crime.</p>
<p>The Alachua County Sheriff&#8217;s Office, along with other local police departments, are trying to inspect as many gas stations in the area as possible, especially focusing on those along I-75. But law enforcement is encouraging gas station operators to look for signs of the skimmers at their pumps and contact them if they think they&#8217;ve found something. The Secret Service has indicated there&#8217;s a crime wave throughout the Southeast involving the gas-station pump card skimmers, and it may be traced back to a single gang that may be working out of Miami, Maynard says.</p>
<p>Nearby St. Johns County in Florida has also been hit by the gas-pump card skimmers. Maynard says criminals wanting to hide the credit-card skimmers in gas pumps have to have a key to the pump, but in some cases a single key will serve to get into many gas pumps. It&#8217;s not known if the gas-pump skimming operation involves insiders or not. Law enforcement is encouraging gas-station operators to train video surveillance they may use on the pumps.</p>
<p>The particular card-skimmers seen in Alachua County have put together devices with computer components and in this case, a Bluetooth wireless capability to easily send the card information to the thieves. It&#8217;s not yet known how many credit cards may have been stolen by means of the skimmers and fraudulently used. The investigation is &#8220;ongoing,&#8221; Maynard says. &#8220;We&#8217;re nowhere near closure. We wish we were.&#8221;</p>
<p><a href="http://www.itworldcanada.com/news/bluetooth-at-heart-of-gas-station-credit-card-scam/141087">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;n=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;t=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;srcUrl=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;srcTitle=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Bluetooth%20at%20heart%20of%20gas%20station%20credit-card%20scam%22&amp;body=Link: http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;t=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;title=Bluetooth+at+heart+of+gas+station+credit-card+scam" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bluetooth+at+heart+of+gas+station+credit-card+scam+-+File: /data/app/webapp/functions.php<br />Line: 23<br />Message: Incorrect key file for table './b2l_shrinker/phurl_settings.MYI'; try to repair it&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/&amp;submitHeadline=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Bluetooth+at+heart+of+gas+station+credit-card+scam&amp;body=Link: http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/07/bluetooth-at-heart-of-gas-station-credit-card-scam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UnrealIRCd 3.2.8.1 backdoored on official ftp and site</title>
		<link>http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/</link>
		<comments>http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:59:01 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Breach]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1305</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>Hello folks,</p>
<p>I&#8217;d like to let you know that there&#8217;s been a compromise of the<br />
unrealircd website and ftp and the 3.2.8.1 tarball release had been<br />
replaced by a backdoored copy.</p>
<p>I&#8217;m attaching Syzops original security advisory from </p>
<p>http://www.unrealircd.com/txt/unrealsecadvisory.20100612.txt</p>
<p>Yours,<br />
satmd<br />
UnrealIRCd support staff</p>
<p>Hi all,</p>
<p>This is very embarrassing&#8230;</p>
<p>We found out that the Unreal3.2.8.1.tar.gz file on our mirrors has been<br />
replaced quite a while ago with a version with a backdoor (trojan) in<br />
it. This backdoor allows a person to execute ANY command with the<br />
privileges of the user running the ircd. The backdoor can be executed<br />
regardless of any user<br />
restrictions (so even if you have passworded server or hub that doesn&#8217;t<br />
allow<br />
any users in).</p>
<p>It appears the replacement of the .tar.gz occurred in November 2009 (at<br />
least on some mirrors). It seems nobody noticed it until now.</p>
<p>Obviously, this is a very serious issue, and we&#8217;re taking precautions<br />
so this will never happen again, and if it somehow does that it will be<br />
noticed quickly.<br />
We will also re-implement PGP/GPG signing of releases. Even though in<br />
practice<br />
(very) few people verify files, it will still be useful for those<br />
people who do.</p>
<p>Safe versions<br />
==============</p>
<p>The Windows (SSL and non-ssl) versions are NOT affected.</p>
<p>CVS is also not affected.</p>
<p>3.2.8 and any earlier versions are not affected.</p>
<p>Any Unreal3.2.8.1.tar.gz downloaded BEFORE November 10 2009 should be<br />
safe, but you should really double-check, see next.</p>
<p>How to check if you&#8217;re running the backdoored version<br />
======================================================<br />
Two ways:</p>
<p>One is to check if the Unreal3.2.8.1.tar.gz you have is good or bad by<br />
running &#8216;md5sum Unreal3.2.8.1.tar.gz&#8217; on it.<br />
Backdoored version (BAD) is: 752e46f2d873c1679fa99de3f52a274d<br />
Official version (GOOD) is: 7b741e94e867c0a7370553fd01506c66</p>
<p>The other way is to run this command in your Unreal3.2 directory:<br />
grep DEBUG3_DOLOG_SYSTEM include/struct.h<br />
If it outputs two lines, then you&#8217;re running the backdoored/trojanized<br />
version.<br />
If it outputs nothing, then you&#8217;re safe and there&#8217;s nothing to do.</p>
<p>What to do if you&#8217;re running the backdoored version<br />
====================================================<br />
Obviously, you only need to do this if you checked you are indeed<br />
running the<br />
backdoored version, as mentioned above. Otherwise there&#8217;s no point in<br />
continuing, as the version on our website is (now back) the good one<br />
from April 13 2009 and nothing &#8216;new&#8217;.</p>
<p>Solution:<br />
* Re-download from http://www.unrealircd.com/<br />
* Verify MD5 (or SHA1) checksums, see next section (!)<br />
* Recompile and restart UnrealIRCd</p>
<p>The backdoor is in the core, it is not possible to &#8216;clean&#8217; UnrealIRCd<br />
without<br />
a restart or through a module.</p>
<p>How to verify that the release is the official version<br />
=======================================================<br />
You can check by running &#8216;md5sum Unreal3.2.8.1.tar.gz&#8217;, it should<br />
output: 7b741e94e867c0a7370553fd01506c66  Unreal3.2.8.1.tar.gz</p>
<p>For reference, here are the md5sums for ALL proper files:<br />
7b741e94e867c0a7370553fd01506c66  Unreal3.2.8.1.tar.gz<br />
5a6941385cd04f19d9f4241e5c912d18  Unreal3.2.8.1.exe<br />
a54eafa6861b6219f4f28451450cdbd3  Unreal3.2.8.1-SSL.exe</p>
<p>These are the EXACT same MD5sums as mentioned on April 13 2009 in the<br />
initial 3.2.8.1 announcement to the unreal-notify and unreal-users<br />
mailing list.<br />
<http ://sourceforge.net/mailarchive/forum.php?thread_name=49E341E0.3000702%40vulnscan.org&#038;forum_name=unreal-notify></p>
<p>Finally<br />
========<br />
Again, I would like to apologize about this security breach.<br />
We simply did not notice, but should have.<br />
We did not check the files on all mirrors regularly, but should have.<br />
We did not sign releases through PGP/GPG, but should have done so.</p>
<p>This advisory (and updates to it, if any) is posted to:</p>
<p>http://www.unrealircd.com/txt/unrealsecadvisory.20100612.txt</p>
<p><a href="http://seclists.org/fulldisclosure/2010/Jun/277">Source</a>      </http></p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;n=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;t=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;srcUrl=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;srcTitle=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22UnrealIRCd%203.2.8.1%20backdoored%20on%20official%20ftp%20and%20site%22&amp;body=Link: http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;t=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;title=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site+-+http://b2l.me/3pns8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/&amp;submitHeadline=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=UnrealIRCd+3.2.8.1+backdoored+on+official+ftp+and+site&amp;body=Link: http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/06/unrealircd-3-2-8-1-backdoored-on-official-ftp-and-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoomail Dom Based XSS Vulnerability</title>
		<link>http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/</link>
		<comments>http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:56:58 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1301</guid>
		<description><![CDATA[Title: Yahoo mail Dom Based Cross Site Scripting Author: Pratul Agrawal Date: 13/06/2010 Indian Hacker Service: Webmail Vendor: Yahoo mail, and possibly others Vulnerability: Cross Site Scripting / Cookie-Theft / Relogin attacks Severity: High Tested on: Microsoft IE 7.0 Details: Yahoo mail filter fails to detect script attributes in combination with the style attribute as [...]]]></description>
			<content:encoded><![CDATA[<p>Title: Yahoo mail Dom Based Cross Site Scripting</p>
<p>Author: Pratul Agrawal
<pratulag [at]yahoo[dot]com>
Date: 13/06/2010<br />
Indian Hacker</p>
<p>Service: Webmail</p>
<p>Vendor: Yahoo mail, and possibly others</p>
<p>Vulnerability: Cross Site Scripting / Cookie-Theft / Relogin attacks</p>
<p>Severity: High</p>
<p>Tested on: Microsoft IE 7.0</p>
<p>Details:</p>
<p>Yahoo mail filter fails to detect script attributes in combination with<br />
the style attribute as a tag, leaving everyone using yahoo mail service<br />
with MSIE vulnerable to Cross Site Scripting including Cookie Theft and<br />
relogin attacks. This is a high risk security vulnerability because the<br />
attacker wont have to make the victim click on any link, all he/she has<br />
to do is to send the javascript code as an html email to the target and<br />
once the victim open the email the malicious code will be executed in<br />
his/her browser.</p>
<p>Impact:</p>
<p>This is totally a dom based xss attack. an application takes the user suplied data and directly feed it into the API<br />
designed to show the Newly created folder name n the yahoomail. Throug this an attacker can easily perform a cookie<br />
theft attack, Site defacement attack and many more.</p>
<p>Steps of Exploit code:</p>
<p>1. Login the yahoomail with valid credentials.</p>
<p>2. Click on inbox.</p>
<p>3. Now click on Move to < create New Folder.</p>
<p>4. Now enter the javascript "><script>alert('yahoo sucks!')</script> in the field given for creating new folder.</p>
<p>5. Press OK and the script get executed.  yahhhhooooo</p>
<p>HuReee hUreYYYY</p>
<p><a href="http://seclists.org/fulldisclosure/2010/Jun/289">Source</a>      </pratulag>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;n=Yahoomail+Dom+Based+XSS+Vulnerability&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;t=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability&amp;srcUrl=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;srcTitle=Yahoomail+Dom+Based+XSS+Vulnerability&amp;snippet=Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability&amp;summary=Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Yahoomail%20Dom%20Based%20XSS%20Vulnerability%22&amp;body=Link: http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;t=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability&amp;body=Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;title=Yahoomail+Dom+Based+XSS+Vulnerability" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Yahoomail+Dom+Based+XSS+Vulnerability+-+http://b2l.me/3pnnf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/&amp;submitHeadline=Yahoomail+Dom+Based+XSS+Vulnerability&amp;submitSummary=Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Yahoomail+Dom+Based+XSS+Vulnerability&amp;body=Link: http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Title%3A%20Yahoo%20mail%20Dom%20Based%20Cross%20Site%20Scripting%0D%0A%0D%0AAuthor%3A%20Pratul%20Agrawal%20%0D%0ADate%3A%2013%2F06%2F2010%0D%0AIndian%20Hacker%0D%0A%0D%0AService%3A%20Webmail%0D%0A%0D%0AVendor%3A%20Yahoo%20mail%2C%20and%20possibly%20others%0D%0A%0D%0AVulnerability%3A%20Cross%20Site%20Scripting%20%2F%20Cookie-Theft%20%2F%20Relogin%20attacks%0D%0A%0D%0ASeverity%3A%20High%0D%0A%0D%0ATested%20on%3A%20Microsoft%20IE%207.0%0D%0A%0D%0ADeta" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/06/yahoomail-dom-based-xss-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google pays $2,000 for report of a vulnerability in Chrome</title>
		<link>http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/</link>
		<comments>http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:37:22 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1291</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>Google has paid out its highest sum yet, $2,000, for the discovery of a vulnerability found in its Chrome browser. The recipient is developer Sergey Glazunov, who found a DOM method-related means of circumventing the same origin policy. Details of the vulnerability are not yet publicly available, but it is likely that it could allow a web page to access content from other web pages. Google classifies the risk as high. Update 5.0.375.70 for Windows, Mac and Linux resolves the problem.</p>
<p>The update also fixes a further 10 vulnerabilities, eight of which are classified critical. Two of the vulnerabilities were discovered by Apple – both Chrome and Apple&#8217;s Safari being WebKit based. An update for Safari which fixed 48 vulnerabilities was released yesterday. One of the vulnerabilities in Chrome affects only the Linux version and enables escape from the sandbox.</p>
<p>As part of its Chromium Security Reward programme, launched earlier this year, Google has been rewarding those reporting security vulnerabilities with $500. In special cases, a committee can decide to increase the amount to a maximum of $1,337, but the maximum is only awarded for vulnerabilities which are particularly critical, or for particularly clever reports on vulnerabilities and their exploitation.</p>
<p>Google is hoping that this will improve the security of its browser and therefore the security of its users. It&#8217;s not clear why Google raised the sum to $2,000 in this case.</p>
<p><a href="http://www.h-online.com/security/news/item/Google-pays-2-000-for-report-of-a-vulnerability-in-Chrome-1018495.html">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;n=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;t=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;srcUrl=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;srcTitle=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Google%20pays%20%242%2C000%20for%20report%20of%20a%20vulnerability%20in%20Chrome%22&amp;body=Link: http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;t=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;title=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome+-+http://b2l.me/2d6kc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/&amp;submitHeadline=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Google+pays+%242%2C000+for+report+of+a+vulnerability+in+Chrome&amp;body=Link: http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/06/google-pays-2000-for-report-of-a-vulnerability-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSSL updates fix vulnerabilities</title>
		<link>http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/</link>
		<comments>http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 18:52:24 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Cryptography]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1271</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>The OpenSSL developers have released versions 0.9.8o and 1.0.0a, fixing two security problems. A flaw in the ASN.1 parser can be exploited to write to invalid memory addresses using specially crafted &#8220;Cryptographic Message Syntax&#8221; (CMS) structures. The flaw potentially allows arbitrary code to be injected in order to compromise a system. CMS is not enabled by default in the 0.9.8 branch of OpenSSL, but it is enabled in the 1.0.0 branch.</p>
<p>An uninitialised buffer in the EVP_PKEY_verify_recover() function in version 1.0.0 can be exploited to make an invalid RSA key appear to be valid. Since very few applications have used this recently-introduced function, the scope of this problem is limited. The OpenSSL developers say that pkeyutl is currently one of the only OpenSSL tools to access this function.</p>
<p><a href="http://www.h-online.com/security/news/item/OpenSSL-updates-fix-vulnerabilities-1014786.html">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;n=OpenSSL+updates+fix+vulnerabilities&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;t=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities&amp;srcUrl=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;srcTitle=OpenSSL+updates+fix+vulnerabilities&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22OpenSSL%20updates%20fix%20vulnerabilities%22&amp;body=Link: http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;t=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;title=OpenSSL+updates+fix+vulnerabilities" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=OpenSSL+updates+fix+vulnerabilities+-+http://b2l.me/yxgcu&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/&amp;submitHeadline=OpenSSL+updates+fix+vulnerabilities&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=OpenSSL+updates+fix+vulnerabilities&amp;body=Link: http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/06/openssl-updates-fix-vulnerabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XSS Vulnerabilities Happen To Everybody</title>
		<link>http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/</link>
		<comments>http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/#comments</comments>
		<pubDate>Tue, 04 May 2010 15:16:16 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1126</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>You would think that of all people, the developers of the U.K.&#8217;s Cybersecurity Challenge website would be the most scrupulous about finding security vulnerabilities before they happen. But according to researchers, cross-site scripting (XSS) flaws happen to them, too.</p>
<p>According to a report on the Netcraft security site, an XSS vulnerability was uncovered on the Cyber Security Challenge UK website &#8212; before the site had even been made ready for candidates to register.</p>
<p>The Cybersecurity Challenge was established by a management consortium of key figures in cybersecurity, and is designed to test the mettle of security professionals.</p>
<p>The simple coding error was demonstrated by James Wheare, according to the report. Wheare told Netcraft that he was prompted to look for the hole after reading a friend&#8217;s tweet and noticed insufficient encoding in the page&#8217;s tags.</p>
<p>Netcraft says it has informed the Cybersecurity Challenge about the flaw.</p>
<p><a href="http://www.darkreading.com/vulnerability_management/security/app-security/showArticle.jhtml?articleID=224700547">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;n=XSS+Vulnerabilities+Happen+To+Everybody&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;t=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody&amp;srcUrl=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;srcTitle=XSS+Vulnerabilities+Happen+To+Everybody&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22XSS%20Vulnerabilities%20Happen%20To%20Everybody%22&amp;body=Link: http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;t=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;title=XSS+Vulnerabilities+Happen+To+Everybody" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=XSS+Vulnerabilities+Happen+To+Everybody+-+http://b2l.me/ssu89&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/&amp;submitHeadline=XSS+Vulnerabilities+Happen+To+Everybody&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=XSS+Vulnerabilities+Happen+To+Everybody&amp;body=Link: http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/05/xss-vulnerabilities-happen-to-everybody/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapid7 launches Metasploit Express</title>
		<link>http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/</link>
		<comments>http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 17:35:48 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1087</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>When Rapid7 announced it was acquiring HD Moore&#8217;s hugely popular Metasploit tool late last year, many wondered if the integrity of the technology would be preserved.</p>
<p>Some things have changed. Moore, for example, could be seen at SOURCE Boston this week walking around in a suit and tie, which some saw as out of character. But on the technology side, the company appears intent on maintaining the tool&#8217;s integrity.</p>
<p>The vendor of unified vulnerability management, compliance and penetration testing tools said it would use Metasploit to enhance its NeXpose product. It also promised to &#8220;sponsor dedicated resources and contributions to the standalone, community-driven Metasploit Project to further its growth and success.&#8221;</p>
<p>This week, the company announced the latest step in that strategy with the unveiling of Metasploit Express, which it billed as an affordable, comprehensive and easier-to-use penetration testing tool for organizations with limited resources.<br />
According the company&#8217;s official announcement, features include:</p>
<p>Comprehensive penetration testing capabilities. Based on the world&#8217;s largest tested and integrated public database of exploits and payloads, Metasploit Express runs exploits and detects and tests insecure configurations, such as weak passwords, the company said. Unlike other existing penetration testing solutions, Metasploit Express lets penetration testers examine trust relationships between systems for a more accurate risk profile. In addition to testing standard PCs and servers, the product can compromise a range of network devices and offer data collection and automation capabilities for such devices.</p>
<p>Affordable ease of use. Available at a price point that a broad range of security professionals in large corporations, consulting organizations and small business can leverage, Metasploit Express&#8217; network penetration testing capabilities are enhanced by the product&#8217;s graphical user interface and the Metasploit Express Workflow Manager, an advanced workflow engine that provides a step-by-step model to simplify and accelerate testing programs and eliminates the burden of many manual processes found with traditional exploit attack platforms.</p>
<p>Fully integrated and open. Rapid7 said Express integrates with all editions of the company&#8217;s vulnerability management product, Rapid7 NeXpose, including the Community Edition, free vulnerability software for commercial use. Users can launch a NeXpose scan directly from within the Metasploit Express user interface and the vulnerability information from NeXpose is directly linked to the exploit data in Metasploit Express. As a result, Rapid7 said, users can detect vulnerabilities in their IT infrastructure and then use Metasploit Express to test for the ability to penetrate the vulnerabilities and launch an attack, decreasing the time to test and increasing the efficiency in real threat detection.</p>
<p>Continued support from and for the open source community. Rapid7 and the Metasploit Project are preparing for the release of version 3.4 of the Metasploit Framework, which will include improvements to the Meterpreter payload, the expansion of the framework&#8217;s brute-force capabilities and the complete overhaul of the back-end database schema and event subsystem. In addition, more than 60 exploit modules and 40 auxiliary modules will be added with version 3.4.</p>
<p><a href="http://www.networkworld.com/news/2010/042310-rapid7-launches-metasploit.html">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;n=Rapid7+launches+Metasploit+Express&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;t=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express&amp;srcUrl=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;srcTitle=Rapid7+launches+Metasploit+Express&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Rapid7%20launches%20Metasploit%20Express%22&amp;body=Link: http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;t=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;title=Rapid7+launches+Metasploit+Express" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Rapid7+launches+Metasploit+Express+-+http://b2l.me/qv3ux&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/&amp;submitHeadline=Rapid7+launches+Metasploit+Express&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Rapid7+launches+Metasploit+Express&amp;body=Link: http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/04/rapid7-launches-metasploit-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>National Health Service system infected with data-stealing worm</title>
		<link>http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/</link>
		<comments>http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 15:03:05 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Breach]]></category>
		<category><![CDATA[Cybercrime]]></category>
		<category><![CDATA[Medical]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<category><![CDATA[Worm]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1081</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>The not-so-new and easily detectable Qakbot worm has compromised over a thousand machines within the UK&#8217;s National Health Service computer system, say Symantec researchers.</p>
<p>The Qakbot worm spreads through web pages with Javascript that tries to exploit vulnerabilities in Microsoft IE and Apple Quick Time. When the exploit is successful, malicious miles get installed on it in the user profile data directory. </p>
<p>Qakbot&#8217;s main goal is to collect information &#8211; credit card information, online credentials, search histories, and other &#8211; and upload it to FTP servers, where they are made available to the creator(s) of the worm. It hides its presence and actions behind legitimate processes, and it is able to download updates for itself in several different ways. It spreads over network shares.</p>
<p>Symantec researchers have been following two of the six FTP servers to which the data is sent, and during a period of two weeks, some 4 GB of data was uploaded to them. &#8220;Given that these figures are based on the evidence from logs obtained from only two servers over two weeks, the actual numbers may be higher,&#8221; they say.</p>
<p>&#8220;One unusual aspect of Qakbot is that even though its purpose is to steal information associated with home users, it has also been successful at compromising computers in corporate environments as well as government departments,&#8221; muse the researchers. The NHS is just one example; some 100 compromised computers have also been detected on a Brazilian regional government network.</p>
<p>The researchers have no evidence about medical records being stoled at this time, but warn that it&#8217;s not only the information stealing that the users should be worried about. The Qakbot has also downloader functions that can be used to further infect the machines with other malware.</p>
<p><a href="http://www.net-security.org/malware_news.php?id=1313">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;n=National+Health+Service+system+infected+with+data-stealing+worm&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;t=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm&amp;srcUrl=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;srcTitle=National+Health+Service+system+infected+with+data-stealing+worm&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22National%20Health%20Service%20system%20infected%20with%20data-stealing%20worm%22&amp;body=Link: http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;t=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;title=National+Health+Service+system+infected+with+data-stealing+worm" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=National+Health+Service+system+infected+with+data-stealing+worm+-+http://b2l.me/qvg62&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/&amp;submitHeadline=National+Health+Service+system+infected+with+data-stealing+worm&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=National+Health+Service+system+infected+with+data-stealing+worm&amp;body=Link: http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/04/national-health-service-system-infected-with-data-stealing-worm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon purges account hijacking threat from site</title>
		<link>http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/</link>
		<comments>http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:25:46 +0000</pubDate>
		<dc:creator>mstanisl</dc:creator>
				<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Vulnerabilities]]></category>

		<guid isPermaLink="false">http://www.uncompiled.com/?p=1064</guid>
		<description><![CDATA[         ]]></description>
			<content:encoded><![CDATA[<p>Amazon.com administrators on Tuesday closed a security vulnerability that made it possible for attackers to steal user login credentials for the highly trafficked e-commerce website.</p>
<p>The XSS, or cross-site scripting, bug on Amazon Wireless allowed attackers to steal the session IDs that are used to grant users access to their accounts after they enter their password. It exposed the credentials of customers who clicked on this link while logged in to the main Amazon.com page.</p>
<p>It was discovered by Nir Goldshlager, a researcher from security consulting company Avnet. It was purged from Amazon about 12 hours after The Register brought it to the attention of the website&#8217;s security team.</p>
<p>&#8220;This is very bad news,&#8221; web application expert Jeremiah Grossman of WhiteHat Security said of the flaw shortly before it was fixed. People who fell for the attack would likely be unaware anything was amiss &#8220;since it all takes place on Amazon&#8217;s website.&#8221;</p>
<p>XSS bugs are the most commonly found security vulnerability, Grossman added. A similar flaw was recently exploited to give malicious hackers access to a heavily fortified server operated by the security-conscious Apache Foundation. ®</p>
<p><a href="http://www.theregister.co.uk/2010/04/20/amazon_website_treat/">Source</a>      </p>


<div class="shr-bookmarks shr-bookmarks-center">
<ul class="socials">
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;n=Amazon+purges+account+hijacking+threat+from+site&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;t=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site&amp;srcUrl=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;srcTitle=Amazon+purges+account+hijacking+threat+from+site&amp;snippet=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site&amp;summary=%20%20%20%20%20%20%20%20%20&amp;source=uncompiled.com" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Amazon%20purges%20account%20hijacking%20threat%20from%20site%22&amp;body=Link: http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;t=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site&amp;body=%20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;title=Amazon+purges+account+hijacking+threat+from+site" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Amazon+purges+account+hijacking+threat+from+site+-+http://b2l.me/qb5au&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/&amp;submitHeadline=Amazon+purges+account+hijacking+threat+from+site&amp;submitSummary=%20%20%20%20%20%20%20%20%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Amazon+purges+account+hijacking+threat+from+site&amp;body=Link: http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %20%20%20%20%20%20%20%20%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.uncompiled.com/2010/04/amazon-purges-account-hijacking-threat-from-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
