Jump to content

9 posts in this topic

Recommended Posts

Updated (edited)
Spoiler

 

                                                                                                   WHAT IS HACKS and what is Objective-C   ?

There are many programming languages, some of which are limited in usage, while others are widely used.

To understand how to create code to hack an application or game, you must grasp the nature of the language you desire and the platform it targets, such as iPhone, PC, or even Android.

Let's assume you want to develop a script for the iPhone. The iPhone understands several languages, including Objective-C and Swift, among others. However, most hacking programs are written in Objective-C. So, let's explain the nature of this great language and how you can use it to develop your programs, and even hack some applications, for example, by injecting using MS hook or modifying offsets and hex values.

 

To create a script for hacking programs and games, you first need to have the Theos program for software development and tweaks or maybe your jailbroken phone . Secondly, you must possess the offset for the application you want to hack, for example, the offset for the game Clash of Clans with the value x548461. This offset contains a value called hex. Let's assume the offset's name is "gold" and its value is an integer or numeric value. This offset can be hacked, and the gold can be increased by modifying the hex, for example, to 02008052C0035FD6. This 16-digit number is called the HEX and is commonly used for hacking and changing the values of functions within applications.

How can I determine the offset value? This will be explained later.

And now, let's assume that you have the name of the function you want to hack, for example, PUBLIC GET_GOLD (GET) INT. This function returns an integer value, meaning a number, and gives the player a gold value. You can inject this function using MSHOOK in Theos program. Let's create a new project in Theos and choose TWEAK, then follow these steps.

1-OPEN Tweak.xm or Tweak.x

2-put this code in main fuc

3-you should change PlayerInfo and IsVip

4-You should put the library to useing MS HOOK put this in top of tweak file   #import <substrate.h> 

%hook PlayerInfo
-(BOOL)IsVip {
    // inject your code here
    return YES; // fuc will be  true
}

%end 

or another one like that 


%hook PlayerInfo
-(BOOL)IsVip {
 
    return YES; 
}
%end

 

or If you need to hack int we used

%hook PlayerInfo
-(int)get_gold {
    // Inject your code here
    int get_gold = 1; // Set the get_gold value to 1 as an example
    return get_gold; // The function will return, for example, 1
}
%end

 

In top example this inject will make the player always  VIP

And now, that's all for this moment. There are many upcoming tutorials where we will delve deeper into offsets, how to find them, and create practical examples through videos. Additionally, we'll explore some applications like IDA Pro and even DNSpy, among others, that are useful for this purpose.

 

 

Updated by Lolite
  • Like 4
  • Winner 1
  • Informative 1
Posted
Spoiler
1 hour ago, Lolite said:

%hook PlayerInfo
-(int)get_gold {
    // Inject your code here
    int get_gold = 1; // Set the get_gold value to 1 as an example
    return get_gold; // The function will return, for example, 1
}
%end

 

Could you please advice me - I understood correctly that PlayerInfo is a class and it can be changed for example to PropMng ? And if we want to make a tweak with offset for example 25D0B6C in which is located

public int GetPrice(PropID id)
{
	return 0;
}

do we have to specify this offset somewhere and have it return 00F0271EC0035FD6 in hex ? or do we just write in total like this and convert hex to decimal value 

%hook PropMng
-(int)GetPrice{
	int GetPrice = 144256280972976086;
	return GetPrice;
}
%end

 

Posted (edited)

YOU CA

Just now, MrLusiusi said:
  Reveal hidden contents

 

Could you please advice me - I understood correctly that PlayerInfo is a class and it can be changed for example to PropMng ? And if we want to make a tweak with offset for example 25D0B6C in which is located

public int GetPrice(PropID id)
{
	return 0;
}

do we have to specify this offset somewhere and have it return 00F0271EC0035FD6 in hex ? or do we just write in total like this and convert hex to decimal value 

%hook PropMng
-(int)GetPrice{
	int GetPrice = 144256280972976086;
	return GetPrice;
}
%end

 

