forked from deathmemory/FridaContainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tk_url
9034 lines (8761 loc) · 725 KB
/
tk_url
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
[INFO][02/28/2023, 07:20:19 PM][PID:14335][14353][JAVA]: available
[DEBUG][02/28/2023, 07:20:23 PM][PID:14335][main][14335][MAIN]: HELLO FridaContainer, please add code on the index.ts
[INFO][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][hook_url]: url: https://mon.tiktokv.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554466)
at X.Mky.LIZ(SourceFile:33554452)
at X.ZbF.run(SourceFile:21)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][hook_url]: url: https://mon.tiktokv.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554515)
at X.Mky.LIZ(SourceFile:33554452)
at X.ZbF.run(SourceFile:21)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][hook_url]: url: https://mon.tiktokv.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:16777239)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554459)
at X.Mky.LIZ(SourceFile:33554455)
at X.ZbF.run(SourceFile:21)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][hook_url]: url: https://mon.tiktokv.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554475)
at X.Mky.LIZ(SourceFile:33554455)
at X.ZbF.run(SourceFile:21)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][hook_url]: url: https://mon.tiktokv.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:24 PM][PID:14335][tp-fixed-13][14399][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at X.3gG.LIZIZ(SourceFile:16777239)
at X.3gG.LIZ(SourceFile:16777231)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:67108976)
at X.Mky.LIZ(SourceFile:33554473)
at X.ZbF.run(SourceFile:21)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:16777239)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554459)
at X.4AW.LJII(SourceFile:248)
at X.4AW.LJ(SourceFile:0)
at com.bytedance.forest.chain.fetchers.GeckoXAdapter.isGeckoCDNAndMergeConfig(SourceFile:50331660)
at X.MBQ.LIZ(SourceFile:67109135)
at com.bytedance.forest.Forest.fetchResourceAsync(SourceFile:50331784)
at com.ss.android.ugc.aweme.compliance.sandbox.serviceimpl.SandboxServiceImpl.LIZ(SourceFile:23)
at com.ss.android.ugc.aweme.legoImp.task.InitWebViewHookTask.run(SourceFile:16777323)
at X.4VL.LIZIZ(SourceFile:16777291)
at X.4Yx.LIZ(SourceFile:16777218)
at X.4Yy.run(SourceFile:51)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554475)
at X.4AW.LJII(SourceFile:248)
at X.4AW.LJ(SourceFile:0)
at com.bytedance.forest.chain.fetchers.GeckoXAdapter.isGeckoCDNAndMergeConfig(SourceFile:50331660)
at X.MBQ.LIZ(SourceFile:67109135)
at com.bytedance.forest.Forest.fetchResourceAsync(SourceFile:50331784)
at com.ss.android.ugc.aweme.compliance.sandbox.serviceimpl.SandboxServiceImpl.LIZ(SourceFile:23)
at com.ss.android.ugc.aweme.legoImp.task.InitWebViewHookTask.run(SourceFile:16777323)
at X.4VL.LIZIZ(SourceFile:16777291)
at X.4Yx.LIZ(SourceFile:16777218)
at X.4Yy.run(SourceFile:51)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554466)
at X.4AW.LJII(SourceFile:275)
at X.4AW.LJ(SourceFile:0)
at com.bytedance.forest.chain.fetchers.GeckoXAdapter.isGeckoCDNAndMergeConfig(SourceFile:50331660)
at X.MBQ.LIZ(SourceFile:67109135)
at com.bytedance.forest.Forest.fetchResourceAsync(SourceFile:50331784)
at com.ss.android.ugc.aweme.compliance.sandbox.serviceimpl.SandboxServiceImpl.LIZ(SourceFile:23)
at com.ss.android.ugc.aweme.legoImp.task.InitWebViewHookTask.run(SourceFile:16777323)
at X.4VL.LIZIZ(SourceFile:16777291)
at X.4Yx.LIZ(SourceFile:16777218)
at X.4Yy.run(SourceFile:51)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:25 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554515)
at X.4AW.LJII(SourceFile:275)
at X.4AW.LJ(SourceFile:0)
at com.bytedance.forest.chain.fetchers.GeckoXAdapter.isGeckoCDNAndMergeConfig(SourceFile:50331660)
at X.MBQ.LIZ(SourceFile:67109135)
at com.bytedance.forest.Forest.fetchResourceAsync(SourceFile:50331784)
at com.ss.android.ugc.aweme.compliance.sandbox.serviceimpl.SandboxServiceImpl.LIZ(SourceFile:23)
at com.ss.android.ugc.aweme.legoImp.task.InitWebViewHookTask.run(SourceFile:16777323)
at X.4VL.LIZIZ(SourceFile:16777291)
at X.4Yx.LIZ(SourceFile:16777218)
at X.4Yy.run(SourceFile:51)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:26 PM][PID:14335][tp-io-8][14383][hook_url]: url: https://ug-sg.byteoversea.com/user_in_force_login_country/check?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026806¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[INFO][02/28/2023, 07:20:26 PM][PID:14335][tp-io-11][14386][hook_url]: url: https://libra-va.tiktokv.com/common?aid=1233&device_id=7205508502432826885&client_version=2022804050&new_cluster=1&cpu_model=sailfish&oid=0&meta_version=2023030112193501021310405522010&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b&ab_extra_data=%7B%22is_pad%22%3A%220%22%2C%22tt_ug_shoptab_new%22%3A%220%22%7D&ab_extra_vids=70998882%2C71036079%2C70978568&iid=7205509797252171525&ac=wifi&channel=googleplay&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026744¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026
[INFO][02/28/2023, 07:20:26 PM][PID:14335][tp-io-9][14384][hook_url]: url: https://api16-va.tiktokv.com/tiktok/v1/ultimate/cmpl/settings/?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026744¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:26 PM][PID:14335][tp-io-8][14383][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W8I.LIZIZ(SourceFile:16777223)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[DEBUG][02/28/2023, 07:20:26 PM][PID:14335][tp-io-9][14384][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W8I.LIZIZ(SourceFile:16777223)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[DEBUG][02/28/2023, 07:20:26 PM][PID:14335][tp-io-11][14386][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W3C.LIZIZ(SourceFile:16777223)
at X.W2O.LIZ(SourceFile:16777232)
at X.W31.run(SourceFile:4)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:26 PM][PID:14335][tp-io-28][14472][hook_url]: url: https://api16-va.tiktokv.com/tfe/api/request_combine/v1/?current_network_quality_info=%7B%22tcp_rtt%22%3A66%2C%22quic_rtt%22%3A66%2C%22http_rtt%22%3A116%2C%22downstream_throughput_kbps%22%3A2658%2C%22quic_send_loss_rate%22%3A-1%2C%22quic_receive_loss_rate%22%3A-1%2C%22net_effective_connection_type%22%3A5%2C%22video_download_speed%22%3A-1%7D&group_list=bitrate_selection%2Csocket_dynamic_timeout_strategy%2Cecho_smart_preload&api_list=%2Faweme%2Fv2%2Fplatform%2Fshare%2Fsettings%2F%2C%2Faweme%2Fv1%2Frate%2Fsettings%2F%2C%2Fwebcast%2Fsetting%2F%2C%2Ftiktok%2Fv1%2Fefficiency_portrait%2F%2C%2Faweme%2Fv1%2Fcompliance%2Fsettings%2F&has_local_cache=1&webcast_language=zh-Hans&webcast_sdk_version=2750&webcast_locale=zh_CN_%23Hans&iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026750¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:26 PM][PID:14335][tp-io-28][14472][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:26 PM][PID:14335][gecko-check-update-client-thread-2][14475][hook_url]: url: https://gecko-va.tiktokv.com/gecko/server/v5/package?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026761¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][gecko-check-update-client-thread-2][14475][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.OrU.execute(SourceFile:2)
at com.ss.android.ugc.aweme.gecko.GeckoXNetImpl.LIZ(SourceFile:33554472)
at X.4Aj.LIZ(SourceFile:16777707)
at X.4Aj.LIZ(SourceFile:33554434)
at X.49q.LIZ(SourceFile:16777346)
at X.48G.LIZ(SourceFile:33554553)
at X.49q.LIZ(SourceFile:16777346)
at X.48D.LIZ(SourceFile:33554432)
at X.49q.LIZ(SourceFile:16777346)
at X.4Ao.run(SourceFile:167)
at X.ZXq.LIZ(SourceFile:16)
at X.ZXq.run(SourceFile:3)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-io-28][14472][hook_url]: url: https://api16-va.tiktokv.com/tfe/api/request_combine/v1/?current_network_quality_info=%7B%22tcp_rtt%22%3A66%2C%22quic_rtt%22%3A66%2C%22http_rtt%22%3A116%2C%22downstream_throughput_kbps%22%3A2658%2C%22quic_send_loss_rate%22%3A-1%2C%22quic_receive_loss_rate%22%3A-1%2C%22net_effective_connection_type%22%3A5%2C%22video_download_speed%22%3A-1%7D&group_list=bitrate_selection%2Csocket_dynamic_timeout_strategy%2Cecho_smart_preload&api_list=%2Faweme%2Fv2%2Fplatform%2Fshare%2Fsettings%2F%2C%2Faweme%2Fv1%2Frate%2Fsettings%2F%2C%2Fwebcast%2Fsetting%2F%2C%2Ftiktok%2Fv1%2Fefficiency_portrait%2F%2C%2Faweme%2Fv1%2Fcompliance%2Fsettings%2F&has_local_cache=1&webcast_language=zh-Hans&webcast_sdk_version=2750&webcast_locale=zh_CN_%23Hans&iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026750¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-io-11][14386][hook_url]: url: https://libra-va.tiktokv.com/common?aid=1233&device_id=7205508502432826885&client_version=2022804050&new_cluster=1&cpu_model=sailfish&oid=0&meta_version=2023030112193501021310405522010&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b&ab_extra_data=%7B%22is_pad%22%3A%220%22%2C%22tt_ug_shoptab_new%22%3A%220%22%7D&ab_extra_vids=70998882%2C71036079%2C70978568&iid=7205509797252171525&ac=wifi&channel=googleplay&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026744¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-io-9][14384][hook_url]: url: https://api16-va.tiktokv.com/tiktok/v1/ultimate/cmpl/settings/?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026744¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-io-8][14383][hook_url]: url: https://ug-sg.byteoversea.com/user_in_force_login_country/check?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026806¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-io-8][14383][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W8I.LIZIZ(SourceFile:16777223)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-io-9][14384][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W8I.LIZIZ(SourceFile:16777223)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-io-11][14386][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W3C.LIZIZ(SourceFile:16777223)
at X.W2O.LIZ(SourceFile:16777232)
at X.W31.run(SourceFile:4)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-io-28][14472][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.W8E.LIZIZ(SourceFile:16777232)
at X.W3m.LIZ(SourceFile:16842768)
at X.W1O.run(SourceFile:6)
at X.W9V.call(SourceFile:9)
at X.W9V.call(SourceFile:65536)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][gecko-check-update-client-thread-2][14475][hook_url]: url: https://gecko-va.tiktokv.com/gecko/server/v5/package?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630026761¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630026&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][gecko-check-update-client-thread-2][14475][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.OrU.execute(SourceFile:2)
at com.ss.android.ugc.aweme.gecko.GeckoXNetImpl.LIZ(SourceFile:33554472)
at X.4Aj.LIZ(SourceFile:16777707)
at X.4Aj.LIZ(SourceFile:33554434)
at X.49q.LIZ(SourceFile:16777346)
at X.48G.LIZ(SourceFile:33554553)
at X.49q.LIZ(SourceFile:16777346)
at X.48D.LIZ(SourceFile:33554432)
at X.49q.LIZ(SourceFile:16777346)
at X.4Ao.run(SourceFile:167)
at X.ZXq.LIZ(SourceFile:16)
at X.ZXq.run(SourceFile:3)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#2][14508][hook_url]: url: https://webcast.tiktokv.com/webcast/tab/?live_entrance=2&iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630027268¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630027&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b&webcast_sdk_version=2750&webcast_language=zh-Hans&webcast_locale=zh_CN_%23Hans¤t_network_quality_info=%7B%22tcp_rtt%22%3A0%2C%22quic_rtt%22%3A0%2C%22http_rtt%22%3A116%2C%22downstream_throughput_kbps%22%3A2658%2C%22quic_send_loss_rate%22%3A-1%2C%22quic_receive_loss_rate%22%3A-1%2C%22net_effective_connection_type%22%3A5%2C%22video_download_speed%22%3A-1%7D
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#2][14508][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.android.live.network.interceptors.NtpTimeInterceptor.intercept(SourceFile:16777231)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.android.live.network.ResponseInterceptorV2.intercept(SourceFile:16777311)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554466)
at ms.bd.o.n.LIZ(SourceFile:16777524)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/appmonitor/v2/settings
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554515)
at ms.bd.o.n.LIZ(SourceFile:16777524)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://i.isnssdk.com/monitor/appmonitor/v2/settings
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#2][14508][hook_url]: url: https://webcast.tiktokv.com/webcast/tab/?live_entrance=2&iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630027268¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630027&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b&webcast_sdk_version=2750&webcast_language=zh-Hans&webcast_locale=zh_CN_%23Hans¤t_network_quality_info=%7B%22tcp_rtt%22%3A0%2C%22quic_rtt%22%3A0%2C%22http_rtt%22%3A116%2C%22downstream_throughput_kbps%22%3A2658%2C%22quic_send_loss_rate%22%3A-1%2C%22quic_receive_loss_rate%22%3A-1%2C%22net_effective_connection_type%22%3A5%2C%22video_download_speed%22%3A-1%7D
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:33554515)
at ms.bd.o.n.LIZ(SourceFile:16777524)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:16777239)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554459)
at ms.bd.o.n.LIZ(SourceFile:16777527)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://i.isnssdk.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZ(SourceFile:16777239)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554459)
at ms.bd.o.n.LIZ(SourceFile:16777527)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][hook_url]: url: https://mon.isnssdk.com/monitor/collect/
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#2][14508][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TokenSdkCommonParamsInterceptorTTNet.intercept(SourceFile:16777348)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonParamsCheckInterceptor.intercept(SourceFile:16777224)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TTNetInitInterceptor.intercept(SourceFile:16777225)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.android.live.network.interceptors.NtpTimeInterceptor.intercept(SourceFile:16777231)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.android.live.network.ResponseInterceptorV2.intercept(SourceFile:16777311)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][tp-default-7][14380][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.framwork.core.sdkmonitor.SDKMonitorUtils.LIZIZ(SourceFile:33554475)
at ms.bd.o.n.LIZ(SourceFile:16777527)
at ms.bd.o.m.LIZ(SourceFile:83886089)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
at ms.bd.o.k.a(Native Method)
at ms.bd.o.b.LIZ(SourceFile:83886085)
at ms.bd.o.k1.LIZIZ(SourceFile:16777235)
at X.VKL.LIZIZ(SourceFile:16777218)
at X.VKG.then(SourceFile:16777447)
at X.0Sh.run(SourceFile:22)
at X.4Pv.run(SourceFile:260)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at X.4NX.run(SourceFile:12)
at java.lang.Thread.run(Thread.java:764)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetDownload#2][14545][hook_url]: url: https://p16-sign-sg.tiktokcdn.com/obj/tiktok-obj/share_platform_snapchat_chat_circle.png?x-expires=1677693600&x-signature=3feEDwUbChpHYOjMCp3teqqybTk%3D
[INFO][02/28/2023, 07:20:27 PM][PID:14335][TuringVerifyThread][14538][hook_url]: url: https://vcs-va.byteoversea.com/vc/setting?&app_name=musical_ly&app_version=28.4.5&channel=googleplay&sdk_version=2.2.1.i18n&version_code=28.4.5&lang=zh-hans&aid=1233
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetDownload#1][14543][hook_url]: url: https://p16-sign-sg.tiktokcdn.com/obj/tiktok-obj/share_platform_instagram_messenger_circle?x-expires=1677693600&x-signature=LBWMs4QzVZQO5YK42Nm%2BLws8bDA%3D
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][TuringVerifyThread][14538][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at X.3b8.LIZ(SourceFile:33554434)
at X.3b8.LIZ(SourceFile:50331650)
at com.bytedance.bdturing.ttnet.TTNetHttpClient.post(SourceFile:50331650)
at X.PAT.run(SourceFile:654)
at android.os.Handler.handleCallback(Handler.java:790)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:164)
at android.os.HandlerThread.run(HandlerThread.java:65)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetDownload#1][14543][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][TuringVerifyThread][14538][hook_url]: url: https://vcs-va.byteoversea.com/vc/setting?&app_name=musical_ly&app_version=28.4.5&channel=googleplay&sdk_version=2.2.1.i18n&version_code=28.4.5&lang=zh-hans&aid=1233
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetDownload#2][14545][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][TuringVerifyThread][14538][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.OrU.execute(SourceFile:2)
at X.3SQ.LIZ(SourceFile:50331666)
at com.bytedance.bdturing.ttnet.TTNetHttpClient.post(SourceFile:50331653)
at X.PAT.run(SourceFile:654)
at android.os.Handler.handleCallback(Handler.java:790)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:164)
at android.os.HandlerThread.run(HandlerThread.java:65)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#8][14547][hook_url]: url: https://api16-va.tiktokv.com/aweme/v1/policy/notice/?scene=0&iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630027870¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630027&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#8][14547][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[INFO][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#1][14506][hook_url]: url: https://api16-va.tiktokv.com/passport/device/trust_users/?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630027917¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630027&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b
[DEBUG][02/28/2023, 07:20:27 PM][PID:14335][NetNormal#1][14506][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.account.token.TTTokenInterceptor.intercept(SourceFile:16777326)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.ApiVerifyInterceptor.intercept(SourceFile:16777295)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.netx.partner.NetworkPartnerGroup$PartnerInterceptor.intercept(SourceFile:16777380)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall$1.run(SourceFile:50)
at X.Dbg.run(SourceFile:15)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
at com.bytedance.frameworks.baselib.network.dispatcher.NetThreadPoolManager$ApiThreadFactory$1.run(SourceFile:8)
[INFO][02/28/2023, 07:20:28 PM][PID:14335][Thread-6][14421][hook_url]: url: https://mssdk-va.tiktokv.com/ms/get_seed?lc_id=2142840551&platform=android&device_platform=android&sdk_ver=v04.04.05-alpha.6-ov-android&sdk_ver_code=67372320&app_ver=28.4.5&version_code=2022804050&aid=1233&sdkid=&subaid=&iid=7205509797252171525&did=7205508502432826885&bd_did=&client_type=inhouse®ion_type=ov&mode=2
[DEBUG][02/28/2023, 07:20:28 PM][PID:14335][Thread-6][14421][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777234)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.OrU.execute(SourceFile:2)
at ms.bd.o.q.LIZ(SourceFile:100664091)
at ms.bd.o.q.LIZ(SourceFile:67108871)
at ms.bd.o.o.LIZ(SourceFile:83886174)
at ms.bd.o.b.LIZIZ(SourceFile:83886100)
at ms.bd.o.k.b(SourceFile:83886080)
[INFO][02/28/2023, 07:20:28 PM][PID:14335][TuringVerifyThread][14538][hook_url]: url: https://vcs-va.byteoversea.com/vc/setting?app_name=musical_ly&app_version=28.4.5&channel=googleplay&sdk_version=2.2.1.i18n&version_code=28.4.5&lang=zh-hans&aid=1233
[INFO][02/28/2023, 07:20:28 PM][PID:14335][Thread-6][14421][hook_url]: url: https://mssdk-va.tiktokv.com/ms/get_seed?lc_id=2142840551&platform=android&device_platform=android&sdk_ver=v04.04.05-alpha.6-ov-android&sdk_ver_code=67372320&app_ver=28.4.5&version_code=2022804050&aid=1233&sdkid&subaid&iid=7205509797252171525&did=7205508502432826885&bd_did&client_type=inhouse®ion_type=ov&mode=2
[INFO][02/28/2023, 07:20:28 PM][PID:14335][NetNormal#1][14506][hook_url]: url: https://api16-va.tiktokv.com/passport/device/trust_users/?iid=7205509797252171525&device_id=7205508502432826885&ac=wifi&channel=googleplay&aid=1233&app_name=musical_ly&version_code=280405&version_name=28.4.5&device_platform=android&ab_version=28.4.5&ssmix=a&device_type=Pixel&device_brand=google&language=zh-hans&os_api=27&os_version=8.1.0&manifest_version_code=2022804050&resolution=1080*1794&dpi=420&update_version_code=2022804050&_rticket=1677630027917¤t_region=HK&app_type=normal&sys_region=CN&timezone_name=America%2FNew_York&carrier_region_v2=454&residence=HK&app_language=zh-Hans&carrier_region=HK&ac2=unknown&uoo=1&op_region=HK&timezone_offset=-18000&build_number=28.4.5&host_abi=arm64-v8a&locale=zh-Hans®ion=CN&ts=1677630027&cdid=75bc0079-7450-43f1-b1b7-30c5c0c33f5b&support_webview=1
[INFO][02/28/2023, 07:20:28 PM][PID:14335][NetDownload#2][14545][hook_url]: url: https://p16-sign-sg.tiktokcdn.com/obj/tiktok-obj/share_platform_snapchat_chat_circle.png?x-expires=1677693600&x-signature=3feEDwUbChpHYOjMCp3teqqybTk%3D
[DEBUG][02/28/2023, 07:20:28 PM][PID:14335][TuringVerifyThread][14538][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.RequestVertifyInterceptor.intercept(SourceFile:16777266)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TokenSdkCommonParamsInterceptorTTNet.intercept(SourceFile:16777348)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.ttp.TTPInterceptor.intercept(SourceFile:16777291)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.StoreRegionInterceptor.intercept(SourceFile:16777346)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.account.network.AccountRetrofitInetcept.intercept(SourceFile:16777310)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.BaseSsInterceptor.intercept(SourceFile:16777295)
at com.ss.android.ugc.aweme.net.interceptor.BeforeHandleRequestInterceptor.intercept(SourceFile:16777397)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.retrofit2.SsHttpCall.getResponseWithInterceptorChain(SourceFile:51)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall__execute$___twin___(SourceFile:206)
at com.bytedance.retrofit2.SsHttpCall.com_bytedance_retrofit2_SsHttpCall_com_ss_android_ugc_aweme_net_lancet_NetIOCheckLancet_execute(SourceFile:16777294)
at com.bytedance.retrofit2.SsHttpCall.execute(SourceFile:38)
at X.OrU.execute(SourceFile:2)
at X.3SQ.LIZ(SourceFile:50331666)
at com.bytedance.bdturing.ttnet.TTNetHttpClient.post(SourceFile:50331653)
at X.PAT.run(SourceFile:654)
at android.os.Handler.handleCallback(Handler.java:790)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:164)
at android.os.HandlerThread.run(HandlerThread.java:65)
[DEBUG][02/28/2023, 07:20:28 PM][PID:14335][Thread-6][14421][showStacks]: java.lang.Exception
at java.net.URL.<init>(Native Method)
at org.chromium.CronetClient.openConnection(SourceFile:83886096)
at X.Oao.LIZJ(SourceFile:16842781)
at X.Oao.LIZ(SourceFile:67108943)
at X.Oar.<init>(SourceFile:33554554)
at X.Oao.LIZ(SourceFile:16777516)
at X.OaO.LIZ(SourceFile:16777218)
at X.OaS.LIZ(SourceFile:16777233)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor__createRawCall$___twin___(SourceFile:16777224)
at com.bytedance.retrofit2.CallServerInterceptor.com_bytedance_retrofit2_CallServerInterceptor_com_ss_android_ugc_aweme_feed_lancet_NetworkUtilsLancet_createRawCall(SourceFile:33554436)
at com.bytedance.retrofit2.CallServerInterceptor.intercept(SourceFile:16777332)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.HybridTrafficColoringInterceptor.intercept(SourceFile:16777230)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.monitor.TTNetMonitorInterceptor.intercept(SourceFile:16777285)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.frameworks.baselib.network.http.retrofit.RequestVertifyInterceptor.intercept(SourceFile:16777266)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.TokenSdkCommonParamsInterceptorTTNet.intercept(SourceFile:16777348)
at X.4MF.LIZ(SourceFile:16777382)
at ms.bd.o.q1$a.intercept(SourceFile:16777227)
at X.4MF.LIZ(SourceFile:16777382)
at com.bytedance.bdturing.ttnet.TTNetUtil$2.intercept(SourceFile:16777282)
at X.4MF.LIZ(SourceFile:16777382)
at com.ss.android.ugc.aweme.net.interceptor.CommonTimeOutInterceptor.intercept(SourceFile:16777284)