All Projects → biscuitehh → Marzipanplatter

biscuitehh / Marzipanplatter

Licence: mit
UIKit + macOS

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Marzipanplatter

Chatkit
Android library. Flexible components for chat UI implementation with flexible possibilities for styling, customizing and data management. Made by Stfalcon
Stars: ✭ 3,496 (+890.37%)
Mutual labels:  uikit
Beaengine
BeaEngine disasm project
Stars: ✭ 342 (-3.12%)
Mutual labels:  reverse-engineering
Pokefirered
Decompilation of Pokémon FireRed/LeafGreen
Stars: ✭ 348 (-1.42%)
Mutual labels:  reverse-engineering
Avatar2
Python core of avatar²
Stars: ✭ 334 (-5.38%)
Mutual labels:  reverse-engineering
Valuestepper
A Stepper object that displays its value.
Stars: ✭ 343 (-2.83%)
Mutual labels:  uikit
Ios Nbukit
UIKit and NSFoundation convenience categories and subclasses.
Stars: ✭ 344 (-2.55%)
Mutual labels:  uikit
Ddisasm
A fast and accurate disassembler
Stars: ✭ 325 (-7.93%)
Mutual labels:  reverse-engineering
Pwndbg
Exploit Development and Reverse Engineering with GDB Made Easy
Stars: ✭ 4,178 (+1083.57%)
Mutual labels:  reverse-engineering
Counterfeit ds18b20
How to tell original from fake DS18B20 temperature sensors.
Stars: ✭ 341 (-3.4%)
Mutual labels:  reverse-engineering
Bluefluff
Reverse Engineering Furby Connect's Bluetooth Protocol and Update Format
Stars: ✭ 348 (-1.42%)
Mutual labels:  reverse-engineering
Swift Composable Architecture
A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
Stars: ✭ 5,199 (+1372.8%)
Mutual labels:  uikit
Findcrypt Ghidra
IDA Pro's FindCrypt ported to Ghidra, with an updated and customizable signature database
Stars: ✭ 340 (-3.68%)
Mutual labels:  reverse-engineering
Lunar
A lightweight native DLL mapping library that supports mapping directly from memory
Stars: ✭ 345 (-2.27%)
Mutual labels:  reverse-engineering
Onboardkit
Customisable user onboarding for your iOS app
Stars: ✭ 334 (-5.38%)
Mutual labels:  uikit
Coderyi.github.io
Don't fork! coderyi's blog,about iOS ,CS and my code life.
Stars: ✭ 349 (-1.13%)
Mutual labels:  uikit
Medfusion 4000 Research
Medfusion 4000 security research & a MQX RCE.
Stars: ✭ 331 (-6.23%)
Mutual labels:  reverse-engineering
Decomp
Components of a decompilation pipeline.
Stars: ✭ 343 (-2.83%)
Mutual labels:  reverse-engineering
Animatify Ios
Animation, Effects & Transitions for iOS
Stars: ✭ 350 (-0.85%)
Mutual labels:  uikit
Swiftterm
VT100/Xterm Terminal emulator in Swift
Stars: ✭ 350 (-0.85%)
Mutual labels:  uikit
Androguard
Reverse engineering, Malware and goodware analysis of Android applications ... and more (ninja !)
Stars: ✭ 3,797 (+975.64%)
Mutual labels:  reverse-engineering

Marzipan Platter

tl;dr

Gifs are all the rage in Paris

Overview

At WWDC 2018 Apple announced that they are working on a multi-year strategy to make it easier to port UIKit applications to the Mac. While some first-party applications such as the Home & News app are going to use this API in macOS 10.14, third-party developers won't have official access for another year. As a result, I made this project to help tinkerers/other impatient people get a taste of what's to come when Apple gives everyone access to Marzipan next year.

