1.Android4.4.4,使用xposedbriggeapi-54.jar,试了很久都不行,后来改用api-82,成功hook2.findAndHookMethod(),需要传要hook方法的参数类型,如果参数类型为类或者接口,需要用Classclazz=loadPackageParam.classLoader.loadClass(),load以后,就可以传clazz.class;3.
分类:
其他好文 时间:
2019-03-06 15:07:34
阅读次数:
119
1.在字符搜索时,如果遇到了使用全局Map存放字符串的,比如:c.put(Integer.valueOf(61),jd+"/client/get_rising.pb");搜索时定位不到,可以用c.get(Integer。。的方法,找到该字符的使用位置。2.如果找到打印相关函数,首先hook全部打印。3.在遇到有函数调用效果,但代码中该函数为空时,首先考虑是否是该函数所属类的子类
分类:
移动开发 时间:
2019-03-05 12:44:30
阅读次数:
196
给你n个数(初始时每个数的值为1),m个操作,每个操作把区间[l,r]里的数更新为c,问最后这n个数的和是多少。 区域更新用懒惰标记 ...
分类:
其他好文 时间:
2019-03-02 16:01:03
阅读次数:
189
@app.before_first_requestdef before_first_request(): """在第一次请求之前会访问该函数""" print('before_first_request') @app.before_requestdef before_request(): """在每 ...
分类:
其他好文 时间:
2019-02-25 11:55:05
阅读次数:
155
LD_PRELOAD这个变量允许你定义在程序运行时优先加载的动态链接库,从而在程序运行时的动态链接 下面程序的看一个例子-getuid.c 这段程序很简单,就是获取当前的uid 运行后确实拿到了当前用户的uid,下面就通过LD_PRELOAD变量来劫持系统原来的getuid函数,从而改变返回结果 一 ...
分类:
其他好文 时间:
2019-02-19 11:46:36
阅读次数:
228
If the user hasn't used your application for a few minutes, you may want to log them out of the application automatically in case they've stepped away ...
分类:
其他好文 时间:
2019-02-07 17:47:19
阅读次数:
166
在 class RegForm(form.Form) 中 1.验证两次密码是否相同 ...
分类:
其他好文 时间:
2019-02-02 17:18:23
阅读次数:
158
1. ngOnChanges is called before ngOnInit but after constructor() 2. ngOnChanges is called because of @Input() obj, obj's reference changes. If you mut ...
分类:
其他好文 时间:
2019-01-29 20:49:31
阅读次数:
189
常见的库string:字符串处理re:正则表达式os:操作系统接口pdb:调试库time:时间(datetime)logging:日志urllib:web处理sys:系统库threading:多线程库http:http服务MySQLdb:访问mysqldbpyHook:hook键盘鼠标<监控鼠标键盘>pycurl:curl的python版xlrd/xlwt:处理excel表格pyexp
分类:
编程语言 时间:
2019-01-24 14:28:32
阅读次数:
184