2021-05-01 10:05:21 +00:00
|
|
|
#!/usr/bin/env python3
|
2021-06-10 10:40:48 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2021-06-20 17:03:36 +00:00
|
|
|
import sys, pathlib, traceback
|
2021-06-10 10:40:48 +00:00
|
|
|
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
|
2021-05-01 10:05:21 +00:00
|
|
|
|
|
|
|
import argparse, pathlib
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='Run a Mach-O payload under the hypervisor')
|
2021-05-13 10:02:35 +00:00
|
|
|
parser.add_argument('-s', '--symbols', type=pathlib.Path)
|
2021-06-11 02:57:57 +00:00
|
|
|
parser.add_argument('-m', '--script', type=pathlib.Path, action='append', default=[])
|
|
|
|
parser.add_argument('-c', '--command', action="append", default=[])
|
2021-06-10 13:34:29 +00:00
|
|
|
parser.add_argument('-S', '--shell', action="store_true")
|
2021-09-15 13:10:07 +00:00
|
|
|
parser.add_argument('-e', '--hook-exceptions', action="store_true")
|
2021-09-21 04:15:24 +00:00
|
|
|
parser.add_argument('-d', '--debug-xnu', action="store_true")
|
2021-05-01 10:05:21 +00:00
|
|
|
parser.add_argument('payload', type=pathlib.Path)
|
2021-05-08 18:18:08 +00:00
|
|
|
parser.add_argument('boot_args', default=[], nargs="*")
|
2021-05-01 10:05:21 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2021-06-10 10:40:48 +00:00
|
|
|
from m1n1.proxy import *
|
|
|
|
from m1n1.proxyutils import *
|
|
|
|
from m1n1.utils import *
|
2021-06-10 13:34:29 +00:00
|
|
|
from m1n1.shell import run_shell
|
2021-06-10 10:40:48 +00:00
|
|
|
from m1n1.hv import HV
|
2021-05-01 10:05:21 +00:00
|
|
|
|
|
|
|
iface = UartInterface()
|
|
|
|
p = M1N1Proxy(iface, debug=False)
|
|
|
|
bootstrap_port(iface, p)
|
|
|
|
u = ProxyUtils(p, heap_size = 128 * 1024 * 1024)
|
|
|
|
|
|
|
|
hv = HV(iface, p, u)
|
|
|
|
|
2021-09-15 13:10:07 +00:00
|
|
|
hv.hook_exceptions = args.hook_exceptions
|
|
|
|
|
2021-05-01 10:05:21 +00:00
|
|
|
hv.init()
|
2021-05-08 18:18:08 +00:00
|
|
|
|
2021-09-21 04:15:24 +00:00
|
|
|
if args.debug_xnu:
|
|
|
|
hv.adt["chosen"].debug_enabled = 1
|
|
|
|
|
2021-05-08 18:18:08 +00:00
|
|
|
if len(args.boot_args) > 0:
|
|
|
|
boot_args = " ".join(args.boot_args)
|
|
|
|
hv.set_bootargs(boot_args)
|
|
|
|
|
2021-05-13 10:02:35 +00:00
|
|
|
symfile = None
|
|
|
|
if args.symbols:
|
|
|
|
symfile = args.symbols.open("rb")
|
|
|
|
hv.load_macho(args.payload.open("rb"), symfile=symfile)
|
2021-06-10 13:34:29 +00:00
|
|
|
|
|
|
|
for i in args.script:
|
2021-06-20 17:03:36 +00:00
|
|
|
try:
|
|
|
|
hv.run_script(i)
|
|
|
|
except:
|
|
|
|
traceback.print_exc()
|
|
|
|
args.shell = True
|
2021-06-10 13:34:29 +00:00
|
|
|
|
|
|
|
for i in args.command:
|
2021-06-20 17:03:36 +00:00
|
|
|
try:
|
|
|
|
hv.run_code(i)
|
|
|
|
except:
|
|
|
|
traceback.print_exc()
|
|
|
|
args.shell = True
|
2021-06-10 13:34:29 +00:00
|
|
|
|
|
|
|
if args.shell:
|
|
|
|
run_shell(hv.shell_locals, "Entering hypervisor shell. Type `start` to start the guest.")
|
|
|
|
else:
|
|
|
|
hv.start()
|