YOU CAN use your script sec one that one here

 %hook PropMng
-(int)GetPrice{
    int GetPrice = 144256280972976086;
    return GetPrice;
}
%end 

 

you can skip offset for hooking this class  just make sure class name and method is the same in app that you want to hack

Updated by Lolite
Posted
3 minutes ago, Lolite said:

YOU CA

YOU CAN use your script sec one that one here

 %hook PropMng
-(int)GetPrice{
    int GetPrice = 144256280972976086;
    return GetPrice;
}
%end 

 

you can skip offset for hooking this class  just make sure class name and method is the same in app that you want to hack

i see!! thank you so much for help!!

Posted (edited)

Is possible to use this method to hook map hack icon mobile legends? 

Updated by Machine1
  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Puzzle & Dragons (English) v22.3.0 Jailed Cheats +2
      Modded/Hacked App: Puzzle & Dragons (English) By GungHo Online Entertainment, INC.
      Bundle ID: jp.gungho.padEN
      iTunes Store Link: https://apps.apple.com/us/app/puzzle-dragons-english/id563474464?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill


      Jailbreak required hack(s): https://iosgods.com/topic/133984-puzzle-dragons-japan-english-cheats-all-versions-3/


      iOS Hack Download Link: https://iosgods.com/topic/135066-puzzle-dragons-english-v1931-jailed-cheats-2/
      • 316 replies
    • [ Puzzle & Dragons KR ] 퍼즐앤드래곤 v22.3.0 Jailed Cheats +2
      Modded/Hacked App: 퍼즐앤드래곤 By GungHo Online Entertainment, INC.
      Bundle ID: jp.gungho.padKO
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%8D%BC%EC%A6%90%EC%95%A4%EB%93%9C%EB%9E%98%EA%B3%A4/id588637521?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill


      Jailbreak required hack(s): https://iosgods.com/topic/133984-puzzle-dragons-japan-english-cheats-all-versions-3/


      iOS Hack Download Link: https://iosgods.com/topic/146388-puzzle-dragons-korea-%ED%8D%BC%EC%A6%90%EC%95%A4%EB%93%9C%EB%9E%98%EA%B3%A4-v1920-jailed-cheats-2/
      • 23 replies
    • Skullgirls Fighting RPG V7.3.3 [ +6 Jailed ] Auto Win
      Modded/Hacked App: Skullgirls: Fighting RPG By Autumn Games, LLC
      Bundle ID: com.autumn.skullgirls
      iTunes Store Link: https://apps.apple.com/us/app/skullgirls-fighting-rpg/id1280762571?uo=4


      Hack Features:

      - Auto win

      - Damage [ One HiT WiN ]

      - Energy Max

      - Skill

      - Enemy Disable

      - Goals Claimed [ Free Pass Only ]
      • 38 replies
    • Skullgirls Fighting RPG V7.3.3 [ +6 Cheats ] Auto Win
      Modded/Hacked App: Skullgirls: Fighting RPG By Autumn Games, LLC
      Bundle ID: com.autumn.skullgirls
      iTunes Store Link: https://apps.apple.com/us/app/skullgirls-fighting-rpg/id1280762571?uo=4


      Hack Features:
      - Auto win

      - Damage [ One HiT WiN ]

      - Energy Max

      - Skill

      - Enemy Disable

      - Goals Claimed [ Free Pass Only ]
      • 127 replies
    • Fortress Saga: AFK RPG Cheats v1.8.09 +5
      Modded/Hacked App: Fortress Saga: AFK RPG By cookapps
      Bundle ID: com.cookapps.bm.fortresssaga
      iTunes Store Link: https://apps.apple.com/us/app/fortress-saga-afk-rpg/id6446308106?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Freeze Currencies
      - PREMIUM
      - No Ads

       

      Non-Jailbroken Hack: https://iosgods.com/topic/184193-fortress-saga-afk-rpg-v1800-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/178933-fortress-saga-afk-rpg-cheats-v1801-5/
      • 364 replies
    • Prison Empire Tycoon-Idle Game Cheats v3.9.2 +2
      Modded/Hacked App: Prison Empire Tycoon-Idle Game by Digital Things Sociedad Limitada
      Bundle ID: com.codigames.idle.prison.empire.manager.tycoon
      iTunes Store Link: https://apps.apple.com/us/app/prison-empire-tycoon-idle-game/id1508490923?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/128324-arm64-prison-empire-tycoon%EF%BC%8Didle-game-v102-jailed-cheats-2/

       
      iOS Hack Download Link: https://iosgods.com/topic/128322-arm64-prison-empire-tycoon%EF%BC%8Didle-game-cheats-all-versions-2/
      • 1,161 replies
    • Left to Survive: Zombie Games Cheats v7.6.0 +10 Hacks
      Modded/Hacked App: Left to Survive: Zombie TPS By MY COM
      Bundle ID: com.glu.zbs
      iTunes Store Link: https://apps.apple.com/us/app/left-to-survive-zombie-tps/id1090501422

      Hack Features:
      - No Bullet Disperse 
      - Unlimited Ammo
      - No Recoil
      - Increased Fire-rate 

      - One Hit Campaign 
      - Grenades and Med-kits Dont Subtract
      - God Mode
      - God Mode PVP

      - Unlock Chapters early 
      - Weapons Unlocked Ready to buy 


      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/

      • 1,592 replies
    • [ Seven Deadly Sins KR ] 일곱 개의 대죄: GRAND CROSS Cheats v8.6.72 +5
      Modded/Hacked App: 일곱 개의 대죄: GRAND CROSS By Netmarble Corporation
      Bundle ID: com.netmarble.nanakr
      iTunes Store Link: https://apps.apple.com/kr/app/%EC%9D%BC%EA%B3%B1-%EA%B0%9C%EC%9D%98-%EB%8C%80%EC%A3%84-grand-cross/id1449552940?uo=4


      Hack Features:
      - God Mode
      - One Hit Kill
      - Multiply Attack
      - Multiply Defense
      - Make Enemies God Mode for some quests


      iOS Hack Download Link: https://iosgods.com/topic/154899-seven-deadly-sins-kr-%EC%9D%BC%EA%B3%B1-%EA%B0%9C%EC%9D%98-%EB%8C%80%EC%A3%84-grand-cross-cheats-v750-5/
      • 177 replies
    • Zooba: Zoo Battle Royale Game v5.19.0 Jailed Cheats +2
      Modded/Hacked App: Zooba: Zoo Battle Royale Games By Wildlife Studios Limited
      Bundle ID: com.fungames.battleroyale
      iTunes Store Link: https://apps.apple.com/us/app/zooba-zoo-battle-royale-games/id1459402952?uo=4


      Hack Features:
      - Map Hacks
      - Allow Shoot in Water


      Jailbreak required hack(s): https://iosgods.com/topic/131104-arm64-zooba-zoo-battle-royale-game-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/131134-arm64-zooba-zoo-battle-royale-game-v320-jailed-cheats-2/
      • 1,301 replies
    • The Seven Deadly Sins Cheats v2.81.0 +5
      Modded/Hacked App: The Seven Deadly Sins by Netmarble Corporation
      Bundle ID: com.netmarble.nanagb
      iTunes Store Link: https://apps.apple.com/us/app/the-seven-deadly-sins/id1475440231?uo=4&at=1010lce4


      Hack Features:
      - God Mode
      - OHK
      - Infinite MP


      iOS Hack Download Link: https://iosgods.com/topic/131686-arm64-the-seven-deadly-sins-cheats-v117-3/
      • 2,051 replies
    • Zombastic: Time to Survive v1.12.4 [ +1+++ Jailed ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      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/
      • 53 replies
    • Zombastic: Time to Survive v1.12.4 [ +1+++ Cheats ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      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/
      • 50 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