-
Notifications
You must be signed in to change notification settings - Fork 0
/
universal-verification-helper.user.js
1068 lines (1021 loc) · 43.4 KB
/
universal-verification-helper.user.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 万能验证码自动输入(升级版)
// @namespace https://www.like996.icu:1205/
// @version 4.4
// @updateURL https://raw.githubusercontent.com/0x7C2f/UserScripts/main/universal-verification-helper.user.js
// @downloadURL https://raw.githubusercontent.com/0x7C2f/UserScripts/main/universal-verification-helper.user.js
// @description 在将来的时间里将会在后台默默的为你自动识别页面是否存在验证码并填入。对于一些书写不规整的验证码页面请手动配置规则。感谢老六提供框架代码,感谢哈士奇提供思路支持。
// @author crab
// @match http://*/*
// @match https://*/*
// @connect like996.icu
// @connect *
// @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @require http://ajax.aspnetcdn.com/ajax/jquery/jquery-2.0.0.min.js
// @resource cktools https://greasyfork.org/scripts/429720-cktools/code/CKTools.js?version=1034581
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_listValues
// @grant GM_openInTab
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_xmlhttpRequest
// @grant GM_getResourceText
// @nocompat Chrome
// ==/UserScript==
class CaptchaWrite {
IdCard() {
return Set["idCard"];
}
getCaptchaServerUrl(){
return "https://www.like996.icu:1205/";
}
constructor() {
this.Tip = this.AddTip();
if (GM_listValues().indexOf("set") == -1) {
GM_setValue("set", {
"idCard": ""
});
var WhetherHelp = confirm("万能验证码填入\n初始化完毕!\n在将来的时间里将会在后台默默的为你\n自动识别页面是否存在验证码并填入。\n对于一些书写不规整的验证码页面请手动添加规则。\n如需查看使用帮助请点击确认。");
if (WhetherHelp == true) {
openHelp();
}
}
Set = GM_getValue("set");
// 设置自动识别初始值
var configSetKeys={"autoIdentification":"true","showHintCheck":"true","warningTone":"true","autoBlackList":"false","hotKeyToImgResult":"false"};
$.each(configSetKeys, function(key,val){
if(Set[key] == undefined){
Set[key]=val;
GM_setValue("set", Set);
}
});
}
// 恢复出厂设置
clearSet(){
var that = this;
let res = confirm('您确认要恢复出厂设置吗?注意:清除后所有内容均需重新设置!');
if(res == true) {
GM_setValue("set", {});
}
return res;
}
// 打开帮助页面
openHelp(){
return GM_openInTab(this.getCaptchaServerUrl() + "help.html", 'active');
}
//手动添加规则
PickUp() {
var that = this;
var AddRule = {};
var IdentifyResult = '';
that.Hint('请对验证码图片点击右键!');
$("canvas,img,input[type='image']").each(function() {
$(this).on("mousedown", function(e) {// 为了避免某些hook的拦截
if(e.button!=2){//不为右键则返回
return;
}
if(that.getCapFoowwLocalStorage("crabAddRuleLock")!=null){
return;
}
that.setCapFoowwLocalStorage("crabAddRuleLock","lock",new Date().getTime()+100);//100毫秒内只能1次
var img = that.Aimed($(this));
console.log('PickUp_Img:' + img);
if($(img).length!=1){
that.Hint('验证码选择错误,该图片实际对应多个元素。')
return;
}
that.Hint('等待识别')
IdentifyResult = that.Identify(img,function ManualRule(img,IdentifyResult){
if (img && IdentifyResult) {
console.log('记录信息' + img + IdentifyResult);
AddRule['img'] = img;
$("img").each(function() {
$(this).off("click");
$(this).off("on");
$(this).off("load");
});
that.Hint('接下来请点击验证码输入框')
$("input").each(function() {
$(this).click(function() {
var input = that.Aimed($(this));
// console.log('PickUp_input' + input);
AddRule['input'] = input;
AddRule['path'] = window.location.href;
AddRule['title'] = document.title;
AddRule['host'] = window.location.host;
AddRule['idcard'] = that.IdCard();
that.Write(IdentifyResult,input);
that.Hint('完成')
//移除事件
$("input").each(function() {
$(this).off("click");
});
//添加信息
that.Query({
"method": "captchaHostAdd",
"data": AddRule
},function(data){writeResultIntervals[writeResultIntervals.length]={"img":img,"input":input}});
that.delCapFoowwLocalStorage(window.location.host);
});
});
}
});
});
});
}
//创建提示元素
AddTip() {
var TipHtml = $("<div id='like996_identification'></div>").text("Text.");
TipHtml.css({
"background-color": "rgba(211,211,211,0.86)",
"align-items": "center",
"justify-content": "center",
"position": "fixed",
"color": "black",
"top": "-5em",
"height": "2em",
"margin": "0em",
"padding": "0em",
"font-size": "1.2em",
"width": "100%",
"left": "0",
"right": "0",
"text-align": "center",
"z-index": "9999999999999",
"padding-top": "3px",
display: 'none'
});
$("body").prepend(TipHtml);
return TipHtml;
}
//展示提醒
Hint(Content, Duration) {
if(Set["showHintCheck"]!="true"){
return;
}
var that = this;
that.Tip.stop(true, false).animate({
top: '-5em'
}, 300, function() {
if(Set["warningTone"]=="true"){
Content += that.doWarningTone(Content)
}
Content += "<span style='color:red;float: right;margin-right: 20px;' onclick='document.getElementById(\"like996_identification\").remove()'>X</span>";
that.Tip.show();
that.Tip.html(Content);
});
that.Tip.animate({
top: '0em'
}, 500).animate({
top: '0em'
}, Duration ? Duration : 3000).animate({
top: '-5em'
}, 500, function() {
that.Tip.hide();
});
return;
}
//查询规则
Query(Json,callback) {
var that = this;
var QueryRule = '';
var LocalStorageData=this.getCapFoowwLocalStorage(Json.method + "_" + Json.data.host);
if(Json.method=='captchaHostAdd'){
that.delCapFoowwLocalStorage("captchaHostQuery_"+Json.data.host);
LocalStorageData=null;
}
if(LocalStorageData!=null){
console.log("存在本地缓存的验证码识别规则直接使用。")
if(callback!=null){
callback(LocalStorageData);
return;
}else{
return LocalStorageData;
}
}
GM_xmlhttpRequest({
url: that.getCaptchaServerUrl() + Json.method,
method: 'POST',
headers: {'Content-Type': 'application/json; charset=utf-8','path' : window.location.href},
data: JSON.stringify(Json.data),
responseType: "json",
onload: obj => {
var data=obj.response;
if (data.info) {
that.Hint(data.info);
}
QueryRule = data;
that.setCapFoowwLocalStorage(Json.method + "_" + Json.data.host,data,new Date().getTime()+1000*60)
if(callback!=null){
callback(QueryRule);
}
},onerror: err => {
console.log(err)
}
});
return QueryRule;
}
//开始识别
Start() {
//检查配置中是否有此网站
var that = this;
var Pathname = window.location.href;
var Card = that.IdCard();
if(Set["hotKeyToImgResult"] != "true"){
writeResultInterval= setInterval(function(){that.WriteResultsInterval();},500);
}
that.Query({
"method": "captchaHostQuery",
"data": {
"host": window.location.host,
"path": Pathname,
"idcard": Card
}
},function(Rule){
if (Rule.code ==531 || Rule.code ==532) {
console.log('有规则执行规则' + Pathname);
var data=Rule.data;
for(var i=0;i<data.length;i++){
writeResultIntervals[i]=data[i];
}
console.log('等待验证码图片出现');
} else if (Rule.code == 530) {
console.log('黑名单' + Pathname);
that.Hint('该网站在黑名单中,无法识别,请联系客服进行处理。', 5000);
return
} else if (Rule.code == 533 && Set["autoIdentification"]=="true") {
console.log('新网站开始自动化验证码查找' + Pathname);
var MatchList = that.AutoRules();
if (MatchList.length) {
console.log('检测到开始写入,并添加规则');
for (i in MatchList) {
console.log(MatchList[i].img, MatchList[i].input);
$(MatchList[i].img).bind("error",function(){
that.addBadWeb(MatchList[i].img,MatchList[i].input);
});
that.WriteResults(MatchList[i].img, MatchList[i].input)
}
} else {
}
}
});
}
// 定时执行绑定验证码img操作
WriteResultsInterval(){
for(var i=0;i< writeResultIntervals.length;i++){
var imgAddr=writeResultIntervals[i].img;
var inputAddr=writeResultIntervals[i].input;
if(document.querySelector(imgAddr)==null||document.querySelector(inputAddr)==null){
continue;
}
try{
if(this.getCapFoowwLocalStorage("err_"+writeResultIntervals[i].img)==null){// 写入识别规则之前,先判断她是否有错误
this.WriteResults(imgAddr, inputAddr);
}
}catch(e){
window.clearInterval(writeResultInterval);
this.addBadWeb(imgAddr,inputAddr);
return;
}
}
}
//解析
Identify_Crab(img,Base,callback) {
var that = this;
var Results = that.getCapFoowwLocalStorage(Base.substring(Base.length-32));
if(Results!=null){
if(callback.name != 'ManualRule' ){// 不为手动直接返回结果
return Results;
}
}
that.setCapFoowwLocalStorage(Base.substring(Base.length-32),"识别中..",new Date().getTime()+(9999999 * 9999999));//同一个验证码只识别一次
var url=that.getCaptchaServerUrl() + "/hello";
console.log("验证码变动,开始识别");
GM_xmlhttpRequest({
url: url,
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded','path' : window.location.href},
data: Base+"&idCard="+that.IdCard()+"&version=4.4",
responseType: "json",
onload: obj => {
var data=obj.response;
if (!data.valid) {
if(data.description != undefined){
that.Hint('识别请求发生错误: ' + data.description, 5000);
}
that.setCapFoowwLocalStorage(Base.substring(Base.length-32),data.description,new Date().getTime()+(9999999 * 9999999))
} else {
Results = data.data;
if (Results.length < 4) {
that.Hint('验证码识别结果可能错误,请刷新验证码尝试', 5000)
}else if(data.description != ''&& data.description != null){
that.Hint(data.description, data.showTime)
}else{
that.Hint('验证码识别完成', 500)
}
that.setCapFoowwLocalStorage(Base.substring(Base.length-32),Results,new Date().getTime()+(9999999 * 9999999))
if(callback!=null){
if(callback.name=='WriteRule'){
callback(Results);
}else if(callback.name=='ManualRule'){
callback(img,Results);
}
}
}
},onerror: err => {
console.log(err)
}
});
return Results;
}
//识别操作
Identify(imgElement,callback) {
var that = this;
var imgObj = $(imgElement);
if(!imgObj.is(":visible")){
console.log("验证码不可见,本次不识别");
return;
}
try{
imgObj=imgObj[0];
var imgBase64;
var imgSrc;
var elementTagName=imgObj.tagName.toLowerCase();
if(elementTagName==="img" || elementTagName==="input"){
imgSrc=$(imgObj).attr("src");
}else if(elementTagName==="div"){
imgSrc= that.getElementStyle(imgObj)["backgroundImage"]
if(imgSrc.trim().indexOf("data:image/")!=-1){//是base64格式得
imgSrc=imgSrc.match("(data:image/.*?;base64,.*?)[\"']")[1]
}
}
if(imgSrc!=undefined && imgSrc.indexOf("data:image/") == 0){
// 使用base64页面直显
imgBase64=imgSrc;
// 兼容部分浏览器中replaceAll不存在
while(imgBase64.indexOf("\n")!=-1){
imgBase64=imgBase64.replace("\n", "");
}
// 解决存在url编码的换行问题
while(imgBase64.indexOf("%0D%0A")!=-1){
imgBase64=imgBase64.replace("%0D%0A", "");
}
}else if(imgSrc!=undefined && (imgSrc.indexOf("http")==0||imgSrc.indexOf("//")==0) && imgSrc.indexOf(window.location.protocol+"//"+window.location.host+"/") == -1){
// 跨域模式下单独获取src进行转base64
var Results = that.getCapFoowwLocalStorage("验证码跨域识别锁:"+imgSrc);
if(Results!=null){
return;
}
that.setCapFoowwLocalStorage("验证码跨域识别锁:"+imgSrc,"避免逻辑错误多次识别",new Date().getTime()+(9999999 * 9999999));//同一个url仅识别一次
GM_xmlhttpRequest({
url: imgSrc,
method: 'GET',
headers: {'Content-Type': 'application/json; charset=utf-8','path' : window.location.href},
responseType: "blob",
onload: obj => {
if(obj.status==200){
let blob=obj.response;
let fileReader=new FileReader();
fileReader.onloadend = (e) => {
let base64=e.target.result;
$(imgObj).attr("src",base64);
};
fileReader.readAsDataURL(blob)
}
},onerror: err => {
that.Hint('请求跨域图片异常,请联系客服操作。');
}
});
}else{
// 使用canvas进行图片转换
imgBase64=that.ConversionBase(imgElement).toDataURL("image/png");
}
var pastDate ="img=" + encodeURIComponent(imgBase64.replace(/.*,/, "").trim())
if(pastDate.length < 255){
throw new Error("图片大小异常");
}
}catch(e){
if(callback.name=='ManualRule'){
that.Hint('跨域策略,请重新右键点击图片');
}
return;
}
that.Identify_Crab(imgElement,pastDate,callback);
}
//根据配置识别写入
WriteResults(img, input) {
var that = this;
//创建一个触发操作
if(document.querySelector(img)==null){
return;
}
document.querySelector(img).onload = function() {
that.WriteResults(img, input)
}
this.Identify(img,function WriteRule(vcode){
that.Write(vcode, input)
})
}
//写入操作
Write(ResultsImg, WriteInput) {
var that = this;
WriteInput = document.querySelector(WriteInput);
WriteInput.value = ResultsImg;
if(typeof(InputEvent)!=='undefined') {
//使用 InputEvent 方法,主流浏览器兼容
WriteInput.value=ResultsImg;
WriteInput.dispatchEvent(new InputEvent("input")); //模拟事件
that.fire(WriteInput,"change");
that.fire(WriteInput,"blur");
that.fire(WriteInput,"focus");
that.fire(WriteInput,"keypress");
that.fire(WriteInput,"keydown");
that.fire(WriteInput,"keyup");
that.fire(WriteInput,"select");
that.fireForReact(WriteInput,"change");
WriteInput.value = ResultsImg;
} else if(KeyboardEvent) {
//使用 KeyboardEvent 方法,ES6以下的浏览器方法
WriteInput.dispatchEvent(new KeyboardEvent("input"));
}
}
// 各类原生事件
fire(element,eventName){
var event = document.createEvent("HTMLEvents");
event.initEvent(eventName, true, true);
element.dispatchEvent(event);
}
// 各类react事件
fireForReact(element,eventName){
try{
let env=new Event(eventName);
element.dispatchEvent(env);
var funName= Object.keys(element).find(p => Object.keys(element[p]).find(f=> f.toLowerCase().endsWith(eventName)));
if(!funName!= undefined){
element[funName].onChange(env)
}
}catch(e){
console.log("各类react事件调用出错!")
}
}
//转换图片为:canvas
ConversionBase(img) {
img = document.querySelector(img);
var canvas = document.createElement("canvas");
canvas.width = img.width;
canvas.height = img.height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, img.width, img.height);
return canvas;
}
//自动规则
AutoRules() {
var that = this;
var MatchList = [];
$("img").each(function() {
var Randomcolor = "red";
if ($(this).siblings("input").length == 1) {
MatchList.push({
"img": that.Aimed($(this)),
"input": that.Aimed($(this).siblings("input"))
})
$(this).css("borderStyle", "solid").css("borderColor", Randomcolor).css("border-width", "4px");
$(this).siblings("input").css("borderStyle", "solid").css("borderColor", Randomcolor);
} else {
if ($(this).prev().children("input").length == 1) {
MatchList.push({
"img": that.Aimed($(this)),
"input": that.Aimed($(this).prev().children("input"))
})
$(this).css("borderStyle", "solid").css("borderColor", Randomcolor).css("border-width", "4px");
$(this).prev().children("input").css("borderStyle", "solid").css("borderColor", Randomcolor);
}
if ($(this).next().children("input").length == 1) {
MatchList.push({
"img": that.Aimed($(this)),
"input": that.Aimed($(this).next().children("input"))
})
$(this).css("borderStyle", "solid").css("borderColor", Randomcolor).css("border-width", "4px");
$(this).next().children("input").css("borderStyle", "solid").css("borderColor", Randomcolor);
}
}
});
return MatchList;
}
//生成标识
Aimed(Element) {
// console.log('---根据元素创建配置信息---');
Element = Element[0]
var that = this;
var ElementLocalName = Element.localName;
var result;
// 如果有vue的id,则直接返回
var vueId=that.getDataV(Element);
if(vueId != null){
result = ElementLocalName+"["+vueId+"]";
if( $(result).length == 1){
return result;
}
}
// 如果有placeholder,则直接返回
var placeholder=that.getPlaceholder(Element);
if(placeholder != null){
result = ElementLocalName+"["+placeholder+"]";
if( $(result).length == 1){
return result;
}
}
// 如果有alt,则直接返回
var alt=that.getAlt(Element);
if(alt != null){
result = ElementLocalName+"["+alt+"]";
if( $(result).length == 1){
return result;
}
}
// 如果有name且只有一个,则直接返回
var selectElement=that.getElementName(Element);
if(selectElement != null){
return selectElement;
}
// 如果有src,且src后面无参数则直接返回
var src=that.getSrc(Element);
if(src != null && src.length<200){
result = ElementLocalName+"["+src+"]";
if( $(result).length == 1){
return result;
}
}
// 如果有onClick则直接返回
var onClick=that.getOnClick(Element);
if(onClick != null && onClick.length<200){
result = ElementLocalName+"["+onClick+"]";
if( $(result).length == 1){
return result;
}
}
var cssPath= that.geElementCssPath(Element);
//alert(cssPath);
if(cssPath!= null &&cssPath!=""){
return cssPath;
}
var Symbol = ( this.getElementId(Element) ? "#" :Element.className ? "." : false);
var locationAddr;
if (!Symbol) {
locationAddr= that.Climb(Element.parentNode, ElementLocalName);
} else {
locationAddr= that.Climb(Element, ElementLocalName);
}
if($(locationAddr).length==1){
return locationAddr.trim();
}
if(confirm("当前元素无法自动选中,是否手动指定JsPath?\n(该功能为熟悉JavaScript的用户使用,若您不知道,请点击取消。)\n注意:如果该提示影响到您得操作了,关闭'自动查找验证码'功能即可!")){
result = prompt("请输入待选择元素的JsPath,例如:\n#app > div:nth-child(3) > div > input");
try{
if( $(result).length == 1){
return result;
}
}catch(e){}
}
that.Hint('该网站非标准web结构,暂时无法添加规则,请联系客服添加。')
return null;
}
//判断元素id是否可信
getElementId(element){
var id=element.id;
if(id){
if(id.indexOf("exifviewer-img-")==-1){// 对抗类似vue这种无意义id
if(id.length<40){// 对抗某些会自动变换id的验证码
return true;
}
}
}
return false;
}
//爬层级
Climb(Element, ElementLocalName, Joint = '') {
var ElementType = (this.getElementId(Element) ? Element.id : Element.className ? Element.className.replace(/\s/g, ".") : false);
var Symbol = (this.getElementId(Element) ? "#" : Element.className ? "." : false);
var Address ;
if (ElementType && ElementLocalName == Element.localName) {
Address = ElementLocalName + Symbol + ElementType;
} else {
Address ="";
if(Symbol!=false){
Address=Address+Symbol;
}
if(ElementType!=false){
Address=Address+ElementType;
}
Address= ' ' + ElementLocalName
}
if ($(Address).length == 1) {
return Address + ' ' + Joint;
} else {
Joint = this.Climb($(Element).parent()[0], $(Element).parent()[0].localName, Address + ' ' + Joint)
return Joint;
}
}
// 获取vue的data-v-xxxx
getDataV(element){
var elementKeys=element.attributes;
if(elementKeys==null){
return null;
}
for(var i=0;i<elementKeys.length;i++){
var key=elementKeys[i].name;
if(key.indexOf("data-v-")!=-1){
return key;
}
}
return null;
}
// 获取placeholder="验证码"
getPlaceholder(element){
var elementKeys=element.attributes;
if(elementKeys==null){
return null;
}
for(var i=0;i<elementKeys.length;i++){
var key=elementKeys[i].name.toLowerCase();
if(key=="placeholder"&&elementKeys[i].value!=""){
return elementKeys[i].name+"='"+elementKeys[i].value+"'";
}
}
return null;
}
// 获取alt="kaptcha"
getAlt(element){
var elementKeys=element.attributes;
if(elementKeys==null){
return null;
}
for(var i=0;i<elementKeys.length;i++){
var key=elementKeys[i].name.toLowerCase();
if(key=="alt"){
return elementKeys[i].name+"='"+elementKeys[i].value+"'";
}
}
return null;
}
// 获取src="http://xxx.com"
getSrc(element){
var elementKeys = element.attributes;
if(elementKeys == null){
return null;
}
for(var i=0;i<elementKeys.length;i++){
var key=elementKeys[i].name.toLowerCase();
var value = elementKeys[i].value;
if(key=="src" && value.indexOf("data:image") != 0){
var idenIndex = value.indexOf("?");
if(idenIndex != -1){
value = value.substring(0 , idenIndex + 1);
}
return elementKeys[i].name + "^='" + value + "'";
}
}
return null;
}
// 判断name是否只有一个
getElementName(element){
var elementName=element.name;
if(elementName==null || elementName==""){
return null;
}
var selectElement=element.localName + "[name='"+elementName+"']";
if ($(selectElement).length == 1) {
return selectElement;
}
return null;
}
// 判断OnClick是否只有一个
getOnClick(element){
var elementKeys = element.attributes;
if(elementKeys == null){
return null;
}
for(var i=0;i<elementKeys.length;i++){
var key=elementKeys[i].name.toLowerCase();
var value = elementKeys[i].value;
if(key=="onclick"){
var idenIndex = value.indexOf("(");
if(idenIndex != -1){
value = value.substring(0 , idenIndex + 1) ;
}
return elementKeys[i].name + "^='" + value + "'";
}
}
return null;
}
// 操作webStorage 增加缓存,减少对服务端的请求
setCapFoowwLocalStorage (key, value, ttl_ms) {
var data = { value: value, expirse: new Date(ttl_ms).getTime() };
sessionStorage.setItem(key, JSON.stringify(data));
}
getCapFoowwLocalStorage (key) {
var data = JSON.parse(sessionStorage.getItem(key));
if (data !== null) {
if (data.expirse != null && data.expirse < new Date().getTime()) {
sessionStorage.removeItem(key);
} else {
return data.value;
}
}
return null;
}
delCapFoowwLocalStorage(key){
window.sessionStorage.removeItem(key);
}
// 添加识别错误黑名单
addBadWeb(img,input){
if(Set["autoBlackList"]=="false"){
return;
}
this.Hint('识别过程中发生错误,已停止识别此网站!(若验证码消失,请刷新网站,需再次启用识别请联系客服)', 10000);
this.setCapFoowwLocalStorage("err_" + img,"可能存在跨域等问题停止操作它",new Date().getTime()+(1000*1000));
this.delCapFoowwLocalStorage("captchaHostQuery_" + window.location.host);
this.Query({
"method": "captchaHostAdd",
"data": {
"host": window.location.host,
"path": window.location.href,
"img": img,
"input": input,
"title": document.title,
"type": 0,
"idcard": this.IdCard()
}
},null);
}
// 设置识别识别码
SetIdCard() {
var that = this;
var idCard = prompt("申请地址https://like996.icu:1205\n该功能只能设置一次,乱设置以后没得改了\n请输入您的识别码:");
if (idCard == null || idCard == "") {
that.Hint('取消设置');
} else {
if(idCard.length!=32){
that.Hint('识别码应为32位,请参考设置中的“查看帮助”进行自行注册!');
}else{
GM_setValue("set", {
"idCard": idCard
});
that.Hint('识别码设置完成刷新页面生效。');
}
}
return;
}
// 播放音频朗读
doWarningTone(body){
if(body.indexOf(",")){
body=body.split(",")[0];
}
if(body.indexOf(",")){
body=body.split(",")[0];
}
if(body.indexOf("!")){
body=body.split("!")[0];
}
var zhText = encodeURI(body);
var text="<audio autoplay='autoplay'>"+
"<source src='https://tts.youdao.com/fanyivoice?le=cn&keyfrom=speaker-target&word="+ zhText +"' type='audio/mpeg'>"+
"<embed height='0' width='0' src='https://tts.youdao.com/fanyivoice?le=cn&keyfrom=speaker-target&word="+ zhText +"'>"+
"</audio>";
return text;
}
// 获取元素的全部样式
getElementStyle(element) {
if (window.getComputedStyle) {
return window.getComputedStyle(element, null);
} else {
return element.currentStyle;
}
}
// 获取元素的cssPath选择器
geElementCssPath(element) {
if (!(element instanceof Element)) return;
var path = [];
while (element.nodeType === Node.ELEMENT_NODE) {
var selector = element.nodeName.toLowerCase();
if (element.id && element.id.indexOf("exifviewer-img-")==-1) {
selector += "#" + element.id;
path.unshift(selector);
break;
} else {
var sib = element,
nth = 1;
while ((sib = sib.previousElementSibling)) {
if (sib.nodeName.toLowerCase() == selector) nth++;
}
if (nth != 1) selector += ":nth-of-type(" + nth + ")";
}
path.unshift(selector);
element = element.parentNode;
}
return path.join(" > ");
}
}
//所有验证码img的对象数组
var writeResultIntervals=[];
//定时执行验证码绑定操作定时器
var writeResultInterval;
function closeButton(){
const closebtn = document.createElement("div");
closebtn.innerHTML = " × ";
closebtn.style.position = "absolute";
closebtn.style.top = "10px";
closebtn.style.right = "10px";
closebtn.style.cursor = "pointer";
closebtn.style.fontWeight = 900;
closebtn.style.fontSize = "larger";
closebtn.setAttribute("onclick","CKTools.modal.hideModal()");
return closebtn;
}
async function GUISettings() {
if (CKTools.modal.isModalShowing()) {
CKTools.modal.hideModal();
await wait(300);
}
const menuList = [
{ name: 'autoIdentification', title: '自动查找无规则验证码' ,hintOpen:'已开启自动查找验证码功能,请刷新网页',hintClose:'已关闭自动查找验证码功能,遇到新网站请自行手动添加规则!',desc:'对于未添加规则的页面,将自动查找页面上的验证码,有找错的可能。',openVul:'true',closeVul:'false'},
{ name: 'showHintCheck', title: '提示信息' ,hintOpen:'提示功能已开启!',hintClose:'提示功能已关闭,再次开启前将无任何提示!',desc:'关闭前请确保已知晓插件的使用流程!',openVul:'true',closeVul:'false'},
{ name: 'warningTone', title: '提示音' ,hintOpen:'提示音功能已开启!',hintClose:'提示音功能已关闭!',desc:'自动朗读提示信息中的文字!',openVul:'true',closeVul:'false'},
{ name: 'autoBlackList', title: '识别崩溃自动拉黑网站' ,hintOpen:'崩溃自动拉黑网站功能已开启!',hintClose:'崩溃自动拉黑网站功能已关闭!',desc:'遇到跨域或其他错误导致验证码无法加载时自动将网站加到黑名单中。',openVul:'true',closeVul:'false'},
{ name: 'hotKeyToImgResult', title: '快捷键查找验证码' ,hintOpen:'请直接按下您需要设置的快捷键!设置快捷键前请确保当前页面能够自动识别否则先手动添加规则!',hintClose:'快捷键查找验证码已关闭!',desc:'先手动添加规则后再开启,开启后将停止自动识别,仅由快捷键识别!',openVul:'wait',closeVul:'false'},
{ name: 'openHelp',type:'button', title: '查看使用帮助' ,desc:'如果您使用上遇到问题或障碍,请仔细阅读该内容!',hintOpen:'使用帮助说明网页已打开,若遇到您无法解决的问题,可加群联系客服!',doWork:'crabCaptcha.openHelp()'},
{ name: 'clearSet',type:'button', title: '恢复出厂设置' ,hintOpen:'已成功恢复出厂设置刷新页面即可生效',desc:'清除所有设置,包括识别码!',doWork:'crabCaptcha.clearSet()'},
]
CKTools.modal.openModal("万能验证码自动输入-更多设置(点击切换)", await CKTools.domHelper("div", async container => {
container.appendChild(closeButton());
container.style.alignItems = "stretch";
for(var i=0;i<menuList.length;i++){
container.appendChild(await CKTools.domHelper("li", async list => {
list.classList.add("showav_menuitem");
if(menuList[i].type == 'button'){
list.appendChild(await CKTools.domHelper("label", label => {
label.id = menuList[i].name+"Tip";
label.value = i;
label.setAttribute('doWork', menuList[i].doWork);
label.addEventListener("click",e=>{
if(eval($(e.target).attr("doWork"))){
crabCaptcha.Hint(menuList[e.target.value].hintOpen);
}
})
label.innerHTML = menuList[i].title;
}));
}else{
list.appendChild(await CKTools.domHelper("input", input => {
input.type = "checkbox";
input.id = menuList[i].name;
input.name = menuList[i].name;
input.value = i;
input.style.display = "none";
input.checked = Set[menuList[i].name]=='true';
input.addEventListener("change",e=>{
var i=e.target.value;
const label = document.querySelector("#"+menuList[i].name+"Tip");
if(!label) return;
if(input.checked){
label.innerHTML = "<b>[已开启]</b> " + menuList[i].title;
Set[menuList[i].name]=menuList[i].openVul;
GM_setValue("set", Set);
crabCaptcha.Hint(menuList[i].hintOpen);
}else{
label.innerHTML = "<span>[已关闭]</span>"+menuList[i].title;
Set[menuList[i].name]=menuList[i].closeVul;
GM_setValue("set", Set);
crabCaptcha.Hint(menuList[i].hintClose);
}
})
}));
list.appendChild(await CKTools.domHelper("label", label => {
label.id = menuList[i].name+"Tip";
label.setAttribute('for', menuList[i].name);
if(Set[menuList[i].name]=='true'){
label.innerHTML = "<b>[已开启]</b>" + menuList[i].title;
}else{
label.innerHTML = "<span>[已关闭]</span>" + menuList[i].title;
}
}));
}
list.appendChild(await CKTools.domHelper("div", div => {
div.style.paddingLeft = "20px";
div.style.color = "#919191";
div.innerHTML ="说明:"+ menuList[i].desc;;
}));
list.style.lineHeight = "2em";
}))
}
container.appendChild(await CKTools.domHelper("div", async btns => {
btns.style.display = "flex";
btns.style.alignItems = "flex-end";
btns.appendChild(await CKTools.domHelper("button", btn => {
btn.className = "CKTOOLS-toolbar-btns";
btn.innerHTML = "关闭";
btn.style.background = "#ececec";
btn.style.color = "black";
btn.onclick = e => {
CKTools.addStyle(``, "showav_lengthpreviewcss", "update");
CKTools.modal.hideModal();
wait(300).then(()=>GUISettings());
}
}))
}))
}));
}
var crabCaptcha = new CaptchaWrite();
(function() {
const resourceList = [
{ name: 'cktools', type: 'js' }
]
function applyResource() {
resloop: for (let res of resourceList) {
if (!document.querySelector("#" + res.name)) {
let el;
switch (res.type) {
case 'js':
case 'rawjs':
el = document.createElement("script");
break;
case 'css':
case 'rawcss':
el = document.createElement("style");
break;
default:
console.log('Err:unknown type', res);
continue resloop;
}
el.id = res.name;
el.innerHTML = res.type.startsWith('raw') ? res.content : GM_getResourceText(res.name);
document.head.appendChild(el);
}
}
}
applyResource();