<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/19639/This_New_Vulnerability_Dowd_s_Inhuman_Flash_Exploit</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2009, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Wed, 25 Nov 2009 11:43:42 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Karma..</title>
			<link>http://osnews.com/thread?309900</link>
			<guid isPermaLink="true">http://osnews.com/thread?309900</guid>
			<description>You people had to learn the hard way... <img src="/images/emo/wink.gif" alt=";)" /> <br />
 <br />
Next time, avoid such proprietary garbage.Edited 2008-04-16 17:12 UTC</description>
			<pubDate>Wed, 16 Apr 2008 17:12:00 GMT</pubDate>
			<author>donotreply@osnews.com (BSDfan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Karma..</title>
			<link>http://osnews.com/thread?309903</link>
			<guid isPermaLink="true">http://osnews.com/thread?309903</guid>
			<description>How are such exploits unique to proprietary software?</description>
			<pubDate>Wed, 16 Apr 2008 17:13:00 GMT</pubDate>
			<author>donotreply@osnews.com (evangs)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Karma..</title>
			<link>http://osnews.com/thread?309913</link>
			<guid isPermaLink="true">http://osnews.com/thread?309913</guid>
			<description><i>&gt;How are such exploits unique to proprietary software?</i><br />
<br />
Well they're not really, but (I can't really believe I'm going to quote Eric S. Raymond) - <br />
<br />
<i><b>&quot;given enough eyeballs, all bugs are shallow&quot;</b></i></description>
			<pubDate>Wed, 16 Apr 2008 17:43:00 GMT</pubDate>
			<author>donotreply@osnews.com (PLan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Karma..</title>
			<link>http://osnews.com/thread?309919</link>
			<guid isPermaLink="true">http://osnews.com/thread?309919</guid>
			<description><div class="cquote">How are such exploits unique to proprietary software? </div><br />
 <br />
 I would say the lesson learned here for anyone who still believes that proprietary software is safer due to the closed-code is: It doesn't matter - someone with the know-how and determination will still figure out how the software works and find exploits.<br />
 <br />
 Thus, open source has the advantage that *more* people can evaluate the source and find such flaws prior to compilation rather than via low level debugger and disassembly.<br />
 <br />
 Also, if someone wanted to fix this in a mission critical environment before an official patch is available, they would be able to. Something that is not so easy with proprietary closed-source software.<br />
<br />
edit: fixed wrong word in my sentenceEdited 2008-04-16 18:12 UTC</description>
			<pubDate>Wed, 16 Apr 2008 18:12:00 GMT</pubDate>
			<author>donotreply@osnews.com (umccullough)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Incredible!</title>
			<link>http://osnews.com/thread?309921</link>
			<guid isPermaLink="true">http://osnews.com/thread?309921</guid>
			<description>That exploit is just amazing. At the same time, it is scary to think that a hole similar to step 1 is probably present in many other pieces of software.<br />
On the surface, easy exploits have disappeared from most software or have been disabled by the OS.<br />
Actually, though, hackers are still a step ahead and already planning for their next move.<br />
As long as hackers stay away from open source players, I am safe, I guess. <img src="/images/emo/grin.gif" alt=";)" /></description>
			<pubDate>Wed, 16 Apr 2008 18:13:00 GMT</pubDate>
			<author>donotreply@osnews.com (sakeniwefu)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Karma..</title>
			<link>http://osnews.com/thread?309926</link>
			<guid isPermaLink="true">http://osnews.com/thread?309926</guid>
			<description><div class="cquote"><i><b>&quot;given enough eyeballs, all bugs are shallow&quot;</b></i> </div><br />
The premise of that claim: &quot;Given enough eyeballs&quot;, is often taken as a given.  Everyone who has done a security audit of Gnash, please raise your hand.<br />
<br />
I'm a strong advocate of open source.  But I would be remiss not to state that eyeballs per line of code can be quite variable.</description>
			<pubDate>Wed, 16 Apr 2008 18:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (sbergman27)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Incredible!</title>
			<link>http://osnews.com/thread?309939</link>
			<guid isPermaLink="true">http://osnews.com/thread?309939</guid>
			<description><div class="cquote">On the surface, easy exploits have disappeared from most software or have been disabled by the OS. </div><br />
<br />
As I have understood from the article, the exploit relies on a.. excuse me, I hope it doesn't sound as an insult... on a stupid lazyness. A simple check against NULL in a kind of malloc() operation. Is it that hard? I always thought that programmers who allocate the memory theirselves (instead of using a library that offers protected allocations or at least let the OS check for allocation errors) are responsible enough to check the result of the allocation.<br />
<br />
foo = malloc(100 GB);<br />
/* We don't need to check for NULL because everyone has enough RAM. */<br />
some_operation(foo);<br />
/* We're sure the operation succeeded */<br />
<br />
:-)<br />
<br />
And I think it's unacceptable that &quot;Flash&quot; seems to bypass means of memory protection provided by the OS. &quot;Unimportant&quot; stuff like &quot;Flash&quot;, mostly just used as a video stream player, should not be allowed to break intended system borders in such a way.<br />
<br />
<div class="cquote">Actually, though, hackers are still a step ahead and already planning for their next move. </div><br />
<br />
I think so, too. But can you really complain about their moves when others make it that easy for them? (Yes, you can, at last I do.)<br />
<br />
<div class="cquote">As long as hackers stay away from open source players, I am safe, I guess. <img src="/images/emo/grin.gif" alt=";)" />  </div><br />
<br />
Woa, I think it was a good idea not to use (install) any &quot;Flash&quot; over the years... :-)</description>
			<pubDate>Wed, 16 Apr 2008 19:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Doc Pain)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Safe Operating Systems</title>
			<link>http://osnews.com/thread?309944</link>
			<guid isPermaLink="true">http://osnews.com/thread?309944</guid>
			<description>Ironically, Amiga, BeOS, Syllable, SkyOS, MacOS classic and other 'non mainstream' Operating Systems which never received love from Adobe are safe when browsing a website hosting the vulnerability.  Or web browsers which do not have the flash pluggin enabled <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Wed, 16 Apr 2008 19:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (Zenja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>good reason to support open source</title>
			<link>http://osnews.com/thread?309951</link>
			<guid isPermaLink="true">http://osnews.com/thread?309951</guid>
			<description>Security problems are a good reason to consider using open source versions of software like Flash. I would like to recommend swfdec, the open source Flash engine, but it it crashes Firefox a lot and doesn't handle youtube Flash videos. Helping out in swfdec development and testing would make this more of a reality. This would benefit the Linux distros since we wouldn't have to wait from a binary from Adobe.<br />
<a href="http://swfdec.freedesktop.org/wiki/Edited" rel="nofollow">http://swfdec.freedesktop.org/wiki/Edited</a> 2008-04-16 19:57 UTC</description>
			<pubDate>Wed, 16 Apr 2008 19:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (buff)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: good reason to support open source</title>
			<link>http://osnews.com/thread?309956</link>
			<guid isPermaLink="true">http://osnews.com/thread?309956</guid>
			<description>&quot;I would like to recommend swfdec, the open source Flash engine, but it it crashes Firefox a lot and doesn't handle youtube Flash videos. Helping out in swfdec development and testing would make this more of a reality.&quot;<br />
<br />
What version of swfdec are you using?  swfdec-0.6.4 plays youtube videos fine, provided you have the appropriate gstreamer plugins installed.</description>
			<pubDate>Wed, 16 Apr 2008 20:12:00 GMT</pubDate>
			<author>donotreply@osnews.com (bpepple)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Karma..</title>
			<link>http://osnews.com/thread?309958</link>
			<guid isPermaLink="true">http://osnews.com/thread?309958</guid>
			<description>The exploits they were talking about seem to have a lot to do with the Flash AVM, which just happens to be open source.<br />
<br />
<a href="http://www.mozilla.org/projects/tamarin/" rel="nofollow">http://www.mozilla.org/projects/tamarin/</a></description>
			<pubDate>Wed, 16 Apr 2008 20:18:00 GMT</pubDate>
			<author>donotreply@osnews.com (Touvan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Karma..</title>
			<link>http://osnews.com/thread?309960</link>
			<guid isPermaLink="true">http://osnews.com/thread?309960</guid>
			<description><div class="cquote">&quot;given enough eyeballs, all bugs are shallow&quot; </div><br />
<br />
You just hope that whichever pair of eyeballs discovers the hole first belongs to one of the good guys.</description>
			<pubDate>Wed, 16 Apr 2008 20:25:00 GMT</pubDate>
			<author>donotreply@osnews.com (WorknMan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Incredible!</title>
			<link>http://osnews.com/thread?309964</link>
			<guid isPermaLink="true">http://osnews.com/thread?309964</guid>
			<description>I don't think the exploit as basic as you seem to imply.<br />
It does derive from the same programmer stupidity or ignorance as printf(char*) and buffer overflows in string operations, but while those are critical, very known, and rare in production code today, this error is still common.<br />
This is because of wrong assumptions. You will be hard pressed to find a program where a function like fopen isn't checked for error return values, but malloc is likely to be left unchecked, especially if the code was initially written as a quick hack to get something working.<br />
However, even if the malicious code is able to make an &quot;infallible&quot; function fail, there are many chances that this results at most in simply segfaulting the program. So this adds to the perceived safety of not checking a given function and makes this kind of exploit even more dangerous.</description>
			<pubDate>Wed, 16 Apr 2008 20:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (sakeniwefu)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Karma..</title>
			<link>http://osnews.com/thread?309967</link>
			<guid isPermaLink="true">http://osnews.com/thread?309967</guid>
			<description>Read Touvan's comment above, then read the article again.  You will see that this exploit required detailed knowledge of the internal workings of the VM.  If the VM had been closed source developing this exploit would have been more difficult.Edited 2008-04-16 21:07 UTC</description>
			<pubDate>Wed, 16 Apr 2008 21:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (andrewg)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: good reason to support open source</title>
			<link>http://osnews.com/thread?309972</link>
			<guid isPermaLink="true">http://osnews.com/thread?309972</guid>
			<description>You do realize that behind every one of those crashes is probably a bug that's even more exploitable than this one.</description>
			<pubDate>Wed, 16 Apr 2008 21:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (joshv)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Karma..</title>
			<link>http://osnews.com/thread?309977</link>
			<guid isPermaLink="true">http://osnews.com/thread?309977</guid>
			<description><div class="cquote">Read Touvan's comment above, then read the article again.  You will see that this exploit required detailed knowledge of the internal workings of the VM.  If the VM had been closed source developing this exploit would have been more difficult. </div><br />
<br />
Ah excellent! Then I guess that makes it seemingly less &quot;Inhuman&quot;.<br />
<br />
So, certainly this does show that eyeballs *do* review open-source code in the interest of security auditing.<br />
<br />
Now, if only the rest of Flash was OSS as well, it could possibly be patched and an update released without waiting for Adobe to fix it themselves.<br />
<br />
I have to assume part of Adobe's decision to open the ActionScript engine was to encourage others to fix the problems and submit patches back so that all can benefit.<br />
<br />
Note: I'm not necessarily an open-source zealot - but I can certainly see the benefits.</description>
			<pubDate>Wed, 16 Apr 2008 21:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (umccullough)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: good reason to support open source</title>
			<link>http://osnews.com/thread?310016</link>
			<guid isPermaLink="true">http://osnews.com/thread?310016</guid>
			<description>Yes, but the swfdec project fixes bugs as soon as possible:<br />
<br />
<a href="http://swfdec.freedesktop.org/wiki/" rel="nofollow">http://swfdec.freedesktop.org/wiki/</a><br />
&quot;2008-04-09<br />
Our first security fix release: Swfdec 0.6.4. Please update.&quot;<br />
<br />
&quot;Fixes in this release:<br />
- fix a security problem that allowed remote Flash files to read local files.<br />
- fix a rare crash in TextField.replaceText<br />
- fix a rare crash during cleanup.&quot;<br />
<br />
Very interesting.</description>
			<pubDate>Thu, 17 Apr 2008 03:06:00 GMT</pubDate>
			<author>donotreply@osnews.com (nelvana2005)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Safe Operating Systems</title>
			<link>http://osnews.com/thread?310019</link>
			<guid isPermaLink="true">http://osnews.com/thread?310019</guid>
			<description>Debian is also &quot;flash-safe&quot; if you install software only from the distribution's main repository.<br />
<br />
The reason is that Debian banned the flashplugin-nonfree from Etch (with the R3 release) and from Sarge (with the R8 release):<br />
<br />
&quot;Flashplugin-nonfree has been removed, as this is closed source and we don't get security support for it. For security reasons, we recommend to immediately remove any version of flashplugin-nonfree and any remaining files of the Adobe Flash Player.&quot;<br />
<br />
(This flash plugin is still available via backports.org, so that Debian users can still install it if they want to.)</description>
			<pubDate>Thu, 17 Apr 2008 03:23:00 GMT</pubDate>
			<author>donotreply@osnews.com (nelvana2005)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: good reason to support open source</title>
			<link>http://osnews.com/thread?310044</link>
			<guid isPermaLink="true">http://osnews.com/thread?310044</guid>
			<description><div class="cquote">I would like to recommend swfdec, the open source Flash engine, but it it crashes Firefox a lot </div><br />
<br />
Good thing those crashes arent due to bugs that could possibly be a security risk...</description>
			<pubDate>Thu, 17 Apr 2008 11:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (Soulbender)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Incredible!</title>
			<link>http://osnews.com/thread?310045</link>
			<guid isPermaLink="true">http://osnews.com/thread?310045</guid>
			<description><div class="cquote">Actually, though, hackers are still a step ahead and already planning for their next move.  </div><br />
<br />
Define &quot;step ahead&quot;. It's easier to break something than to create something.</description>
			<pubDate>Thu, 17 Apr 2008 11:13:00 GMT</pubDate>
			<author>donotreply@osnews.com (Soulbender)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Fixed</title>
			<link>http://osnews.com/thread?310048</link>
			<guid isPermaLink="true">http://osnews.com/thread?310048</guid>
			<description>This was fixed in the latest version of Flash Player - released 8 April 2008 so this is olds not news...</description>
			<pubDate>Thu, 17 Apr 2008 11:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (skila)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
