-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTweak.xm
More file actions
executable file
·448 lines (314 loc) · 9.45 KB
/
Tweak.xm
File metadata and controls
executable file
·448 lines (314 loc) · 9.45 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#import <CommonCrypto/CommonDigest.h>
#import <Foundation/Foundation.h>
#import <rootless.h>
#include <dlfcn.h>
#include <CydiaSubstrate/CydiaSubstrate.h>
#define DEFAULT_VERSION @"2.25.21.6";
/*
Preferences …
*/
NSDictionary *preferences;
/*
Variables …
*/
BOOL enabled;
BOOL debugLogging;
int newVersionMajor;
int newVersionMinor;
int newVersionBuild;
int newVersionRevision;
NSString *newVersion;
NSString *newBuildHash;
static NSDate * (*_orig_WAAppExpirationDate)();
static NSDate * (*_orig_WABuildDate)();
static NSDate * (*_orig_WADeprecatedPlatformCutOffDate)();
static NSString * (*_orig_WABuildVersion)(void *, void *);
static NSString * (*_orig_WABuildHash)();
/*
Functions …
*/
static NSString *md5HexDigest(NSString *input)
{
const char* str = [input UTF8String];
unsigned char result[CC_MD5_DIGEST_LENGTH];
CC_MD5(str, (CC_LONG)strlen(str), result);
NSMutableString *ret = [NSMutableString stringWithCapacity: CC_MD5_DIGEST_LENGTH * 2];
for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
{
[ret appendFormat: @"%02x", result[i]];
}
return ret;
}
/*
Function Overrides …
*/
static NSDate *_new_WAAppExpirationDate()
{
if (debugLogging)
{
NSLog(@"_new_WAAppExpirationDate called");
NSDate *originalDate = _orig_WAAppExpirationDate();
NSLog(@"Original expiration date: %@", originalDate);
}
// Modify the Date or do whatever you want here …
return [NSDate dateWithTimeIntervalSinceNow: 31536000];
}
static NSDate *_new_WABuildDate()
{
if (debugLogging)
{
NSLog(@"_new_WABuildDate called");
NSDate *originalDate = _orig_WABuildDate();
NSLog(@"Original build date: %@", originalDate);
}
// Modify the Date or do whatever you want here …
return [NSDate date];
}
static NSString *_new_WABuildHash()
{
if (debugLogging)
{
NSLog(@"_new_WABuildHash called");
NSString *originalVersion = _orig_WABuildHash();
NSLog(@"Original build hash: %@", originalVersion);
}
// Modify the Build Hash or do whatever you want here …
return newBuildHash;
}
static NSString *_new_WABuildVersion(void *arg1, void *arg2)
{
if (debugLogging)
{
NSLog(@"_new_WABuildVersion called");
NSString *originalVersion = _orig_WABuildVersion(arg1, arg2);
NSLog(@"Original build version: %@", originalVersion);
}
// Modify the Version or do whatever you want here …
return newVersion;
}
static NSDate *_new_WADeprecatedPlatformCutOffDate()
{
if (debugLogging)
{
NSLog(@"_new_WADeprecatedPlatformCutOffDate called");
NSDate *originalDate = _orig_WADeprecatedPlatformCutOffDate();
NSLog(@"Original expiration date: %@", originalDate);
}
// Modify the Date or do whatever you want here …
return [NSDate dateWithTimeIntervalSinceNow: 31536000];
}
/*
Hooks …
*/
%group Axolotl
%hook WALogWriter
- (NSString*)formatLogText: (NSString*)ar1 withLevel: (int)ar2
{
NSString *result = %orig;
if (debugLogging)
{
NSLog(@"WALog: %@", result);
}
return result;
}
%end
%hook WAMessage
- (bool)needsLocalNotification
{
return true;
}
%end
%hook WAPBClientPayload_UserAgent_AppVersion
- (void)setPrimary: (int)i
{
%orig(newVersionMajor);
}
- (void)setSecondary: (int)i
{
%orig(newVersionMinor);
}
- (void)setTertiary: (int)i
{
%orig(newVersionBuild);
}
- (void)setQuaternary: (int)i
{
%orig(newVersionRevision);
}
%end
/*
WACreateUserAgent
WASubmitMessageSendEvent
WAChatServers
WAStreamVersion
WACreateClientPayload
*/
%hook WARootViewController
- (bool)isBuildExpired
{
return NO;
}
- (void)expireBuild
{
return;
}
- (void)presentHelperScreen
{
return;
}
- (void)wa_applicationDidEnterBackground
{
return;
}
%end
%hook WamEventDaily
- (double)iphone_jailbroken
{
return 0;
}
%end
%end
/*
Constructor …
*/
%ctor
{
// Load Preferences …
preferences = [NSDictionary dictionaryWithContentsOfFile: ROOT_PATH_NS(@"/var/mobile/Library/Preferences/com.macthemes.axolotlprefs.plist")];
// … and parse only the "enabled" Preference.
enabled = preferences[@"enabled"] ? [preferences[@"enabled"] boolValue] : YES;
// Let's check, if the Tweak is enabled and initialize them …
if (enabled)
{
// Now let's get the Preferences for Debug Logging and the new Version …
debugLogging = preferences[@"debugLogging"] ? [preferences[@"debugLogging"] boolValue] : NO;
newVersion = preferences[@"newVersion"] ? [preferences[@"newVersion"] stringValue] : DEFAULT_VERSION;
// Check, if the Version is valid …
NSPredicate *isValidVersion = [NSPredicate predicateWithFormat: @"SELF MATCHES %@", @"^\\d+(\\.\\d+){2,3}$"];
// … and if not, use our Default Version.
if (![isValidVersion evaluateWithObject: newVersion])
{
newVersion = DEFAULT_VERSION;
}
// Separate the Version by it's Point and get the Components …
NSArray *components = [newVersion componentsSeparatedByString: @"."];
// … and set the Variables.
newVersionMajor = [components[0] intValue];
newVersionMinor = [components[1] intValue];
newVersionBuild = [components[2] intValue];
newVersionRevision = ([components count] > 3) ? [components[3] intValue] : 0;
// Get SharedModules-Framework …
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
NSString *frameworkPath = [bundlePath stringByAppendingPathComponent: @"Frameworks/SharedModules.framework/SharedModules"];
void *image = dlopen([frameworkPath UTF8String], RTLD_LAZY);
// Initialize the Tweak …
%init(Axolotl);
// If we have a valid Image …
if (image)
{
// Get Build Date and change it to our new Date …
void * _WAAppExpirationDate = dlsym(image, "WAAppExpirationDate");
if (_WAAppExpirationDate)
{
// Check, if Debug Logging is requested …
if (debugLogging)
{
// Cast the Void Pointer to a Function Pointer and call it …
NSDate * (*func)() = (NSDate *(*)())_WAAppExpirationDate;
NSDate *result = func();
NSLog(@"Function result: %@", result);
}
// Replace the original Function by our new One with different Expiration Date …
MSHookFunction(_WAAppExpirationDate, (void *)&_new_WAAppExpirationDate, (void **)&_orig_WAAppExpirationDate);
}
else if (debugLogging)
{
NSLog(@"Failed to find WAAppExpirationDate");
}
// Get Build Date and change it to our new Date …
void * _WABuildDate = dlsym(image, "WABuildDate");
if (_WABuildDate)
{
// Check, if Debug Logging is requested …
if (debugLogging)
{
// Cast the Void Pointer to a Function Pointer and call it …
NSDate * (*func)() = (NSDate *(*)())_WABuildDate;
NSDate *result = func();
NSLog(@"Function result: %@", result);
}
// Replace the original Function by our new One with different Build Date …
MSHookFunction(_WABuildDate, (void *)&_new_WABuildDate, (void **)&_orig_WABuildDate);
}
else if (debugLogging)
{
NSLog(@"Failed to find WABuildDate");
}
// Get the Build Version and change it to our new Version …
void * _WABuildVersion = dlsym(image, "WABuildVersion");
if (_WABuildVersion)
{
// Check, if Debug Logging is requested …
if (debugLogging)
{
// Cast the Void Pointer to a Function Pointer and call it …
NSString * (*func)(void *, void *) = (NSString *(*)(void *, void *))_WABuildVersion;
// Pass NULL for the Arguments if you don't know what to pass …
NSString *result = func((void*)@"", (void*)@"");
NSLog(@"Function result: %@", result);
}
// Replace the original Function by our new One with different Build Version …
MSHookFunction(_WABuildVersion, (void *)&_new_WABuildVersion, (void **)&_orig_WABuildVersion);
}
else if (debugLogging)
{
NSLog(@"Failed to find WABuildVersion");
}
// Get Build Hash and change it to our previously calculated Hash …
void * _WABuildHash = dlsym(image, "WABuildHash");
if (_WABuildHash)
{
// Let's calculate a new MD5-Hash of the Build Version, which is simply used as Build Hash …
newBuildHash = md5HexDigest(newVersion);
// Check, if Debug Logging is requested …
if (debugLogging)
{
// Cast the Void Pointer to a Function Pointer and call it …
NSString * (*func)() = (NSString *(*)())_WABuildHash;
// Pass NULL for the Arguments if you don't know what to pass …
NSString *result = func();
NSLog(@"Function result: %@", result);
}
// Replace the original Function by our new One with different Build Hash …
MSHookFunction(_WABuildHash, (void *)&_new_WABuildHash, (void **)&_orig_WABuildHash);
}
else if (debugLogging)
{
NSLog(@"Failed to find WABuildHash");
}
// Get Deprecated Platform Cut-Off Date and change it to our new Date …
void *_WADeprecatedPlatformCutOffDate = dlsym(image, "_WADeprecatedPlatformCutOffDate");
if (_WADeprecatedPlatformCutOffDate)
{
// Check, if Debug Logging is requested …
if (debugLogging)
{
// Cast the Void Pointer to a Function Pointer and call it …
NSDate * (*func)() = (NSDate *(*)())_WADeprecatedPlatformCutOffDate;
NSDate *result = func();
NSLog(@"Function result: %@", result);
}
MSHookFunction(_WADeprecatedPlatformCutOffDate, (void *)&_new_WADeprecatedPlatformCutOffDate, (void **)&_orig_WADeprecatedPlatformCutOffDate);
}
else if (debugLogging)
{
NSLog(@"Failed to find _WADeprecatedPlatformCutOffDate");
}
}
else if (debugLogging)
{
NSLog(@"Failed to load image at path: %@", frameworkPath);
}
return;
}
}