This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
hook-frida/AppLogReaperServiceImpl.js

12 lines
424 B
JavaScript

//AppLogReaperServiceImpl类的LIZ方法
Java.perform(function() {
var AppLogReaperServiceImpl = Java.use("com.ss.android.ugc.aweme.lancet.AppLogReaperServiceImpl");
AppLogReaperServiceImpl.LIZ.overload('org.json.JSONObject').implementation = function(jsonObject) {
console.log("Logged JSON: " + jsonObject.toString());
// Call the original function
return this.LIZ(jsonObject);
};
});