A powerful, quickly, light-weight hooking tool on iOS device without jailbreak.
https://github.com/MUHook/MUHook
@saudgl
https://github.com/MUHook/MUHook
@saudgl
GitHub
GitHub - MUHook/MUHook: Hook & create subclass without jailbreak
Hook & create subclass without jailbreak. Contribute to MUHook/MUHook development by creating an account on GitHub.
β€3
Bubg SDK 2.7
- Global
- KR Korea
- VNG Vietnam
https://github.com/saudgl/Pubg-2.7-IOS-SDK-Global-KR-VNG/tree/main
by @saudgl
- Global
- KR Korea
- VNG Vietnam
https://github.com/saudgl/Pubg-2.7-IOS-SDK-Global-KR-VNG/tree/main
by @saudgl
GitHub
GitHub - saudgl/Pubg-2.7-IOS-SDK-Global-KR-VNG: Pubg 2.7 IOS SDK Global, Korea and Vietnam
Pubg 2.7 IOS SDK Global, Korea and Vietnam. Contribute to saudgl/Pubg-2.7-IOS-SDK-Global-KR-VNG development by creating an account on GitHub.
For reverse engineering use Ghidra free and powerful work on mac and windows
https://ghidra-sre.org/
https://ghidra-sre.org/
Forwarded from N/A
π3β€1π€1
User asked how to remove
To delete all the contents of a folder (
In this example, we first get the app's data path using
Next, we create an instance of
We then iterate over each file in the
If any errors occur during the process, we log them to the console for debugging purposes.
You can use Mac console to trace errors logs .
Good luck
@pubg_dev
ano_tmp folder contents:To delete all the contents of a folder (
ano_tmp) in Objective-C, you can use the NSFileManager class. Here's an example of how you can delete all the contents of a folder named "ano_tmp" in the app's data path:objective-c
NSString *dataPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
NSString *tempFolderPath = [dataPath stringByAppendingPathComponent:@"ano_tmp"];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error = nil;
NSArray *tempContents = [fileManager contentsOfDirectoryAtPath:tempFolderPath error:&error];
if (error) {
NSLog(@"Error getting contents of ano_tmp folder: %@", error);
} else {
for (NSString *file in tempContents) {
NSString *filePath = [tempFolderPath stringByAppendingPathComponent:file];
BOOL success = [fileManager removeItemAtPath:filePath error:&error];
if (!success) {
NSLog(@"Error deleting file %@: %@", file, error);
}
}
}
In this example, we first get the app's data path using
NSSearchPathForDirectoriesInDomains, and then append "temp" to it to get the full path to the "temp" folder.Next, we create an instance of
NSFileManager and use its contentsOfDirectoryAtPath method to get an array of all the files and folders inside the "temp" folder.We then iterate over each file in the
tempContents array and delete it using the removeItemAtPath method of NSFileManager.If any errors occur during the process, we log them to the console for debugging purposes.
You can use Mac console to trace errors logs .
Good luck
@pubg_dev
β€3
VNG IOS 2.8 PUBGM
GNameFunc = 0x104117E94
GNameData = 0x108B9EFB0
GWorldFunc = 0x10278EE04
GWorldData = 0x108F5F028
LinetoSight = 0x10514D168
By group member
GNameFunc = 0x104117E94
GNameData = 0x108B9EFB0
GWorldFunc = 0x10278EE04
GWorldData = 0x108F5F028
LinetoSight = 0x10514D168
By group member
β€6