Jump to content

[Tut] How to make a simple license system for deb


159 posts in this topic

Recommended Posts

Posted
1 hour ago, klashksa said:

When I click on cancel the app is working and the hack is working automatically. can u help me plz  :cry:    @xiaov  

what happen?

Posted

 @xiaov

I made unlocked VIP hack for AutoRap App after that I uploaded Dylib file in  CPloader License .  see the video 

 My question is Why The hack is working when I click on Cancel ?  

 

Sorry  my English is not good I hope you understand >_<

 

Posted
55 minutes ago, klashksa said:

 @xiaov

I made unlocked VIP hack for AutoRap App after that I uploaded Dylib file in  CPloader License .  see the video 

 My question is Why The hack is working when I click on Cancel ?  

 

Sorry  my English is not good I hope you understand >_<

 

Ya, understand.

Pm me whole code inside your Tweak.xm then i will check for u .

 

Posted

This is My tweak.xm @xiaov

 

 

#import "vm_writeData.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>


#define string @"Jdcc@4723"

 


UIAlertView *alert;
%hook AutoRapAppDelegate

- (char)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 
{


 NSString *vActivateStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/xiaov.txt"];
 vActivateStr= [NSString stringWithContentsOfFile:vActivateStr encoding:NSUTF8StringEncoding error:nil];


if ([vActivateStr isEqualToString:string])
{
        [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateSucess) userInfo:nil repeats:NO];     
        return %orig;
}
else
{
        [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateFailed) userInfo:nil repeats:NO];     
        return %orig;
}
}


%new -(void)gameActivateSucess {

UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"title" message: @"Activated Sucess" delegate:self cancelButtonTitle:@"ok" otherButtonTitles: nil];
[alert show];
[alert release];

}

%new -(void)gameActivateFailed {

alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Please enter your password" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles: @"Login", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
[alert release];


}

 


%new - (void)alertView:alert clickedButtonAtIndex:(NSInteger)buttonIndex
{
        if (buttonIndex == 0) {  

            
        }
        if (buttonIndex == 1) {  
        
            
                NSString *passwordStr = [alert textFieldAtIndex:0].text;
            NSData *data = [passwordStr dataUsingEncoding:NSUTF8StringEncoding];
            NSString *directoryStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/xiaov.txt"];
            [data writeToFile:directoryStr atomically:YES];  //AutoRapVIP.plist

            exit(0);
        }

}

 

%end

 

%hook AutoRapStyle
-(bool)isFree
{
        return true;
}
%end

%hook Listing
-(bool)isFree
{
        return true;
}
%end

%hook MagicSubscriptionManager
-(bool)isSubscriptionActive
{
        return true;
}

-(bool)isActive
{
        return true;
}

-(bool)loaded
{
        return true;
}

-(bool)isPromo
{
        return true;
}

-(bool)isPromoSubscription
{
        return true;
}
%end 

Posted (edited)

 

On 2017/12/15 at 4:23 PM, klashksa said:

When I click on cancel the app is working and the hack is working automatically. can u help me plz  :cry:    @xiaov  

I get the same error, I did not enter my "password / code".
Then when I click the "Cancel" button, the game loads normally, "Hack" is also working

I need tweak not to load "writeData" code when I click the "cancel" button (hack do not work)

@xiaov plz help me, thx so much .

This is my Tweak.xm :

Spoiler

#import "writeData.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <substrate.h>

#define string @"iosgods_xiaov"
#define PLIST_PATH @"/var/mobile/Library/Preferences/com.hack.gdjhtbhack.plist"

inline bool GetPrefBool(NSString *key) {
        return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}

%ctor {
if(GetPrefBool(@"kCD"))
{
writeData(0x11A00C2, 0x00207047);
} else {
}

if(GetPrefBool(@"kMp"))
{
writeData(0x1571DE, 0x00207047);
} else {
}

}


UIAlertView *alert;
%hook AppDelegate

- (char)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 
{


 NSString *vActivateStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/xiaov.txt"];
 vActivateStr= [NSString stringWithContentsOfFile:vActivateStr encoding:NSUTF8StringEncoding error:nil];


if ([vActivateStr isEqualToString:string])
{
    [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateSucess) userInfo:nil repeats:NO];     
    return %orig;
}
else
{
    [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(gameActivateFailed) userInfo:nil repeats:NO];     
    return %orig;
}
}


%new -(void)gameActivateSucess {

UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"title" message: @"Activated Sucess" delegate:self cancelButtonTitle:@"ok" otherButtonTitles: nil];
[alert show];
[alert release];

}

%new -(void)gameActivateFailed {

alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Please enter your password" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles: @"Login", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
[alert release];


}


%new - (void)alertView:alert clickedButtonAtIndex:(NSInteger)buttonIndex
{
        if (buttonIndex == 0) {  

            
        }
        if (buttonIndex == 1) {  
        
            
               NSString *passwordStr = [alert textFieldAtIndex:0].text;
            NSData *data = [passwordStr dataUsingEncoding:NSUTF8StringEncoding];
            NSString *directoryStr = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/xiaov.txt"];
            [data writeToFile:directoryStr atomically:YES];  //write plist

            exit(0);
        }

}


  
%end

 

Updated by Hackjoy
Posted

@Hackjoy you have to do :

1- upload your dylib file on CPLoader Online use CPloader 8.5 License

2- create any password of 4 numbers like this 9340

