-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponseCollection.json
2249 lines (2249 loc) · 53.7 KB
/
responseCollection.json
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
[
{
"class": "中间件",
"name": "Shiro",
"rule": "(=deleteMe|rememberMe=)",
"type": "headers",
"value": "shiro"
},
{
"class": "中间件",
"name": "Weblogic",
"rule": "(/console/framework/skins/wlsconsole/images/login_WebLogic_branding.png|Welcome to Weblogic Application Server|Hypertext Transfer Protocol -- HTTP/1.1|/Branding_Login_WeblogicConsole.gif|alt=\"Oracle WebLogic Server 管理控制台 \")",
"type": "code",
"value": "weblogic"
},
{
"class": "中间件",
"name": "Weblogic",
"rule": "(WebLogic)",
"type": "headers",
"value": "weblogic"
},
{
"class": "中间件",
"name": "Jboss",
"rule": "(Welcome to JBoss|jboss.css)",
"type": "code",
"value": "jboss"
},
{
"class": "中间件",
"name": "Jboss",
"rule": "(JBoss)",
"type": "headers",
"value": "jboss"
},
{
"class": "中间件",
"name": "Tomcat默认页面",
"rule": "(/manager/html|/manager/status)",
"type": "code",
"value": "tomcatdefault"
},
{
"class": "中间件",
"name": "Struts2",
"rule": "(org.apache.struts2|Struts Problem Report|struts.devMode|struts-tags|There is no Action mapped for namespace)",
"type": "code",
"value": "struts2"
},
{
"class": "中间件",
"name": "Apache 2.4.49",
"rule": "(Apache/2.4.49)",
"type": "headers",
"value": "apache2449"
},
{
"class": "中间件",
"name": "Apache 2.4.50",
"rule": "(Apache/2.4.50)",
"type": "headers",
"value": "apache2450"
},
{
"class": "邮件服务器",
"name": "Exchange",
"rule": "(MAIL01|X-FEServer)",
"type": "headers",
"value": "exchange"
},
{
"class": "邮件服务器",
"name": "Exchange",
"rule": "(/owa/auth.owa|/owa/auth/)",
"type": "code",
"value": "exchange"
},
{
"class": "邮件服务器",
"name": "eYou-亿邮系统",
"rule": "(content=\"亿邮电子邮件系统)",
"type": "code",
"value": "eyoumail"
},
{
"class": "邮件服务器",
"name": "CoreMail",
"rule": "(coremail/Common|/coremail/bundle/)",
"type": "code",
"value": "coremail"
},
{
"class": "邮件服务器",
"name": "Spammark 邮件信息安全网关",
"rule": "(/cgi-bin/spammark?empty=1)",
"type": "code",
"value": "spammark"
},
{
"class": "邮件服务器",
"name": "Winwebmail",
"rule": "(WinWebMail Server|images/owin.css)",
"type": "code",
"value": "winwebmail"
},
{
"class": "工控设备",
"name": "Avaya Aura",
"rule": "(Avaya Aura)",
"type": "code",
"value": "aura"
},
{
"class": "协同办公",
"name": "致远OA",
"rule": "(Seeyon-Server|SY8045)",
"type": "headers",
"value": "seeyon"
},
{
"class": "协同办公",
"name": "致远OA",
"rule": "(/seeyon/USER-DATA/IMAGES/LOGIN/login.gif|/seeyon/Common|yyoa/5)",
"type": "code",
"value": "seeyon"
},
{
"class": "协同办公",
"name": "通达OA",
"rule": "(tongda.ico|onmouseover=\"this.focus()\")",
"type": "code",
"value": "tongda"
},
{
"class": "协同办公",
"name": "泛微OA",
"rule": "(/wui/theme|/js/ecology8/lang/weaver_lang_7_wev8.js|/spa/portal/public/index.js)",
"type": "code",
"value": "ecology"
},
{
"class": "协同办公",
"name": "泛微OA",
"rule": "(WVS|ecology_JSessionid)",
"type": "headers",
"value": "ecology"
},
{
"class": "协同办公",
"name": "e-Bridge",
"rule": "(/main/login/images/loginlogo.png|e-Bridge)",
"type": "code",
"value": "e-bridge"
},
{
"class": "协同办公",
"name": "E-Mobile",
"rule": "(<title>移动管理平台-企业管理</title>)",
"type": "code",
"value": "emobile"
},
{
"class": "协同办公",
"name": "E-Mobile",
"rule": "(EMobileServer)",
"type": "headers",
"value": "emobile"
},
{
"class": "协同办公",
"name": "蓝凌OA",
"rule": "(kmss_onsubmit|sys/ui/extend/theme/default/style/icon.css)",
"type": "code",
"value": "landray"
},
{
"class": "协同办公",
"name": "蓝凌EIS智慧协同平台",
"rule": "(/scripts/jquery.landray.Common.js)",
"type": "code",
"value": "landray"
},
{
"class": "协同办公",
"name": "用友NC",
"rule": "(YONYOU NC | /Client/Uclient/UClient.dmg)",
"type": "code",
"value": "yongyou"
},
{
"class": "协同办公",
"name": "用友IUFO",
"rule": "(iufo/web/css/menu.css)",
"type": "code",
"value": "yongyou"
},
{
"class": "协同办公",
"name": "用友软件",
"rule": "(uclient.yonyou.com|/System/Login/Login.asp?AppID=|/nc/servlet/nc.ui.iufo.login.Index)",
"type": "code",
"value": "yongyou"
},
{
"class": "协同办公",
"name": "Zentao-禅道",
"rule": "(/zentao/theme/|/theme/default/images/main/zt-logo.png)",
"type": "code",
"value": "zentao"
},
{
"class": "协同办公",
"name": "Zentao-禅道",
"rule": "(zentaosid)",
"type": "headers",
"value": "zentao"
},
{
"class": "协同办公",
"name": "协众OA",
"rule": "(CNOAOASESSID)",
"type": "headers",
"value": "xiezhong"
},
{
"class": "协同办公",
"name": "金和OA",
"rule": "(金和协同管理平台)",
"type": "code",
"value": "jinheoa"
},
{
"class": "协同办公",
"name": "金和OA",
"rule": "(ASPSESSIONIDSSCDTDBS)",
"type": "cookie",
"value": "jinheoa"
},
{
"class": "协同办公",
"name": "红帆OA",
"rule": "(iOffice)",
"type": "code",
"value": "hongfan"
},
{
"class": "协同办公",
"name": "海昌OA",
"rule": "(/loginmain4/js/jquery.min.js)",
"type": "code",
"value": "hcoa"
},
{
"class": "协同办公",
"name": "启莱OA",
"rule": "(js/jQselect.js|js/jquery-1.4.2.min.js)",
"type": "code",
"value": "qloa"
},
{
"class": "协同办公",
"name": "帆软报表",
"rule": "(WebReport/login.html|ReportServer)",
"type": "code",
"value": "finereport"
},
{
"class": "协同办公",
"name": "帆软报表",
"rule": "(数据决策系统)",
"type": "headers",
"value": "finereport"
},
{
"class": "协同办公",
"name": "久其财务报表",
"rule": "(netrep/login.jsp|/netrep/intf)",
"type": "code",
"value": "jqreport"
},
{
"class": "协同办公",
"name": "金碟EAS",
"rule": "(easSessionId)",
"type": "headers",
"value": "kdgs"
},
{
"class": "协同办公",
"name": "金碟政务GSiS",
"rule": "(/kdgs/script/kdgs.js)",
"type": "code",
"value": "kdgs"
},
{
"class": "协同办公",
"name": "万户ezOFFICE",
"rule": "(LocLan)",
"type": "headers",
"value": "ezwh"
},
{
"class": "协同办公",
"name": "万户网络",
"rule": "(css/css_whir.css)",
"type": "code",
"value": "ezwh"
},
{
"class": "协同办公",
"name": "华夏ERP",
"rule": "(华夏ERP)",
"type": "headers",
"value": "hxerp"
},
{
"class": "协同办公",
"name": "正方OA",
"rule": "(zfoausername)",
"type": "code",
"value": "zfoa"
},
{
"class": "协同办公",
"name": "希尔OA",
"rule": "(/heeroa/login.do)",
"type": "code",
"value": "xroa"
},
{
"class": "协同办公",
"name": "泛普建筑工程施工OA",
"rule": "(/dwr/interface/LoginService.js)",
"type": "code",
"value": "fpgcoa"
},
{
"class": "协同办公",
"name": "中望OA",
"rule": "(/IMAGES/default/first/xtoa_logo.png|/app_qjuserinfo/qjuserinfoadd.jsp)",
"type": "code",
"value": "zwoa"
},
{
"class": "协同办公",
"name": "海天OA",
"rule": "(HTVOS.js)",
"type": "code",
"value": "htoa"
},
{
"class": "协同办公",
"name": "信达OA",
"rule": "(http://www.xdoa.cn</a>)",
"type": "code",
"value": "xdoa"
},
{
"class": "协同办公",
"name": "任我行CRM",
"rule": "(CRM_LASTLOGINUSERKEY)",
"type": "code",
"value": "rwxcrm"
},
{
"class": "开发框架",
"name": "Apache OFBiz",
"rule": "(OFBiz.Visito)",
"type": "headers",
"value": "ofbiz"
},
{
"class": "开发框架",
"name": "Apache OFBiz",
"rule": "(.jvm1)",
"type": "cookie",
"value": "ofbiz"
},
{
"class": "开发框架",
"name": "帝国CMS DedeCMS",
"rule": "(<h3>DedeCMS Error Warning!</h3>|<link href=\"/templets/default/style/dedecms.css\")",
"type": "code",
"value": "dedecms"
},
{
"class": "开发框架",
"name": "若依管理系统",
"rule": "(ruoyi/login.js|ruoyi/js/ry-ui.js|class=\"loader-section section-right\"></div><div class=load_title>正在加载系统资源,请耐心等待)",
"type": "code",
"value": "ruoyi"
},
{
"class": "开发框架",
"name": "Spring",
"rule": "(\"status\":404,\"error\":\"Not Found\",|<h1>Whitelabel Error Page</h1>)",
"type": "code",
"value": "spring"
},
{
"class": "开发框架",
"name": "Flask框架",
"rule": "(Werkzeug)",
"type": "headers",
"value": "flask"
},
{
"class": "开发框架",
"name": "Drupal 框架",
"rule": "(data-drupal-link-system-path|content=\"Drupal)",
"type": "code",
"value": "drupal"
},
{
"class": "开发框架",
"name": "ThinkPHP",
"rule": "(ThinkPHP</a>|十年磨一剑-为API开发设计的高性能框架|<h1>页面错误!请稍后再试~</h1>|Simple OOP PHP Framework)",
"type": "code",
"value": "thinkphp"
},
{
"class": "开发框架",
"name": "ThinkPHP",
"rule": "(ThinkPHP)",
"type": "headers",
"value": "thinkphp"
},
{
"class": "开发框架",
"name": "ThinkCMF",
"rule": "(Simple content manage Framework)",
"type": "code",
"value": "thinkcmf"
},
{
"class": "开发框架",
"name": "WordPress",
"rule": "(wp-content)",
"type": "code",
"value": "wordpress"
},
{
"class": "开发框架",
"name": "beego",
"rule": "(Powered by beego 1.6.1)",
"type": "code",
"value": "beego"
},
{
"class": "开发框架",
"name": "Discuz",
"rule": "(content=\"Discuz! X\")",
"type": "code",
"value": "discuz"
},
{
"class": "开发框架",
"name": "Typecho",
"rule": "(Typecho</a>)",
"type": "code",
"value": "typecho"
},
{
"class": "开发框架",
"name": "Laravel",
"rule": "(laravel_session)",
"type": "headers",
"value": "laravel"
},
{
"class": "开发框架",
"name": "大汉版通发布系统",
"rule": "(大汉版通发布系统|大汉网络)",
"type": "code",
"value": "dahanweb"
},
{
"class": "开发框架",
"name": "智慧校园管理系统",
"rule": "(DC_Login/QYSignUp)",
"type": "code",
"value": "edu"
},
{
"class": "开发框架",
"name": "jeesite",
"rule": "(jeesite.session.id)",
"type": "cookie",
"value": "jeesite"
},
{
"class": "开发框架",
"name": "拓尔思SSO",
"rule": "(trsidsssosessionid)",
"type": "cookie",
"value": "trs"
},
{
"class": "开发框架",
"name": "拓尔思WCMv7/6",
"rule": "(com.trs.idm.coSessionId)",
"type": "cookie",
"value": "trs"
},
{
"class": "开发框架",
"name": "拓尔思 WCM",
"rule": "(body=\"load(\"/wcm\" && country=\"CN\")",
"type": "code",
"value": "trs"
},
{
"class": "开发框架",
"name": "URP教务系统",
"rule": "(北京清元优软科技有限公司)",
"type": "code",
"value": "urpedu"
},
{
"class": "开发框架",
"name": "Joomla",
"rule": "(Joomla)",
"type": "code",
"value": "joomla"
},
{
"class": "开发框架",
"name": "JEECMS",
"rule": "(/r/cms/www/red/js/Common.js|/r/cms/www/red/js/indexshow.js|Powered by JEECMS|JEECMS|/jeeadmin/jeecms/index.do)",
"type": "code",
"value": "jeecms"
},
{
"class": "开发框架",
"name": "Jamf Pro",
"rule": "(ui/images/svg/logos/jamf-pro-color.svg|<title>Jamf Pro Login</title>)",
"type": "code",
"value": "jamf"
},
{
"class": "运维管理",
"name": "WSO2",
"rule": "(<title>WSO2 Management Console</title>|browser to use WSO2 Products|<img src=\"../admin/images/1px.gif)",
"type": "code",
"value": "wso2"
},
{
"class": "运维管理",
"name": "Apache APISIX",
"rule": "(src=\"/static/logo.3d9a56bf.svg)",
"type": "code",
"value": "apisix"
},
{
"class": "运维管理",
"name": "Apache Airflow",
"rule": "(<title>Sign In - Airflow|airflowDefaultTheme)",
"type": "code",
"value": "airflow"
},
{
"class": "运维管理",
"name": "Apache Kylin",
"rule": "(url=kylin)",
"type": "code",
"value": "kylin"
},
{
"class": "运维管理",
"name": "Apache ActiveMQ",
"rule": "(activemq_logo|Manage ActiveMQ broker)",
"type": "code",
"value": "activemq"
},
{
"class": "运维管理",
"name": "Apache RabbitMQ",
"rule": "(rabbitmqlogo.svg)",
"type": "code",
"value": "rabbitmq"
},
{
"class": "运维管理",
"name": "Apache Druid",
"rule": "(/unified-console.html)",
"type": "headers",
"value": "druid"
},
{
"class": "运维管理",
"name": "Apache Druid",
"rule": "(<meta name=\"description\" content=\"Apache Druid console)",
"type": "code",
"value": "druid"
},
{
"class": "运维管理",
"name": "Apache Flink",
"rule": "(<title>Apache Flink Web Dashboard</title>|<flink-root></flink-root>)",
"type": "code",
"value": "flink"
},
{
"class": "运维管理",
"name": "Apache Kafka",
"rule": "(<title>Kafka Manager</title>)",
"type": "code",
"value": "kafka"
},
{
"class": "运维管理",
"name": "Apache Spark",
"rule": "(src=\"/static/spark-logo)",
"type": "code",
"value": "spark"
},
{
"class": "运维管理",
"name": "Apache Solr",
"rule": "(id=\"solr\"><span>Apache SOLR</span>)",
"type": "code",
"value": "solr"
},
{
"class": "运维管理",
"name": "Cacti 监控系统",
"rule": "(The Cacti Group)",
"type": "code",
"value": "cacti"
},
{
"class": "运维管理",
"name": "Confluence",
"rule": "(<span class=\"aui-header-logo-device\">Confluence</span>)",
"type": "code",
"value": "confluence"
},
{
"class": "运维管理",
"name": "Swagger UI",
"rule": "(/swagger-ui.css|swagger-ui-bundle.js)",
"type": "code",
"value": "swagger"
},
{
"class": "运维管理",
"name": "Gitea",
"rule": "(content=\"Gitea - Git with a cup of tea)",
"type": "code",
"value": "gitea"
},
{
"class": "运维管理",
"name": "Gitlab",
"rule": "(assets/gitlab_logo|/users/sign_in|content=\"GitLab)",
"type": "code",
"value": "gitlab"
},
{
"class": "运维管理",
"name": "Grafana",
"rule": "(<title>Grafana</title>|class=\"theme-dark app-grafana\">)",
"type": "code",
"value": "grafana"
},
{
"class": "运维管理",
"name": "Grafana",
"rule": "(redirect_to=%2F|SameSite=Lax)",
"type": "cookie",
"value": "grafana"
},
{
"class": "运维管理",
"name": "宝塔面板",
"rule": "(app.bt.cn/static/app.png|安全入口校验失败)",
"type": "code",
"value": "baota"
},
{
"class": "运维管理",
"name": "Zabbix",
"rule": "(images/general/zabbix.ico|Zabbix SIA)",
"type": "code",
"value": "zabbix"
},
{
"class": "运维管理",
"name": "Zabbix",
"rule": "(zbx_sessionid)",
"type": "headers",
"value": "zabbix"
},
{
"class": "运维管理",
"name": "phpMyAdmin",
"rule": "(phpmyadmin.css|img/logo_right.png)",
"type": "code",
"value": "phpmyadmin"
},
{
"class": "运维管理",
"name": "Nagios",
"rule": "(Nagios Access)",
"type": "code",
"value": "nagios"
},
{
"class": "运维管理",
"name": "Nexus",
"rule": "(Nexus Repository Manager)",
"type": "code",
"value": "nexus"
},
{
"class": "运维管理",
"name": "Nexus",
"rule": "(NX-ANTI-CSRF-TOKEN)",
"type": "headers",
"value": "nexus"
},
{
"class": "运维管理",
"name": "Nacos",
"rule": "(<title>Nacos</title>|img/nacos-logo.png)",
"type": "code",
"value": "nacos"
},
{
"class": "运维管理",
"name": "Nagios",
"rule": "(nagios admin|Nagios Access)",
"type": "headers",
"value": "nagios"
},
{
"class": "运维管理",
"name": "Harbor",
"rule": "(<div class=\"spinner spinner-lg app-loading\">)",
"type": "code",
"value": "harbor"
},
{
"class": "运维管理",
"name": "Hadoop",
"rule": "(/cluster)",
"type": "headers",
"value": "hadoop"
},
{
"class": "运维管理",
"name": "Hadoop",
"rule": "(/cluster/app/application|class=\"navbar-brand\">Hadoop|<img src=\"/static/hadoop-st.png\">)",
"type": "code",
"value": "hadoop"
},
{
"class": "运维管理",
"name": "Hadoop Administration",
"rule": "(Hadoop Administration)",
"type": "code",
"value": "hadoop"
},
{
"class": "运维管理",
"name": "Jira",
"rule": "(jira.webresources|icon-jira-logo)",
"type": "code",
"value": "jira"
},
{
"class": "运维管理",
"name": "JFrog",
"rule": "(jfrog-ui-essentials|/artifactory/|src=\"images/artifactory_logo)",
"type": "code",
"value": "jfrog"
},
{
"class": "运维管理",
"name": "XXL Job",
"rule": "(<a><b>XXL</b>JOB</a>|分布式任务调度平台XXL-JOB|xxl-job-admin)",
"type": "code",
"value": "xxljob"
},
{
"class": "运维管理",
"name": "VMware vSphere",
"rule": "(VMware vSphere)",
"type": "code",
"value": "vcenter"
},
{
"class": "运维管理",
"name": "浪潮 ClusterEngineV4.0",
"rule": "(<img src=\"../../assets/images/logo/tscelogo.png\">)",
"type": "code",
"value": "clusterengine"
},
{
"class": "运维管理",
"name": "浪潮 服务器",
"rule": "(inspur_logo.png\">)",
"type": "code",
"value": "inspur"
},
{
"class": "运维管理",
"name": "浪潮政务系统",
"rule": "(LangChao.ECGAP.OutPortal|OnlineQuery/QueryList.aspx)",
"type": "code",
"value": "inspur"
},
{
"class": "运维管理",
"name": "科来RAS",
"rule": "(科来软件 版权所有|i18ninit.min.js)",
"type": "code",
"value": "kelai"
},
{
"class": "运维管理",
"name": "会捷通云视讯平台",
"rule": "(him/api/rest/v1.0/node/role|him.app)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "汉王人脸考勤管理系统",
"rule": "(汉王人脸考勤管理系统|/Content/image/hanvan.png|/Content/image/hvicon.ico)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "亿赛通-电子文档安全管理系统",
"rule": "(电子文档安全管理系统|/CDGServer3/index.jsp|/CDGServer3/SysConfig.jsp|/CDGServer3/help/getEditionInfo.jsp)",
"type": "code",
"value": "esafenet"
},
{
"class": "运维管理",
"name": "中新金盾信息安全管理系统",
"rule": "(中新金盾信息安全管理系统|中新网络信息安全股份有限公司)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "好视通",
"rule": "(itunes.apple.com/us/app/id549407870|hao-shi-tong-yun-hui-yi-yuan)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "和信创天云桌面系统",
"rule": "(和信下一代云桌面VENGD|/vesystem/index.php)",
"type": "code",
"value": "hxct"
},
{
"class": "运维管理",
"name": "金山",
"rule": "(北京猎鹰安全科技有限公司|金山终端安全系统V9.0Web控制台|北京金山安全管理系统技术有限公司|金山V8)",
"type": "code",
"value": "wps"
},
{
"class": "运维管理",
"name": "F5 BIG-IP",
"rule": "(BigIP|BIGipServer)",
"type": "headers",
"value": "bigip"
},
{
"class": "运维管理",
"name": "Citrix-NetScaler",
"rule": "(NSC_TEMP=xyz)",
"type": "headers",
"value": "citrix"
},
{
"class": "运维管理",
"name": "Citrix-NetScaler",
"rule": "(class=\"_ctxstxt_NetscalerAAA\"|ns_login_link|/logon/themes/Default/resources)",
"type": "code",
"value": "citrix"
},
{
"class": "运维管理",
"name": "SecFox-运维安全管理与审计系统",
"rule": "(type=image/x-icon href=/../static/oem_image/company_logo.png)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "mua",
"rule": "(<title>mua</title>)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "VMware ESXi",
"rule": "(\" + ID_EESX_Welcome + \"\n)",
"type": "code",
"value": "notag"
},
{
"class": "运维管理",
"name": "惠普-iLO 3",
"rule": "(iLO 3)",
"type": "code",
"value": "hpeilo4"
},
{
"class": "运维管理",
"name": "惠普-iLO 4",
"rule": "(iLO 4)",
"type": "code",
"value": "hpeilo4"
},
{
"class": "文件存储服务器",
"name": "MinIO",
"rule": "(content=\"MinIO)",
"type": "code",
"value": "minio"
},
{
"class": "运维管理",
"name": "CloudFlare",
"rule": "(cloudflare)",
"type": "headers",
"value": "waf"
},
{
"class": "运维管理",
"name": "Safe3",
"rule": "(Safe3WAF|Safe3 Web Firewall)",
"type": "headers",
"value": "waf"
},
{
"class": "运维管理",
"name": "安全狗",
"rule": "(404.safedog.cn/images/safedogsite/broswer_logo.jpg)",
"type": "code",
"value": "waf"
},
{
"class": "运维管理",
"name": "阿里云 Web应用防火墙",
"rule": "(<title>阿里云 Web应用防火墙</title>)",
"type": "code",
"value": "waf"
},
{
"class": "视频设备",
"name": "海康威视-网络摄像机",
"rule": "(Hikvision Digital Technology Co.|oWifi.bSupportWifiEnhance)",
"type": "code",
"value": "hikvision"
},
{
"class": "视频设备",
"name": "海康威视-iVMS安防集成平台",
"rule": "(iVMS-8300 安防集成平台|/ui/js/HikLY.js)",
"type": "code",
"value": "hikvision"
},
{
"class": "视频设备",
"name": "海康威视-安防综合集中监管平台",
"rule": "(综合安防集中监管平台|集中监控应用管理系统)",
"type": "code",
"value": "hikvision"
},
{
"class": "视频设备",
"name": "海康威视-网盘",
"rule": "(powered by 海康威视)",
"type": "code",
"value": "hikvision"
},
{
"class": "视频设备",
"name": "海康威视-安全接入网关",
"rule": "(/webui/images/basic/login/main_logo.gif)",
"type": "code",
"value": "hikvision"
},
{
"class": "视频设备",
"name": "海康威视-视频云",
"rule": "(oCheckUser.szUserName)",
"type": "code",