Created
January 29, 2021 07:41
-
-
Save marcan/e1808a2f4a5e1fc562357550a770afb1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
from construct import * | |
LoadCmdType = "LoadCmdType" / Enum(Int32ul, | |
UNIXTHREAD = 0x05, | |
SEGMENT_64 = 0x19, | |
UUID = 0x1b, | |
BUILD_VERSION = 0x32, | |
DYLD_CHAINED_FIXUPS = 0x80000034, | |
FILESET_ENTRY = 0x80000035, | |
) | |
ArmThreadStateFlavor = "ThreadStateFlavor" / Enum(Int32ul, | |
THREAD64 = 6, | |
) | |
MachHeader = Struct( | |
"magic" / Hex(Int32ul), | |
"cputype" / Hex(Int32ul), | |
"cpusubtype" / Hex(Int32ul), | |
"filetype" / Hex(Int32ul), | |
"ncmds" / Hex(Int32ul), | |
"sizeofcmds" / Hex(Int32ul), | |
"flags" / Hex(Int32ul), | |
"reserved" / Hex(Int32ul), | |
) | |
VmProt = FlagsEnum(Int32sl, | |
PROT_READ = 0x01, | |
PROT_WRITE = 0x02, | |
PROT_EXECUTE = 0x04, | |
) | |
CmdUnixThread = GreedyRange(Struct( | |
"flavor" / ArmThreadStateFlavor, | |
"data" / Prefixed(ExprAdapter(Int32ul, obj_ * 4, obj_ / 4), Switch(this.flavor, { | |
ArmThreadStateFlavor.THREAD64: Struct( | |
"x" / Array(29, Hex(Int64ul)), | |
"fp" / Hex(Int64ul), | |
"lr" / Hex(Int64ul), | |
"sp" / Hex(Int64ul), | |
"pc" / Hex(Int64ul), | |
"cpsr" / Hex(Int32ul), | |
"flags" / Hex(Int32ul), | |
) | |
})), | |
)) | |
CmdSegment64 = Struct( | |
"segname" / PaddedString(16, "ascii"), | |
"vmaddr" / Hex(Int64ul), | |
"vmsize" / Hex(Int64ul), | |
"fileoff" / Hex(Int64ul), | |
"filesize" / Hex(Int64ul), | |
"maxprot" / VmProt, | |
"initprot" / VmProt, | |
"nsects" / Int32ul, | |
"flags" / Hex(Int32ul), | |
"sections" / GreedyRange(Struct( | |
"sectname" / PaddedString(16, "ascii"), | |
"segname" / PaddedString(16, "ascii"), | |
"addr" / Hex(Int64ul), | |
"size" / Hex(Int64ul), | |
"offset" / Hex(Int32ul), | |
"align" / Hex(Int32ul), | |
"reloff" / Hex(Int32ul), | |
"nreloc" / Hex(Int32ul), | |
"flags" / Hex(Int32ul), | |
"reserved1" / Hex(Int32ul), | |
"reserved2" / Hex(Int32ul), | |
"reserved3" / Hex(Int32ul), | |
)), | |
) | |
Cmd = Struct( | |
"cmd" / Hex(LoadCmdType), | |
"args" / Prefixed(ExprAdapter(Int32ul, obj_ - 8, obj_ + 8), Switch(this.cmd, { | |
LoadCmdType.UNIXTHREAD: CmdUnixThread, | |
LoadCmdType.SEGMENT_64: CmdSegment64, | |
LoadCmdType.UUID: Hex(Bytes(16)), | |
}, default=GreedyBytes)), | |
) | |
MachO = Struct( | |
"header" / MachHeader, | |
"cmds" / Array(this.header.ncmds, Cmd), | |
"extradata" / GreedyBytes, | |
) | |
d = open(sys.argv[1], "rb").read() | |
obj = MachO.parse(d) | |
print(obj) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment