gitextract_wvjx7p6u/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── bug-report-issue-template.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── Pwnify/ │ ├── Makefile │ └── main.m ├── README.md ├── RootHelper/ │ ├── Makefile │ ├── control │ ├── devmode.h │ ├── devmode.m │ ├── entitlements.plist │ ├── jit.h │ ├── jit.m │ ├── main.m │ ├── uicache.h │ ├── uicache.m │ ├── unarchive.h │ └── unarchive.m ├── Shared/ │ ├── CoreServices.h │ ├── TSListControllerShared.h │ ├── TSListControllerShared.m │ ├── TSPresentationDelegate.h │ ├── TSPresentationDelegate.m │ ├── TSUtil.h │ └── TSUtil.m ├── TrollHelper/ │ ├── Makefile │ ├── Resources/ │ │ └── Info.plist │ ├── TSHAppDelegateNoScene.h │ ├── TSHAppDelegateNoScene.m │ ├── TSHAppDelegateWithScene.h │ ├── TSHAppDelegateWithScene.m │ ├── TSHRootViewController.h │ ├── TSHRootViewController.m │ ├── TSHSceneDelegate.h │ ├── TSHSceneDelegate.m │ ├── control │ ├── entitlements.plist │ └── main.m ├── TrollStore/ │ ├── Makefile │ ├── Resources/ │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.storyboardc/ │ │ │ ├── Info.plist │ │ │ ├── Kx4-55-vNS-view-9BB-B5-Vbi.nib │ │ │ ├── UITabBarController-9el-pn-lH0.nib │ │ │ └── X3T-Aa-nEE-view-vAu-RC-m7d.nib │ │ └── Info.plist │ ├── TSAppDelegate.h │ ├── TSAppDelegate.m │ ├── TSAppInfo.h │ ├── TSAppInfo.m │ ├── TSAppTableViewController.h │ ├── TSAppTableViewController.m │ ├── TSApplicationsManager.h │ ├── TSApplicationsManager.m │ ├── TSCommonTCCServiceNames.h │ ├── TSDonateListController.h │ ├── TSDonateListController.m │ ├── TSInstallationController.h │ ├── TSInstallationController.m │ ├── TSRootViewController.h │ ├── TSRootViewController.m │ ├── TSSceneDelegate.h │ ├── TSSceneDelegate.m │ ├── TSSettingsAdvancedListController.h │ ├── TSSettingsAdvancedListController.m │ ├── TSSettingsListController.h │ ├── TSSettingsListController.m │ ├── control │ ├── entitlements.plist │ └── main.m ├── TrollStoreLite/ │ ├── .gitignore │ ├── Makefile │ ├── Resources/ │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.storyboardc/ │ │ │ ├── Info.plist │ │ │ ├── Kx4-55-vNS-view-9BB-B5-Vbi.nib │ │ │ ├── UITabBarController-9el-pn-lH0.nib │ │ │ └── X3T-Aa-nEE-view-vAu-RC-m7d.nib │ │ └── Info.plist │ ├── control │ └── entitlements.plist ├── Victim/ │ ├── README.md │ ├── make_cert.sh │ └── victim.p12 └── legacy.p12