File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ Java.perform(function (){
185185
186186查看反编译得到的 smali 源码,smali 文件会将每个类作为一个单独文件保存,如下图所示的 ` $1 ` 就是匿名内部类。
187187
188- ![ innerclass] ( pictures\ innerclass.png )
188+ ![ innerclass] ( pictures/ innerclass.png )
189189
190190其余用法跟普通类是一样的。
191191
@@ -224,8 +224,8 @@ Java.perform(function (){
224224如果 app 没有调用 get 等函数,怎么直接获取类的私有属性呢?早期版本的 frida 支持使用 java 提供的反射,js 同样也提供了该功能。
225225
226226``` js
227- var objectionInstance = Animal .$new (" test" , 0 );
228- var ob = Java .cast (objectionInstance .getClass (), clazz);
227+ var objectionInstance = Animal .$new (" test" , 0 );
228+ var ob = Java .cast (objectionInstance .getClass (), clazz);
229229 var name = ob .getDeclaredField (" name" ); // 获得某个属性对象
230230 var value = ob .get (name); // 获得obj中对应的属性值
231231 send (value);
You can’t perform that action at this time.
0 commit comments