gitextract_2p5ujygs/ ├── .gitignore ├── LICENSE.md ├── Meridian/ │ ├── Meridian/ │ │ ├── amfi.h │ │ ├── amfi.m │ │ ├── bootstrap/ │ │ │ ├── create-meridian-bootstrap.sh │ │ │ └── meridian-bootstrap/ │ │ │ ├── bin/ │ │ │ │ ├── launchctl │ │ │ │ └── uicache │ │ │ ├── meridian/ │ │ │ │ ├── dropbear/ │ │ │ │ │ ├── dropbear │ │ │ │ │ └── dropbear.plist │ │ │ │ ├── ent.plist │ │ │ │ ├── jailbreakd/ │ │ │ │ │ ├── jailbreakd │ │ │ │ │ └── jailbreakd.plist │ │ │ │ ├── ldrestart │ │ │ │ ├── nohup │ │ │ │ └── offsets.plist │ │ │ └── private/ │ │ │ └── var/ │ │ │ └── log/ │ │ │ └── lastlog │ │ ├── common.h │ │ ├── helpers/ │ │ │ ├── cs_blobs.h │ │ │ ├── fucksigningservices.h │ │ │ ├── fucksigningservices.m │ │ │ ├── helpers.h │ │ │ ├── helpers.m │ │ │ ├── iokit.h │ │ │ ├── kernel.h │ │ │ ├── kernel.m │ │ │ ├── main.m │ │ │ ├── nonce.h │ │ │ ├── nonce.m │ │ │ ├── nvpatch.c │ │ │ ├── nvpatch.h │ │ │ ├── untar.h │ │ │ └── untar.m │ │ ├── jailbreak.h │ │ ├── jailbreak.m │ │ ├── mach/ │ │ │ ├── jailbreak_daemonUser.c │ │ │ └── jailbreak_daemonUser.h │ │ ├── patchfinders/ │ │ │ ├── liboffsetfinder64.hpp │ │ │ ├── offsetdump.h │ │ │ ├── offsetdump.m │ │ │ ├── offsetfinder.h │ │ │ ├── offsetfinder.mm │ │ │ ├── patchfinder64.c │ │ │ └── patchfinder64.h │ │ ├── preferences.h │ │ ├── preferences.m │ │ ├── root-rw.h │ │ ├── root-rw.m │ │ ├── v0rtex.h │ │ ├── v0rtex.m │ │ └── views/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon-Blue.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon-White.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icons/ │ │ │ │ ├── Contents.json │ │ │ │ ├── archive.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── console.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── gears.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── hammer.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── handshake.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── jail.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── ladybug.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── list.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── settings.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── source_code.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── synchronize.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── trash.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── twitter.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── www.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Map.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Splash.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CreditsController.h │ │ ├── CreditsController.m │ │ ├── Info.plist │ │ ├── SettingsController.h │ │ ├── SettingsController.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── Meridian.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ ├── amfid/ │ │ ├── Makefile │ │ ├── common.h │ │ ├── cs_blobs.h │ │ ├── cs_dingling.h │ │ ├── cs_dingling.m │ │ ├── ent_patching.h │ │ ├── ent_patching.m │ │ ├── helpers/ │ │ │ ├── kexecute.h │ │ │ ├── kexecute.m │ │ │ ├── kmem.c │ │ │ ├── kmem.h │ │ │ ├── offsetof.c │ │ │ ├── offsetof.h │ │ │ ├── osobject.c │ │ │ └── osobject.h │ │ ├── kern_utils.h │ │ ├── kern_utils.m │ │ ├── main.m │ │ └── ubc_headers.h │ ├── exportPlist.plist │ ├── fishhook/ │ │ ├── fishhook.c │ │ └── fishhook.h │ ├── jailbreakd/ │ │ ├── Makefile │ │ ├── common.h │ │ ├── entitlements.xml │ │ ├── helpers/ │ │ │ ├── kexecute.h │ │ │ ├── kexecute.m │ │ │ ├── kmem.h │ │ │ ├── kmem.m │ │ │ ├── offsetof.c │ │ │ ├── offsetof.h │ │ │ ├── osobject.c │ │ │ └── osobject.h │ │ ├── kern_utils.h │ │ ├── kern_utils.m │ │ ├── mach/ │ │ │ ├── jailbreak_daemonServer.c │ │ │ ├── jailbreak_daemonServer.h │ │ │ └── mig.defs │ │ ├── main.m │ │ ├── sandbox.h │ │ └── sandbox.m │ ├── libimg4tool.a │ ├── libmerged.a │ ├── liboffsetfinder64.a │ ├── libplist++.a │ ├── libplist.a │ └── pspawn_hook/ │ ├── Makefile │ ├── mach/ │ │ ├── jailbreak_daemonUser.c │ │ └── jailbreak_daemonUser.h │ └── pspawn_hook.m ├── README.md └── Working_with_libjailbreak.md