Jump to content

[Tutorial] Logos + Objective-C


8 posts in this topic

Recommended Posts

Updated (edited)

VN5E5KT.png

 
 
 
Logos - Definition
The syntax provided by Logos greatly simplifies the development of MobileSubstrate extensions ("tweaks") which can hook other methods throughout the OS. In this context, "method hooking" refers to a technique used to replace or modify methods of classes found in other applications on the phone. They can also be used for replacing original values which is called cheating. That's what we do.
 
 
 
Logos - Directives
 
Block-Principle
Logos are written in code blocks. They must be closed by %end. You can't have a block within a second one. Each block has to be assigned with a unique name in order to work.
 
 
 
%group

%group Groupname

Begin a hook group with the name Groupname. All ungrouped hooks are in the implicit "_ungrouped" group by default. %group is very useful to organize your code and structure it.
 
 
 
 
%hook

%hook Classname

Open a hook block for the class named Classname.
Can be inside a %group block.
Here is an example:


%hook SpringBoard
- (BOOL)homeScreenRotationStyleWantsUIKitRotation {
     return true;
}
-(BOOL)homeScreenSupportsRotation {
     return true;
}
%end

%hook SBIconLabelImageParameters {
     (id)text {
     %orig; //This calls the original implementation of a method
     return;
}
%end

PS: There is a Tweak for custom enabling screen rotation for all iDevices inside ;)
 
 
 
 
%subclass

%subclass Classname: Superclass <Protocol, Protocol>

Subclass block - the class is created at runtime and populated with methods. ivars are not yet supported (use associated objects). The %new specifier is needed for a method that doesn't exist in the superclass. To instantiate an object of the new class, you can use the %c operator.
Can be inside a %group block.
 
 
 
%new

%new
%new(signature)

Add a new method to a hooked class or subclass. signature is the Objective-C type encoding for the new method. If it is omitted, one will be automatically generated. %new generates a new instance subclass independent from a block. more than one subclasses can persist at a time.
Can be inside a %group block.
 
 
 
 
%end

%end

Close a group/hook/subclass block.
 
 
 
Top Level
The directives in this category should not exist within a group/hook/subclass block.
 
 

 

%config

%config(X=Y);

Set a logos configuration flag.
Configuration Flags

  • generator
    • MobileSubstrate generate code that uses MobileSubstrate for hooking. internal generate code that uses only internal Objective-C runtime methods for hooking.
  • warnings
    • none suppress all warnings default non-fatal warnings error make all warnings fatal
  • dump
    • yaml dump the internal parse tree in YAML format

 

 

%ctor

%ctor { … }

Generate an anonymous constructor (of default priority). You may already know that "__attribute__((constructor)) void DylibMain(){...}"
 
 
 
 
Function level
The directives in this category should only exist within a function block.
 

 
%init

%init;
%init([<class>=<expr>, …]);
%init(Group[, [+|-]<class>=<expr>, …]);

Initialize a group (or the default group). Passing no group name will initialize "_ungrouped", and passing class=expr arguments will substitute the given expressions for those classes at initialization time. The + sigil (as in class methods in Objective-C) can be prepended to the classname to substitute an expression for the metaclass. If not specified, the sigil defaults to -, to substitute the class itself. If not specified, the metaclass is derived from the class.
 
 
 
 
 
%class

%class Class;

Ambox-warning.png %class is deprecated. Do not use it in new code.
Forward-declare a class. Outmoded by %c, but still exists. Creates a $Class variable, and initializes it with the "_ungrouped" group. %class initialzizes a new class. (Also fixes mismatch with %hook Level)
 
 
 
 
%c

%c([+|-]Class)

Evaluates to Class at runtime. If the + sigil is specified, it evaluates to MetaClass instead of Class. If not specified, the sigil defaults to -, evaluating to Class.
 
 
 
 
%orig

%orig
%orig(arg1, …)

Call the original hooked method. Doesn't function in a %new'd method. Works in subclasses, strangely enough, because
MobileSubstrate will generate a supercall closure at hook time.
(If the hooked method doesn't exist in the class we're hooking, it creates a stub that just calls the superclass implementation.) args
is passed to the original function - don't include self and _cmd, Logos does this for you.


 
 
  %log

%log;
%log([(<type>)<expr>, …]);

Dump the method arguments to syslog. Typed arguments included in %log will be logged as well.

 
 
  File Extensions for Logos
