-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
1423 lines (1218 loc) · 52.5 KB
/
main.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
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name XHR Monitor Debugger Hook
// @namespace https://github.com/JSREI/js-xhr-monitor-debugger-hook
// @version 0.1
// @description XHR相关的一些Hook,用于辅助提高XHR类型的加密的逆向效率
// @author CC11001100
// @match *://*/*
// @run-at document-start
// @grant none
// @require file://D:\workspace\js-xhr-monitor-debugger-hook\main.js
// ==/UserScript==
(() => {
// TODO 把XMLHttpRequestHook.prototype.open保护起来,以免有直接通过XMLHttpRequestHook.prototype.open设置参数的情况
// 目前所有的xhr断点
const xhrDebuggerArray = [
{
"setRequestHeaderNameCondition": "foo-header-name"
},
{
// { string | RegExp | null } 对要访问的连接过滤
requestUrlCondition: "api/ccw/project/evaluation/getList/",
// { string | RegExp | null } 对发送的请求中的参数名过滤
requestParamNameCondition: null,
// { string | RegExp | null } 对发送的请求中的参数值过滤
requestParamValueCondition: null,
// { string | RegExp | null } 对发送的请求中的请求头的名字过滤
setRequestHeaderNameCondition: null,
// { string | RegExp | null } 对发送的请求中的请求头的值过滤
setRequestHeaderValueCondition: null,
// { string | RegExp | null } 按请求头过滤
requestBodyCondition: null,
// { string | RegExp | null } 对响应头的名字过滤
getResponseHeaderNameCondition: null,
// { string | RegExp | null } 对响应头的值过滤
getResponseHeaderValueCondition: null,
// { string | RegExp | null } 按响应体过滤
responseBodyCondition: null,
// { boolean } 是否在请求发送前进入断点
enableDebuggerBeforeRequestSend: true,
// { boolean } 是否在请求发送后进入断点
enableDebuggerAfterResponseReceive: true,
// TODO
// 设置触发各种操作的时候是否开启断点,以避免断点太多太烦
actionDebuggerEnable: {
open: true,
setRequestHeader: true,
send: true,
// 执行回调的时候
responseCallback: true,
visitResponseAttribute: false,
}
},
// 断点可以同时存在多个,数组继续往下放就可以了
// {
// // { string | RegExp | null } 对要访问的连接过滤
// requestUrlCondition: null,
//
// // { string | RegExp | null } 对发送的请求中的参数名过滤
// requestParamNameCondition: null,
//
// // { string | RegExp | null } 对发送的请求中的参数值过滤
// requestParamValueCondition: null,
//
// // { string | RegExp | null } 对发送的请求中的请求头的名字过滤
// setRequestHeaderNameCondition: null,
//
// // { string | RegExp | null } 对发送的请求中的请求头的值过滤
// setRequestHeaderValueCondition: null,
//
// // { string | RegExp | null } 按请求头过滤
// requestBodyCondition: null,
//
// // { string | RegExp | null } 对响应头的名字过滤
// getResponseHeaderNameCondition: null,
//
// // { string | RegExp | null } 对响应头的值过滤
// getResponseHeaderValueCondition: null,
//
// // { string | RegExp | null } 按响应体过滤
// responseBodyCondition: null,
//
// // { boolean } 是否在请求发送前进入断点
// enableDebuggerBeforeRequestSend: true,
//
// // { boolean } 是否在请求发送后进入断点
// enableDebuggerAfterResponseReceive: true,
// },
];
// -------------------------------------------- --------------------------------------------------------------------
/**
* 用于分发生成唯一ID
*/
class IDGenerator {
/**
* 可以制定一个可选的ID前缀,如果指定的话生成的每个ID都有相同的前缀,未指定的话则ID无前缀只是一个自增的数字
*
* @param idPrefix
*/
constructor(idPrefix = "") {
this.idPrefix = idPrefix;
this.next = 1;
}
/**
* 返回下一个ID
*
* @return {string|number}
*/
nextID() {
const next = this.next;
this.next++;
if (this.idPrefix) {
return `${this.idPrefix}-${next.toString().padStart(8, "0")}`;
} else {
return next;
}
}
}
// -------------------------------------------- --------------------------------------------------------------------
/**
* 用于全局暴露函数
*/
class GlobalVariableManager {
constructor() {
this.idGenerator = new IDGenerator();
this.cacheMap = new Map();
}
/**
* 暴露一个函数到全局作用域,如果之前已经暴露过则返回之前的名称,否则分配一个新的名称,暴露之后把新的名称返回
*
* @param globalVariablePrefix {string} 可以指定一个可选的全局前缀,如果指定了的话挂载到的全局变量则会使用这个字符串作为前缀
* @param funcPointer {Function} 要挂载为全局的函数
*/
setGlobal(globalVariablePrefix, funcPointer) {
if (this.cacheMap.has(funcPointer)) {
return this.cacheMap.get(funcPointer);
}
const globalVariable = `cc11001100_xhr_monitor_debugger_hook_${globalVariablePrefix}_${this.idGenerator.next()}`;
window[globalVariable] = funcPointer;
this.cacheMap[funcPointer] = globalVariable;
return globalVariable;
}
}
const globalVariableManager = new GlobalVariableManager();
// -------------------------------------------- --------------------------------------------------------------------
// // 不让清屏
// window.console.clear = function () {
// }
//
// class ConsoleDisable {
//
// }
/**
* 这个类用于负责Class、原型相关的的Hook替换操作
*/
class XMLHttpRequestPrototypeHook {
/**
* 向原型链上添加Hook
*/
hook() {
// 持有一份最纯净的原型
const ancestorXMLHttpRequestHolder = window.XMLHttpRequest;
// 这个持有的是当前最新的值,如果有多次Hook的话可能会被修改
let XMLHttpRequestHolder = window.XMLHttpRequest;
let cachedProxyXHR = null;
Object.defineProperty(window, "XMLHttpRequest", {
get: () => {
if (!cachedProxyXHR) {
cachedProxyXHR = new Proxy(XMLHttpRequestHolder, {
// new XMLHttpRequest()的时候给替换掉返回的对象
construct(target, argArray, newTarget) {
const xhrObject = new XMLHttpRequestHolder();
return new XMLHttpRequestObjectHook(xhrObject).addHook();
},
// get(target, p, receiver) {
// return target[p];
// },
// getPrototypeOf(target) {
// // 应该如何Hook住对原型链的修改呢?
// // TODO 当访问原型的时候将其拦截住,因为有些拦截器是通用在原型上添加的
// debugger;
// }
});
}
return cachedProxyXHR;
}, set: newValue => {
// 缓存失效
cachedProxyXHR = null;
// 设置为新的值,可能会存在多层嵌套的情况
XMLHttpRequestHolder = newValue;
},
configurable: true,
})
}
}
/**
* 这个操作用于Hook对象上的操作
*/
class XMLHttpRequestObjectHook {
static xhrIDGenerator = new IDGenerator("CC1100110-XHR-ID");
/**
* 为XHR对象添加Hook
*
* @param xhrObject
*/
constructor(xhrObject) {
// 被Hook的xhr对象
this.xhrObject = xhrObject;
// 持有着xhr相关的一些上下文信息,为其初始化一个
this.xhrContext = new XMLHttpRequestContext(XMLHttpRequestObjectHook.xhrIDGenerator.nextID());
}
/**
* 为被Hook的XHR对象添加各种Hook
*
* @return {boolean|(function(): (*|null))|*|(() => void)|ProgressEvent<FileReader>|ProgressEvent<XMLHttpRequestEventTarget>|Event|((reason?: any) => Promise<void>)|((reason?: any) => AbortSignal)|(() => Promise<void>)|((reason?: any) => void)|UnderlyingSinkAbortCallback|((mime: string) => void)|Proxy<Function>}
*/
addHook() {
const _this = this;
return new Proxy(this.xhrObject, {
get(target, p, receiver) {
switch (p) {
// 请求相关的方法
case "open":
return _this.addOpenHook();
case "send":
return _this.addSendHook();
case "setRequestHeader":
return _this.addSetRequestHeaderHook();
case "abort":
return _this.addAbortHook();
case "overrideMimeType":
return _this.addOverrideMimeTypeHook();
// 请求相关的属性
// 这几个属性就忽略不再拦截了
case "readyState":
case "timeout":
case "upload":
case "withCredentials":
return target[p];
// 响应相关的方法
case "getAllResponseHeaders":
case "getResponseHeader":
return _this.addVisitResponseHeaderHook(p);
// 响应相关的属性
case "response":
case "responseText":
case "responseType":
case "responseURL":
case "responseXML":
return _this.addVisitResponsePropertyHook(p);
case "status":
case "statusText":
return target[p];
// 事件处理,搞一个专门的单元来处理,添加事件可以通过addEventListener
// 也可以直接on+事件名称,所以要把两种情况都覆盖住
case "addEventListener":
return _this.addAddEventListenerHook();
default:
// 其它情况就不拦截了,直接放行
return target[p];
}
}, set(target, p, value, receiver) {
switch (p) {
case "onabort":
return _this.addOnabortHook();
case "onerror":
case "onload":
case "onloadend":
case "onloadstart":
case "onprogress":
case "ontimeout":
target[p] = value;
return true;
case "onreadystatechange":
return _this.addOnreadystatechangeHook(value);
// case "withCredentials":
// // 设置携带凭证的时候拦截一下
// return _this.addWithCredentialsHook();
default:
// 默认情况下就直接赋值,不再尝试Hook
target[p] = value;
return true;
}
}
});
}
/**
* 增加访问响应内容时的Hook
*
* @param {string} propertyName
*/
addVisitResponsePropertyHook(propertyName) {
const _this = this;
// 打印拦截到访问XHR响应属性的日志
try {
const valueStyle = `color: black; background: #CCCC00; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
const normalStyle = `color: black; background: #EEEE33; font-size: ${consoleLogFontSize}px;`;
const message = [
normalStyle,
now(),
normalStyle,
" XHR Monitor Debugger Hook: ",
normalStyle,
"xhr request id = ",
valueStyle,
`${_this.xhrContext.id}`,
normalStyle,
", action = ",
valueStyle,
"visit xhr response attribute",
normalStyle,
", url = ",
valueStyle,
`${_this.xhrContext.requestUrlString}`,
normalStyle,
`, visit response attribute name = `,
valueStyle,
`${propertyName}`,
normalStyle,
", value = ",
valueStyle,
`${_this.xhrObject[propertyName]}`,
normalStyle,
`, code location = ${cc11001100_getCodeLocation()}`];
console.log(genFormatArray(message), ...message);
} catch (e) {
console.error(e);
}
try {
// 断点测试
this.xhrContext[propertyName] = this.xhrObject[propertyName];
for (let xhrDebugger of xhrDebuggerArray) {
if (xhrDebugger.test(this.xhrContext)) {
// 当前操作: XMLHttpRequest visit response attribute
debugger;
}
}
} catch (e) {
console.error(e);
}
return this.xhrObject[propertyName];
}
/**
* 为XHR添加事件响应函数时将被拦截到
*
* @return {*}
*/
addAddEventListenerHook() {
const _this = this;
return new Proxy(this.xhrObject.addEventListener, {
apply(target, thisArg, argArray) {
const [eventName, eventFunction] = argArray
// 打印拦截到访问XHR响应属性的日志
try {
const valueStyle = `color: black; background: #669934; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
const normalStyle = `color: black; background: #65CC66; font-size: ${consoleLogFontSize}px;`;
const message = [
normalStyle,
now(),
normalStyle,
"XHR Monitor Debugger Hook: ",
normalStyle,
"id = ",
valueStyle,
`${_this.xhrContext.id}, `,
normalStyle,
"xhr url = ",
// valueStyle,
// `${_this.xhrContext.requestUrlString}, `,
//
// normalStyle,
// `visit response attribute name = `,
//
// valueStyle,
// `${propertyName}, `,
//
// normalStyle,
// "value = ",
//
// valueStyle,
// `${_this.xhrObject[propertyName]}, `,
normalStyle,
`, code location = ${cc11001100_getCodeLocation()}`];
console.log(genFormatArray(message), ...message);
} catch (e) {
console.error(e);
}
// TODO 2023-1-3 01:21:21 断点测试
try {
// switch (eventName) {
// case "readystatechange":
// // TODO
// }
} catch (e) {
console.error(e);
}
return target.apply(_this.xhrObject, argArray);
}
});
}
/**
* 为open添加代理,以便在访问的时候能够拦截得到
*
* @returns {Proxy<Function>}
*/
addOpenHook() {
const _this = this;
return new Proxy(this.xhrObject.open, {
apply(target, thisArg, argArray) {
// 从第三个参数开始是可选的
const [method, url, isAsync, user, password] = argArray;
_this.xhrContext.requestUrlString = url;
// TODO 解析请求参数
// _this.xhrContext.requestParamPairMap =
// 打印日志
try {
const valueStyle = `color: black; background: #669934; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
const normalStyle = `color: black; background: #65CC66; font-size: ${consoleLogFontSize}px;`;
const message = [
normalStyle,
now(),
normalStyle,
" XHR Monitor Debugger Hook: ",
normalStyle,
"xhr request id = ",
valueStyle,
`${_this.xhrContext.id}`,
normalStyle,
", action = ",
valueStyle,
"xhr open",
normalStyle,
", url = ",
valueStyle,
`${url}`,
// 从第三个参数开始是可选的,
...(() => {
return [// async
...(() => {
if (isAsync !== undefined) {
return [normalStyle, ", async = ", valueStyle, `${isAsync}`,];
} else {
return [];
}
})(), // user & password
...(() => {
if (user !== undefined) {
return [normalStyle, ", user = ", valueStyle, `${user}`, normalStyle, ", password = ", valueStyle, `${password}`,];
} else {
return [];
}
})(),];
})(),
normalStyle,
`, code location = ${cc11001100_getCodeLocation()}`];
console.log(genFormatArray(message), ...message);
} catch (e) {
console.error(e);
}
// 测试断点
try {
for (let xhrDebugger of xhrDebuggerArray) {
if (xhrDebugger.test(_this.xhrContext)) {
// 当前操作:XMLHttpRequest open
debugger;
}
}
} catch (e) {
console.error(e);
}
return target.apply(_this.xhrObject, argArray);
}
});
}
/**
* 为send方法生成代理对象并返回
*
* @returns {Proxy<Function>}
*/
addSendHook() {
const _this = this;
return new Proxy(this.xhrObject.send, {
apply(target, thisArg, argArray) {
// send只会有有一个参数
const [data] = argArray;
try {
const valueStyle = `color: black; background: #3399CC; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
const normalStyle = `color: black; background: #0099FF; font-size: ${consoleLogFontSize}px;`;
const message = [
normalStyle,
now(),
normalStyle,
" XHR Monitor Debugger Hook: ",
normalStyle,
"xhr request id = ",
valueStyle,
`${_this.xhrContext.id}`,
normalStyle,
", action = ",
valueStyle,
"xhr send",
normalStyle,
", url = ",
valueStyle,
`${_this.xhrContext.requestUrlString}`,
normalStyle,
", body = ",
valueStyle,
`${data}`,
normalStyle,
`, code location = ${cc11001100_getCodeLocation()}`];
console.log(genFormatArray(message), ...message);
} catch (e) {
console.error(e);
}
// https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/send
// post设置body的情况要能够拦截得到
try {
if (data) {
// data可能会是以下几种类型:
// Blob | BufferSource | FormData | URLSearchParams | string
if (typeof data === "string") {
// request body 是 string 类型,大多数情况下也是这种类型
for (let xhrDebugger of xhrDebuggerArray) {
if (xhrDebugger.test(_this.xhrContext)) {
// 当前操作:XMLHttpRequest send
debugger;
}
}
} else if (data.prototype === Blob.prototype) {
// Blob 类型
// TODO 二进制类型
} else if (data.prototype === ArrayBuffer.prototype) {
// ArrayBuffer 类型
// TODO 二进制类型
} else if (data.prototype === FormData.prototype) {
// ArrayBufferView 类型
// TODO 表单参数匹配
} else if (data.prototype === URLSearchParams.prototype) {
// URLSearchParams 类型
// TODO 参数匹配
}
}
} catch (e) {
console.error(e);
}
return target.apply(_this.xhrObject, argArray);
}
});
}
/**
* 设置请求头的时候拦截一下
*
* @returns {Proxy<Function>}
*/
addSetRequestHeaderHook() {
const _this = this;
return new Proxy(this.xhrObject.setRequestHeader, {
apply(target, thisArg, argArray) {
// 设置的请求头的名字和值,名字和值都是字符串类型
const [requestHeaderName, requestHeaderValue] = argArray;
// 打印日志
try {
const valueStyle = `color: black; background: #CC6600; font-size: ${consoleLogFontSize}px; font-weight: bold;`;
const normalStyle = `color: black; background: #FF9933; font-size: ${consoleLogFontSize}px;`;
const message = [
normalStyle,
now(),
normalStyle,
" XHR Monitor Debugger Hook: ",
normalStyle,
"xhr request id = ",
valueStyle,
`${_this.xhrContext.id}`,
normalStyle,
", action = ",
valueStyle,
"xhr setRequestHeader",
normalStyle,
", url = ",
valueStyle,
`${_this.xhrContext.requestUrlString}`,
normalStyle,
", requestHeaderName = ",
valueStyle,
`${requestHeaderName}`,
normalStyle,
", requestHeaderValue = ",
valueStyle,
`${requestHeaderValue}`,
normalStyle,
`, code location = ${cc11001100_getCodeLocation()}`];
console.log(genFormatArray(message), ...message);
} catch (e) {
console.error(e);
}
// 测试断点
try {
// debugger;
// 设置上下文
_this.xhrContext.setRequestHeaderContext = {
requestHeaderName: requestHeaderName, requestHeaderValue: requestHeaderValue,
}
// 测试断点
for (let xhrDebugger of xhrDebuggerArray) {
// 将鼠标移动到xhrDebugger上即可查看命中的断点是哪个
if (xhrDebugger.test(_this.xhrContext)) {
// 当前操作:XMLHttpRequest setRequestHeader
debugger;
}
}
// 清空上下文
_this.xhrContext.setRequestHeaderContext = {
requestHeaderName: null, requestHeaderValue: null,
};
} catch (e) {
console.error(e);
}
return target.apply(_this.xhrObject, argArray);
}
});
}
addAbortHook() {
const _this = this;
return new Proxy(this.xhrObject.abort, {
apply(target, thisArg, argArray) {
// TODO
return target.apply(_this.xhrObject, argArray);
}
});
}
addOverrideMimeTypeHook() {
const _this = this;
return new Proxy(this.xhrObject.overrideMimeType, {
apply(target, thisArg, argArray) {
// TODO
return target.apply(_this.xhrObject, argArray);
}
});
}
// -------------------------------------------- --------------------------------------------------------------------
// case "onerror":
// case "onload":
// case "onloadend":
// case "onloadstart":
// case "onprogress":
// case "ontimeout":
// case "onreadystatechange":
// return _this.addOnreadystatechangeHook(value);
/**
* onabort事件回调
*
* @param value
*/
addOnabortHook(value) {
const _this = this;
return this.xhrObject.onreadystatechange = () => {
// TODO 检查上下文是否符合条件断点
// 跟进去下面这个函数就是处理响应体的代码逻辑了
if (value) {
return value.apply(_this.xhrObject, arguments);
} else {
return null;
}
}
}
/**
* 在设置 onreadystatechange 的时候替换为自己的函数
* @param value
*/
addOnreadystatechangeHook(value) {
const _this = this;
return this.xhrObject.onreadystatechange = () => {
try {
for (let xhrDebugger of xhrDebuggerArray) {
// 命中了这个断点
if (xhrDebugger.test(_this.xhrContext)) {
// 当前操作: XMLHttpRequest onreadystatechange
debugger;
}
}
} catch (e) {
console.error(e);
}
// 跟进去下面这个函数就是处理响应体的代码逻辑了
if (value) {
return value.apply(_this.xhrObject, arguments);
} else {
return null;
}
}
}
/**
* 在设置携带凭证的时候拦截一下
*
* @return {undefined}
*/
addWithCredentialsHook(value) {
const _this = this;
return this.xhrObject.onreadystatechange = () => {
try {
for (let xhrDebugger of xhrDebuggerArray) {
// 命中了这个断点
if (xhrDebugger.test(_this.xhrContext)) {
debugger;
}
}
} catch (e) {
console.error(e);
}
// 跟进去下面这个函数就是处理响应体的代码逻辑了
return value.apply(_this.xhrObject, arguments);
}
}
/**
* 增加访问响应头的Hook
*
* @param propertyName
* @return {undefined}
*/
addVisitResponseHeaderHook(propertyName) {
return new Proxy(this.xhrObject[propertyName], {
apply(target, thisArg, argArray) {
// TODO 打印日志
// TODO 断点测试
}
});
}
}
new XMLHttpRequestPrototypeHook().hook();
// -------------------------------------------- 控制台指令 -----------------------------------------------------------
// TODO 2023-1-3 01:11:07 提供一个控制台接口会使用起来方便一些吗?
// // window["CC11001100_xhr_hook"]
// class Command {
//
// init() {
//
// }
//
// // 列出命令帮助文档
// help() {
//
// }
//
// // 添加断点
// addDebugger() {
//
// }
//
// // 删除断点
// deleteDebugger() {
//
// }
//
// // 列出所有断点
// listDebugger() {
//
// }
//
// // 清空所有断点
// clearDebugger() {
//
// }
//
// }
//
// new Command().init();
// ----------------------------------------------------------------------------------------------------------------
// const xhrDebuggerList = [
// {
// // 根据url匹配,可以是字符串或者正则,字符串的话是包含关键词,正则则是要完全匹配
// requestUrlFilter: "",
//
// // 根据url中的请求参数名称匹配,可以是string或者正则
// requestParamNameFilter: "",
// // 根据url中的请求参数的值匹配,可以是string或者正则
// requestParamValueFilter: "",
//
// // xhr post请求参数
// requestBodyFilter: "",
//
// // 请求头匹配,可以是参数名
// requestHeaderNameFilter: "",
// requestHeaderValueFilter: "",
//
// responseHeaderNameFilter: "",
// responseHeaderValueFilter: "",
//
// // 当命中断点的时候如何进入断点,默认情况下是会进入两次的,一次是发送之前,一次是发送之后
// // 在请求发送之前进入断点
// enableDebuggerBeforeRequestSend: true,
// // 在响应接收之后进入断点
// enableDebuggerAfterResponseReceive: true,
//
// // 根据响应体过滤
// responseBodyFilter: ""
// }
// ]
// 开发者工具打印的消息的字体大小
const consoleLogFontSize = 12;
// -------------------------------------------- --------------------------------------------------------------------
/**
* 用于表示一个当前正在处理的请求的相关上下文,结构化方便处理
*/
class XMLHttpRequestContext {
/**
*
* @param id {number | string}
*/
constructor(id) {
this.id = id;
// 要访问的网址
this.requestUrlString = null;
// url中携带的参数
this.requestParamPairMap = null;
this.urlDecodeRequestParamPairMap = null;
// 请求体
this.requestBody = null;
// 如果是提交的表单的话,表单参数是啥
this.requestForm = null;
// 请求头
this.requestHeaderMap = null;
// 设置请求头的上下文
this.setRequestHeaderContext = {
requestHeaderName: null, requestHeaderValue: null,
};
// 获取响应头的上下文
this.getResponseHeaderContext = {
responseHeaderName: null, responseHeaderValue: null,
};
// 响应体内容
this.responseBody = null;
}
}
/**
*
* @param requestUrlString
* @return XMLHttpRequestContext
*/
function parseRequestUrl(requestUrlString) {
// // 解析querystring里传递的参数,参数的名字和值都是被URL decode之后的
// getUrlQueryStringParams()
// {
// const params = {};
// new URL(this.url).searchParams.forEach((value, key) => {
// params[key] = value;
// });
// return params;
// }
}
// -------------------------------------------- --------------------------------------------------------------------