某加固逆向绕过

某加固逆向绕过

某加固逆向绕过

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
function printStack() {
Java.perform(function () {
var Exception = Java.use("java.lang.Exception");
var ins = Exception.$new("Exception");
var straces = ins.getStackTrace();
if (straces != undefined && straces != null) {
var strace = straces.toString();
var replaceStr = strace.replace(/,/g, "\r\n");
console.log(
"============================= Stack start ======================="
);
console.log(replaceStr);
console.log(
"============================= Stack end =======================\r\n"
);
Exception.$dispose();
}
});
}
function hook_dlopen() {
var module = Module.findExportByName(null, "android_dlopen_ext");
Interceptor.attach(module,
{
onEnter: function (args) {
var pathptr = args[0];
// console.log(ptr(pathptr).readCString());
if (ptr(pathptr).readCString().indexOf("libmsaoaidsec.so") != -1) {

// print_thread()
locate_init()
console.log("android_dlopen_ext:", ptr(pathptr).readCString());

}

// if (pathptr !== undefined && pathptr != null) {
// var path = ptr(pathptr).readCString();
// console.log("load " + path);
// }
},
onLeave: function (args) {
// var base_addr = Module.findBaseAddress('libmsaoaidsec.so');
// console.log("onLeave base_addr: ",base_addr);
}
}
);
}
var moduleMap = {}
var dexjni_start =false
function hook_constructor() {

if (Process.pointerSize == 4) {
var linker = Process.findModuleByName("linker");
} else {
var linker = Process.findModuleByName("linker64");
}

var addr_call_function = null;
var addr_g_ld_debug_verbosity = null;
var addr_async_safe_format_log = null;
var linker_log = null;
console.log("linker:", linker.base);
if (linker) {
var symbols = linker.enumerateSymbols();
for (var i = 0; i < symbols.length; i++) {
var name = symbols[i].name;
// console.log(name)
if (name.indexOf("call_function") >= 0) {
addr_call_function = symbols[i].address;
} else if (name.indexOf("g_ld_debug_verbosity") >= 0) {
addr_g_ld_debug_verbosity = symbols[i].address;

ptr(addr_g_ld_debug_verbosity).writeInt(2);
} else if (
name.indexOf("async_safe_format_log") >= 0 &&
name.indexOf("va_list") >= 0
) {
addr_async_safe_format_log = symbols[i].address;
console.log("addr_async_safe_format_log", addr_async_safe_format_log);
} else if (
name.indexOf("linker") >= 0 &&
name.indexOf("log") >= 0 &&
name.indexOf("va_list") < 0 &&
name.indexOf("cpp") < 0 &&
name.indexOf("logger") < 0
) {
console.log("name:", name);
linker_log = symbols[i].address;
}
}
}

if (linker_log) {
Interceptor.attach(linker_log, {
onEnter: function (args) {
this.log_level = args[0];
this.fmt = ptr(args[1]).readCString();
this.tag = ptr(args[2]).readCString();


// console.log("this.tag",this.tag)
if (
this.fmt.indexOf("Calling") >= 0 &&
this.fmt.indexOf("for") >= 0 &&
this.tag.indexOf("DT_INIT_ARRAY") >= 0
) {
// console.log("c-tor")
this.size = args[3]
this.path = ptr(args[5]).readCString()
console.log("this.tag", this.tag);
console.log("this.fmt", this.fmt);
console.log("size:", args[3]);
// console.log("base:",args[4]);
console.log("this.path", ptr(args[5]).readCString());

if (this.path.endsWith(".so")) {
var moduleName = this.path.split('/').pop()
console.log("module Name:",moduleName)
var myModule = Process.findModuleByName(moduleName);
moduleMap[moduleName] = [myModule.base,myModule.size]
}
// (this.array_addr = ptr(args[4])), // func_type
// console.log("array addr:", this.array_addr);
if (ptr(args[5]).readCString().indexOf("libDexHelper.so") != -1) {
// hook_thread()
var libDexHelperaddr = Process.findModuleByName("libDexHelper.so");
console.log("libDexHelperaddr:", libDexHelperaddr.base);
// hook_thread();
// hook_anti_frida_replace(libDexHelperaddr.base.add(0x46dcc));
// hook46DCC(libDexHelperaddr.base.add(0x46DCC))
hook_46DCC_body_replace(libDexHelperaddr.base.add(0x46DCC))
hook3A640(libDexHelperaddr.base.add(0x3A640))
hook_44fb0_body_replace(libDexHelperaddr.base.add(0x44fb0))
// hook_anti_fork_replace(libDexHelperaddr.base.add(0x2cec0));
hook_4EC60_body_replace(libDexHelperaddr.base.add(0x4ec60))
patch_fork(libDexHelperaddr.base.add(0x3d0ac));
patch_fork(libDexHelperaddr.base.add(0x3d2b0));
hook_anti_waitbody_replace(libDexHelperaddr.base.add(0x4f04c));
hook_anti_thread_body_replace(libDexHelperaddr.base.add(0x32d08));
hook_4F268_body_replace(libDexHelperaddr.base.add(0x4f268));
hook_anti_waitkill_replace(libDexHelperaddr.base.add(0x4eef8));
patch_read(libDexHelperaddr.base.add(0x3d0ec));

}
if (ptr(args[5]).readCString().indexOf("libdexjni.so") != -1) {
var libdexjni = Process.findModuleByName("libdexjni.so");
console.log("libdexjni addr:", libdexjni.base);
// Interceptor.detachAll()
dexjni_start = true;
}

if (ptr(args[5]).readCString().indexOf("libzwmonitor.so") != -1) {
printStack()
print_thread()
}
}
},
onLeave: function (retval) { },
});
}
}
// hook_thread()
hook_system_property_get();
setImmediate(hook_constructor);
// hook_dlopen()

