- Install Xcode from the Mac App Store
- Install theos. You don't need to install the SDK
- Install theos-jailed. You don't need ios-deploy
- Get a decrypted ipa of the app you want
- Change the .ipa file extension to .zip & unzip it
| import pypdf | |
| import easyocr | |
| import pytesseract | |
| import os | |
| import fitz | |
| pytesseract.pytesseract.tesseract_cmd = r"C:\Users\{USER_NAME}\AppData\Local\Programs\Tesseract-OCR\tesseract.exe" | |
| FILE_PATH = "2024-V4.pdf" |
| // Coding game challenge | |
| // https://ide.codingame.com/21913565?id=6961426c38c52b3832ea4526f1e3554103a33c0 | |
| function solve(clawPos, boxes, boxInClaw) { | |
| // Write your code here | |
| // To debug: console.error('Debug messages...'); | |
| // #1 Get all available boxes | |
| let sumOfBoxes = 0; | |
| let numOfStacks = boxes.length; |
| // Trace all calls to constructor functions in all loaded images | |
| // * For more details - please read https://www.romainthomas.fr/post/21-07-pokemongo-anti-frida-jailbreak-bypass/ | |
| // * In case the app is crashing due to slow lanuch - please read https://github.com/opa334/WatchdogDisabler | |
| // Image = /usr/lib/dyld | |
| // Function Signature = ImageLoader::containsAddress(void const*) | |
| // Symbol Name = __ZNK11ImageLoader15containsAddressEPKv | |
| // Address = 0x1083c |
| /* | |
| * This program is a demo of function inline hook for aarch64, | |
| * Please compile and test in aarch64, WITHOUT any compile optimization | |
| * | |
| * Function sub will be hooked by hooked_sub, when invoke function sub, | |
| * hooked_sub will be invoked first, then it can decide whether to invoke the | |
| * original sub or not. | |
| */ | |
| #include <stdio.h> |
| #include <errno.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <libproc.h> | |
| #include <mach/mach.h> | |
| #include <CoreFoundation/CoreFoundation.h> | |
| int main(void) | |
| { |