Jump to content

The Epic Gamer

Senior Member
  • Posts

    186
  • Joined

  • Last visited

Posts posted by The Epic Gamer

  1. Currently there is no jailbreak for iOS 12.1.3 but hopefully there will be one in the future, I recommend you to save your iOS 12.1.3 blobs.

    You can check if there is a jailbreak available using this website: https://ipsw.me/  it will appear on the top right

  2. Hello, I have a problem, whenever I try to compile a patcher in Theos it gives me this error:

      

    iPad:~ mobile$ su                                                                                                                            
    Password:                                                                                                                                    
    iPad:/var/mobile root# cd /var/mobile/kinemaster                                                                                             
    iPad:/var/mobile/kinemaster root# make package                                                                                               
    > Making all for tweak KineMaster…                                                                                                           
    ==> Preprocessing Tweak.xm…                                                                                                                  
    ==> Preprocessing Tweak.xm…                                                                                                                  
    ==> Compiling Tweak.xm (armv7)…                                                                                                              
    ==> Compiling Tweak.xm (arm64)…                                                                                                              
    ==> Linking tweak KineMaster (armv7)…                                                                                                        
    ==> Generating debug symbols for KineMaster…                                                                                                 
    warning: no debug symbols in executable (-arch armv7)                                                                                        
    ==> Stripping KineMaster (armv7)…                                                                                                            
    bash: line 1: 16960 Killed: 9               ( strip -x "/var/mobile/kinemaster/.theos/obj/armv7/KineMaster.dylib" )                          
    make[3]: *** [/var/theos/makefiles/instance/library.mk:35: /var/mobile/kinemaster/.theos/obj/armv7/KineMaster.dylib] Error 137               
    rm /var/mobile/kinemaster/.theos/obj/armv7/Tweak.xm.mm                                                                                       
    make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/kinemaster/.theos/obj/armv7/KineMaster.dylib] Error 2                 
    make[2]: *** Waiting for unfinished jobs....                                                                                                 
    ==> Linking tweak KineMaster (arm64)…                                                                                                        
    ==> Generating debug symbols for KineMaster…                                                                                                 
    warning: no debug symbols in executable (-arch arm64)                                                                                        
    ==> Stripping KineMaster (arm64)…                                                                                                            
    bash: line 1: 16961 Killed: 9               ( strip -x "/var/mobile/kinemaster/.theos/obj/arm64/KineMaster.dylib" )                          
    make[3]: *** [/var/theos/makefiles/instance/library.mk:35: /var/mobile/kinemaster/.theos/obj/arm64/KineMaster.dylib] Error 137               
    rm /var/mobile/kinemaster/.theos/obj/arm64/Tweak.xm.mm                                                                                       
    make[2]: *** [/var/theos/makefiles/instance/library.mk:33: /var/mobile/kinemaster/.theos/obj/arm64/KineMaster.dylib] Error 2                 
    make[1]: *** [/var/theos/makefiles/instance/library.mk:24: internal-library-all_] Error 2                                                    
    make: *** [/var/theos/makefiles/master/rules.mk:123: KineMaster.all.tweak.variables] Error 2                                                 
    iPad:/var/mobile/kinemaster root#                                                                   

                                                                                                             

     Tweak.xm:                                        

       

    @import Foundation;
    @import UIKit;
    #import <substrate.h>
    #import "vm_writeData.h"
    
    // To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/
    // To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/
    
    #define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.kinemaster.plist"
    
    inline bool GetPrefBool(NSString *key) {
    		return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
    }
    
    
    // Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods.
    
    
    %ctor {
    
    	// Code Injection example
        if(GetPrefBool(@"key1")) {
          vm_writeData(0x123456, 0x123456); // 
        }
    
        if(GetPrefBool(@"key2")) {
          vm_writeData(0x10963C, 0xC0F8AC70); // 
        }
    
        if(GetPrefBool(@"key3")) {
          vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets
          vm_writeData(0x2FA51C, 0x381C); // 
          vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets
          vm_writeData(0x10038DD0C, 0x1F2003D5); // 
        }
    }
    
    %hook KMAudioSongItem
    -(void) setIsPremium:(bool)arg1 {
    if(GetPrefBool(@"key1")) {
    arg1 = TRUE;
    }
    %orig(arg1);
    }
    %end
    
    %hook KMAudioSongItem
    -(bool) isPremium {
    if(GetPrefBool(@"key1")) {
    return TRUE;
    }
    return %orig;
    }
    %end
    
    
    %hook LayerManager
    -(bool) showWatermark {
    if(GetPrefBool(@"key1")) {
    return FALSE;
    }
    return %orig;
    }
    %end
    
    
    
    %hook RemoveWatermarkManager
    -(void) setRemoveWatermark:(bool)arg1 {
    if(GetPrefBool(@"key1")) {
    arg1 = TRUE;
    }
    %orig(arg1);
    }
    %end
    
    // Automatic Popup Code
    void setup() {
        UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"KineMaster Cheats by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert];
    
        UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
        [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]];
        }];
    
        UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
        [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/clubs/"]];
        }];
    
        UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you!" style:UIAlertActionStyleCancel handler:nil];
    
        [igcredits addAction:iosgods];
        [igcredits addAction:clubs];
        [igcredits addAction:thankyou];
    
        [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil];
    }
    
    void unsubscribeToLaunchEvent(void);
    
    static void didFinishLaunching(CFNotificationCenterRef center, void *observer,
                                   CFStringRef name, const void *object, CFDictionaryRef info) {
        setup();
        unsubscribeToLaunchEvent();
    }
    
    const char *authObserver = "authObserver";
    
    void subscribeToLaunchEvent() {
        CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching,
                                        (CFStringRef)UIApplicationDidFinishLaunchingNotification,
                                        NULL, CFNotificationSuspensionBehaviorDrop);
    }
    
    void unsubscribeToLaunchEvent() {
        CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver,
                                           (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL);
    }
    
    __attribute__((constructor)) static void initialize() {
        subscribeToLaunchEvent();
    }
    

                                                    

  3. aKwK6AF.png

    ReProvision

    ReProvision is a new way to resign applications easily without the need for a developer account, just like ext3nder, but it’s better than ext3nder, the UI design is really neat and very simple to use

     

    Installation:

     

     

    How to download?

    Hidden Content

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

    All credit goes to their respective owners

     

    • Like 142
    • Winner 9
    • Thanks 37
    • Haha 7
    • Agree 9
    • Informative 5
  4. What is this?

     

    This is used to disable Wifi on a specific device without the user knowing, so that he can’t connect to the Wifi until you enable it again.

    THIS IS FOR EDUCATIONAL PUPOSES ONLY

    ⚠️ USE IT AT YOUR OWN RISK ⚠️

    ⚠️ I AM NOT RESPONSIBLE FOR ANYTHING THAT HAPPENS ⚠️

     

    NetKillUIBeta for iOS 11 has been released by Julioverne here is how to install it:

    Hidden Content

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

    If you want to know which ip address is the device of the targeted victim download Fing from the Appstore

     

    credit goes to the creator and Julioverne

    • Like 178
    • Winner 16
    • Thanks 27
    • Haha 17
    • Agree 19
    • Informative 8
  5. 2 hours ago, Bryan1343 said:

    Still nothing?

    give me an answer please 

    if it is possible to hack or not 

    When GamePlayer releases for iOS 11.2.6, i’m sure it is going to be hackable

    • Like 1
    • Informative 1
  6. Hello everyone, sometimes I have encountered issues with Safari Downloader + like: unable to open the downloaded file to other apps, but there is another alternative for it called Safari Plus which works on iOS 8,9,10,11

    •Tweak Description: Click Me

    Steps:

    1.Open Cydia and add the BigBoss source: http://apt.thebigboss.org/repofiles/cydia

    2.Search for "Safari Plus" and install it

    3.Respring your device

    4.Done!

    • Like 2
  7. Hello everyone, today I am going to show you how to download Add-Ons Studio for Minecraft...Here is the app information:

    350x350bb.jpg

    App name: Add-Ons Studio for Minecraft

    iTunes url: Click Me!

    Requirements:

    1. Jailbroken iDevice

    2. App Cake (From Cydia)

    Steps:

    1. Download the .ipa file from the link below

    2. Press Open in "App Cake"

    3. Press Install

    4. Wait for a few seconds until the loading logo disappears

    5. You're done!

    .ipa file url:

    Hidden Content

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

    Credits:

    Me (Majd Awwad)

    Note: if the .ipa crashes write it down in the comments and try to install it with cydia impactor

    • Like 12
    • Winner 2
    • Thanks 3
    • Agree 2
×
  • 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