-
Notifications
You must be signed in to change notification settings - Fork 3
/
machofile-cli.py
796 lines (685 loc) · 24.7 KB
/
machofile-cli.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
#!/usr/bin/python
"""machofile, Mach-O file reader module
The Mach-O file format is the executable file format used
by macOS, iOS, watchOS, and tvOS.
Inspired by pefile, this module aims to provide a similar
capability but for Mach-O binaries instead. The basic structures
and constant are taken from the Mach-O header file (loader.h)
from the xnu kernel source code. Reference material and documentation
used to gain the file format knowledge are listed below.
Reference/Documentation links:
- https://opensource.apple.com/source/xnu/xnu-2050.18.24/EXTERNAL_HEADERS/mach-o/loader.h
- https://github.com/apple-oss-distributions/lldb/blob/10de1840defe0dff10b42b9c56971dbc17c1f18c/llvm/include/llvm/Support/MachO.h
- https://iphonedev.wiki/Mach-O_File_Format
- https://lowlevelbits.org/parsing-mach-o-files/
- https://github.com/aidansteele/osx-abi-macho-file-format-reference
- https://lief-project.github.io/doc/latest/tutorials/11_macho_modification.html
- https://github.com/VirusTotal/yara/blob/master/libyara/include/yara/macho.h
Copyright (c) 2023 Pasquale Stirparo <[email protected]>
"""
# struct mach_header {
# uint32_t magic;
# cpu_type_t cputype;
# cpu_subtype_t cpusubtype;
# uint32_t filetype;
# uint32_t ncmds;
# uint32_t sizeofcmds;
# uint32_t flags;
# uint32_t reserved; // This is the additional field for 64-bit
# };
# struct load_command {
# uint32_t cmd;
# uint32_t cmdsize;
# };
# struct segment_command {
# uint32_t cmd;
# uint32_t cmdsize;
# struct segment_command { // for 32-bit architectures
# char segname[16];
# uint32_t vmaddr;
# uint32_t vmsize;
# uint32_t fileoff;
# uint32_t filesize;
# vm_prot_t maxprot;
# vm_prot_t initprot;
# uint32_t nsects;
# uint32_t flags;
# } segment_command;
# };
# struct dylib_command {
# uint32_t cmd;
# uint32_t cmdsize;
# struct dylib {
# union lc_str name;
# uint32_t timestamp;
# uint32_t current_version;
# uint32_t compatibility_version;
# } dylib;
# };
__author__ = "Pasquale Stirparo"
__version__ = "2023.11.04 alpha"
__contact__ = "[email protected]"
import argparse
from hashlib import sha256
from hashlib import md5
from hashlib import sha1
import struct
import os
import io
import magic
def two_way_dict(pairs):
return dict([(e[1], e[0]) for e in pairs] + pairs)
# Mach-O header formats
MACHO_HEADER_FORMAT_32 = "IiiIIII"
MACHO_HEADER_FORMAT_64 = "IiiIIIII"
LOAD_COMMAND_FORMAT = "II"
SEGMENT_COMMAND_FORMAT_32 = "16sIIIIIIII"
SEGMENT_COMMAND_FORMAT_64 = "16sQQQQIIII"
DYLIB_COMMAND_FORMAT = "IIII"
STRUCT_SIZEOF_TYPES = {
"x": 1,
"c": 1,
"b": 1,
"B": 1,
"h": 2,
"H": 2,
"i": 4,
"I": 4,
"l": 4,
"L": 4,
"f": 4,
"q": 8,
"Q": 8,
"d": 8,
"s": 1,
}
# Mach-O constants and mappings
MH_MAGIC = 0xFEEDFACE # Big endian, 32 bit Mach-O
MH_CIGAM = 0xCEFAEDFE # Little endian, 32 bit Mach-O
MH_MAGIC_64 = 0xFEEDFACF # Big endian, 64 bit Mach-O
MH_CIGAM_64 = 0xCFFAEDFE # Little endian, 64 bit Mach-O
MAGIC_MAP = {
MH_MAGIC: "MH_MAGIC (32-bit)",
MH_CIGAM: "MH_CIGAM (32-bit reversed)",
MH_MAGIC_64: "MH_MAGIC_64 (64-bit)",
MH_CIGAM_64: "MH_CIGAM_64 (64-bit reversed)",
}
# Mach-O universal binary magic constants
FAT_MAGIC = 0xCAFEBABE
FAT_CIGAM = 0xBEBAFECA
FAT_MAGIC_64 = 0xCAFEBABF
FAT_CIGAM_64 = 0xBFBAFECA
FAT_MAGIC_MAP = {
FAT_MAGIC: "FAT_MAGIC (32-bit)",
FAT_CIGAM: "FAT_CIGAM (32-bit reversed)",
FAT_MAGIC_64: "FAT_MAGIC_64 (64-bit)",
FAT_CIGAM_64: "FAT_CIGAM_64 (64-bit reversed)",
}
# CPU masks, types and mappings
CPU_ARCH_MASK = 0xFF000000 # Mask for architecture bits
CPU_ARCH_ABI64 = 0x01000000 # 64-bit ABI mask (for cputype)
CPU_SUBTYPE_LIB64 = 0x80000000 # 64-bit library mask (for cpusubtype)
# Mach-O CPU Types
CPU_TYPE_X86 = 0x7
CPU_TYPE_X86_64 = 0x1000007
CPU_TYPE_ARM = 0xC
CPU_TYPE_ARM64 = 0x100000C
CPU_TYPE_PPC = 0x12
CPU_TYPE_PPC64 = 0x10000012
CPU_TYPE_SPARC = 0x14
CPU_TYPE_I860 = 0x15
CPU_TYPE_I386 = 0x7
CPU_TYPE_MC680X0 = 0x6
CPU_TYPE_MC98000 = 0xA
CPU_TYPE_HPPA = 0xB
CPU_TYPE_MC88000 = 0xD
CPU_TYPE_ALPHA = 0x10
CPU_TYPE_MAP = {
CPU_TYPE_X86: "x86",
CPU_TYPE_X86_64: "x86_64",
CPU_TYPE_ARM: "ARM",
CPU_TYPE_ARM64: "ARM 64-bit",
CPU_TYPE_PPC: "PowerPC",
CPU_TYPE_PPC64: "PowerPC 64-bit",
CPU_TYPE_SPARC: "SPARC",
CPU_TYPE_I860: "Intel i860",
CPU_TYPE_I386: "Intel i386",
CPU_TYPE_MC680X0: "Motorola 68000",
CPU_TYPE_MC98000: "Motorola PowerPC",
CPU_TYPE_HPPA: "HP PA-RISC",
CPU_TYPE_MC88000: "Motorola 88000",
CPU_TYPE_ALPHA: "DEC Alpha",
}
CPU_SUB_TYPE_MAP = {
3: "x86_ALL",
4: "x86_ARCH1",
8: "x86_64_ALL",
9: "x86_64_H",
10: "x86_64_LIB64",
}
# list comprehensive but still incomplete. tbd.
cpu_subtypes = [
("CPU_SUBTYPE_386", 0x3),
("CPU_SUBTYPE_486", 0x4),
("CPU_SUBTYPE_486SX", 0x84),
("CPU_SUBTYPE_586", 0x5),
("CPU_SUBTYPE_PENT", 0x5),
("CPU_SUBTYPE_PENTPRO", 0x16),
("CPU_SUBTYPE_PENTII_M3", 0x36),
("CPU_SUBTYPE_PENTII_M5", 0x56),
("CPU_SUBTYPE_CELERON", 0x67),
("CPU_SUBTYPE_CELERON_MOBILE", 0x77),
("CPU_SUBTYPE_PENTIUM_3", 0x8),
("CPU_SUBTYPE_PENTIUM_3_M", 0x18),
("CPU_SUBTYPE_PENTIUM_3_XEON", 0x28),
("CPU_SUBTYPE_PENTIUM_M", 0x9),
("CPU_SUBTYPE_PENTIUM_4", 0xA),
("CPU_SUBTYPE_PENTIUM_4_M", 0x1A),
("CPU_SUBTYPE_ITANIUM", 0xB),
("CPU_SUBTYPE_ITANIUM_2", 0x1B),
("CPU_SUBTYPE_XEON", 0xC),
("CPU_SUBTYPE_XEON_MP", 0x1C),
("CPU_SUBTYPE_ARM_ALL", 0x0),
("CPU_SUBTYPE_ARM_V4T", 0x5),
("CPU_SUBTYPE_ARM_V6", 0x6),
("CPU_SUBTYPE_ARM_V5", 0x7),
("CPU_SUBTYPE_ARM_V5TEJ", 0x7),
("CPU_SUBTYPE_ARM_XSCALE", 0x8),
("CPU_SUBTYPE_ARM_V7", 0x9),
("CPU_SUBTYPE_ARM_V7F", 0xA),
("CPU_SUBTYPE_ARM_V7S", 0xB),
("CPU_SUBTYPE_ARM_V7K", 0xC),
("CPU_SUBTYPE_ARM_V6M", 0xE),
("CPU_SUBTYPE_ARM_V7M", 0xF),
("CPU_SUBTYPE_ARM_V7EM", 0x10),
("CPU_SUBTYPE_ARM_V8", 0xD),
("CPU_SUBTYPE_ARM64_ALL", 0x0),
("CPU_SUBTYPE_ARM64_V8", 0x1),
]
CPU_SUBTYPE_MAP = two_way_dict(cpu_subtypes)
# Mach-O header filetypes
macho_header_filetype = [
("MH_OBJECT", 0x1),
("MH_EXECUTE", 0x2),
("MH_FVMLIB", 0x3),
("MH_CORE", 0x4),
("MH_PRELOAD", 0x5),
("MH_DYLIB", 0x6),
("MH_DYLINKER", 0x7),
("MH_BUNDLE", 0x8),
("MH_DYLIB_STUB", 0x9),
("MH_DSYM", 0xA),
("MH_KEXT_BUNDLE", 0xB),
]
MACHO_FILETYPE = two_way_dict(macho_header_filetype)
FLAGS_MAP = {
0x1: "MH_NOUNDEFS",
0x2: "MH_INCRLINK",
0x4: "MH_DYLDLINK",
0x8: "MH_BINDATLOAD",
0x10: "MH_PREBOUND",
0x20: "MH_SPLIT_SEGS",
0x40: "MH_LAZY_INIT",
0x80: "MH_TWOLEVEL",
0x100: "MH_FORCE_FLAT",
0x200: "MH_NOMULTIDEFS",
0x400: "MH_NOFIXPREBINDING",
0x800: "MH_PREBINDABLE",
0x1000: "MH_ALLMODSBOUND",
0x2000: "MH_SUBSECTIONS_VIA_SYMBOLS",
0x4000: "MH_CANONICAL",
0x8000: "MH_WEAK_DEFINES",
0x10000: "MH_BINDS_TO_WEAK",
0x20000: "MH_ALLOW_STACK_EXECUTION",
0x40000: "MH_ROOT_SAFE",
0x80000: "MH_SETUID_SAFE",
0x100000: "MH_NO_REEXPORTED_DYLIBS",
0x200000: "MH_PIE",
0x400000: "MH_DEAD_STRIPPABLE_DYLIB",
0x800000: "MH_HAS_TLV_DESCRIPTORS",
0x1000000: "MH_NO_HEAP_EXECUTION",
0x2000000: "MH_APP_EXTENSION_SAFE",
0x4000000: "MH_NLIST_OUTOFSYNC_WITH_DYLDINFO",
0x8000000: "MH_SIM_SUPPORT",
0x80000000: "MH_DYLIB_IN_CACHE",
}
# Constants for the "cmd" field in the load command structure
load_command_types = [
("LC_SEGMENT", 0x1),
("LC_SYMTAB", 0x2),
("LC_SYMSEG", 0x3),
("LC_THREAD", 0x4),
("LC_UNIXTHREAD", 0x5),
("LC_LOADFVMLIB", 0x6),
("LC_IDFVMLIB", 0x7),
("LC_IDENT", 0x8),
("LC_FVMFILE", 0x9),
("LC_PREPAGE", 0xA),
("LC_DYSYMTAB", 0xB),
("LC_LOAD_DYLIB", 0xC),
("LC_ID_DYLIB", 0xD),
("LC_LOAD_DYLINKER", 0xE),
("LC_ID_DYLINKER", 0xF),
("LC_PREBOUND_DYLIB", 0x10),
("LC_ROUTINES", 0x11),
("LC_SUB_FRAMEWORK", 0x12),
("LC_SUB_UMBRELLA", 0x13),
("LC_SUB_CLIENT", 0x14),
("LC_SUB_LIBRARY", 0x15),
("LC_TWOLEVEL_HINTS", 0x16),
("LC_PREBIND_CKSUM", 0x17),
("LC_LOAD_WEAK_DYLIB", 0x18 | 0x80000000),
("LC_SEGMENT_64", 0x19),
("LC_ROUTINES_64", 0x1A),
("LC_UUID", 0x1B),
("LC_RPATH", 0x1C | 0x80000000),
("LC_CODE_SIGNATURE", 0x1D),
("LC_SEGMENT_SPLIT_INFO", 0x1E),
("LC_REEXPORT_DYLIB", 0x1F | 0x80000000),
("LC_LAZY_LOAD_DYLIB", 0x20),
("LC_ENCRYPTION_INFO", 0x21),
("LC_DYLD_INFO", 0x22),
("LC_DYLD_INFO_ONLY", 0x22 | 0x80000000),
("LC_LOAD_UPWARD_DYLIB", 0x23 | 0x80000000),
("LC_VERSION_MIN_MACOSX", 0x24),
("LC_VERSION_MIN_IPHONEOS", 0x25),
("LC_FUNCTION_STARTS", 0x26),
("LC_DYLD_ENVIRONMENT", 0x27),
("LC_MAIN", 0x28 | 0x80000000),
("LC_DATA_IN_CODE", 0x29),
("LC_SOURCE_VERSION", 0x2A),
("LC_DYLIB_CODE_SIGN_DRS", 0x2B),
("LC_LINKER_OPTIONS", 0x2D),
("LC_LINKER_OPTIMIZATION_HINT", 0x2E),
("LC_VERSION_MIN_TVOS", 0x2F),
("LC_VERSION_MIN_WATCHOS", 0x30),
]
LOAD_COMMAND_TYPES = two_way_dict(load_command_types)
dylib_command_types = [
("LC_ID_DYLIB", 0xD),
("LC_LOAD_DYLIB", 0xC),
("LC_LOAD_WEAK_DYLIB", 0x18),
]
DYLIB_CMD_TYPES = two_way_dict(dylib_command_types)
def decode_cpusubtype(cputype, cpusubtype_value):
mask = 0xFFFFFFFF # to get unsigned value
cpusubtype_value = cpusubtype_value & mask
decoded_subtypes = []
# Check if the cpusubtype is combined or singular
for subtype, subtype_name in CPU_SUB_TYPE_MAP.items():
if cpusubtype_value & subtype:
decoded_subtypes.append(subtype_name)
return ", ".join(decoded_subtypes) if decoded_subtypes else str(cpusubtype_value)
def decode_flags(flags_value):
decoded_flags = []
for flag, flag_name in FLAGS_MAP.items():
if flags_value & flag:
decoded_flags.append(flag_name)
return ", ".join(decoded_flags) if decoded_flags else str(flags_value)
# This function receives a dictionary as input and prints it in a readable way
#
def print_dict(d):
for k, v in d.items():
print(f"\t{k + ':':<13}{v}")
# This function receives a list as input and prints it in a readable way
#
def print_list(l):
for i in l:
print(f"\t{i}")
# This function receives a list of dictionaries as input and prints it in a readable way
#
def print_list_dict(l):
for d in l:
for k, v in d.items():
print(f"\t{k + ':':<13}{v}")
# This function receives a list of dictionaries as input and prints it in table format
#
def print_list_dict_as_table(dict_list):
if not dict_list:
print("Empty list provided.")
return
# take the keys from the first dictionary for the headers.
headers = list(dict_list[0].keys())
# Calculate the maximum width for each column considering the header and the data
widths = {
key: max(max(len(str(d.get(key, ""))) for d in dict_list), len(key))
for key in headers
}
# Create and print header row
header_row = " ".join(key.upper().ljust(widths[key]) for key in headers)
print(f"\t{header_row}")
print("\t" + ("-" * len(header_row)))
# Print the rows
for item in dict_list:
row = " ".join(str(item.get(key, "")).ljust(widths[key]) for key in headers)
print(f"\t{row}")
def get_general_info(filename, data):
"""Get general information about a Mach-O file.
Returns:
info_dict: A dictionary containing general information about the Mach-O file,
more specifically: filename (str), filesize (int), filetype (str),
file_flags (str), md5 (str), sha1 (str), sha256(str).
"""
md5_hash = md5()
sha256_hash = sha256()
sha1_hash = sha1()
md5_hash.update(data)
sha1_hash.update(data)
sha256_hash.update(data)
filetype, file_flags = magic.from_buffer(data).split(", flags:")
info_dict = {
"Filename": filename,
"Filesize": len(data),
"Filetype": filetype,
"Flags": file_flags,
"MD5": md5_hash.hexdigest(),
"SHA1": sha1_hash.hexdigest(),
"SHA256": sha256_hash.hexdigest(),
}
return info_dict
def get_macho_header(f):
"""Get the Mach-O header.
Returns:
header_dict: A dictionary containing the Mach-O header, more specifically:
magic (str), cputype (str), cpusubtype (str), filetype (str), ncmds (int),
sizeofcmds (int), flags (str).
"""
f.seek(0)
# Read the magic value to determine byte order
magic = struct.unpack("I", f.read(4))[0]
byte_order = ">" if magic in {MH_CIGAM, MH_CIGAM_64} else "<" # endianness
# Position back to start of file for full header read
f.seek(0)
if magic in {MH_MAGIC, MH_CIGAM}:
header_size = struct.calcsize(byte_order + MACHO_HEADER_FORMAT_32)
header_data = f.read(header_size)
header = struct.unpack(byte_order + MACHO_HEADER_FORMAT_32, header_data)
else:
header_size = struct.calcsize(byte_order + MACHO_HEADER_FORMAT_64)
header_data = f.read(header_size)
header = struct.unpack(byte_order + MACHO_HEADER_FORMAT_64, header_data)
header_dict = {
"magic": MAGIC_MAP.get(header[0], header[0]),
"cputype": CPU_TYPE_MAP.get(header[1], header[1]),
"cpusubtype": decode_cpusubtype(header[1], header[2]),
"filetype": MACHO_FILETYPE[header[3]],
"ncmds": header[4],
"sizeofcmds": header[5],
"flags": decode_flags(header[6]),
}
return header_dict
def get_macho_load_cmd_table(f):
"""Get the Mach-O load command table.
Returns:
load_commands: A list of dictionaries containing the Mach-O load commands.
Each dictionary contains the following keys: cmd (str), cmdsize (int).
load_commands_set: A set of the Mach-O load commands, each itemn as (str).
"""
load_commands = []
f.seek(0)
# Read the magic value to determine byte order and architecture
magic = struct.unpack("I", f.read(4))[0]
byte_order = ">" if magic in {MH_CIGAM, MH_CIGAM_64} else "<" # endianness
# Depending on architecture, read the correct Mach-O header
f.seek(0)
if magic in {MH_MAGIC, MH_CIGAM}:
header_size = struct.calcsize(byte_order + MACHO_HEADER_FORMAT_32)
else:
header_size = struct.calcsize(byte_order + MACHO_HEADER_FORMAT_64)
header_data = f.read(header_size)
if magic in {MH_MAGIC, MH_CIGAM}:
_, _, _, filetype, ncmds, sizeofcmds, _ = struct.unpack(
byte_order + MACHO_HEADER_FORMAT_32, header_data
)
else:
_, _, _, filetype, ncmds, sizeofcmds, _, _ = struct.unpack(
byte_order + MACHO_HEADER_FORMAT_64, header_data
)
# Parse each load command
for _ in range(ncmds):
cmd_data = f.read(struct.calcsize(byte_order + LOAD_COMMAND_FORMAT))
cmd, cmdsize = struct.unpack(byte_order + LOAD_COMMAND_FORMAT, cmd_data)
load_commands.append({"cmd": LOAD_COMMAND_TYPES[cmd], "cmdsize": cmdsize})
# Move the file pointer past this load command to the start of the next one
f.seek(f.tell() + cmdsize - struct.calcsize(byte_order + LOAD_COMMAND_FORMAT))
loadcommans_set = set(load_command["cmd"] for load_command in load_commands)
if "LC_SEGMENT_64" in loadcommans_set:
loadcommans_set.remove("LC_SEGMENT_64")
if "LC_SEGMENT" in loadcommans_set:
loadcommans_set.remove("LC_SEGMENT")
return load_commands, loadcommans_set
def get_file_segments(f):
"""Get the Mach-O segments.
Returns:
segments: A list of dictionaries, each containing the Mach-O segments.
More specifically: segname (str), vaddr (int), vsize (int), offset (int),
size (int), max_vm_protection (int), initial_vm_protection (int),
nsects (int), flags (int).
"""
f.seek(0)
segments = []
magic = struct.unpack("I", f.read(4))[0]
is_64_bit = True if magic in {MH_MAGIC_64, MH_CIGAM_64} else False
byte_order = ">" if magic in {MH_CIGAM, MH_CIGAM_64} else "<" # endianness
# Adjust the position to skip cputype and cpusubtype
f.seek(12, 1)
# Get number of load commands from header
ncmds = struct.unpack("I", f.read(4))[0]
# Skip over the rest of the Mach-O header to reach load commands
if is_64_bit:
f.seek(12, 1) # Skip the remainder of the 64-bit Mach-O header
else:
f.seek(8, 1) # Skip the remainder of the 32-bit Mach-O header
# Process each load command
for _ in range(ncmds):
# Read command type and size
cmd, cmdsize = struct.unpack(byte_order + LOAD_COMMAND_FORMAT, f.read(8))
# If it's an LC_SEGMENT, process it
if (
cmd == LOAD_COMMAND_TYPES["LC_SEGMENT"]
or cmd == LOAD_COMMAND_TYPES["LC_SEGMENT_64"]
):
if is_64_bit:
segment_size = struct.calcsize(byte_order + SEGMENT_COMMAND_FORMAT_64)
seg_data = f.read(segment_size)
(
segname,
vaddr,
vsize,
offset,
size,
max_vm_protection,
initial_vm_protection,
nsectors,
flags,
) = struct.unpack(SEGMENT_COMMAND_FORMAT_64, seg_data)
else:
segment_size = struct.calcsize(byte_order + SEGMENT_COMMAND_FORMAT_32)
seg_data = f.read(segment_size)
(
segname,
vaddr,
vsize,
offset,
size,
max_vm_protection,
initial_vm_protection,
nsectors,
flags,
) = struct.unpack(SEGMENT_COMMAND_FORMAT_32, seg_data)
segname = segname.decode("utf-8").rstrip("\0")
tmp_dict = {
"segname": segname,
"vaddr": vaddr,
"vsize": vsize,
"offset": offset,
"size": size,
"max_vm_protection": max_vm_protection,
"initial_vm_protection": initial_vm_protection,
"nsects": nsectors,
"flags": flags,
}
segments.append((tmp_dict))
# Move to the next command
f.seek(cmdsize - segment_size - 8, 1)
else:
# Move to the next command
f.seek(cmdsize - 8, 1)
return segments
def get_dylib_commands(f):
"""Get the Mach-O dylib commands.
Returns:
dylib_full_info: A list of dictionaries, each containing the Mach-O dylib commands.
Each dictionary contains the following key/value pairs: dylib_name_offset (int),
dylib_timestamp (int),
dylib_current_version (int), dylib_compat_version (int), dylib_name (str).
dylib_names: A list of the Mach-O dylib names. Each entry is represented in
its raw form as binary string (bytes).
"""
f.seek(0)
dylib_full_info = []
dylib_names = []
magic = struct.unpack("I", f.read(4))[0]
is_64_bit = True if magic in {MH_MAGIC_64, MH_CIGAM_64} else False
byte_order = ">" if magic in {MH_CIGAM, MH_CIGAM_64} else "<" # endianness
# Adjust the position to skip cputype and cpusubtype
f.seek(12, 1)
# Get number of load commands from header
ncmds = struct.unpack("I", f.read(4))[0]
# Skip over the rest of the Mach-O header to reach load commands
if is_64_bit:
f.seek(12, 1) # Skip the remainder of the 64-bit Mach-O header
else:
f.seek(8, 1) # Skip the remainder of the 32-bit Mach-O header
# Process each load command
for _ in range(ncmds):
# Read command type and size
cmd, cmdsize = struct.unpack(byte_order + LOAD_COMMAND_FORMAT, f.read(8))
# If it's an LC_SEGMENT, process it
if cmd in DYLIB_CMD_TYPES:
dylib_size = struct.calcsize(byte_order + DYLIB_COMMAND_FORMAT)
dylib_data = f.read(dylib_size)
(
dylib_name_offset,
dylib_timestamp,
dylib_current_version,
dylib_compat_version,
) = struct.unpack(DYLIB_COMMAND_FORMAT, dylib_data)
dylib_name_size = cmdsize - dylib_name_offset
dylib_name = f.read(dylib_name_size).rstrip(b"\x00")
tmp_dict = {
"dylib_name_offset": dylib_name_offset,
"dylib_timestamp": dylib_timestamp,
"dylib_current_version": dylib_current_version,
"dylib_compat_version": dylib_compat_version,
"dylib_name": dylib_name,
}
dylib_full_info.append((tmp_dict))
dylib_names.append(dylib_name)
else:
# Move to the next command
f.seek(cmdsize - 8, 1)
return dylib_full_info, dylib_names
def get_dylib_hash(dylib_names):
"""Get the dylib hash of the Mach-O file.
Returns:
dylib_hash: the dylib hash of the Mach-O file.
"""
sorted_lowered_dylibs = []
for dylib in dylib_names:
sorted_lowered_dylibs.append(dylib.decode().lower())
sorted_lowered_dylibs = sorted(sorted_lowered_dylibs)
dylib_hash = md5(",".join(sorted_lowered_dylibs).encode()).hexdigest()
return dylib_hash
def get_similarity_hashes(f, dylib_names):
"""Get the similarity hashes of the Mach-O file.
This method is used to get different available similarity hashes of
the Mach-O file. This is inspired by the "macho-similarity" tool
from Greg Lesnewich (@greglesnewich)
Returns:
similarity_hashes: A dictionary containing the similarity hashes
of the Mach-O file. Currently implemented are: dylib_hash.
"""
similarity_hashes = {}
similarity_hashes["dylib_hash"] = get_dylib_hash(dylib_names)
# similarity_hashes["import_hash"] = self.get_import_hash()
# similarity_hashes["export_hash"] = self.get_export_hash()
return similarity_hashes
def main():
# Set up argparse... placeholder more options to come
parser = argparse.ArgumentParser(description="Parse Mach-O file structures.")
parser.add_argument(
"-f", "--file", type=str, help="Path to the file to be parsed", required=True
)
parser.add_argument(
"-a", "--all", action="store_true", help="Print all info about the file"
)
parser.add_argument(
"-i", "--info", action="store_true", help="Print general info about the file"
)
parser.add_argument(
"-hd", "--header", action="store_true", help="Print Mach-O header info"
)
parser.add_argument(
"-l",
"--load_cmd_t",
action="store_true",
help="Print Load Command Table and Command list",
)
parser.add_argument(
"-sg", "--segments", action="store_true", help="Print File Segments info"
)
parser.add_argument(
"-d",
"--dylib",
action="store_true",
help="Print Dylib Command Table and Dylib list",
)
parser.add_argument(
"-sm", "--similarity", action="store_true", help="Print similarity hashes"
)
args = parser.parse_args()
file_path = args.file
dylib_names = None
# Extract the filename
filename = os.path.basename(file_path)
f = open(file_path, "rb")
magic = struct.unpack("I", f.read(4))[0]
if magic in MAGIC_MAP:
f.seek(0)
data = f.read()
f.close()
f = io.BytesIO(data)
if args.all or args.info:
print("\n[General File Info]")
print_dict(get_general_info(filename, data))
if args.all or args.header:
print("\n[Mac-O Header]")
print_dict(get_macho_header(f))
if args.all or args.load_cmd_t:
print("\n[Load Cmd table]")
loadcommands, loadcommands_set = get_macho_load_cmd_table(f)
print_list(loadcommands)
print("\n[Load Commands]")
print_list(sorted(loadcommands_set))
if args.all or args.segments:
print("\n[File Segments]")
segments = get_file_segments(f)
print_list_dict_as_table(segments)
if args.all or args.dylib:
print("\n[Dylib Commands]")
dylib_full_info, dylib_names = get_dylib_commands(f)
print_list_dict_as_table(dylib_full_info)
print("\n[Dylib Names]")
print_list(dylib_names)
if args.all or args.similarity:
if dylib_names is None:
dylib_full_info, dylib_names = get_dylib_commands(f)
print("\n[Similarity Hashes]")
similarity_hashes = get_similarity_hashes(f, dylib_names)
print_dict(similarity_hashes)
else:
f.close()
raise ValueError("Not a valid Mach-O file")
if __name__ == "__main__":
main()