🚧 v2 in development — building research toolkit features (XPC enumerator, entitlement diff, snapshot compare, anomaly heuristics). See branch
v2-research-toolkitfor progress.
iOS system monitor and internals explorer. Installs via TrollStore with extended entitlements.
- Real-time list of all running processes
- PID, process name, RAM usage, thread count
- Search and pull-to-refresh
- Powered by
proc_listallpids+proc_pidinfo(C system calls)
- Open file descriptors via
proc_pidinfo(PROC_PIDLISTFDS) - Entitlements via
csops - Binary path and thread count
- Architecture, file type (Executable / dylib / bundle)
- Segments:
__TEXT,__DATA,__LINKEDIT, etc. - Linked libraries list
- Powered by
mmap+ manual Mach-O header parsing in C++
- Scans
/System/Library/LaunchDaemons/ - Parses plists and lists all MachServices
- Background loading
- Full IOKit registry traversal up to 3 levels deep
- Shows name and class of every IOService
- Indented hierarchy view
- UI: Swift + UIKit
- System layer: Objective-C + C/C++
- Build: Xcode, iOS 15.0+, arm64
- iPhone/iPad with TrollStore installed
- iOS 15.0+
- Download
SysExplorer.tipafrom Releases - Open with TrollStore
- Install
<key>task_for_pid-allow</key>
<true/>
<key>com.apple.private.security.no-sandbox</key>
<true/>
<key>platform-application</key>
<true/>
<key>com.apple.private.security.no-container</key>
<true/>Requires Xcode (arm64 iOS SDK) and ldid for ad-hoc signing.
git clone https://github.com/lavochkaa/SystemExplorer.git
cd SystemExplorer
./build.shProduces a signed .tipa in packages/, ready to install via TrollStore.
Read-only exploration tool. Does not modify process memory or inject code.


