Jump to content

bR34Kr

ViP Pro
  • Posts

    1,323
  • Joined

  • Last visited

Posts posted by bR34Kr

  1. 9 minutes ago, Jacksonlane24 said:

    Thanks for the detailed reply, I was actually able to branch the functions and offsets and got the cheat to work when pressing the music button, of course I want to try to do multiple branches at a time, because; i put these into a modmenu as there’s a lot, but the thing is I can only enable one at a time, like I can’t do ... give 10k coins and give 10k gems ... at the same time so is it possible to branch multiple functions to the same offset (music button) and for them to both work at the same time? Also I’ll read into guest’s topic on function pointers, Thank you bR34Kr

    Ah wait no I was wrong. Do a BL for two of the functions so it branches with a link to the function and then for the last call do a regular branch

  2. Learn about functions first. This should be handled like any other type, the only difference is their prototype and required arguments. You don't actually want to hack those, you want to call these functions. Read Guest's tutorials about Function Pointers etc. it'll serve you for this. If you only want to press the music button to do that you just need to patch and you have no use for a menu. The new assembly would be to branch to one of those functions on click. If you want to execute them all then do two BLs and make sure you branch to the link register at the end of each of the functions you BL to and then do a normal branch.

    • Informative 1
  3. @Rook Be sure to remove the dead links in More->ArmConverter 

     

    Edit: Also the "Toggle mode" button increases the Successful Conversions counter because it sends a request to /api/convert for some reason. A quick fix that would also solve another issue would be to not set it as Successful when the /api/convert request headers have blank values. 

  4. If it’s restrictions then brute force the password and activate the website OR try opening a proxy and connect to it then to the site. If it’s the domain that’s blocked also get a proxy and/or VPN to not directly request the site. 

  5. 7 hours ago, mafusuke said:

    I tried ondeviceconsole but nothing happened so using oslog instead worked fine!

    Thanks.

    For ondeviceconsole, you download the package from Cydia and then use the command ondeviceconsole to spawn it. If you want to filter for only your app do something like this:

    ondeviceconsole | grep "APP_BINARY_NAME_HERE"

     

  6. Do what Rook said. Rather than constantly upgrading and losing money, you do one big investment and you’ll be running good for a long time :). Also take time to read a lot of reviews, if you break any parts it’s gonna cost much more if you want a fix on laptop, so be sure it’s built correctly.

    • Winner 1
    • Thanks 1
  7. Find other executable files in the bundle. 51KB is extremely small: either it’s streaming the game off the server (which is quite strange) or it’s calling functions from a library (which will be the real game) inside another directory. Look at Frameworks/ or list all executables doing something like this:

    find /path/to/bundle -executable -type f

    *Might not work since permissions might be set differently for the executables (which would not be executable, but you get the idea :p )

  8. 33 minutes ago, Walking Hell said:

    When i do this i normally just copy the the request from flexible and edit it in notepad app to my desirable outcome , and open my terminal and paste it in there. However, you do require tweaks such as  CA Certs and cUrl.

    If you want to use cURL to make the requests then yes, but Python’s requests module should be fine too.

  9. @Ted2 Good job! You're jumping in an amazing world. :)

     

    And btw, this

    body = {"bikes": [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],}

    can be replaced with this ;)

    body = {"bikes": list(range(1, 75))}

     

    • Like 2
    • Winner 2
    • Haha 1
  10. 22 minutes ago, DADi said:

    Mine seems to work. On IOS 13 and iOS 12, but I'm using CheckRa1n.

    You can also perhaps try Jtool from jakeashacks repo.

    Thank you. This worked great for me :) 

    1 hour ago, absolut1on said:

    Otool

    Tool used to ......................

    What about this? you tried from bigboss?

     

    No :/ JTool worked though

  11. Here is an example:

    me:~ mobile$ otool -tV /usr/bin/otool                                                                                    
    /usr/bin/otool (architecture armv7):                                                                                             
    (__TEXT,__text) section                                                                                                          
    can't create arm llvm disassembler                                                                                               
    /usr/bin/otool (architecture arm64):                                                                                             
    (__TEXT,__text) section                                                                                                          
    can't create arm64 llvm disassembler  
    me:~ mobile$ 

    And it does that for any binary, either arm64 only, arm7 only, or both. I have my theos environment and LLVM tools installed too.

×
  • 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