function hook3A640(funaddr) {
Interceptor.attach(funaddr, {
onEnter: function (args) {

},
onLeave: function (retval) {
console.log("3A640 end")
// hook_thread()
// hook_dlopen()
// hook_msao()
},
});
}

this.flag = false;
function hook46DCC(funaddr) {
console.log("Hook 46DCC")
Interceptor.attach(funaddr, {
onEnter: function (args) {
if (args[2] != 0) {
console.log("46DCC:",Memory.readCString(args[2]));
if (args[2].readCString().indexOf("pthread_create") != -1) {
this.flag = true;
}
}
},
onLeave: function (retval) {
if (this.flag) {
console.log("ret is replaced");
retval.replace(0);
}
},
});
}

function hook_46DCC_body_replace(addr) {
console.log("replace 46DCC_addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace 46DCC_body success");
return 0;
},
"int",
["int","pointer","pointer"]
)
);
}

function hook_4EC60_body_replace(addr) {
console.log("replace anti_addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace 4EC60_body success");
return;
},
"void",
["pointer"]
)
);
}

function hook_44fb0_body_replace(addr) {
console.log("replace 0x44fb0 :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace 0x44fb0 success");
return 0;
},
"int",
["pointer"]
)
);
}

function hook_anti_frida_replace(addr) {
console.log("start antifrida :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace antifrida success");
return;
},
"void",
["pointer"]
)
);
}

function hook_anti_fork_replace(addr) {
//0x2cec0
console.log("replace anti_fork addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function () {
console.log("replace fork success");
return 123; //父进程返回虚假子进程pid,且不创建子进程
},
"int",
[]
)
);
}
function hook_anti_waitbody_replace(addr) {
//0x4f04c
console.log("replace anti_waitbody :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function () {
console.log("replace waitbody success");
return 123; //父进程返回虚假子进程pid,且不创建子进程
},
"void",
[]
)
);
}
function hook_anti_waitkill_replace(addr) {
//0x4eef8
console.log("replace anti_addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function () {
console.log("replace waitbody success");
return 123; //父进程返回虚假子进程pid,且不创建子进程
},
"void",
[]
)
);
}
function hook_anti_thread_body_replace(addr) {
//anti_thread_body 0x32d08
console.log("replace anti_addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace antifrida success");
return 0;
},
"int",
["pointer"]
)
);
}

function hook_4F268_body_replace(addr) {
//anti_thread_body 0x32d08
console.log("replace anti_addr :", addr);
Interceptor.replace(
addr,
new NativeCallback(
function (a1) {
console.log("replace antifrida success");
return 0;
},
"void",
[]
)
);
}

function patch_read(addr) {
// var addr = 0x3d0ec
Memory.patchCode(addr, 4, function (code) {
// var cw = new X86Writer(code, { pc: getLivesLeft });
var cw = new Arm64Writer(code, { pc: addr });
// cw.putMovRegU32("eax", 9000);
// cw.putRet();
// cw.putInstruction(0x00008052);
cw.putInstruction(0x52800000);
cw.flush();
});
}