Extension Process order .x will be processed by Logos, then preprocessed and compiled as objective-c. .xm will be processed by Logos, then preprocessed and compiled as objective-c++. .xi will be preprocessed as objective-c first, then Logos will process the result, and then it will be compiled. .xmi will be preprocessed as objective-c++ first, then Logos will process the result, and then it will be compiled. xi or xmi files can use Logos directives in #define macros.
 
 
 
 
  Splitting Logos Hooking Code Across Multiple Files
By default, the Logos pre-processor will only process one .xm file at build time. However, it is possible to split the Logos hooking code into multiple files.
First, the main file has to be renamed to an .xmi file. Then, other .xm files can be included in it using the #include directive. The Logos pre-processor will add those files to the main file before processing it.

 
 
Special thanks to KennyTM͠   for his explanations and contributions to iphonedevwiki

Updated by castix
  • Like 1
Posted

Is this all from iPhoneDevWiki or did you add some modifications yourself? :)

Posted

Is this all from iPhoneDevWiki or did you add some modifications yourself? :)

 

I added explanations and additional info to some Logos as well. Mainly to those which are often used by users here (Refer to %hook, %new, %ctor). I also simplified things

Posted

You should add a section in this thread for the "essential"/"common" terms

The only thing that most ms hackers need to know are:

%hook

%ctor

%new

%orig

%end

 

