Mac: Stash the verified ASLR shift and improve logging

This commit is contained in:
Mike Auty
2020-07-28 17:00:20 +01:00
committed by ikelos
parent f6a1b28424
commit a4b50d183d
2 changed files with 14 additions and 19 deletions
+10 -16
View File
@@ -44,7 +44,6 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
for banner_offset, banner in layer.scan(context = context, scanner = mss,
progress_callback = progress_callback):
dtb = None
vollog.debug("Identified banner: {}".format(repr(banner)))
symbol_files = mac_banners.get(banner, None)
if symbol_files:
@@ -63,7 +62,7 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
progress_callback = progress_callback)
if kaslr_shift == 0:
vollog.debug("Invalid kalsr_shift found at offset: {}".format(banner_offset))
vollog.log(constants.LOGLEVEL_VVV, "Invalid kalsr_shift found at offset: {}".format(banner_offset))
continue
bootpml4_addr = cls.virtual_to_physical_address(table.get_symbol("BootPML4").address + kaslr_shift)
@@ -84,9 +83,8 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
tmp_dtb = idlepml4_addr
vollog.debug("POSSIBLE DTB: 0x{:0x}".format(tmp_dtb))
if tmp_dtb % 4096:
vollog.debug("skipping non-page aligned DTB: 0x{:0x}".format(tmp_dtb))
vollog.log(constants.LOGLEVEL_VVV, "Skipping non-page aligned DTB: 0x{:0x}".format(tmp_dtb))
continue
dtb = tmp_dtb
@@ -98,9 +96,13 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
context.config[join(config_path, "page_map_offset")] = dtb
context.config[join(config_path, MacSymbolFinder.banner_config_key)] = str(banner, 'latin-1')
new_layer = intel.Intel32e(context, config_path = config_path, name = new_layer_name)
new_layer = intel.Intel32e(context,
config_path = config_path,
name = new_layer_name,
metadata = {'kaslr_value': kaslr_shift})
if new_layer and dtb:
vollog.debug("Identified banner: {}".format(repr(banner)))
vollog.debug("DTB was found at: 0x{:0x}".format(dtb))
return new_layer
return None
@@ -138,14 +140,6 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
tmp_aslr_shift = offset - cls.virtual_to_physical_address(version_json_address)
a = cls.virtual_to_physical_address(version_json_address)
b = offset
c = version_json_address
vollog.debug("json {:x} | v2p {:x} | offset {:x} | tmp_aslr {:x}".format(c, a, b, tmp_aslr_shift))
x = context.layers[layer_name].read(a + tmp_aslr_shift, 64)
vollog.debug("x version is {}".format(x))
major_string = context.layers[layer_name].read(version_major_phys_offset + tmp_aslr_shift, 4)
major = struct.unpack("<I", major_string)[0]
@@ -159,12 +153,12 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
continue
if tmp_aslr_shift & 0xfff != 0:
continue
continue
aslr_shift = tmp_aslr_shift & 0xffffffff
break
vollog.debug("Mac ASLR shift value determined: {:0x}".format(aslr_shift))
vollog.log(constants.LOGLEVEL_VVVV, "Mac find_aslr returned: {:0x}".format(aslr_shift))
return aslr_shift
@@ -178,7 +172,7 @@ class MacIntelStacker(interfaces.automagic.StackerLayerInterface):
addr = addr - 0xff8000000000
return addr
@classmethod
def _scan_generator(cls, context, layer_name, progress_callback):
darwin_signature = rb"Darwin Kernel Version \d{1,3}\.\d{1,3}\.\d{1,3}: [^\x00]+\x00"
@@ -113,7 +113,8 @@ class SymbolFinder(interfaces.automagic.AutomagicInterface):
# so we can create the symbols which are used in finding the aslr_shift anyway
if not context.config.get(path_join(config_path, requirement.name, "symbol_shift"), None):
# Don't overwrite it if it's already been set, it will be manually refound if not present
context.config[path_join(config_path, requirement.name, "symbol_shift")] = 0
prefound_kaslr_value = context.layers[layer_name].metadata.get('kaslr_value', 0)
context.config[path_join(config_path, requirement.name, "symbol_shift")] = prefound_kaslr_value
# Construct the appropriate symbol table
requirement.construct(context, config_path)
@@ -125,9 +126,9 @@ class SymbolFinder(interfaces.automagic.AutomagicInterface):
raise exceptions.SymbolSpaceError("Symbol table could not be constructed")
if not isinstance(layer, layers.intel.Intel):
raise TypeError("Layer name {} is not an intel space")
vollog.debug("running find_aslr from symbol_finder")
vollog.debug("running find_aslr from symbol_finder")
aslr_shift = self.find_aslr(context, unmasked_symbol_table_name, layer.config['memory_layer'])
vollog.debug("setting find_aslr from symbol_finder: {:x}".format(aslr_shift))
vollog.debug("setting find_aslr from symbol_finder: {:x}".format(aslr_shift))
context.config[path_join(config_path, requirement.name, "symbol_shift")] = aslr_shift
context.symbol_space.clear_symbol_cache(unmasked_symbol_table_name)