-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7863a67
commit be1ea0e
Showing
37 changed files
with
1,851 additions
and
449 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
+47.4 KB
(570%)
...s/obj/debug/arm64/trolltoolsroothelper.dSYM/Contents/Resources/DWARF/trolltoolsroothelper
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
@interface LSBundleProxy | ||
@property (nonatomic,readonly) NSString * bundleIdentifier; | ||
@property (nonatomic) NSURL* dataContainerURL; | ||
-(NSString*)localizedName; | ||
@end | ||
|
||
@interface LSApplicationProxy : LSBundleProxy | ||
+ (instancetype)applicationProxyForIdentifier:(NSString*)identifier; | ||
@property NSURL* bundleURL; | ||
@property NSString* bundleType; | ||
@property NSString* canonicalExecutablePath; | ||
@property (nonatomic,readonly) NSDictionary* groupContainerURLs; | ||
@property (nonatomic,readonly) NSArray* plugInKitPlugins; | ||
@property (getter=isInstalled,nonatomic,readonly) BOOL installed; | ||
@property (getter=isPlaceholder,nonatomic,readonly) BOOL placeholder; | ||
@property (getter=isRestricted,nonatomic,readonly) BOOL restricted; | ||
@property (nonatomic,readonly) NSSet * claimedURLSchemes; | ||
@end | ||
|
||
@interface LSApplicationWorkspace : NSObject | ||
+ (instancetype)defaultWorkspace; | ||
- (BOOL)registerApplicationDictionary:(NSDictionary*)dict; | ||
- (BOOL)unregisterApplication:(id)arg1; | ||
- (BOOL)_LSPrivateRebuildApplicationDatabasesForSystemApps:(BOOL)arg1 internal:(BOOL)arg2 user:(BOOL)arg3; | ||
- (BOOL)uninstallApplication:(NSString*)arg1 withOptions:(id)arg2; | ||
- (BOOL)openApplicationWithBundleID:(NSString *)arg1 ; | ||
- (void)enumerateApplicationsOfType:(NSUInteger)type block:(void (^)(LSApplicationProxy*))block; | ||
@end | ||
|
||
@interface LSEnumerator : NSEnumerator | ||
@property (nonatomic,copy) NSPredicate * predicate; | ||
+ (instancetype)enumeratorForApplicationProxiesWithOptions:(NSUInteger)options; | ||
@end | ||
|
||
@interface LSPlugInKitProxy : LSBundleProxy | ||
@property (nonatomic,readonly) NSString* pluginIdentifier; | ||
@property (nonatomic,readonly) NSDictionary * pluginKitDictionary; | ||
+ (instancetype)pluginKitProxyForIdentifier:(NSString*)arg1; | ||
@end | ||
|
||
@interface MCMContainer : NSObject | ||
+ (id)containerWithIdentifier:(id)arg1 createIfNecessary:(BOOL)arg2 existed:(BOOL*)arg3 error:(id*)arg4; | ||
@property (nonatomic,readonly) NSURL * url; | ||
@end | ||
|
||
@interface MCMDataContainer : MCMContainer | ||
|
||
@end | ||
|
||
@interface MCMAppDataContainer : MCMDataContainer | ||
|
||
@end | ||
|
||
@interface MCMAppContainer : MCMContainer | ||
@end | ||
|
||
@interface MCMPluginKitPluginDataContainer : MCMDataContainer | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#ifndef _REMOTE_LOG_H_ | ||
#define _REMOTE_LOG_H_ | ||
|
||
#import <netinet/in.h> | ||
#import <sys/socket.h> | ||
#import <unistd.h> | ||
#import <arpa/inet.h> | ||
|
||
// change this to match your destination (server) IP address | ||
#define RLOG_IP_ADDRESS "192.168.0.24" | ||
#define RLOG_PORT 11909 | ||
|
||
__attribute__((unused)) static void RLogv(NSString* format, va_list args) | ||
{ | ||
NSString* str = [[NSString alloc] initWithFormat:format arguments:args]; | ||
|
||
int sd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP); | ||
if (sd <= 0) | ||
{ | ||
NSLog(@"[RemoteLog] Error: Could not open socket"); | ||
return; | ||
} | ||
|
||
int broadcastEnable = 1; | ||
int ret = setsockopt(sd, SOL_SOCKET, SO_BROADCAST, &broadcastEnable, sizeof(broadcastEnable)); | ||
if (ret) | ||
{ | ||
NSLog(@"[RemoteLog] Error: Could not open set socket to broadcast mode"); | ||
close(sd); | ||
return; | ||
} | ||
|
||
struct sockaddr_in broadcastAddr; | ||
memset(&broadcastAddr, 0, sizeof broadcastAddr); | ||
broadcastAddr.sin_family = AF_INET; | ||
inet_pton(AF_INET, RLOG_IP_ADDRESS, &broadcastAddr.sin_addr); | ||
broadcastAddr.sin_port = htons(RLOG_PORT); | ||
|
||
char* request = (char*)[str UTF8String]; | ||
ret = sendto(sd, request, strlen(request), 0, (struct sockaddr*)&broadcastAddr, sizeof broadcastAddr); | ||
if (ret < 0) | ||
{ | ||
NSLog(@"[RemoteLog] Error: Could not send broadcast"); | ||
close(sd); | ||
return; | ||
} | ||
close(sd); | ||
} | ||
|
||
__attribute__((unused)) static void RLog(NSString* format, ...) | ||
{ | ||
va_list args; | ||
va_start(args, format); | ||
RLogv(format, args); | ||
va_end(args); | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
@import Foundation; | ||
#import "CoreServices.h" | ||
|
||
#define TrollStoreErrorDomain @"TrollStoreErrorDomain" | ||
|
||
extern void chineseWifiFixup(void); | ||
extern void loadMCMFramework(void); | ||
extern NSString* safe_getExecutablePath(); | ||
extern NSString* rootHelperPath(void); | ||
extern NSString* getNSStringFromFile(int fd); | ||
extern void printMultilineNSString(NSString* stringToPrint); | ||
extern int spawnRoot(NSString* path, NSArray* args, NSString** stdOut, NSString** stdErr); | ||
extern void killall(NSString* processName); | ||
extern void respring(void); | ||
extern void fetchLatestTrollStoreVersion(void (^completionHandler)(NSString* latestVersion)); | ||
|
||
extern NSArray* trollStoreInstalledAppBundlePaths(); | ||
extern NSArray* trollStoreInstalledAppContainerPaths(); | ||
extern NSString* trollStorePath(); | ||
extern NSString* trollStoreAppPath(); | ||
|
||
#import <UIKit/UIAlertController.h> | ||
|
||
@interface UIAlertController (Private) | ||
@property (setter=_setAttributedTitle:,getter=_attributedTitle,nonatomic,copy) NSAttributedString* attributedTitle; | ||
@property (setter=_setAttributedMessage:,getter=_attributedMessage,nonatomic,copy) NSAttributedString* attributedMessage; | ||
@property (nonatomic,retain) UIImage* image; | ||
@end | ||
|
||
typedef enum | ||
{ | ||
PERSISTENCE_HELPER_TYPE_USER = 1 << 0, | ||
PERSISTENCE_HELPER_TYPE_SYSTEM = 1 << 1, | ||
PERSISTENCE_HELPER_TYPE_ALL = PERSISTENCE_HELPER_TYPE_USER | PERSISTENCE_HELPER_TYPE_SYSTEM | ||
} PERSISTENCE_HELPER_TYPE; | ||
|
||
extern LSApplicationProxy* findPersistenceHelperApp(PERSISTENCE_HELPER_TYPE allowedTypes); | ||
|
||
typedef struct __SecCode const *SecStaticCodeRef; | ||
|
||
typedef CF_OPTIONS(uint32_t, SecCSFlags) { | ||
kSecCSDefaultFlags = 0 | ||
}; | ||
#define kSecCSRequirementInformation 1 << 2 | ||
#define kSecCSSigningInformation 1 << 1 | ||
|
||
OSStatus SecStaticCodeCreateWithPathAndAttributes(CFURLRef path, SecCSFlags flags, CFDictionaryRef attributes, SecStaticCodeRef *staticCode); | ||
OSStatus SecCodeCopySigningInformation(SecStaticCodeRef code, SecCSFlags flags, CFDictionaryRef *information); | ||
CFDataRef SecCertificateCopyExtensionValue(SecCertificateRef certificate, CFTypeRef extensionOID, bool *isCritical); | ||
void SecPolicySetOptionsValue(SecPolicyRef policy, CFStringRef key, CFTypeRef value); | ||
|
||
extern CFStringRef kSecCodeInfoEntitlementsDict; | ||
extern CFStringRef kSecCodeInfoCertificates; | ||
extern CFStringRef kSecPolicyAppleiPhoneApplicationSigning; | ||
extern CFStringRef kSecPolicyAppleiPhoneProfileApplicationSigning; | ||
extern CFStringRef kSecPolicyLeafMarkerOid; | ||
|
||
extern SecStaticCodeRef getStaticCodeRef(NSString *binaryPath); | ||
extern NSDictionary* dumpEntitlements(SecStaticCodeRef codeRef); | ||
extern NSDictionary* dumpEntitlementsFromBinaryAtPath(NSString *binaryPath); | ||
extern NSDictionary* dumpEntitlementsFromBinaryData(NSData* binaryData); |
Oops, something went wrong.