Jump to content

strejda603

Senior Member
  • Posts

    191
  • Joined

  • Last visited

Posts posted by strejda603

  1. Theos (jailed version)

    1. Download and install theos-jailed
    2. Download .deb file of tweak, you want to implement (i.e. using Cydownload)
    3. Extract and decrypt the app (Using CrackerXI+ on jailbroken device, or try to find ipa on Google) targeted by that .deb tweak. Save as a .ipa
    3. Unpack the .deb file, using the command "dpkg-deb -x file.deb destination"
    4. Create a new Theos project with the "jailed" template, using the decrypted .ipa
    5. Copy the unpacked tweak at "destination/Library/MobileSubstrate/DynamicLibraries/tweak-name.dylib" to the root folder of your project, replacing "tweak-name" with the name of the tweak you downloaded
    6. Add "TWEAK_NAME_INJECT_DYLIBS = tweak-name.dylib" (without quotes) to the top of your Makefile
    7. Make package

    Now, theos should generated tweaked .ipa for you and then you just sideload it using Cydia Impactor or sign it via 3rd party services (or using your own Apple Developer Certificate ;)) and install to your device...

     

    https://github.com/kabiroberai/theos-jailed/wiki/Usage#general-usage

    ... these tutorials should help you :)

    • Like 1
  2. I have found a solution for Google ads (Class = "GAD...SomeShait...")

    For a banner ad search for Class "GADBannerView", find and click on "-(void) setRootViewController:(id)" and set value of id to NULL...

    For full screen ad search for Class "GADFullScreenAdViewController", find and click on "-(bool) canPresentFromViewwController:(id)" and set value of bool to FALSE...

    • Like 1
    • Informative 1
  3. Hey guys,

    I would like to create custom variable for theos. In example @@DATECREATED@@ to print current date for my tweak deceptions (I'm soooo bored to edit it manually :D)

    Like @@FULLPROJECTNAME@@ prints out tweak name in control and Makefile...

    Edit: I did it with adding this to my nic.pl:

    use DateTime;
    
    $NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');

    Is it possible to do it without editing original nic.pl?

    Thanks for suggestions!

  4.   spacer.png

    Modded/Hacked App: Groovepad - Music & Beat Maker By Easybrain
    Bundle ID: com.easybrain.make-music
    iTunes Store Link: https://apps.apple.com/us/app/groovepad-music-beat-maker/id1454398991

    Mod Requirements:
    - Jailbroken iPhone/iPad/iPod Touch.
    - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
    - Cydia Substrate or Substitute.


    Hack Features:
    - Pro enabled


    iOS Hack Download Link:

    Hidden Content

    React or reply to this topic to see the hidden content & download link.

    Installation Instructions (manual):
    STEP 1: Download the .deb file from the link above.
    STEP 2: Copy the file to your iDevice using any of the file managers mentioned above or skip this step, if you're downloading from your iDevice.
    STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it.
    STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen.
    STEP 5: Let iFile / Filza finish the hack installation. Make sure it successfully installs, otherwise see the note below.
    STEP 6: Respring and enjoy the hack 😉

    NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, or post your issue down 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:
    - strejda603 (for hack)

    - John Coates (for Flex3)

    - Tanner Bennett (for FLEXing)

    - Theos team (for making hack to be compiled and built .deb)

    - iOSGods.com (for tutorials!)


    Screenshots:

    spacer.pngspacer.png

    • Like 133
    • Winner 20
    • Thanks 27
    • Haha 11
    • Agree 18
    • Informative 6
  5. 6 minutes ago, Kilmnar said:

    In what way? Just saving it?

    o_o

    save it

    No, I mean, what code should I use in my Tweak.x file?

    (I have created a tweak with theos and now I want to change this string - if it's possible, not patching binary for it)

    P.S.: I have also IDA Pro, so if you know how to do it in IDA, you can tell me :)

  6. 1 hour ago, Kilmnar said:

    Nsstring is read only A few long tedious way of doing what you want but I’m not sure how to do it in hopper....sooo

    im going to assume that hopper has a hex editor since it’s a dissembler you have the offset so find the text in hex & edit it that way.

    if there’s no hex byte (plain readable text) on the side then edit the hex string(number sequence)

     

    find an online text to hex/hex to text converter and make sure you edit the correct thing & replace it...there you go

    Thank you! And how can I implement it to tweak.x?

  7. Hey guys,

    I would like to change a string ("You are a Pro"), which is NSString property inside UITableViewLabel, to something else (i.e.: "You are NOOB! ;-)") and use it in Tweak.x file. Could someone give me a tip, how to do it?

    I've tried to use MSHook function, but I'm very begginer with C, so I have no idea, how to do it right...

    Here is the image with address and XREF of cfstring:

    spacer.png

    Thank you!

  8. On 2/2/2020 at 11:07 AM, Ayan007 said:

    Hey ! This message is regarding PDF expert tweak. First of all I’d like to thank you for creating such a tweak. I really needed it . But there’s only one problem . Every time I open the app an alert box pops up with the message “ hacked by strejda. Enjoy the hack”. If it was for once I wouldn’t have cared. But it keeps showing up everytime I open the app. It would be really nice if there was a way to get rid of this. 🙂

    Hey Ayan007,

    I know that every popup of this kind in any app is annoying.. But you should understand that it's the only way, how to give developer some credit (like if you have some free app, there is 99% chance it will contains some ads and you have to pay, if you want to get rid of them)... I thought about it, but instead of making my tweaks paid or spammed with ads, I've decided to make it free with just this little popup.. After all, I've spent some time to create this tweak (I had to learn, how to do it and nobody have payed me a cent for that) and I think that one little popup when opening app isn't so catastrophic ;) ... Hope you understand me..

    If it is still unbearable for you, you can try to find out, how to disable this or you can create your own hack :)

  9. Amazing template! But theos gives me error when I'm trying to run "make package"...

    danielpitra@frnda: ~/Documents/Theos/airmailpremium] $ make package
    > Making all for tweak AirmailPremium…
    ==> Preprocessing Tweak.x…
    ==> Compiling Tweak.x (arm64)…
    Tweak.x:69:40: error: 'keyWindow' is deprecated: first deprecated in iOS 13.0 - Should not be used
          for applications that support multiple scenes as it returns a key window across all connected
          scenes [-Werror,-Wdeprecated-declarations]
        [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:ig...
                                           ^
    /Users/danielpitra/Documents/zálohy/theos-jailed/sdks/iPhoneOS13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:134:51: note: 
          'keyWindow' has been explicitly marked deprecated here
    @property(nullable, nonatomic,readonly) UIWindow *keyWindow API_DEPRECATED("Should not be us...
                                                      ^
    1 error generated.
    make[3]: *** [/Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/Tweak.x.d9d90920.o] Error 1
    rm /Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/Tweak.x.m
    make[2]: *** [/Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/AirmailPremium.dylib] Error 2
    make[1]: *** [internal-library-all_] Error 2
    make: *** [AirmailPremium.all.tweak.variables] Error 2

    Anyone has a suggestion?

    Thank you!

  10. 350x350bb.jpg

    Modded/Hacked App: Trello: organize anything! By Trello, Inc.
    Bundle ID: com.fogcreek.trello
    iTunes Store Link: https://apps.apple.com/us/app/trello-organize-anything/id461504587


    Mod Requirements:
    - Jailbroken iPhone/iPad/iPod Touch.
    - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
    - Cydia Substrate or Substitute.


    Hack Features:
    - Enables Gold Subscription


    iOS Hack Download Link:

    Hidden Content

    React or reply to this topic to see the hidden content & download link.

     

    Installation Instructions (manual):
    STEP 1: Download the .deb file from the link above.
    STEP 2: Copy the file to your iDevice using any of the file managers mentioned above or skip this step, if you're downloading from your iDevice.
    STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it.
    STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen.
    STEP 5: Let iFile / Filza finish the hack installation. Make sure it successfully installs, otherwise see the note below.
    STEP 6: Respring and enjoy the hack 😉

    NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, or post your issue down below and I'll do my 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:
    - strejda603 (for hack)

    - John Coates (for Flex3)

    - Tanner Bennett (for FLEXing)

    - Theos team (for making hack to be compiled and built .deb)

    - iOSGods.com (for tutorials!)


    Screenshots:

    1.pngi1.png

    • Like 46
    • Winner 3
    • Thanks 7
    • Haha 1
    • Agree 3
    • Informative 1
×
  • 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