Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. Go to a libary or borrow it from a friend. Everyone has access to a computer one way or another.
  2. Any tutorials on becoming gay?

    1. Joka

      Joka

      @Pradeep6868  was gonna release one but must've forgot to post it OMEGALUL

    2. Pradeep6868

      Pradeep6868

      Low key I was but I had to put more gay details so I’m still working on it 😂

    3. Pradeep6868

      Pradeep6868

      While I’m here let me give You little something something:

      How to be gay? Put “daddy” at end of every sentences

    4. Amir0121
    5. Night Rose
  3. its been patched in latest version.
  4. because iapstore method is the same as any purchase. all those subscription apps are server sided with their subscription
  5. it doesn’t make a difference
  6. function names no longer exist in the new version
  7. nope, they don’t
  8. Yo Dude! You have new Ziggo Go jailbreak bypass? :)
    The one in Flex fails. Otherwise, I'll try to bypass it myself. :p

    1. Show previous comments  4 more
    2. Walking Hell

      Walking Hell

      yes that crashing its part of their jb detection, You can use NoSub (PalBreak w/ options) on https://skylerk99.github.io/

      it stops the crashing, only the next issue will be that videos cant be played. 

    3. Walking Hell

      Walking Hell

      BMvVCeE.jpg

      you have to respring with resub, but videos do play when i am connected with passionfruit, but not without.

      also it has jailbreak detect, "env": "DYLD_INSERT_LIBRARIES"

    4. Ted2

      Ted2

      Hm. Interesting

    5. Walking Hell

      Walking Hell

      i think it works with passionfruit and nosub, as passionfruit has also some features to log and bypass jailbreak in it, so it counters whatever ziggo go is doing.

    6. Ted2

      Ted2

      Can't you see what it bypasses then?

  9. go into airplane mode, open the app & then disable airplane mode
  10. still need to use the ugly looking quotes then inject(0xIDAOffset, “”); 🤮🤮
  11. The thing is, I hate to have to write it like that ^, it’s almost the same as the original now possibly, but I think there must be a simpler solution
  12. Yeah I tried that, but couldn’t get something like it to work. I’ve tried multiple things, this is the only one that worked. Will look into an alternative another time. C/C++ isn’t the most user friendly when it comes to arrays it seems
  13. It's a .h file, which is a tool to patch memory ? idk Both sections fine for me
  14. While MSHookMemory is great, I hate I have to do this: const uint8_t hack[] = { 0x00, 0x00, 0x80, 0x52, // mov w0, #0 0xc0, 0x03, 0x5f, 0xd6, // ret }; So I wrote some code which won't need you to do that: #include <substrate.h> #include <mach-o/dyld.h> #define ASLR_BIAS _dyld_get_image_vmaddr_slide(0) uint64_t getRealOffset(uint64_t offset){ return ASLR_BIAS + offset; } // main func void inject(uint64_t offset, uint64_t hackedHex) { hackedHex = CFSwapInt32(hackedHex); MSHookMemory((void *)getRealOffset(offset), (void *)&hackedHex, sizeof(hackedHex)); } How to import this code to your project? You have two options: 1. Copy & paste the code from above under your "imports" 2. Download this file & paste it in /var/theos/includes & write this on top of tweak.xm: #include <inject.h> Usage of the function: //parameters it takes inject(0xIDAOffset, 0xHackedHex); //actual usage on a offset inject(0x100299DC4, 0xC0035FD6); Bugs to be fixed: 1. If you wanna write a hex more than 4 bytes, it won't work the way you think, example: inject(0x100299DC0, 0x20008052C0035FD6); /* This will write C0035FD620008052 instead of what you entered due the CFSwapInt32 /* NOTE: I'm no pro at this kinda stuff (dealing with memory), so if there's anything just mention it ^^ Credits - Saurik - topics from https://stackoverflow.com/ which helped me understand several things - Me for this simplified version
  15. The 500 Internal Server Error is a very general HTTP status code that means something has gone wrong on the website's server, but the server could not be more specific on what the exact problem is
  16. Gotta say, Sileo looks good
×
  • 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