forked from zhaojiafu/hooker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.yxcorp.plugin.search.entity.SearchKwaiLinkParam.js
219 lines (203 loc) · 12.4 KB
/
com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.js
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
//crack by com.smile.gifmaker 7.5.50.14809
//com.yxcorp.plugin.search.entity.SearchKwaiLinkParam
function loadDexfile(dexfile) {
Java.perform(function() {
Java.openClassFile(dexfile).load();
console.log("load " + dexfile);
});
};
function checkLoadDex(className, dexfile) {
Java.perform(function() {
if (!classExists(className)) {
Java.openClassFile(dexfile).load();
console.log("load " + dexfile);
}
});
};
function classExists(className) {
var exists = false;
try {
var clz = Java.use(className);
exists = true;
} catch(err) {
//console.log(err);
}
return exists;
};
function getClassName(obj) {
if (obj.getClass) {
return obj.getClass().getName();
}
var javaObject = Java.use("java.lang.Object");
return Java.cast(obj, javaObject).getClass().getName();
}
//str1是否包含str2,str2可用正则表示
function contains(str1, str2) {
var reg = RegExp(eval("/"+str2+"/"));
if(str1 && str1.match && str1.match(reg)){
return true;
}else{
return false;
}
};
//创建ArrayList对象用这个方法就好了
function newArrayList() {
var ArrayListClz = Java.use('java.util.ArrayList');
return ArrayListClz.$new();
}
//创建HashSet对象用这个方法就好了
function newHashSet() {
var HashSetClz = Java.use('java.util.HashSet');
return HashSetClz.$new();
}
//创建HashMap对象用这个方法就好了
function newHashMap() {
var HashMapClz = Java.use('java.util.HashMap');
return HashMapClz.$new();
}
function methodInBeat(invokeId, timestamp, methodName, executor) {
var startTime = timestamp;
var androidLogClz = Java.use("android.util.Log");
var exceptionClz = Java.use("java.lang.Exception");
var threadClz = Java.use("java.lang.Thread");
var currentThread = threadClz.currentThread();
var stackInfo = androidLogClz.getStackTraceString(exceptionClz.$new());
var str = ("------------startFlag:" + invokeId + ",objectHash:"+executor+",thread(id:" + currentThread.getId() +",name:" + currentThread.getName() + "),timestamp:" + startTime+"---------------");
str += methodName;
str += stackInfo.substring(20);
str += ("------------endFlag:" + invokeId + ",usedtime:" + (new Date().getTime() - startTime) +"---------------\n");
console.log(str);
};
function log(str) {
console.log(str);
};
//虽然我们习惯用fastjson一行将对象转成json字符串,但是Android Library里面自带了一个gson可以做到 只是sdk没有暴露出来,很多人不知道。在frida中所有代码都是透明的,你随便调......
function toJson(javaObject) {
var gsonClz = Java.use("com.google.gson.Gson");
var toJsonMethod = gsonClz.toJson.overload("java.lang.Object");
return toJsonMethod.call(gsonClz.$new(),javaObject);
};
function getBaseContext() {
var currentApplication = Java.use('android.app.ActivityThread').currentApplication();
var context = currentApplication.getApplicationContext();
return context; //Java.scheduleOnMainThread(fn):
};
function sleep(time) {
var startTime = new Date().getTime() + parseInt(time, 10);
while(new Date().getTime() < startTime) {}
};
function loadXinitDexfile(dexfile) {
loadDexfile('/data/user/0/com.smile.gifmaker/xinit/'+dexfile);
};
//com.yxcorp.plugin.search.entity.SearchKwaiLinkParam
Java.perform(function() {
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz = Java.use('com.yxcorp.plugin.search.entity.SearchKwaiLinkParam');
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromPage_9z1t = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getFromPage.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromPage_9z1t.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromPage_9z1t.call(this);
methodInBeat(invokeId, startTime, 'public k.a.b.o.c0 com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getFromPage()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchPlaceholder_t3r8 = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getSearchPlaceholder.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchPlaceholder_t3r8.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchPlaceholder_t3r8.call(this);
methodInBeat(invokeId, startTime, 'public java.lang.String com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getSearchPlaceholder()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromUri_brav = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.fromUri.overload('android.net.Uri');
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromUri_brav.implementation = function(v0) {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = 'Class';
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromUri_brav.call(com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz, v0);
methodInBeat(invokeId, startTime, 'public static com.yxcorp.plugin.search.entity.SearchKwaiLinkParam com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.fromUri(android.net.Uri)', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKwaiFromPage_u9m5 = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getKwaiFromPage.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKwaiFromPage_u9m5.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKwaiFromPage_u9m5.call(this);
methodInBeat(invokeId, startTime, 'public int com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getKwaiFromPage()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchSceneSource_1bfk = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getSearchSceneSource.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchSceneSource_1bfk.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSearchSceneSource_1bfk.call(this);
methodInBeat(invokeId, startTime, 'public k.b.d.c.b.h4 com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getSearchSceneSource()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKeyword_a16t = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getKeyword.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKeyword_a16t.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getKeyword_a16t.call(this);
methodInBeat(invokeId, startTime, 'public java.lang.String com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getKeyword()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getPlaceholderKeyword_w4mi = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getPlaceholderKeyword.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getPlaceholderKeyword_w4mi.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getPlaceholderKeyword_w4mi.call(this);
methodInBeat(invokeId, startTime, 'public java.lang.String com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getPlaceholderKeyword()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromSessionId_heg9 = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getFromSessionId.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromSessionId_heg9.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getFromSessionId_heg9.call(this);
methodInBeat(invokeId, startTime, 'public java.lang.String com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getFromSessionId()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSourceText_p6ns = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.getSourceText.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSourceText_p6ns.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_getSourceText_p6ns.call(this);
methodInBeat(invokeId, startTime, 'public java.lang.String com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.getSourceText()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isEnableSearchHome_hd4h = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.isEnableSearchHome.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isEnableSearchHome_hd4h.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isEnableSearchHome_hd4h.call(this);
methodInBeat(invokeId, startTime, 'public boolean com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.isEnableSearchHome()', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromVerticalUri_q3vv = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.fromVerticalUri.overload('android.net.Uri');
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromVerticalUri_q3vv.implementation = function(v0) {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = 'Class';
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_fromVerticalUri_q3vv.call(com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz, v0);
methodInBeat(invokeId, startTime, 'public static com.yxcorp.plugin.search.entity.SearchKwaiLinkParam com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.fromVerticalUri(android.net.Uri)', executor);
return ret;
};
var com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isNeedRequestPreset_pyf4 = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz.isNeedRequestPreset.overload();
com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isNeedRequestPreset_pyf4.implementation = function() {
var invokeId = Math.random().toString(36).slice( - 8);
var startTime = new Date().getTime();
var executor = this.hashCode();
var ret = com_yxcorp_plugin_search_entity_SearchKwaiLinkParam_clz_method_isNeedRequestPreset_pyf4.call(this);
methodInBeat(invokeId, startTime, 'public boolean com.yxcorp.plugin.search.entity.SearchKwaiLinkParam.isNeedRequestPreset()', executor);
return ret;
};
});