3- now download your new dylib file

4- put it in your project  ( delete your old dylib file from your project and paste new dylib file )

5- open Mobile Terminal or MTerminal and go to /var/mobile/YOUR_PORJECT_NAME

6- finally make package

 

 

NOTE : this way works on ios8  because when you make package you can see the dylib file but on ios9 mabye will not work because i'm now using ios9 and when i make package cannot see the dylib file in my project 

 

 

if you get a answer PM me plz 

  • Like 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Pirate Rivals TD v1.0 [+2 Cheats]
      Modded/Hacked App: Pirate Rivals TD By DENKLEM PRODUKSIYON DONANIM YAZILIM SANAYI TICARET LIMITED SIRKETI
      Bundle ID: com.teamcrackin.piraterivals
      iTunes Store Link: https://apps.apple.com/us/app/pirate-rivals-td/id6740141057?uo=4


      🤩 Hack Features

      - Enemy Can't Do Damage
      - Unlimited Currency (Spend Some)
       
      • 0 replies
    • Pirate Rivals TD v1.0 [+2 Jailed Cheats]
      Modded/Hacked App: Pirate Rivals TD By DENKLEM PRODUKSIYON DONANIM YAZILIM SANAYI TICARET LIMITED SIRKETI
      Bundle ID: com.teamcrackin.piraterivals
      iTunes Store Link: https://apps.apple.com/us/app/pirate-rivals-td/id6740141057?uo=4



      🤩 Hack Features

      - Enemy Can't Do Damage
      - Unlimited Currency (Spend Some)
      • 0 replies
    • Last Zone - Idle Survival v1.0.5 Debug Menu [+10 Cheats]
      Modded/Hacked App: Last Zone - Idle Survival By PAPER PIGEON YAZILIM VE OYUN GELISTIRME LIMITED SIRKETI
      Bundle ID: com.paperpigeon.populationoneidle
      iTunes Store Link: https://apps.apple.com/us/app/last-zone-idle-survival/id6740135797?uo=4


       

      🤩 Hack Features

      - Debug Menu (Enable and debug menu will appear)
       
      • 1 reply
    • Last Zone - Idle Survival v1.0.5 Debug Menu [+10 Jailed Cheats]
      Modded/Hacked App: Last Zone - Idle Survival By PAPER PIGEON YAZILIM VE OYUN GELISTIRME LIMITED SIRKETI
      Bundle ID: com.paperpigeon.populationoneidle
      iTunes Store Link: https://apps.apple.com/us/app/last-zone-idle-survival/id6740135797?uo=4



      🤩 Hack Features

      - Debug Menu (Enable and debug menu will appear)
      • 0 replies
    • Galaxy Attack: Alien Shooter v5.11.10 [ +30++ Cheats ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible  

       

      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      • 24 replies
    • Galaxy Attack: Alien Shooter v5.11.10 [ +30++ Jailed ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?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

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      📥 iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
      • 25 replies
    • Galaxy Attack Alien Shooter v5.11.10 [ +3 Jailed ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Hack Features:
      - Max Bullet
      - Max Life
      - DMG



      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 33 replies
    • Galaxy Attack Alien Shooter v5.11.10 [ +3 Cheats ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By ABIGAMES PTE. LTD
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Max Life 
      - Damage Multi [PvP Use Only Boss ] 
      - Max Bullet



      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content

      Download Hack
      • 190 replies
    • Tropicats: Match 3 Puzzle Game v1.75.411 [ +6 Jailed ] Auto Win
      Modded/Hacked App: Tropicats: Match 3 Puzzle Game By wooga gmbh
      Bundle ID: net.wooga.tropicats-tropical-cats-puzzle-paradise
      iTunes Store Link: https://apps.apple.com/us/app/tropicats-match-3-puzzle-game/id1215220850?uo=4
       

      🤩 Hack Features

      - Diamond

      - Coins

      - Lives

      - Booster

      - LvL

      - Auto Win
      • 0 replies
    • Tropicats: Match 3 Puzzle Game v1.75.411 [ +6 Cheats ] Auto Win
      Modded/Hacked App: Tropicats: Match 3 Puzzle Game By wooga gmbh
      Bundle ID: net.wooga.tropicats-tropical-cats-puzzle-paradise
      iTunes Store Link: https://apps.apple.com/us/app/tropicats-match-3-puzzle-game/id1215220850?uo=4
       

      🤩 Hack Features

      - Diamond

      - Coins

      - Lives

      - Booster

      - LvL

      - Auto Win
      • 2 replies
    • Epic Shaman Battle: 4P Defense v1.2.0 +2 Jailed Cheats [ Damage ]
      Modded/Hacked App: Epic Shaman Battle: 4P Defense By Crater Co., Ltd.
      Bundle ID: com.percent.ios.p4defense
      iTunes Store Link: https://apps.apple.com/us/app/epic-shaman-battle-4p-defense/id6511224754?uo=4

       


      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      • 28 replies
    • Epic Shaman Battle: 4P Defense v1.2.0 +2 Cheats [ Damage ]
      Modded/Hacked App: Epic Shaman Battle: 4P Defense By Crater Co., Ltd.
      Bundle ID: com.percent.ios.p4defense
      iTunes Store Link: https://apps.apple.com/us/app/epic-shaman-battle-4p-defense/id6511224754?uo=4

       

       

      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      • 18 replies
×
  • 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