├── .gitignore ├── Makefile ├── README.md ├── allowdbg ├── fixdbg.h ├── fixdbg_init.c ├── ios_offsets.h ├── kern_utils.c ├── kern_utils.h ├── kmem.c └── kmem.h ├── deb ├── Makefile ├── control.txt ├── dbgsrv64_notify.c └── net.swigger.dbgsrv64.plist ├── debugserver_vers.c ├── ent2.xml ├── inc ├── AssertionServices.framework │ ├── AssertionServices.tbd │ └── Headers │ │ ├── BKSApplicationStateMonitor.h │ │ ├── BKSProcess.h │ │ ├── BKSProcessAssertion.h │ │ ├── BKSProcessAssertionClient.h │ │ ├── BKSProcessAssertionCreateEvent.h │ │ ├── BKSProcessAssertionCreateResponseEvent.h │ │ ├── BKSProcessAssertionDestroyEvent.h │ │ ├── BKSProcessAssertionEvent.h │ │ └── BKSProcessAssertionUpdateEvent.h ├── AssertionServicesSPI.h ├── BackBoardServices.framework │ ├── BackBoardServices.tbd │ └── Headers │ │ ├── BKSOpenApplicationConstants_Private.h │ │ ├── BKSSystemService.h │ │ ├── BKSSystemService_LaunchServices.h │ │ ├── BKSWatchdogAssertion.h │ │ └── BackBoardServices.h ├── FrontBoardServices.framework │ ├── FrontBoardServices.tbd │ └── Headers │ │ ├── FBSOpenApplicationConstants_Private.h │ │ ├── FBSSystemService.h │ │ ├── FBSSystemService_LaunchServices.h │ │ └── FrontBoardServices.h ├── MobileCoreServices │ ├── LSApplicationProxy.h │ ├── LSBundleProxy.h │ ├── LSResourceProxy.h │ ├── _LSLazyPropertyList.h │ └── _LSQueryResult.h └── SpringBoardServices.framework │ ├── Headers │ └── SpringBoardServices.h │ └── SpringBoardServices.tbd ├── info.plist ├── lldb-000.patch └── src /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/README.md -------------------------------------------------------------------------------- /allowdbg/fixdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/fixdbg.h -------------------------------------------------------------------------------- /allowdbg/fixdbg_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/fixdbg_init.c -------------------------------------------------------------------------------- /allowdbg/ios_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/ios_offsets.h -------------------------------------------------------------------------------- /allowdbg/kern_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/kern_utils.c -------------------------------------------------------------------------------- /allowdbg/kern_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/kern_utils.h -------------------------------------------------------------------------------- /allowdbg/kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/kmem.c -------------------------------------------------------------------------------- /allowdbg/kmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/allowdbg/kmem.h -------------------------------------------------------------------------------- /deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/deb/Makefile -------------------------------------------------------------------------------- /deb/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/deb/control.txt -------------------------------------------------------------------------------- /deb/dbgsrv64_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/deb/dbgsrv64_notify.c -------------------------------------------------------------------------------- /deb/net.swigger.dbgsrv64.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/deb/net.swigger.dbgsrv64.plist -------------------------------------------------------------------------------- /debugserver_vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/debugserver_vers.c -------------------------------------------------------------------------------- /ent2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/ent2.xml -------------------------------------------------------------------------------- /inc/AssertionServices.framework/AssertionServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/AssertionServices.tbd -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSApplicationStateMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSApplicationStateMonitor.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcess.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertion.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionClient.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionCreateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionCreateEvent.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionCreateResponseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionCreateResponseEvent.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionDestroyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionDestroyEvent.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionEvent.h -------------------------------------------------------------------------------- /inc/AssertionServices.framework/Headers/BKSProcessAssertionUpdateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServices.framework/Headers/BKSProcessAssertionUpdateEvent.h -------------------------------------------------------------------------------- /inc/AssertionServicesSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/AssertionServicesSPI.h -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/BackBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/BackBoardServices.framework/BackBoardServices.tbd -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/Headers/BKSOpenApplicationConstants_Private.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/Headers/BKSSystemService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/BackBoardServices.framework/Headers/BKSSystemService.h -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/Headers/BKSSystemService_LaunchServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/Headers/BKSWatchdogAssertion.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/BackBoardServices.framework/Headers/BackBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/BackBoardServices.framework/Headers/BackBoardServices.h -------------------------------------------------------------------------------- /inc/FrontBoardServices.framework/FrontBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/FrontBoardServices.framework/FrontBoardServices.tbd -------------------------------------------------------------------------------- /inc/FrontBoardServices.framework/Headers/FBSOpenApplicationConstants_Private.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/FrontBoardServices.framework/Headers/FBSSystemService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/FrontBoardServices.framework/Headers/FBSSystemService.h -------------------------------------------------------------------------------- /inc/FrontBoardServices.framework/Headers/FBSSystemService_LaunchServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/FrontBoardServices.framework/Headers/FrontBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/FrontBoardServices.framework/Headers/FrontBoardServices.h -------------------------------------------------------------------------------- /inc/MobileCoreServices/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/MobileCoreServices/LSApplicationProxy.h -------------------------------------------------------------------------------- /inc/MobileCoreServices/LSBundleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/MobileCoreServices/LSBundleProxy.h -------------------------------------------------------------------------------- /inc/MobileCoreServices/LSResourceProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/MobileCoreServices/LSResourceProxy.h -------------------------------------------------------------------------------- /inc/MobileCoreServices/_LSLazyPropertyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/MobileCoreServices/_LSLazyPropertyList.h -------------------------------------------------------------------------------- /inc/MobileCoreServices/_LSQueryResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/MobileCoreServices/_LSQueryResult.h -------------------------------------------------------------------------------- /inc/SpringBoardServices.framework/Headers/SpringBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/SpringBoardServices.framework/Headers/SpringBoardServices.h -------------------------------------------------------------------------------- /inc/SpringBoardServices.framework/SpringBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/inc/SpringBoardServices.framework/SpringBoardServices.tbd -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/info.plist -------------------------------------------------------------------------------- /lldb-000.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/lldb-000.patch -------------------------------------------------------------------------------- /src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swigger/debugserver-ios/HEAD/src --------------------------------------------------------------------------------