Jump to content

Batch

Developer
  • Posts

    2,073
  • Joined

  • Last visited

Everything posted by Batch

  1. Yes use standard theos and silenPwn and libspecter. Just add libspecter .a into makefile and then import the header file.
  2. Yes, the other library replace the binary code, that is not allowed into non jailbreak
  3. Dobby will not work on non jailbreak. For hooks just use breakpoints from my library, that's it
  4. Mmmh interesting! will look into this, btw to lift the ban use igg "app reset & spoof", it will lift your device ban and just create a new account
  5. Don't inject anything else just your .deb!!!
  6. They changed that, now player position is only revealed if they are near something, so it's not always on, it's a server side thing
  7. I think there is already that you tap to attack and it will auto aim for you
  8. You need to enable play a bit then close application and reopen
  9. Could you try only FoV and no map? im starting to think the reveal enemies has some detection into it
  10. Modded/Hacked App: League of Legends: Wild Rift By Riot Games Bundle ID: com.riotgames.league.wildrift App Store Link: https://apps.apple.com/us/app/league-of-legends-wild-rift/id1480616990?uo=4 📌 Mod Requirements - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad. - Sideloadly or alternatives. - Computer running Windows/macOS/Linux with iTunes installed. Hack Features - Zoom Out (FoV Changer) - Reveal Enemies (WIll show in minimap enemies near monster and also all monster hp) USE AT YOUR OWN RISK! There is a risk of ban so be aware of it and don't use on your main account! ⬇️ iOS Hack Download IPA Link [Hidden Content] 📖 PC Installation Instructions STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example. STEP 2: Download Sideloadly and install it on your Windows or Mac. STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly. STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application. STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information. STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below. STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'. STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game. NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. 🙌 Credits - Batch 📷 Cheat Video/Screenshots N/A
  11. https://github.com/Batchhh/libspecter/releases/tag/v1.0.6 Download latest and then you can do something like: using AddRecoil_t = void (*)(void *self, float amount); static uint64_t g_addRecoilBrk = 0; static AddRecoil_t orig_AddRecoil = nullptr; void hook_AddRecoil(void *self, float amount) { if (orig_AddRecoil) { CHECK(mem_brk_suspend_self()); orig_AddRecoil(self, amount); CHECK(mem_brk_resume_self()); } } void install() { CHECK(mem_init("UnityFramework", nullptr)); CHECK(mem_brk_install(0x123, reinterpret_cast<uintptr_t>(hook_AddRecoil), &g_addRecoilBrk)); uintptr_t absolute = 0; CHECK(mem_brk_target(g_addRecoilBrk, &absolute)); orig_AddRecoil = reinterpret_cast<AddRecoil_t>(absolute); }
  12. Ye that expected behaviour for jailed, inline hooks crashes because of sandbox policy. The best way to do this is using breakpoints, and to call origin function you need to suspend and resume, but it seems i forgot to expose to the APIs, updating now! thanks for the report Also for these issues it's best if you open a issue in github https://github.com/Batchhh/libspecter/issues because i can miss notification here, i get too many ahah
  13. Now i deleted everything ;-; but the container contains 907 assets, also no need to run at runtime you can do everything in static analysis
  14. There was already a cheat made for this Also your research had some gaps and i completed it but just dumped all the game assets .png's and .json for objects, nothing relevant
  15. Intersting analysis, will use to make something probably I decrypted the json files embedded in the ipa, but seems modifying those does nothing
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines