Objection
Objection is a framework built on top of Frida by SensePost and can be found on GitHub.
Installing Objection
Installing Objection is easy and here is an exerpt from the official SensePost/Objection GitHub page:
ObjectionInstallation is simply a matter of
pip3 install objection. This will give you theobjectioncommand. You can update an existingobjectioninstallation withpip3 install --upgrade objection.
Method Hooking with Objection
Hooking methods is an easy way to determine whether the class or method is being called. It can also provide easy access to manipulate the return values or the functionality of the method or class.
List all classes
ios hooking list classesListing all methods
ios hooking list class_methodsSearch for classes
ios hooking search classes example_classSearch for methods in class
ios hooking list class_methods example_classWatching a method
ios hooking watch class example_classOverwriting return values
Monitor Crypto Functions
Bypass Biometric Scanner
Using objection you can bypass the biometric lock screen by using the following command:
Last updated
Was this helpful?