fa
Feedback
GL-DEV

GL-DEV

رفتن به کانال در Telegram

Clarification: we do not encourage violating the rules and regulations of any game. What we present here is all for the purpose of education, experimentation and testing. Chat Arabic: https://t.me/+mecGwFshKVkxZTFk, CH: https://t.me/+1txE55VyGGY4YTU0

نمایش بیشتر
کشور مشخص نشده استفناوری و برنامه‌ها39 581
1 199
مشترکین
-124 ساعت
-47 روز
+3130 روز
آرشیو پست ها
GL-DEV
1 199
Pubg Taiwan 2.7 GWorld FUn 0x1029f573c GWorld Data 0x109170358 FNmae Fun 0x104314d20 FNmae Data 0x108ddc620 LineOfSightTo 0x10533e540 @pubg_dev

GL-DEV
1 199
User asked how to remove 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

GL-DEV
1 199
+6
IDA Pro 7.6 SP1 (x86, x64, ARM, ARM64, MIPS) + TOOLS.7z316.66 MB

GL-DEV
1 199
For reverse engineering use Ghidra free and powerful work on mac and windows https://ghidra-sre.org/

GL-DEV
1 199
Pubg SDK 2.7 - Global - KR Korea - VNG Vietnam https://github.com/saudgl/Pubg-2.7-IOS-SDK-Global-KR-VNG/tree/main by @saudgl

GL-DEV
1 199
SDKs soon

GL-DEV
1 199
Pubg KR 2.7 GWorldFun : 0x1024887cc GWorldData: 0x1081c6a18 GNameFun: 0x103a57280 GNameData: 0x107e3d240 LineOfSightTo: 0x104a04830 By @saudgl

GL-DEV
1 199
Pubg VNG 2.7 GWorldFun : 0x1027bd6fc GWorldData: 0x108e864d8 GNameFun: 0x1040dcce0 GNameData: 0x108af2a30 LineOfSightTo: 0x105106534 By @saudgl

GL-DEV
1 199
Pubg GL 2.7 GWorldFun : 0x10285d9e8 GWorldData: 0x108f98458 GNameFun: 0x10417cfcc GNameData: 0x108c049b0 LineOfSightTo: 0x1051a6820 By @saudgl

GL-DEV
1 199
Pubg BGMI 2.5 IOS GWorldFun : 0x101fd6b84 GWorldData: 0x107e2b8f8 GNameFun: 0x103787164 GNameData: 0x107a9eb10 LineOfSightTo: 0x10474a350 By @saudgl 31-5-23

GL-DEV
1 199
A powerful, quickly, light-weight hooking tool on iOS device without jailbreak. https://github.com/MUHook/MUHook @saudgl

GL-DEV
1 199
photo content

GL-DEV
1 199
A topic outside the scope of games and reverse engineering, I wanted to share it with you because of the seriousness of the matter ⬇️⬇️⬇️⬇️⬇️ Few days ago Russia says US hacked thousands of Apple phones in spy plot Apple, in cooperation with the US government, spied on the iPhones of important employees in Russia. and that through iMessage -1 send file through iMassage to obtain privilege to second filr -2 second file 242kb access to all iPhone controls camar and mic etc. by using first file privilege. And then send all data to apple iCloud servers . -3 The last file delete file number one and number two and it's self. Here the picture of second file:

GL-DEV
1 199
Old source of Pubg ios ESP Good to start . Need update using fastcall method find it in the channel https://github.com/nongshifu/ESP-For-PUBG

GL-DEV
1 199
14 Excellent Free Books to Learn C++ ⬇️⬇️⬇️⬇️⬇️ https://www.linuxlinks.com/excellent-free-books-learn-c-plus-plus/

GL-DEV
1 199
Free PDF book The Boost C++ Libraries by Boris Schäling This book introduces 72 Boost libraries that provide a wide range of useful capabilities. They help programmers manage memory and process strings more easily. The libraries provide containers and other data structures that extend the standard library. They make it easy to build platform-independent network applications.