Skip to content

Instantly share code, notes, and snippets.

@zhangkn
Forked from Naville/BreakOnMethod.py
Created November 28, 2017 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangkn/f15d5ffab268a690644f40314620a059 to your computer and use it in GitHub Desktop.
Save zhangkn/f15d5ffab268a690644f40314620a059 to your computer and use it in GitHub Desktop.
'''
Break on Objective-C 's method using its address'
'''
import shlex
import lldb
import re
def breakonmethod(debugger, command, exe_ctx,result, internal_dict):
args=shlex.split(command)
Class=args[0]
Method=args[1]
ClassMethod = lldb.SBCommandReturnObject()
CMCommand='expr -- (IMP)method_getImplementation((Method)class_getClassMethod((Class)objc_getClass("{0}"),@selector({1})));'.format(Class,Method)
IMCommand='expr -- (IMP)method_getImplementation((Method)class_getInstanceMethod((Class)objc_getClass("{0}"),@selector({1})));'.format(Class,Method)
debugger.GetCommandInterpreter().HandleCommand(CMCommand, ClassMethod)
InstanceMethod =lldb.SBCommandReturnObject()
debugger.GetCommandInterpreter().HandleCommand(IMCommand,InstanceMethod)
CMObj=ClassMethod.GetOutput()
IMObj=InstanceMethod.GetOutput()
CMObj=re.search(r'0x([a-zA-Z0-9]|x)*', CMObj).group(0)
IMObj=re.search(r'0x([a-zA-Z0-9]|x)*', IMObj).group(0)
CMObj=int(CMObj, 16)
IMObj=int(IMObj, 16)
ADDR=max(CMObj,IMObj)
debugger.HandleCommand("breakpoint set -a %i"%ADDR)
def __lldb_init_module (debugger, dict):
#Avoid Name Collision
debugger.HandleCommand('command script add -f BreakMessage.breakonmethod bom')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment