-
Notifications
You must be signed in to change notification settings - Fork 141
/
Tweak.m
144 lines (111 loc) · 6.3 KB
/
Tweak.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
#import "fishhook.h"
#import "RedditAPICredentialViewController.h"
static NSString * const kImgurClientID = @"IMGUR_CLIENT_ID_GOES_HERE";
static NSDictionary *stripGroupAccessAttr(CFDictionaryRef attributes) {
NSMutableDictionary *newAttributes = [[NSMutableDictionary alloc] initWithDictionary:(__bridge id)attributes];
[newAttributes removeObjectForKey:(__bridge id)kSecAttrAccessGroup];
return newAttributes;
}
static void *SecItemAdd_orig;
static OSStatus SecItemAdd_replacement(CFDictionaryRef query, CFTypeRef *result) {
NSDictionary *strippedQuery = stripGroupAccessAttr(query);
return ((OSStatus (*)(CFDictionaryRef, CFTypeRef *))SecItemAdd_orig)((__bridge CFDictionaryRef)strippedQuery, result);
}
static void *SecItemCopyMatching_orig;
static OSStatus SecItemCopyMatching_replacement(CFDictionaryRef query, CFTypeRef *result) {
NSDictionary *strippedQuery = stripGroupAccessAttr(query);
return ((OSStatus (*)(CFDictionaryRef, CFTypeRef *))SecItemCopyMatching_orig)((__bridge CFDictionaryRef)strippedQuery, result);
}
static void *SecItemUpdate_orig;
static OSStatus SecItemUpdate_replacement(CFDictionaryRef query, CFDictionaryRef attributesToUpdate) {
NSDictionary *strippedQuery = stripGroupAccessAttr(query);
return ((OSStatus (*)(CFDictionaryRef, CFDictionaryRef))SecItemUpdate_orig)((__bridge CFDictionaryRef)strippedQuery, attributesToUpdate);
}
static NSString *newUserAgentString(void) {
static NSString *newUserAgent;
static dispatch_once_t once;
dispatch_once(&once, ^{
newUserAgent = [NSString stringWithFormat:@"iOS: com.%@.%@ v%d.%d.%d (by /u/%@)", RANDSTRING, RANDSTRING, RANDINT, RANDINT, RANDINT, RANDSTRING];
});
return newUserAgent;
}
__attribute__ ((constructor)) static void init(void) {
rebind_symbols((struct rebinding[3]) {
{"SecItemAdd", SecItemAdd_replacement, (void *)&SecItemAdd_orig},
{"SecItemCopyMatching", SecItemCopyMatching_replacement, (void *)&SecItemCopyMatching_orig},
{"SecItemUpdate", SecItemUpdate_replacement, (void *)&SecItemUpdate_orig}
}, 3);
// Suppress wallpaper popup
[[NSUserDefaults standardUserDefaults] setObject:[NSDate dateWithTimeIntervalSinceNow:60*60*24*90] forKey:@"WallpaperPromptMostRecent2"];
BOOL customClientIdSet = [[NSUserDefaults standardUserDefaults] valueForKey:@"ApolloRedditAPIClientID"];
if (!customClientIdSet) {
// See if a clientId was provided during compilation
NSString *clientId = [NSString stringWithUTF8String:APOLLO_REDDIT_API_CLIENT_ID];
if (clientId && [clientId length] > 1) {
[[NSUserDefaults standardUserDefaults] setValue:clientId forKey:@"ApolloRedditAPIClientID"];
}
else {
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
UIWindow *mainWindow = ((UIWindowScene *)UIApplication.sharedApplication.connectedScenes.anyObject).windows.firstObject;
UIWindow *window = [[UIWindow alloc] initWithFrame:mainWindow.frame];
[window makeKeyAndVisible];
[mainWindow addSubview:window];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
[window addSubview:navController.view];
RedditAPICredentialViewController *viewController = [[RedditAPICredentialViewController alloc] init];
[navController presentViewController:viewController animated:YES completion:nil];
});
}
}
// Reddit API Credentials
Class _RDKOAuthCredential = objc_getClass("RDKOAuthCredential");
if (_RDKOAuthCredential) {
Method clientIdMethod = class_getInstanceMethod(_RDKOAuthCredential, sel_registerName("clientIdentifier"));
IMP replacementImp = imp_implementationWithBlock(^NSString *(id _self) {
return [[NSUserDefaults standardUserDefaults] valueForKey:@"ApolloRedditAPIClientID"];
});
method_setImplementation(clientIdMethod, replacementImp);
}
// Randomize User-Agent
Class _RDKClient = objc_getClass("RDKClient");
if (_RDKClient) {
Method userAgentMethod = class_getInstanceMethod(_RDKClient, sel_registerName("userAgent"));
IMP userAgentReplacementImp = imp_implementationWithBlock(^NSString *(id _self) {
return newUserAgentString();
});
method_setImplementation(userAgentMethod, userAgentReplacementImp);
}
// Imgur API credentials
Class ___NSCFLocalSessionTask = objc_getClass("__NSCFLocalSessionTask");
Method onqueueResumeMethod = class_getInstanceMethod(___NSCFLocalSessionTask, sel_registerName("_onqueue_resume"));
IMP originalOnqueueImp = method_getImplementation(onqueueResumeMethod);
IMP replacementOnqueueImp = imp_implementationWithBlock(^void (id _self) {
// Grab the request url
NSURLRequest *request = [_self valueForKey:@"_originalRequest"];
NSString *requestURL = request.URL.absoluteString;
// Drop requests to analytics/apns services
if ([requestURL containsString:@"https://apollopushserver.xyz"] || [requestURL containsString:@"telemetrydeck.com"]) {
return;
}
// Replace the original user agent string with a randomized one
NSMutableURLRequest *mutableRequest = [request mutableCopy];
if ([requestURL containsString:@"reddit.com"]) {
[mutableRequest setValue:newUserAgentString() forHTTPHeaderField:@"User-Agent"];
}
// Catch requests to Apollo's Imgur proxy and Rapidshare. The URLs will be replaced with the real Imgur API
if ([requestURL containsString:@"https://apollogur.download/api/"] || [requestURL containsString:@"https://imgur-apiv3.p.rapidapi.com"]) {
// Replace proxy urls with the real imgur api
NSString *newURLString = [requestURL stringByReplacingOccurrencesOfString:@"https://apollogur.download/api/" withString:@"https://api.imgur.com/3/"];
newURLString = [newURLString stringByReplacingOccurrencesOfString:@"https://imgur-apiv3.p.rapidapi.com/" withString:@"https://api.imgur.com/"];
mutableRequest.URL = [NSURL URLWithString:newURLString];
// Insert the api credential and update the request on this session task
[mutableRequest setValue:[NSString stringWithFormat:@"Client-ID %@", kImgurClientID] forHTTPHeaderField:@"Authorization"];
}
[_self setValue:mutableRequest forKey:@"_originalRequest"];
[_self setValue:mutableRequest forKey:@"_currentRequest"];
((void (*)(id, SEL))originalOnqueueImp)(_self, sel_registerName("_onqueue_resume"));
});
method_setImplementation(onqueueResumeMethod, replacementOnqueueImp);
}