function patch_fork(addr) {
// var addr = 0x3d0ec
Memory.patchCode(addr, 4, function (code) {
// var cw = new X86Writer(code, { pc: getLivesLeft });
var cw = new Arm64Writer(code, { pc: addr });
// cw.putMovRegU32("eax", 9000);
// cw.putRet();
// cw.putInstruction(0x600F8052);
cw.putInstruction(0x52800f60);
cw.flush();
});
}
function hook_system_property_get() {
var system_property_get = Module.findExportByName(
"libc.so",
"__system_property_get"
);
Interceptor.attach(system_property_get, {
onEnter: function (args) {
this.flag_debug = false;
this.property = args[1]
console.log("system_property_get:", Memory.readCString(args[0]));
if (Memory.readCString(args[0]).indexOf("ro.debuggable") != -1) {
this.flag_debug = true;
}
if (Memory.readCString(args[0]).indexOf("ro.build.version.release_or_codename") != -1) {
console.log("------------------------------")
// dump("libmsaoaidsec.so")

var secmodule = Process.findModuleByName("libmsaoaidsec.so")
console.log("secmodule:", secmodule.base)
hook_thread(secmodule.base)
}
},
onLeave: function (retval) {
if (this.flag_debug) {
retval.replace(0);
}
console.log("property:", Memory.readCString(this.property))
console.log("ret:", retval);
},
});

}

function locate_init() {
let secmodule = null
Interceptor.attach(Module.findExportByName(null, "strstr"),
{
// _system_property_get("ro.build.version.sdk", v1);
onEnter: function (args) {
console.log("strstr is called!")
secmodule = Process.findModuleByName("libmsaoaidsec.so")
var name = args[1];
console.log("strstr args[0]:", ptr(args[0]).readCString())
console.log("strstr args[1]:", ptr(args[1]).readCString())
if (name !== undefined && name != null) {
name = ptr(name).readCString();
if (name.indexOf("2022-02") >= 0) {
console.log("2022-02 is reached!")
console.log("base: ", secmodule.base, " name: ", secmodule.name);
// hook_thread(secmodule.base)


}
}

},
onLeave: function () {

}
}
);
}
function dump(name) {
var dir = "/data/data/com.hanweb.android.zhejiang.activity/files"
var libxx = Process.getModuleByName(name);
console.log("*****************************************************");
console.log("name: " + libxx.name);
console.log("base: " + libxx.base);
console.log("size: " + ptr(libxx.size));

var file_path = dir + "/" + libxx.name + "_" + libxx.base + "_" + ptr(libxx.size) + ".so";
console.log(file_path);

var file_handle = new File(file_path, "wb");
if (file_handle && file_handle != null) {
Memory.protect(ptr(libxx.base), libxx.size, 'rwx');
var libso_buffer = ptr(libxx.base).readByteArray(libxx.size);
file_handle.write(libso_buffer);
file_handle.flush();
file_handle.close();
console.log("[dump]:", file_path);
}
}


function isInModule(address) {
for(let i in moduleMap){
// console.log("add res:",parseInt(moduleMap[i][0]) + parseInt(moduleMap[i][1]))
if (address >= parseInt(moduleMap[i][0]) && address <= parseInt(moduleMap[i][0]) + parseInt(moduleMap[i][1])) {
// console.log("address ",address,"is in ",i)
return true
}
}
// console.log("address ",address,"is not in any module")
return false
}
var hook_thread_flag = true
function hook_thread(base_addr) {
var pt_create_func = Module.findExportByName(null, 'pthread_create');
var detect_frida_loop_addr = null;
// console.log('pt_create_func:',pt_create_func);

if (hook_thread_flag) {
Interceptor.attach(pt_create_func, {
onEnter: function () {
console.log("hook_thread:", this.context.x2)

// isInModule(this.context.x2)
if(dexjni_start && isInModule(this.context.x2)){
console.log(Thread.backtrace(this.context, Backtracer.ACCURATE).map(DebugSymbol.fromAddress).join('\n') + '\n');
}
if (this.context.x2.compare(base_addr.add(0x175F8)) == 0 || this.context.x2.compare(base_addr.add(0x16D30)) == 0 || this.context.x2.compare(base_addr.add(0x163DC)) == 0) {
hook_anti_msao_replace(this.context.x2);
}

// hook_anti_msao_replace(this.context.x2);
},
onLeave: function (retval) {
// console.log('retval',retval);
}
})
}
hook_thread_flag = false;
}

function hook_anti_msao_replace(addr) {
console.log('replace anti_msao_addr :', addr);
Interceptor.replace(addr, new NativeCallback(function (a1) {
console.log('anti_msao_addr replace success');
return;
}, 'void', []));

}

function print_thread() {

// var pt_create_func = Module.findExportByName("libc.so", 'strcpy')
var pt_create_func = Module.findExportByName(null, 'pthread_create');
console.log("pt_create_func 2:", pt_create_func)

Interceptor.attach(pt_create_func, {
onEnter: function (args) {
console.log("thread address",args[2])
// console.log(Thread.backtrace(this.context, Backtracer.ACCURATE).map(DebugSymbol.fromAddress).join('\n') + '\n');
// console.log("-----------------------------------------------")

},
onLeave: function (retval) {

}
})
}

某加固逆向绕过
http://showfaker.top/2024/03/20/bb-reverse-bypass/
作者
ShowFaker
发布于
2024年3月20日
许可协议