Exemplo n.º 1
0
def test_MACHO_lib_ATcommand(assertion):
    macho_lib = open(__dir__ + 'libATCommandStudioDynamic.dylib', 'rb').read()
    e = MACHO(macho_lib)
    macho_lib_hash = hashlib.md5(macho_lib).hexdigest()
    d = e.pack()
    assertion(macho_lib_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading libATCommandStudioDynamic')
    bind_s = [
        _ for _ in e.sect
        if getattr(_, 'type', None) in ('bind_', 'weak_bind_', 'lazy_bind_',
                                        'rebase_', 'export_')
    ]
    d = ('\n'.join([str(_) for s in bind_s for _ in s.info])).encode('latin1')
    assertion('8b29446352613fdb6c4a6142c7c476c3',
              hashlib.md5(d).hexdigest(),
              'dyldinfo-like output for all binding types (libATCommand...)')
    bind_s = [
        _ for _ in e.sect
        if getattr(_, 'type', None) in ('bind_', 'weak_bind_', 'lazy_bind_',
                                        'rebase_')
    ]
    d = ('\n'.join([str(_) for s in bind_s for _ in s])).encode('latin1')
    assertion('66bb196759c094c0c08d8159cf61d67f',
              hashlib.md5(d).hexdigest(),
              'dyldinfo-like output for dyld opcodes (libATCommand...)')
Exemplo n.º 2
0
    def __init__(
        self,
        filename: str,
        cert: Certificate,
        privkey: PrivateKeyInfo,
        force: bool = False,
        detach_target: Optional[str] = None,
        hardened_runtime: bool = True,
    ):
        self.filename = filename
        self.content_dir = os.path.dirname(
            os.path.dirname(os.path.abspath(filename)))
        self.cert = cert
        self.privkey = privkey
        self.force = force
        self.detach_target = detach_target
        self.hardened_runtime = hardened_runtime

        self.hash_type = 2

        self.code_signers: List[SingleCodeSigner] = []

        self.files_modified: List[str] = []

        with open(self.filename, "rb") as f:
            self.macho = MACHO(f.read(), parseSymbols=False)
Exemplo n.º 3
0
def test_MACHO_ios_decibels(assertion):
    global log_history
    macho_ios = open(__dir__ + 'Decibels', 'rb').read()
    e = MACHO(macho_ios)
    assertion([
        ('warn',
         ('Some encrypted text is not parsed with the section headers of LC_SEGMENT(__TEXT)',
          ), {}),
        ('warn',
         ('parse_dynamic_symbols() can only be used with x86 architectures, not %s',
          12), {}),
        ('warn', ('Part of the file was not parsed: %d bytes', 2499), {}),
        ('warn',
         ('Some encrypted text is not parsed with the section headers of LC_SEGMENT(__TEXT)',
          ), {}),
        ('warn',
         ('parse_dynamic_symbols() can only be used with x86 architectures, not %s',
          12), {}),
        ('warn', ('Part of the file was not parsed: %d bytes', 2495), {})
    ], log_history, 'Parsing Decibels iOS app (logs)')
    log_history = []
    macho_ios_hash = hashlib.md5(macho_ios).hexdigest()
    d = e.pack()
    assertion(macho_ios_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading iOS application Decibels')
    d = ('\n'.join([_ for a in e.arch for l in a.load
                    for _ in l.otool()])).encode('latin1')
    assertion('0d3281e546fd6e41306dbf38e5fbd0b6',
              hashlib.md5(d).hexdigest(),
              'Otool-like output for LC in iOS application')
Exemplo n.º 4
0
def test_MACHO_one_loader(assertion):
    global log_history
    f = struct.pack("<IIIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0,
                    1, 12, 0, macho.LC_PREBIND_CKSUM, 12, 0)
    e = MACHO(f)
    d = e.pack()
    assertion(f, d, 'Parsing data, with one LC_PREBIND_CKSU loader')
Exemplo n.º 5
0
def test_MACHO_bin_sh(assertion):
    macho_bin = open(__dir__ + 'sh', 'rb').read()
    e = MACHO(macho_bin)
    macho_bin_hash = hashlib.md5(macho_bin).hexdigest()
    d = e.pack()
    assertion(macho_bin_hash,
              hashlib.md5(d).hexdigest(), 'Packing after reading /bin/sh')
Exemplo n.º 6
0
def test_MACHO_macho64_exe(assertion):
    macho_64 = open(__dir__ + 'macho_64.out', 'rb').read()
    macho_64_hash = hashlib.md5(macho_64).hexdigest()
    e = MACHO(macho_64)
    d = e.pack()
    assertion(macho_64_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading 64-bit Mach-O executable')
Exemplo n.º 7
0
def test_MACHO_empty_loader(assertion):
    f = struct.pack("<IIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0, 1,
                    8, 0, 0, 8)
    e = MACHO(f)
    assertion(1, len(e.load),
              'Parsing data, with one empty loader (lhlist length)')
    d = e.pack()
    assertion(f, d, 'Parsing data, with one empty loader (pack)')
Exemplo n.º 8
0
def test_MACHO_extend_segment(assertion):
    macho_64 = open(__dir__ + 'macho_64.out', 'rb').read()
    e = MACHO(macho_64)
    for l in e.load:
        if getattr(l, 'segname', None) == "__LINKEDIT": break
    e.load.extendSegment(l, 0x1000)
    d = e.pack()
    assertion('405962fd8a4fe751c0ea4fe1a9d02c1e',
              hashlib.md5(d).hexdigest(), 'Extend segment')
    assertion([], log_history,
              'No non-regression test created unwanted log messages')
Exemplo n.º 9
0
def test_MACHO_loader_lc_build_version(assertion):
    global log_history
    macho_lcbuild = open(__dir__ + 'macho_lcbuild.out', 'rb').read()
    macho_lcbuild_hash = hashlib.md5(macho_lcbuild).hexdigest()
    e = MACHO(macho_lcbuild)
    d = e.pack()
    assertion(macho_lcbuild_hash,
              hashlib.md5(d).hexdigest(),
              "Packing after reading executable with LC_BUILD_VERSION")
    d = ('\n'.join([_ for l in e.load for _ in l.otool()])).encode('latin1')
    assertion('6dd985753ccf51b0d5c7470126d43a6c',
              hashlib.md5(d).hexdigest(),
              'Otool-like output for LC in executable with LC_BUILD_VERSION')
Exemplo n.º 10
0
def test_MACHO_unixthread_64(assertion):
    macho_64 = open(__dir__ + 'macho_64.out', 'rb').read()
    e = MACHO(macho_64)
    changeMainToUnixThread(e)
    d = e.pack()
    assertion('a77d64572857d5414ae414852b930370',
              hashlib.md5(d).hexdigest(),
              'Migrating from LC_MAIN to LC_UNIXTHREAD (64 bits)')
    insert_start_function(e)
    d = e.pack()
    assertion(
        '16b63a2d3cdb3549fe9870b805eb80f5',
        hashlib.md5(d).hexdigest(),
        'Migrating from LC_MAIN to LC_UNIXTHREAD with new segment (64 bits)')
Exemplo n.º 11
0
def test_MACHO_macho32_obj(assertion):
    global log_history
    # Parsing and modifying files
    macho_32 = open(__dir__ + 'macho_32.o', 'rb').read()
    macho_32_hash = hashlib.md5(macho_32).hexdigest()
    e = MACHO(macho_32)
    d = e.pack()
    assertion(macho_32_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading 32-bit Mach-O object')
    assertion(e.entrypoint, -1, 'No entrypoint in a Mach-O object')
    assertion([('error', ('Not a unique loader with entrypoint: []', ), {})],
              log_history, 'No entrypoint in a Mach-O object (logs)')
    assertion(len(e.symbols), 3, 'Number of symbols in a Mach-O object')
    d = ("\n".join([_.otool() for _ in e.symbols])).encode('latin1')
    assertion('9543b68138927d012139e526f159846c',
              hashlib.md5(d).hexdigest(), 'Display symbols')
    assertion(
        e.symbols['_printf'].otool(),
        '_printf                             NO_SECT         UX   0x00000000 0000',
        'Find symbol by name')
    assertion('SymbolNotFound', e.symbols[10].__class__.__name__,
              'Find symbol by invalid index')
    e.symbols[0].sectionindex = 5
    assertion(
        e.symbols[0].otool(),
        '_a                                  INVALID(5)      SX   0x00000000 0000',
        'Display symbol with invalid section')
    e.symbols[0].sectionindex = 0xff
    assertion(
        e.symbols[0].otool(),
        '_a                                  INVALID(255)    SX   0x00000000 0000',
        'Display symbol with too big section index')
    log_history = []
    e.entrypoint = 0
    assertion([('error', ('Not a unique loader with entrypoint: []', ), {})],
              log_history, 'Cannot set entrypoint in a Mach-O object (logs)')
    log_history = []
    for s in e.sect.sect:
        if not hasattr(s, 'reloclist'): continue
        d = s.reloclist[0].pack()
        assertion('a8f95e95126c45ff26d5c838300443bc',
                  hashlib.md5(d).hexdigest(),
                  'Not scattered relocation in a 32-bit Mach-O object')
        d = s.reloclist[2].pack()
        assertion('4f66fe3447267f2bf90da8108ef10ba6',
                  hashlib.md5(d).hexdigest(),
                  'Scattered relocation in a 32-bit Mach-O object')
        break
Exemplo n.º 12
0
def test_MACHO_lib_tls(assertion):
    macho_lib = open(__dir__ + 'libcoretls.dylib', 'rb').read()
    e = MACHO(macho_lib)
    macho_lib_hash = hashlib.md5(macho_lib).hexdigest()
    d = e.pack()
    assertion(macho_lib_hash,
              hashlib.md5(d).hexdigest(), 'Packing after reading libcoretls')
    bind_s = [
        _ for a in e.arch for _ in a.sect
        if getattr(_, 'type', None) in ('rebase_', 'export_')
    ]
    d = ('\n'.join([str(_) for s in bind_s for _ in s.info])).encode('latin1')
    assertion('d7983c780f70e8c81d277ee0f7f8a27d',
              hashlib.md5(d).hexdigest(),
              'dyldinfo-like output for rebase and export (libcoretls)')
Exemplo n.º 13
0
def dump_mach_o_signature(filename):
    bundle, filepath = get_bundle_exec(filename)
    with open(filepath, "rb") as f:
        macho = MACHO(f.read(), parseSymbols=False)

    for header in get_macho_list(macho):
        _dump_single(filepath, header)
Exemplo n.º 14
0
def test_MACHO_lib_dns(assertion):
    global log_history
    macho_lib = open(__dir__ + 'libdns_services.dylib', 'rb').read()
    e = MACHO(macho_lib)
    assertion(e.entrypoint, -1, 'No entrypoint in a Mach-O library')
    assertion([('error', ('Not a unique loader with entrypoint: []', ), {})],
              log_history, 'No entrypoint in a Mach-O library (logs)')
    log_history = []
    macho_lib_hash = hashlib.md5(macho_lib).hexdigest()
    d = e.pack()
    assertion(macho_lib_hash,
              hashlib.md5(d).hexdigest(), 'Packing after reading DNS library')
    d = ('\n'.join([_ for l in e.load for _ in l.otool()])).encode('latin1')
    assertion('2d6194feedf82da26124d3128473a949',
              hashlib.md5(d).hexdigest(),
              'Otool-like output including LC_SOURCE_VERSION')
Exemplo n.º 15
0
def test_MACHO_minimal(assertion):
    global log_history
    # Simple tests of object creation
    e = MACHO(struct.pack("<I", macho.MH_MAGIC))
    assertion([('warn', (
        'parse_dynamic_symbols() can only be used with x86 architectures, not %s',
        0), {})], log_history,
              'Parsing a minimal data, with Mach-O magic number only (logs)')
    log_history = []
    assertion(e.entrypoint, -1, 'No entrypoint in a truncated Mach-O header')
    assertion([('error', ('Not a unique loader with entrypoint: []', ), {})],
              log_history, 'No entrypoint in a truncated Mach-O header (logs)')
    log_history = []
    d = e.pack()
    assertion('37b830a1776346543c72ff53fbbe2b4a',
              hashlib.md5(d).hexdigest(),
              'Parsing a minimal data, with Mach-O magic number only')
Exemplo n.º 16
0
def test_MACHO_unixthread_32(assertion):
    # The function changeMainToUnixThread migrates a Mach-O binary for
    # recent MacOSX (using a LC_MAIN loader) to a Mac-O binary for older
    # versions of MacOSX (10.7 and older, using a LC_UNIXTHREAD loader).
    macho_32 = open(__dir__ + 'macho_32.out', 'rb').read()
    e = MACHO(macho_32)
    changeMainToUnixThread(e)
    d = e.pack()
    assertion('1aa73a50d1b941c560f08c20926f9a05',
              hashlib.md5(d).hexdigest(),
              'Migrating from LC_MAIN to LC_UNIXTHREAD (32 bits)')
    insert_start_function(e)
    d = e.pack()
    assertion(
        '14e8007a3b5b5070c56ea2a43b6b888e',
        hashlib.md5(d).hexdigest(),
        'Migrating from LC_MAIN to LC_UNIXTHREAD with new segment (32 bits)')
Exemplo n.º 17
0
def test_MACHO_obj_telephony(assertion):
    global log_history
    macho_linkopt = open(__dir__ + 'TelephonyUtil.o', 'rb').read()
    macho_linkopt_hash = hashlib.md5(macho_linkopt).hexdigest()
    e = MACHO(macho_linkopt)
    assertion([('warn', ('Part of the file was not parsed: %d bytes', 6), {})],
              log_history, 'Parsing TelephonyUtil.o (logs)')
    log_history = []
    d = e.pack()
    assertion(
        macho_linkopt_hash,
        hashlib.md5(d).hexdigest(),
        "Packing after reading object file with LC_LINKER_OPTION, 'interval' option is needed because there is some nop padding at the end of __TEXT,__text"
    )
    d = ('\n'.join([_ for l in e.load for _ in l.otool()])).encode('latin1')
    assertion('984bf38084c14e435f30eebe36944b47',
              hashlib.md5(d).hexdigest(),
              'Otool-like output for LC in object file with LC_LINKER_OPTION')
Exemplo n.º 18
0
def test_MACHO_lib_print(assertion):
    global log_history
    macho_32be = open(__dir__ + 'libPrintServiceQuota.1.dylib', 'rb').read()
    e = MACHO(macho_32be)
    assertion([('warn', (
        'parse_dynamic_symbols() can only be used with x86 architectures, not %s',
        18), {})], log_history, 'Parsing libPrintServiceQuota (logs)')
    log_history = []
    macho_32be_hash = hashlib.md5(macho_32be).hexdigest()
    d = e.pack()
    assertion(macho_32be_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading 32-bit big-endian Mach-O shared library')
    d = ('\n'.join([_ for l in e.load for _ in l.otool()])).encode('latin1')
    assertion(
        'cabaf4f4368c094bbb0c09f278510006',
        hashlib.md5(d).hexdigest(),
        'Otool-like output for LC in 32-bit big-endian Mach-O shared library')
Exemplo n.º 19
0
def test_MACHO_exe_SH3D(assertion):
    global log_history
    macho_app = open(__dir__ + 'SweetHome3D', 'rb').read()
    e = MACHO(macho_app)
    assertion([('warn', (
        'parse_dynamic_symbols() can only be used with x86 architectures, not %s',
        18), {})], log_history, 'Parsing SweetHome3D app (logs)')
    log_history = []
    macho_app_hash = hashlib.md5(macho_app).hexdigest()
    d = e.pack()
    assertion(macho_app_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading SweetHome3D app')
    d = ('\n'.join([_ for a in e.arch for l in a.load
                    for _ in l.otool()])).encode('latin1')
    assertion('4bf0088471bd2161baf4a42dbb09dc5b',
              hashlib.md5(d).hexdigest(),
              'Otool-like output including ppc, i386 & x86_64register state')
Exemplo n.º 20
0
def test_MACHO_app_MTR(assertion):
    global log_history
    macho_app = open(__dir__ + 'MacTheRipper', 'rb').read()
    e = MACHO(macho_app)
    assertion([('warn', (
        'parse_dynamic_symbols() can only be used with x86 architectures, not %s',
        18), {})], log_history, 'Parsing MacTheRipper app (logs)')
    log_history = []
    macho_app_hash = hashlib.md5(macho_app).hexdigest()
    d = e.pack()
    assertion(macho_app_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading MacTheRipper app')
    assertion(e.entrypoint, 0xa760, 'Entrypoint in MacTheRipper app')
    d = ('\n'.join([_ for l in e.load for _ in l.otool()])).encode('latin1')
    assertion('b10cd006c10906db3329e0dccd0babbe',
              hashlib.md5(d).hexdigest(),
              'Otool-like output including LC_PREBOUND_DYLIB')
Exemplo n.º 21
0
def test_MACHO_app_OSXII(assertion):
    global log_history
    macho_app = open(__dir__ + 'OSXII', 'rb').read()
    e = MACHO(macho_app)
    assertion([('warn', (
        'parse_dynamic_symbols() can only be used with x86 architectures, not %s',
        18), {})], log_history, 'Parsing OSXII app (logs)')
    log_history = []
    macho_app_hash = hashlib.md5(macho_app).hexdigest()
    d = e.pack()
    assertion(macho_app_hash,
              hashlib.md5(d).hexdigest(), 'Packing after reading OSXII app')
    d = ('\n'.join(
        [_ for a in e.arch for l in a.load
         for _ in l.otool(llvm=7)])).encode('latin1')
    assertion('8b926db115b4cae5146774ef589674be',
              hashlib.md5(d).hexdigest(),
              'Otool-like output including ppc & i386 register state')
Exemplo n.º 22
0
def test_MACHO_toolarge_cmds(assertion):
    global log_history
    f = struct.pack("<IIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0, 1,
                    0xffff, 0, 0, 8)
    e = MACHO(f)
    assertion([('error', ('LoadCommands longer than file length', ), {}),
               ('warn', ('Part of the file was not parsed: %d bytes', 1), {})],
              log_history,
              'Parsing a invalid output with big sizeofcmds (logs)')
    log_history = []
Exemplo n.º 23
0
def test_MACHO_additional_padding(assertion):
    global log_history
    f = struct.pack("<IIIIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0,
                    1, 16, 0, macho.LC_PREBIND_CKSUM, 12, 0, 0)
    e = MACHO(f)
    assertion([('warn',
                ('LoadCommands have %d bytes of additional padding', 4), {})],
              log_history,
              'Parsing invalid data, with padding after load commands (logs)')
    log_history = []
Exemplo n.º 24
0
def verify_mach_o_signature(filename: str):
    bundle, filepath = get_bundle_exec(filename)
    with open(filepath, "rb") as f:
        m = MACHO(f.read(), parseSymbols=False)

    # There may be multiple headers because it might be a universal binary
    # In that case, each architecture is essentially just another MachO binary inside of the
    # universal binary. So we verify the signature for each one.
    for header in get_macho_list(m):
        _verify_single(filepath, header)
Exemplo n.º 25
0
def test_MACHO_one_loader_padding(assertion):
    global log_history
    f = struct.pack("<IIIIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0,
                    1, 16, 0, macho.LC_PREBIND_CKSUM, 16, 0, 0)
    e = MACHO(f)
    assertion(
        [('warn', ('%s has %d bytes of additional padding',
                   'prebind_cksum_command', 4), {})], log_history,
        'Parsing invalid data, with one LC_PREBIND_CKSU loader with padding (logs)'
    )
    log_history = []
Exemplo n.º 26
0
def test_MACHO_zero_cmds(assertion):
    global log_history
    f = struct.pack("<IIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0, 1,
                    0, 0, 0, 8)
    e = MACHO(f)
    assertion([('error',
                ('Too many load command: %d commands cannot fit in %d bytes',
                 1, 0), {}),
               ('warn', ('Part of the file was not parsed: %d bytes', 1), {})],
              log_history,
              'Parsing a invalid output with zero sizeofcmds (logs)')
    log_history = []
Exemplo n.º 27
0
def test_MACHO_one_loader_too_short(assertion):
    global log_history
    f = struct.pack("<IIIIIIIIIII", macho.MH_MAGIC, macho.CPU_TYPE_I386, 0, 0,
                    1, 8, 0, macho.LC_PREBIND_CKSUM, 8, 0, 0)
    e = MACHO(f)
    assertion(
        [('warn',
          ('%s is %d bytes too short', 'prebind_cksum_command', 4), {})],
        log_history,
        'Parsing invalid data, with one LC_PREBIND_CKSU loader, too short (logs)'
    )
    log_history = []
Exemplo n.º 28
0
def test_MACHO_fat(assertion):
    global log_history
    macho_fat = open(__dir__ + 'macho_fat.out', 'rb').read()
    macho_fat_hash = hashlib.md5(macho_fat).hexdigest()
    e = MACHO(macho_fat)
    d = e.pack()
    assertion(macho_fat_hash,
              hashlib.md5(d).hexdigest(), 'Packing after reading fat Mach-O')
    assertion(e.virt.max_addr(), -1,
              'No unique maximum address in a Mach-O fat')
    assertion([('error', ('Not a unique memory mapping in Mach-O fat', ), {})],
              log_history, 'No unique maximum address in a Mach-O fat (logs)')
    log_history = []
    assertion(e.entrypoint, -1, 'Many entrypoints in a fat Mach-O')
    assertion([('error', ('Not a unique entrypoint in Mach-O fat', ), {})],
              log_history, 'Many entrypoints in a fat Mach-O (logs)')
    log_history = []
    e.entrypoint = 0
    assertion([('error', ('Not a unique entrypoint in Mach-O fat', ), {})],
              log_history,
              'Cannot set entrypoint directly in a fat Mach-O (logs)')
    log_history = []
Exemplo n.º 29
0
def _get_code_sig(b: MACHO):
    # Get the offset of the signature from the header
    # It is under the LC_CODE_SIGNATURE command
    sigmeta = [cmd for cmd in b.load.lhlist if cmd.cmd == LC_CODE_SIGNATURE]
    if len(sigmeta) == 0:
        raise Exception("No embedded code signature sections")
    elif len(sigmeta) > 1:
        raise Exception("Multiple embedded code signature sections")
    sig_lc = sigmeta[0]
    sig_end = sig_lc.dataoff + sig_lc.datasize

    sig_data = b.pack()[sig_lc.dataoff:sig_end]
    return BytesIO(sig_data)
Exemplo n.º 30
0
def test_MACHO_macho32_exe(assertion):
    global log_history
    macho_32 = open(__dir__ + 'macho_32.out', 'rb').read()
    macho_32_hash = hashlib.md5(macho_32).hexdigest()
    e = MACHO(macho_32)
    d = e.pack()
    assertion(macho_32_hash,
              hashlib.md5(d).hexdigest(),
              'Packing after reading 32-bit Mach-O executable')
    assertion(e.entrypoint, 8000, 'entrypoint in a 32-bit Mach-O executable')
    assertion(e.virt.max_addr(), 16384,
              'Maximum address in a 32-bit Mach-O executable')
    e.entrypoint = 8010
    assertion(e.entrypoint, 8010,
              'Changing entrypoint in a 32-bit Mach-O executable')
    e.entrypoint = 9000
    assertion(e.entrypoint, 8010,
              'Changing entrypoint with an invalid address')
    assertion([('error', ('Address %#x not mapped in memory', 9000), {})],
              log_history,
              'Changing entrypoint with an invalid address (logs)')
    log_history = []