frida 获取当前app 加载的 所有 so
function enumSo(){Java.perform(function(){
Process.enumerateModules({
onMatch: function(exp){
console.log(exp.path);
//console.log(exp.name + "|" + exp.base + "|" + exp.size + "|" + exp.path);
//if(exp.name == 'libart.so'){
// console.log(exp.name + "|" + exp.base + "|" + exp.size + "|" + exp.path);
// console.log(JSON.stringify(exp));
//return 'stop';
//}
},
onComplete: function(){
//send('stop');
}
});
});
}
小肩膀老师貌似没有讲到分享一下 感谢大佬分享:lol
页:
[1]