Requirements/Notes

  • macOS 10.14 Mojave & Xcode 10 (note: apparently Virtual Machines do not work with Marzipan, so you'll need a real Mac/Hackintosh to make magic happen)
  • Disabling SIP & adding the amfi_get_out_of_my_way=0x1 to your boot-args (Hopefully we can circumvent the entitlement check with a less brutish method in the near future)
  • Requires jtool to parse the MachO loader commands.
  • Requires optool to edit the MachO header of our almost final product.
  • Patience
  • No longer requires any environment variables because the best rules are no rules.
  • Still probably requires a beer or two.

Caveats

  • Requires you to disable SIP & add amfi_get_out_of_my_way=0x1 to your boot-args. There has to be a better way.
  • Seems to crash my debugger/Mac a lot (not sure if this is a me or a Mojave beta issue)
  • The UIKitSystem process doesn't usually stop running when you stop debugging your app. It's best if you leave sshd open (I mean we already killed code signing, what's the worst that could happen) and connected so you can kill UIKitSystem if your development machine locks up. Thanks goes to @stroughtonsmith and @_inside for the gnarly tip!

Build instructions

  • Install Xcode 10, go to Preferences -> Locations -> select Xcode 10 for Command Line Tools
  • Disable SIP and AMFI:
    • boot into Recovery Mode (hold Cmd+R while rebooting), open Terminal from menu bar
    • csrutil disable
    • nvram boot-args="amfi_get_out_of_my_way=0x1"
  • Get jtool and optool:
    • Download jtool binary
    • git clone --recurse-submodules https://github.com/alexzielenski/optool.git
    • open optool/optool.xcodeproj, hit Build
  • Configure Xcode project
    • Open MarzipanPlatter/MarzipanPlatter.xcodeproj, go to MarzipanPlatter in sidebar -> MarzipanPlatter target -> General
    • Change Signing -> Team to your team, let Xcode regenerate provisioning profiles
    • Go to Build Settings tab, and set the JTOOL_PATH and OPTOOL_PATH user-defined settings to the respective locations where you installed jtool/optool
    • Also, you can set the IOSMAC_PLATFORM_NAME user-definied setting to either iosmac or macos. iosmac will use the linking magic to create an iOSMac binary and macos will create a patched macOS binary that requires the CFMZEnabled=1 environment variable to be set before launching the app. However, you can also link things like AppKit with a macOS binary.
  • Hit Run (or use the CLI method below)

Build Release & Run (from the CLI)

If you're running into oh my goodness my Mac keeps dying issues when debugging, I've provided some simple instructions to create a release version of your Marzipan app.

To build the archive: xcodebuild archive -scheme MarzipanPlatter -archivePath ./build/MarzipanPlatter.xcarchive

To export the .app from the archive: xcodebuild -exportArchive -archivePath ./build/MarzipanPlatter.xcarchive -exportOptionsPlist ExportOptions.plist -exportPath ./build/

To run MarzipanPlatter with the useful CFMZEnabled environment variable: ./build/MarzipanPlatter.app/Contents/MacOS/MarzipanPlatter

Or just use this one-liner:

xcodebuild archive -scheme MarzipanPlatter -archivePath ./build/MarzipanPlatter.xcarchive && xcodebuild -exportArchive -archivePath ./build/MarzipanPlatter.xcarchive -exportOptionsPlist ExportOptions.plist -exportPath ./build/ && ./build/MarzipanPlatter.app/Contents/MacOS/MarzipanPlatter

TODO

  • [ ] find a better way to run Marzipan apps without disabling important things like AMFI/SIP.
  • [ ] continue adding samples to make this project sizzle.
  • [ ] find a better way to debug Marzipan apps that doesn't involve rebooting my Mac every 30 minutes.
  • [ ] write up an explaination of why you have to disable SIP/AMFI
  • [ ] fix these TODOs

Thanks

  • A big shout out to @stroughtonsmith for sanity checking my approach to this problem/figuring out why UILabel decided to derp.
  • @s1guza for tbdump
  • @zhuowei for coming up with the clever ldwrap method. Definitely check out the MarzipanTool repo listed below.
  • @Morpheus______ for the awesome jtool and *OS Internals books that have taught me many things.

Related Projects

  • MarzipanTool - Tools to build and run iOS UIKit applications on macOS 10.14 Mojave, using the iOSMac framework announced at WWDC.

Questions/Comments

It's probably best if you leave an issue if you have a real problem with this code. However, you can tweet/DM me @NSBiscuit on Twitter if you want to chat about life/snakes/random thoughts/etc.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].