python-运行时获取信息
模块
基本信息获取,对类同理,获取函数传参用inspect
1 | print(dir(mod)) |
对类的函数进行hook
1 | setattr(the_class,'true_func1',the_class.__dict__['func1']) |
读取内存
python进程运行时是由python解释器运行的,可以使用CE附加python解释器读取内存内容,效果和正常使用CE相同
评论
基本信息获取,对类同理,获取函数传参用inspect
1 | print(dir(mod)) |
对类的函数进行hook
1 | setattr(the_class,'true_func1',the_class.__dict__['func1']) |
python进程运行时是由python解释器运行的,可以使用CE附加python解释器读取内存内容,效果和正常使用CE相同