It'll be easier for people to find the explanation for the commonly used terms :)

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

    • Zombie Gunship Survival v1.7.43 +7 Cheats for Jailed iDevices!
      Modded/Hacked App: Zombie Gunship Survival By Flaregames GmbH
      Bundle ID: com.flaregames.zombiegunship
      iTunes Store Link: https://apps.apple.com/us/app/zombie-gunship-survival/id1019161597?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/Mac/Linux with iTunes installed.


      Hack Features:
      - Unlimited Ammo
      - No Reload
      - No Overheat
      - No Zombie Spawn
      - No Zombie Speed
      - 1 Hit Kill [Human & Gunship]
      - Zombie Does No Damage
      - Movement Speed


      Note: Your helicopter does damage against your humans, so if you hit them while having 1 Hit Kill turned on, they die too.


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 209 replies
    • Plants vs. Zombies v3.15.0 Jailed Cheats +5
      Modded/Hacked App: Plants vs. Zombies™ By EA Swiss Sarl
      Bundle ID: com.ea.pvzfree.bv
      iTunes Store Link: https://apps.apple.com/us/app/plants-vs-zombies/id893677096?uo=4


      Hack Features

      - Infinite Sun
      - Infinite Fertilizer, BugSpray, and Chocolate
      - Infinite Coins
      - Infinite Plants Life
      - No Cooldown

      Author: https://iosgods.com/profile/37846-asianqueen/

      Complete tutorial before using any hacked features or you will stuck forever



      iOS Hack Download IPA Link https://iosgods.com/topic/191088-plants-vs-zombies%E2%84%A2-v381-jailed-cheats-5/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 80 replies
    • The Tower - Idle Tower Defense v27.5.1 Jailed Cheats +2
      Modded/Hacked App: The Tower - Idle Tower Defense By Tech Tree Games LLC
      Bundle ID: com.TechTreeGames.TheTower
      App Store Link: https://apps.apple.com/us/app/the-tower-idle-tower-defense/id1575590830?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

      - Free iAP ( Turn on inside iOSGods Mod Menu first )
      - iGameGod Cheat Engine Enabled ( modify in-game currency and speed up stage )

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/154025-the-tower-idle-tower-defense-v2706-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 201 replies
    • Pocket Survivor: Expansion 2d v6.2.1 [ +1+++ Jailed ] Unlimited All Off
      Modded/Hacked App: Pocket Survivor: Expansion 2d By APPWILL COMPANY LTD
      Bundle ID: develop.pocket.survivor.expansion
      App Store Link: https://apps.apple.com/us/app/pocket-survivor-expansion-2d/id1644395434?uo=4


      🤩 Hack Features

      - Unlimited ALL OFF


        • Agree
        • Winner
        • Like
      • 5 replies
    • Pocket Survivor: Expansion 2d v6.2.1 [ +1+++ Cheats ] Unlimited All Off
      Modded/Hacked App: Pocket Survivor: Expansion 2d By APPWILL COMPANY LTD
      Bundle ID: develop.pocket.survivor.expansion
      App Store Link: https://apps.apple.com/us/app/pocket-survivor-expansion-2d/id1644395434?uo=4


      🤩 Hack Features

      - Unlimited ALL OFF


        • Like
      • 3 replies
    • World War Fight For Freedom V0.2.0.1 [ +5 Cheats ] DMG
      Modded/Hacked App: World War: Fight For Freedom By HORUS ENTERTAINMENT COMPANY LIMITED
      Bundle ID: com.horusent.beach.head
      App Store Link: https://apps.apple.com/us/app/world-war-fight-for-freedom/id1535605228?uo=4

      Hack Features:
      - NOADS [ End The Mission ]
      - Damage 
      - HP KIT
      - Firing Rate
      - No Reload
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 19 replies
    • World War Fight For Freedom V0.2.0.1 [ +5 Jailed ] DMG
      Modded/Hacked App: World War: Fight For Freedom By HORUS ENTERTAINMENT COMPANY LIMITED
      Bundle ID: com.horusent.beach.head
      App Store Link: https://apps.apple.com/us/app/world-war-fight-for-freedom/id1535605228?uo=4

      🤩 Hack Features

      - NOADS [ End The Mission ]
      - Damage 
      - HP KIT
      - Firing Rate
      - No Reload
        • Winner
      • 1 reply
    • Pirates & Puzzles - PVP League V2.6.2 [ +4 Jailed ] Easy Win
      Modded/Hacked App: Pirates & Puzzles - PVP League By MAD PIXEL GAMES LTD
      Bundle ID: com.herocraft.game.pirates.and.puzzles.match.pvp
      iTunes Store Link: https://apps.apple.com/us/app/pirates-puzzles-pvp-league/id1483755748?uo=4

      Hack Features:
      - ATK MAX
      - DEF MAX
      - Hint Freeze 
      - Shuffle Freeze  
        • Winner
        • Like
      • 15 replies
    • Pirates & Puzzles - PVP League V2.6.2 [ +4 Cheats ] Easy Win
      Modded/Hacked App: Pirates & Puzzles - PVP League By MAD PIXEL GAMES LTD
      Bundle ID: com.herocraft.game.pirates.and.puzzles.match.pvp
      iTunes Store Link: https://apps.apple.com/us/app/pirates-puzzles-pvp-league/id1483755748?uo=4
      Hack Features:
      - ATK MAX
      - DEF MAX
      - Hint Freeze 
      - Shuffle Freeze 
        • Informative
        • Agree
        • Winner
        • Like
      • 27 replies
    • Elemental Adventurer v1.17.3 [+9 Jailed ] Currency Max
      Modded/Hacked App: Elemental Adventurer By SkyRise Digital PTE. LTD.
      Bundle ID: com.elementsadventurer.ios
      App Store Link: https://apps.apple.com/us/app/elemental-adventurer/id1671509460?uo=4

      🤩 Hack Features

      - Unlimited Diamonds 
      - Unlimited Coins 
      - Health MAX
      - Damage MAX
      - Skill CD
      - Attack Range
      - Pickup Range
      - Movement Speed
      - Skill Reroll
        • Winner
      • 2 replies
    • Elemental Adventurer v1.17.3 [+9 Cheats ] Currency Max
      Modded/Hacked App: Elemental Adventurer By SkyRise Digital PTE. LTD.
      Bundle ID: com.elementsadventurer.ios
      iTunes Store Link: https://apps.apple.com/us/app/elemental-adventurer/id1671509460?uo=4

      Hack Features:
      - Unlimited Diamonds 
      - Unlimited Coins 
      - Health MAX
      - Damage MAX
      - Skill CD
      - Attack Range
      - Pickup Range
      - Movement Speed
      - Skill Reroll
        • Informative
        • Agree
        • Thanks
        • Like
      • 29 replies
    • Score Masters v2.4 [ +7 Jailed ] Always Win
      Modded/Hacked App: Score Masters By SKYLOFT YAZILIM BILISIM VE TICARET ANONIM SIRKETI
      Bundle ID: com.bh.hypergoal
      iTunes Store Link: https://apps.apple.com/us/app/score-masters/id6473402760?uo=4


      🚀 Hack Features

      - Auto ADS Disable

      - Gems [ Mission Rewards ]

      - Coins [ Mission Rewards ]

      - Player Score 20 Max

      - Always Win Player

      - AI Score 0

      - AI Miss
        • Informative
        • Like
      • 8 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