-
Notifications
You must be signed in to change notification settings - Fork 0
/
finger.yaml
16350 lines (16349 loc) · 838 KB
/
finger.yaml
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
Hanwha-SND-6084:
- 'body="var defaultfilename = \"SND-6084\""'
Weatimages:
- 'body="<a href=\"http://nazarkin.name/projects/weatimages" || body="<meta name=\"Generator\" content=\"Weatimages\"/>" || body="<div align=\"center\" class=\"weatimages_toppest_navig\" style=\"text-decoration:underline;\">"'
H3C-Magic-R200:
- 'body="var product_type = \"R200\"" || body="var product_type = \"R200G\""'
PMailServer:
- 'banner="ESMTP(IPv4) PMailServer" || banner="ESMTP PMailServer" || banner="ESMTP(IPv4) PMailServer2"'
Plone-CMS:
- body="<meta name=\"generator\" content=\"Plone - "
- 'body="<div xmlns:css=\"http://namespaces.plone.org/diazo/css\""'
- body="/++plone++static/plone-compiled.css"
- body="/++plone++static/tinymce-styles.css"
- body=">Powered by Plone & Python</a>"
digitalchina - Camera:
- 'header="Server: IPCamera-Webs" && body="神州数码"'
D-Link-DIR-505:
- 'body="<a href=\"javascript:check_is_modified(''http://support.dlink.com/'')\"><script>lang_obj.write(''LNG038'')"'
TG-RN8600T-series-router:
- 'banner="TG-NET RN8600T series router"'
Advantech-ER75i:
- 'title="ER75i"'
CISCO-WebEx:
- 'body="alt=\"Cisco WebEx Meetings Server\"" || title="Cisco Webex"'
evercookie:
- 'body="evercookie.js" || body="var ec = new evercookie();"'
iB-WRA150N:
- 'header="realm=\"iB-WRA150N" || banner="realm=\"iB-WRA150N"'
riello-100:
- 'banner="NetMan 100"'
XMR-Stak-Miner:
- 'header="Digest realm=\"XMR-Stak-Miner" ||banner="Digest realm=\"XMR-Stak-Miner"'
Panasonic-DP-Printer:
- 'banner="Panasonic DP-"'
Equipment operation dynamic management system:
- 'body="id=\"ImageButton1\" src=\"images/yk.gif"'
dahua-DHI-HCVR5108HS-S3:
- 'banner="DHI-HCVR5108HS-S3" || banner="HCVR5108HS-S3"'
Aastra-A5000:
- 'header="realm=\"Aastra A5000" || banner="realm=\"Aastra A5000"'
Jeecg-Boot:
- title="JeecgBoot 企业级低代码平台"
- 'body="window._CONFIG[''imgDomainURL''] = ''http://localhost:8080/jeecg-boot/" || title="Jeecg-Boot 企业级快速开发平台" || title="Jeecg 快速开发平台" || body="''http://fileview.jeecg.com/onlinePreview''"'
Atlassian-Bamboo:
- 'title="Atlassian Bamboo" || (title="Bamboo" && title=" Build dashboard") || (body="window.BAMBOO" && body="docs.atlassian.com") || (body="content=\"Bamboo" && body="docs.atlassian.com")'
Heavenly letter - firewall:
- 'title="TOPSEC TOS Web User" || (header="TopWebServer" && body="WEB User Interface")'
Dangpo Technology --arcvideo-Live:
- 'title="Arcvideo Live" || banner="Arcvideo" || header="Server: ArcVideo"'
CISCO-UCSC-C220-M5SN:
- 'cert="PID:UCSC-C220-M5SN"'
Mobile application management platform:
- '(body="onclick=\"javascript:document.loginForm.reset();\"" && body="font-family:Verdana, Geneva, sans-serif") || title="移动应用管理平台"'
OMAudit:
- 'body="OMAudit V3版"'
Rising-network security warning system:
- 'cert="Virus Early Warning System" || title="瑞星网络安全预警系统"'
Yun Yun - Company Products:
- 'body="技术支持:北京广通信达科技有限公司 <br />"'
HttpFS:
- 'body="<b>HttpFs service</b"'
Data Center Platform:
- 'body="jsp/dbjd/dbjk_list.jsp"'
Ciena-5142-Switch:
- 'banner="5142 Service Aggregation Switch"'
NetBotz-WallBotz:
- 'banner="NetBotz WallBotz"'
NEC-NetworkPrinter500081:
- 'banner="NEC NetworkPrinter500081"'
NEW_ROCK-IP-PBX-Management System:
- 'body="var data = formatParams(params.data)"'
HuaWei-Router:
- 'title="Wimax CPE Configuration" || (header="HttpWarnFlg" && body="Huawei Technologies")'
Microsoft-Exchange-Server-2016-CU3:
- 'body="href=\"/owa/auth/15.1.544"'
TP_LINK-TD-W8961N:
- 'header="realm=\"TD-W8961N" || banner="realm=\"TD-W8961N"'
TerraMaster-TOS:
- title=="TOS Loading"
- server="TOS" && server!="centos"
- 'header="X-Powered-By: TerraMaster"'
NetPresenz:
- 'header="Server: netpresenz" || banner="Server: netpresenz"'
LANBIRD-Router:
- 'banner="LANBIRD Router"'
H3C-MSR810:
- 'banner="MSR810"'
CalendarScript:
- 'title="Calendar Administration : Login" || body="Powered by <A href=\"http://www.CalendarScript.com"'
Ai Run - Smart Parking Management System:
- 'body="src=\"/static/img/allstar.png\""'
TimeKeeper:
- title="TimeKeeper Management"
D-link-DSL-2640B:
- 'body="Product : DSL-2640B" || title="D-Link DSL-2640B"'
Bamboocloud-BIM unified identity management platform:
- 'body="BIM 开发配置与运维控制台"'
LANCOM-L-321agn-Wireless:
- 'banner="LANCOM L-321agn Wireless" || body="src=\"/images/prodimg.jpeg\" alt=\" LANCOM L-321agn Wireless" || server="LANCOM L-321agn Wireless" || title="LANCOM L-321agn Wireless"'
ManageEngine:
- title="ManageEngine"
Centreon:
- 'body="Generator\" content=\"Centreon - Copyright" || title="Centreon - IT & Network Monitoring"'
向日葵:
- body=="{\"success\":false,\"msg\":\"Verification failure\"}"
Fikker-Webcache:
- 'header="Fikker/Webcache" || banner="Fikker/Webcache"'
AmbitWireless-DDW2600:
- 'banner="MODEL: DDW2600"'
phpMumbleAdmin:
- 'header="phpmumbleadmin_session=" || banner="phpmumbleadmin_session="'
North Source - Desktop Application System:
- 'body="<span id=\"lblValidCompany\" class=\"validcompany\">VRV" && body="var vver = $(''#hidVerify'').val();"'
Discuz:
- 'title="Powered by Discuz" || body="content=\"Discuz" || (body="discuz_uid" && (body="portal.php?mod=" || body="href=\"/forum.php?" || body="id=\"discuz_tips")) || body="Powered by <strong><a href=\"http://www.discuz.net"'
Hidden danger management system:
- 'body="IE设置(隐患管理系统专用).reg"'
ContentXXL:
- 'body="content=\"contentXXL"'
USP-Secure-Login-Service:
- 'body="<!-- SLS JavaScripts -->" || body="<form action=\"auth\" method=\"post\" name=\"LoginForm\" onsubmit=\"return checkFormSubmit();\" >" || body="<input name=\"currentRequestedPage\" type=\"hidden\" value=" || header="slsstatus" || header="Set-Cookie: SLSLanguage=" || header="Set-Cookie: SCDID_S=" || banner="Set-Cookie: SLSLanguage=" || banner="Set-Cookie: SCDID_S="'
VANDYKE-VShell-File-Server:
- 'title="VShell File Server" || (banner="VShell" && (banner="ssh" || banner="VanDyke Software VShell" || banner="Server: VShell-HTTPS")) || header="Server: VShell-HTTPS"'
OpenDocMan:
- 'body="Welcome to OpenDocMan" || body="target=\"_new\">OpenDocMan"'
IPX-DDK-1700BC:
- 'header="realm=\"DDK-1700BC" || banner="DDK-1700BC"'
Engineering Supervision Center:
- 'body="prepend(''<span class=\"btr\">" && body="src=\"/Scripts/page/openBrWindow.js\""'
ABUS-视频监控:
- 'body="ui/images/abusLogo.png\" alt=\"ABUS" && body="activeUsername"'
TOTO_LINK-N6004:
- 'body="src =\"/images/login_back_zn6004.gif\""'
NSFOCUS-公司产品:
- 'header="Server: NSFOCUS" || (banner="Server: NSFOCUS" && banner!="couchdb")'
H3C-ER3260G2:
- 'title="ER3260G2系统管理" || banner="ER3260G2"'
CISCO-IMC-Supervisor:
- 'body="font-family: \"ciscoSansThin\"" && body="Cisco IMC Supervisor"'
Franklin-Fueling:
- body="Franklin Fueling Systems"
Epson-Scanning-Card:
- 'banner="EPSON" && banner="Scanning Card"'
HP-ProLiant-BL-e-Class:
- 'banner="ProLiant BL e-Class"'
Oracle-OPERA:
- 'title="MICROS Systems Inc., OPERA" || body="OperaLogin/Welcome.do"'
Eserv:
- 'header="Server: Eserv" || body="content=\"Eserv" || banner="Server: Eserv"'
ipTIME-A1004V:
- 'body="\"/images2/login_title.a1004v.gif\"" || title="ipTIME A1004V"'
ZyXEL-USG-20:
- 'banner="ZyWALL USG 20" || title=="ZyWALL USG 20"'
BLUECAT-Meridius-Security-Gateway:
- 'banner="Meridius Security Gateway"'
ADSSERVER:
- 'header="Server: ADSSERVER" || banner="Server: ADSSERVER"'
Cerio-DT300N:
- 'body="CopyRight © 2012 CERIO. All Rights Reserved" || title="DT-300N"'
And Tong intelligent:
- 'body="href=\"/web/mainMenu/images/favicon.ico\">"'
D_Link-DCS-IP-camera:
- '(header="Server: dcs-lig-httpd" && header!="couchdb" && header!="drupal") || (banner="Server: dcs-lig-httpd" && banner!="couchdb" && banner!="drupal") || (title="Checking Language..." && body="var browsermsg = navigator.userAgent.toLowerCase()")'
IATIVE- Yunview platform:
- 'title=="Acenter" || body="/js/roomHeight.js" || body="meetingShow!show.action"'
ZyXEL-Prestige-660ME:
- 'banner="Prestige 660ME"'
NSFOCUS-VPN:
- 'body="/logo_login_nsfocus.png" || title=="SSLVPN"'
EFM-Networks-ipTIME-N104T:
- 'body="\"/images/login_title_n104t.gif\""'
IceWarp-服务器:
- '(header="Server: IceWarp" && header!="couchdb" && header!="drupal") || (banner="Server: IceWarp" && banner!="couchdb" && banner!="drupal")'
MULTILASER-Roteador-Wireless-N300:
- 'body="rel=\"shortcut icon\" href=\"./multi_icone.ico\"" || body="rel=\"shortcut icon\" href=\"/multi_icone.ico\""'
Exposure-Sauce-Token:
- 'body~="(?i)sauce.{0,50}\b([a-f0-9-]{36})\b"'
yongyou - Business War Practice Platform:
- 'body="Login_Main_BG" && body="Login_Owner"'
Adobe-ColdFusion:
- 'body="/cfajax/" || header="CFTOKEN" || banner="CFTOKEN" || body="ColdFusion.Ajax" || body="<cfscript>"'
- body="ColdFusion documentation"
netqmail:
- 'banner="netqmail home page: http://qmail.org/netqmail"'
TG-RN4000-series-router:
- 'banner="TG-NET RN4000 series router"'
JUNIPer-ScreenOS:
- 'header="Server: Virata-EmWeb" && body="admin_pw"'
Atlantis:
- 'header="Server: Atlantis" || banner="Server: Atlantis" || title=="Atlantis"'
Wallarm-WAF:
- ' header="Server: nginx-wallarm" || banner="Server: nginx-wallarm"'
RedBack-Networks-AOS:
- 'banner="RedBack Networks AOS"'
nginxWebUI:
- title="nginxWebUI"
SOPHOS-UTM220:
- '(cert="UTM220" && body="var OWN_STATUS")'
LEANOTE-蚂蚁笔记:
- 'body="name=\"author\" content=\"leanote,蚂蚁笔记\""'
JUNIPer-SSG-140:
- 'banner="SSG-140"'
DBShop:
- 'body="content=\"dbshop"'
CHISCDC-体检档案查询系统:
- 'body="<div class=\"login_foot\">技术支持:中卫信软件</div>" && body="体检"'
Fluke companies products:
- 'banner="Fluke Networks"'
McAfee_EG4500:
- 'banner="EG4500/SMTP "'
Fortinet-FWN1000B:
- 'banner="FWN1000B"'
MiniServ:
- '(header="Server: miniserv" && header!="couchdb" && header!="drupal" && body!="couchdb") || (banner="server: miniserv" && banner!="couchdb" && banner!="drupal")'
CastleNet-CBW383G4J:
- 'banner="CBW383G4J" && banner="CastleNet"'
uniview-ISC5000-S:
- 'title="ISC5000-S"'
Yisheng - Network Security Audit System:
- 'title=="任子行网络安全审计系统"'
SecureMatrix:
- 'header="Set-Cookie: securematrix=" || banner="Set-Cookie: securematrix=" || title="SECUREMATRIX"'
phpMyChat-Plus:
- title="phpMyChat-Plus"
Maintenance insurance - product:
- 'body="plugins/wbb/Barrett.js"'
RethinkDB:
- 'title="RethinkDB Administration"'
wordpress-woocommerce:
- 'body="wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver"'
- title="WordPress WooCommerce"
DELL-PowerEdge-750:
- 'banner="poweredge-750" || cert="poweredge-750"'
Emerson-Liebert-UPS:
- 'banner="Liebert UPS" || banner="Liebert Pro II Card" || banner="Liebert Smart II Card"'
KNET-可信网站权威数据库:
- 'body="https://ss.knet.cn/verifyseal.dll"'
Aethra-StarVoice:
- 'banner="Aethra StarVoice - ADSL Integrated Access Device."'
CISCO-M300V:
- 'body="alt=\"Cisco M300V\"" || title="Cisco Content Security Management Virtual Appliance M300V"'
TEK_TRONIKS-Company Products:
- 'header="Basic realm=\"DATAcentre" || header="Server: Tektroniks" || banner="Server: Tektroniks" || (body="<td width=\"100\"><label id=\"AU_LOGIN_ID_label\" for=\"AU_LOGIN_ID\" datatype=\"\" required=\"true\">User Name:</label></td>" && body!="Server: couchdb")'
Crown Jinshen - KILL Mail Security Gateway:
- 'title="KILL邮件安全网关" || body="background=\"Skins/Default/Images/login_ksgm.jpg"'
用友-U8-CRM:
- body="用友U8CRM"
ASUS-RT-AC52U:
- 'header="RT-AC52U" || banner="RT-AC52U" || body="<div class=\"prod_madelName\">RT-AC52U"'
Motorola-DCX Media Equipment:
- 'banner="VENDOR: Motorola Corporation;" && banner="DCX-"'
TRENDnet-TV-IP651W:
- 'banner="TV-IP651W" || header="realm=\"TV-IP651W" || body="(TV-IP651W)</title>" || body="<modelName>TV-IP651W"'
Primergy-iRMC:
- 'banner="Primergy iRMC"'
H3C-ER3200:
- 'title="ER3200系统管理" || header="H3C ER3200" || banner="H3C ER3200"'
D_Link-DSL-2600U:
- 'header="DSL-2600U" || banner="DSL-2600U" || title="DSL-2600U"'
Open-Admin-for-Schools:
- 'title="Open Admin for Schools" || body="action=\"/cgi-bin/rptbirthday.pl" || body="Open Admin for Schools"'
ipTIME-A6004NS:
- 'body="\"/images2/login_title.a6004ns.gif\"" || title="ipTIME A6004NS"'
Siemens-SIMATIC:
- 'banner="Siemens, SIMATIC" || banner="Siemens AG SIMATIC "'
USG FLEX:
- title="USG FLEX"
Qcodo-Development-Framework:
- 'body="Zend Engine Version:</b>" && body="<b>Qcodo Version:"'
Qianxin - a new generation of smart firewall:
- 'title="360天堤新一代智慧防火墙" || body="var __permission = \"360防火墙\"" || title="360网神新一代智慧防火墙" || (body="<span class=\"fwtitle_big\">360 " && body="ngfw_encode")'
InterRed:
- 'body="content=\"InterRed" || body="Created with InterRed"'
DVR-Systems-webcam:
- '(body="Your client does not have permission to get URL /index.htm from this server." && header="Basic realm=\"server")'
uniview-TMS8500:
- 'body="TMS8500-IMOS110"'
DELL-PowerEdge-T310:
- 'banner="PowerEdge-T310" || cert="PowerEdge-T310"'
Xerox-Workcentre:
- body="XEROX WORKCENTRE" && body="/header.php?tab=status"
HFS:
- '((header="Server: HFS" || header="hfs_sid_=" || title="HFS" || body="hfs/\">HttpFileServer" || body="<a href=\"http://www.rejetto.com/hfs/\">HttpFileServer 2.3g</a>") && header!="couchdb" && header!="drupal" && body!="<h2>Blog Comments</h2>") || ((banner="hfs_sid_=" || banner="Server: HFS") && banner!="couchdb" && banner!="drupal")'
OpenStack:
- 'title="OpenStack Dashboard"'
FrontView-Http-Server:
- 'server="FrontView Http Server" || (body="content=\"FrontView" && body="warningText") || banner="FrontView Http Server"'
SARG:
- 'title="Squid User''s Access Report" || body="class=\"logo\"><a href=\"http://sarg.sourceforge.net\""'
华德安-移动执法终端:
- 'title="PMedia Platform" || body="src=\"images/login/badgezh_cn.png" || body="Huadean. All Rights "'
Pfsense- product:
- title=="pfSense - Login"
- '(banner="pfSense " && protocol="snmp") || body="https://www.pfsense.org/?gui=bootstrap" || body="Rubicon Communications, LLC (Netgate)" || body="<h4>Login to pfSense</h4>"'
Dell-Navisphere-Express:
- 'body="parent.main.location = urlNoNST + \"?nst=\" + top.menu.securityToken"'
APPEX-LOTWAN- Network Acceleration System:
- 'title="LotWan 广域网加速系统" && body="北京华夏创新科技有限公司"'
AirLive-Wireless-Device:
- 'header="realm=\"airlive wl-" || header="realm=\"airlive wt-" || header="realm=\"airlive N.Power" || header="realm=\"AirLive WMM-" || header="realm=\"AirLive AP60" || header="realm=\"AirLive Air3G" || header="realm=\"AirLive G.DUO" || banner="realm=\"airlive wl-" || banner="realm=\"airlive wt-" || banner="realm=\"airlive N.Power" || banner="realm=\"AirLive WMM-" || banner="realm=\"AirLive AP60" || banner="realm=\"AirLive Air3G" || banner="realm=\"AirLive G.DUO"'
Intelligent-WAPPLES:
- title="Intelligent WAPPLES"
HUAWEI-HG8045A2:
- 'body="var productname = ''HG8045A2''" || body="var productname = ''HG8045A2'';"'
Bosch- Access Control System:
- '(title="AEC - Login" || body="valign=\"top\" align=\"right\">AEC " || body="color=\"#1B528C\" >Robert Bosch GmbH reserves all rights") && body!="Server: couchdb"'
Pi-hole-Admin-Console:
- title=="Pi-hole Admin Console"
- body="Pi-hole" && body="Web Interface" && body="FTL"
EFM-Networks-ipTIME-A2004:
- 'body="\"/images2/login_title.a2004.gif\"" || title="ipTIME A2004"'
Qianxin - Analysis Platform:
- 'body="href=\"/static/build/animate_nprogress_timepiacker_tooltipster.min.css"'
Consul-HashiCorp:
- 'title=="Consul by HashiCorp" || (body="/ui/assets/consul-ui" && body="consul-ui/config/environment") || (body="consulHost" && body="consul instance" && body="www.consul.io")'
- body="HashiCorp Boundary"
- body="<meta name=\"vault/config/environment\""
Synchronet-Mail-Server:
- 'banner="Synchronet SMTP Server" || banner="Synchronet POP3 Server"'
FortiGate-60D:
- 'banner="FortiGate 60D" || banner="Fortigate60D"'
Samsung-router:
- 'title=="Web Management" && body="Samsung Electronics"'
zikula-framework:
- 'header="ZIKULASID1" || header="ZIKULASID2" || header="ZIKULASID3" || banner="ZIKULASID1" || banner="ZIKULASID2" || banner="ZIKULASID3"'
H3C-SR6608:
- 'header="Basic realm=\"H3C SR6608\"" || banner="SR6608"'
APACHE-JServer:
- 'protocol="ajp"'
NETGEAR-R6700v3:
- 'header="realm=\"NETGEAR R6700v3" || banner="R6700v3"'
SANSEC-SJJ1412 server cryptography:
- 'body=">多用户在线管理可能导致不可预知错误" && body="SJJ1412"'
Askey-Cable-Modem:
- 'body="Welcome to Askey Cable Modem</span>" && body="action=\"/goform/AskLogin"'
EMC-RecoverPoint:
- '(title="RecoverPoint Management Application" && body="content=\"RecoverPoint Management Application") || body="src=\"scripts/services/wizardDataSharingService.js\""'
大华智慧园区管理系统:
- 'body="src=\"/WPMS/asset/common/js/jsencrypt.min.js\""'
- body="/WPMS/asset/lib/gridster/"
Mercurial:
- 'title="Mercurial repositories index" || body="title=\"Mercurial\" style="'
Tencent-QQ chat:
- 'body="tencent://message/"'
Ruijie companies:
- '((header="Server: Ruijie Servrer" || header="Server: RG/Device") && header!="couchdb" && header!="drupal") || ((banner="Server: Ruijie Servrer" || banner="Server: RG/Device" || banner="Ruijie login:" || banner="Vendor: Ruijie General Operation System" || banner="Vendor: Ruijie" || banner="RGOS_SSH") && banner!="couchdb" && banner!="drupal") || cert="Ruijie"'
SAMSUNG-SNB-2000:
- '(header="must-revalidate" && header="Digest realm=\"NET-i\", nonce") || (banner="Digest realm=\"NET-i\", nonce" && banner="must-revalidate")'
ATP800:
- 'banner="ATP800" || title=="ATP800"'
H3C-SR8804-X:
- 'banner="H3C SR8804-X"'
D_Link-DIR-842:
- 'body="<td><script>I18N(\"h\", \"Model Name\");</script> : DIR-842" || body="<h1>DIR-842 Login</h1>"'
Spring-Security:
- 'header="realm=\"Spring Security Application" || banner="realm=\"Spring Security Application"'
Net2Phone:
- 'title="Net2Phone Init Page" || body="Net2Phone, Inc. All Rights"'
CesarFTP:
- 'banner="CesarFTP server"'
Network-Tracker:
- 'body=">network tracker<"'
VSP-Stats-Processor:
- 'body="<A href=\"http://www.clanavl.com/vsp/\">vsp</A> v" || body="<BODY>error: cannot establish database connection or database database_name does not exist" || body=" theme:bismarck by <A href=\"#\" title=\"myrddin8 <AT> gmail <DOT> com\">myrddin</A> "'
Gitblit:
- 'title=="Gitblit" || body="<a title=\"gitblit homepage\" href=\"http://gitblit.com/\">"'
DataTaker:
- title="Datataker"
ZyXEL-N4100:
- 'title="ZyXEL N4100" || title="ZyXEL ZyAIR N4100"'
NETGEAR-WGR-614L:
- 'header="realm=\"WGR-614L" || header="realm=\"WGR614v2" || header="realm=\"WGR614v3" || header="realm=\"WGR614v4" || header="realm=\"WGR614v6" || header="realm=\"WGR614v7" || banner="realm=\"WGR-614L" || banner="realm=\"WGR614v2" || banner="realm=\"WGR614v3" || banner="realm=\"WGR614v4" || banner="realm=\"WGR614v6" || banner="realm=\"WGR614v7"'
DELL-N1548P:
- 'body="class=\"login_server_default\">N1548P" || banner="Dell Networking N1548P"'
UBNT-airOS-wireless:
- '(body="/160819.1157/" || body="/130107.2221/" || body="/171117.1237/") && body="airos_logo.png"'
uniview-公安图像应用平台:
- 'title=="公安图像应用平台" && body="浙江宇视科技有限公司"'
Wei Shield IIS Firewall:
- 'header="Firewall: www.weidun.com.cn" || banner="Firewall: www.weidun.com.cn"'
Goku CRM:
- 'title="悟空CRM" || body="/Public/js/5kcrm.js"'
Polycom-ViewStation:
- 'body="frame name=\"showMyPCFrame\"" || header="X-Powered-By: RealPresence Resource Platform" || banner="Welcome to ViewStation"'
M2Soft-RDServer:
- 'title="M2Soft Report Designer Server" || header="Server: RDServer" || banner="Server: RDServer"'
Yisheng-SurfNx security gateway:
- '(title="安全网关" && body="lib/templates/surfilter/images/logo_big.png") || body="/lib/templates/surfilter/css/" || title="SURFNX" || banner="SURF-NGSA login"'
RealTime-Web-ACARS:
- '((header="Server: acarsd" || body="content=\"KjM <[email protected]>" || body="content=\"Realtime Web ACARS") && body!="Server: couchdb") || banner="Server: acarsd"'
Mihalism-Multi-Host:
- 'body="http://www.mihalism.com/product/mmh/\">Mihalism Multi Host" || body="Powered by Mihalism Multi Host" || body="content=\"Mihalism Multi Host"'
Lantronix companies products:
- 'title="Lantronix ThinWeb Manager" || body="alt=\"Lantronix ThinWeb Manager" || header="Gordian Embedded" || banner="Lantronix "'
- title=="Lantronix WEB-Manager"
PrintMonitor:
- title="PrintMonitor"
FORTINET-FortiNAC:
- title="FortiNAC"
- 'body="FortiNAC" && body="\"product\":"'
FrontPage-Extensions:
- 'header="FrontPage" || body="<meta name=\"GENERATOR\" content=\"Microsoft FrontPage " || banner="FrontPage"'
EMC-Unisphere:
- 'body="<script src=\"oemMessage.js" || title="EMC Unisphere"'
DLink-DI-524:
- 'header="realm=\"DI-524" || banner="DI-524"'
Juniper-DX:
- 'title="Juniper DX" || body="<img alt=\"\" src=\"i/dx02.gif" || ( server="DX " && server="WebUI")'
SONICWALL-Network-Security-Appliance:
- '(title="Policy Jump" && body="content=\"policyJump") || body="<frame src=\"emptyView4.html\" name=\"authTgtFrm\" noresize scrolling=\"no\">" || body="<frame src=\"emptyView4.html\" name=\"authTgtFrm\" id=\"authTgtFrm\" scrolling=\"no\">"'
Canon-MG3100-series:
- 'body="nowrap>Canon MG3100 series</td>"'
HP-Aruba-Device:
- '(body="/images/arubalogo.gif" || (body="Copyright" && body="Aruba Networks")) && body!="Server: couchdb"'
syncloud:
- 'body="Syncloud" && body="onelogo"'
Hillstone-StoneOS:
- 'body="''Hillstone StoneOS Software Version "'
Citrix-ConfProxy:
- 'header="Server: confproxy" || banner="Server: confproxy"'
Chiyu-fingerprint machine:
- 'body="cmdbar.htm"'
China Telecom - Tianyi Broadband Government Network:
- '(body="login" && body="loid_regist()")'
teradata-Aster:
- 'body="images/Teradata_Aster_logo.png"'
TMG165:
- 'header="TMG165" && body="TMG165.SINOPEC.LOCAL"'
OrderBook:
- 'body="getOrderBook: function"'
Ji Datongyuan -Web-Connector:
- 'title="吉大正元Web Connector" || body="location.href=''/cgi-bin/CGIProxy.exe?action=start'';"'
RaiseCom-wireless controller:
- 'body="var oemproductname = \"mvc_MSG2300\""'
ManageEngine-AssetExplorer:
- 'title="ManageEngine AssetExplorer" || body="class=\"footerf2\">ManageEngine AssetExplorer"'
TG-RE8500-AC-series-router:
- 'banner="TG-NET RE8500-AC series router"'
Seminole:
- 'header="server: Seminole" || banner="server: Seminole"'
Tianfeiyun - micro gate:
- 'body="/tpl/Home/weimeng/common/css/"'
N2WS-Company products:
- 'body="static/style/cpm_style.css"'
Analytical data system:
- 'body="分析化验数据" && body="value=\"查询\""'
Sagemcom-SE681-WiMAX:
- 'header="Server: Sagemcom SE681 WiMAX" || banner="Server: Sagemcom SE681 WiMAX" || title="Sagemcom SE681 WiMAX"'
Advantech-LR77:
- '(protocol="snmp" && banner="LR77") || header="LR77-V2" || title="LR77-v2L"'
YiOks - Campus Football Management Platform:
- 'body="<script>document.location=''/index.mpl?a=login''</script>"'
Alibaba-Ali Monitoring System:
- 'title="阿里集团监控系统" || (body="/monitor/css/monitor.css" && body="href=\"/monitor/monitoritem/monitorItemList.htm")'
IBM-Lotus:
- '((((header="Server: Lotus-Domino" || body="href=''/domcfg.nsf/cssLogin?ReadForm''>" || body="action=\"/names.nsf?Login\" name=\"_DominoForm") && body!="软标科技") || (body="domcfg.nsf" && body="login.nsf") || (body="esoaisapp/login.jsp" && body="main.nsf")) && header!="couchdb" && header!="drupal" && body!="Server: couchdb") || ((banner="server: Lotus-Domino" || banner="ESMTP Service (IBM Domino") && banner!="couchdb")'
Web-Control-Panel:
- 'title="Web Control Panel Express v" || body="<td><img src=\"/images/wcpe.gif"'
Netscape-FastTrack:
- 'header="Server: Netscape-FastTrack" || banner="Server: Netscape-FastTrack"'
Canon-MX520-series:
- 'body="nowrap>Canon MX520 series</td>"'
Oracle-GlassFish-Server-OSE-4.1:
- server="GlassFish Server Open Source Edition 4.1"
NAVER-MW-5150AP:
- 'header="realm=\"MW-5150AP" || banner="MW-5150AP"'
EFM-Networks-ipTIME-Q504:
- 'body="\"/images2/login_title.q504.gif\"" || body="\"/images/login_back_q504.gif\"" || title="ipTIME Q504"'
Oracle-Fusion-Middleware:
- 'title="Welcome to Oracle Fusion Middleware" || body="href=\"css/fmw_bottom_area.css" || header="Oracle-Fusion-Middleware" || banner="Oracle-Fusion-Middleware"'
kingdee-OA:
- 'header="oa/login/logout.jsp" || body="location.href=\"/kingdee/index.jsp\"" || body="logo-kingdee.png"'
Cellopoint-product:
- 'banner="cellopoint" || cert="Cellopoint"'
ZTE-OP-EONU-92001Z:
- 'body="OP-EONU 92001Z</font></div>"'
Too a star morning - next generation firewall:
- 'title="T-Force下一代防火墙" || (body="T-Force下一代防火墙" && (body="src=\"/php/common/checknum_creat.php?module=config_authnum\"" || body="src=\"php/common/checknum_creat.php?module=config_authnum\""))'
畅捷通-TPlus:
- 'body="><script>location=''/tplus/'';</script></body>"'
AWS-EC2:
- 'header="Ec2-Instance-Id" || banner="Ec2-Instance-Id" || body="Welcome to nginx on Amazon EC2!"'
- server="EC2ws"
Hengding - Material Equipment Management System:
- '(body="class=\"wrap login_wrap\"" && body="url(Images/yh.jpg)")'
360-host guard:
- 'header="X-Safe-Firewall" || banner="X-Safe-Firewall: zhuji.360.cn"'
Cisco-ASA:
- 'header="Cisco ASA" || header="Adaptive Security Appliance HTTP" || banner="Cisco Adaptive Security Appliance"'
Canon-MP980-series:
- 'body="nowrap>Canon MP980 series</td>"'
Zscaler-FIREWALL:
- 'header="Set-Cookie: _sm_au_d" || banner="Set-Cookie: _sm_au_d"'
JupyterLab:
- title=="JupyterLab"
iviewui:
- 'title="iView admin"'
Schneider-TAC-Xenta911:
- 'banner="TAC Xenta911" || banner="Server: TAC/Xenta911"'
Inspur-NF5270M3:
- 'banner="NF5270M3"'
DELL-PCT8132F:
- 'body="class=\"login_server_default\">PCT8132F"'
Powercode-BMU:
- 'banner="Powercode BMU"'
Parallels-H-Sphere:
- 'title="Parallels H-Sphere"'
Hanwha-XRN-1610:
- 'body="$.nvr.model_name=\"XRN-1610\"" || banner="XRN-1610"'
Apache-HTTP-Server-CentOS:
- title=="Apache HTTP Server Test Page powered by CentOS"
NetScout-Model-9300L:
- 'banner="NetScout Model "'
MAiPU-安全网关:
- 'body="/webui/images/maipu/login/login_adminbg_a.gif"'
Synology-DMS:
- 'title=" Synology " && body="class=\"logo-synology\"" && body="class=\"logo-DSM\""'
ZyXEL-EMG2306-R10A:
- 'body="class=\"modelname\">EMG2306-R10A"'
TP-LINK-Wireless-N-Router-WR941N:
- '((header="realm=\"TP-LINK Wireless N Router WR941N" || title="TL-WR941N" || header="TP-Link TL-WR941N" || header="TP-LINK Wireless WR941N" || header="Server: Wireless N Router WR941N") && header!="ReeCam IP Camera") || (banner="Server: Wireless N Router WR941N")'
eG-Manager:
- title="eG Innovations, Inc."
- body="eG Innovations, Inc. All Rights Reserved"
EAA益和应用接入系统:
- body="EAA益和应用接入系统"
Zhiyuan Interconnection - Sheyon-Server:
- 'header="Server: Seeyon-Server" || (banner="Server: Seeyon-Server" && banner!="couchdb")'
LiteSpeed-Web-Admin-Console:
- 'title="LiteSpeed Web Admin Console" || header="LSWSWEBUI" || title="LiteSpeed WebAdmin Console" || banner="LSWSWEBUI"'
Petrochemical Yingke-Mees Application Management:
- 'body="href=\"/Home/ExitMes" || body="MES30/WebUI/ip/page/Common/mainframe.aspx"'
White Hat - Vulfocus:
- 'title="vulfocus"'
Aruba-Wireless-Controller:
- 'banner="Aruba-Wireless-Controller"'
China control Zhijia - Intelligent Operation and Maintenance Platform:
- 'title="华控智加智能运维平台"'
ClamAV:
- protocol="clam"
HuaWei-ASG2100:
- 'header="HUAWEI ASG2100" || header="HUAWEI ASG2050" || banner="ASG2100" || banner="HUAWEI ASG2100" || banner="HUAWEI ASG2050"'
Eltex-R3621-W2:
- 'banner="ELTEK R3621-W2"'
Titan-FTP:
- 'header="Server: Titan FTP Server" || banner="Titan FTP Server"'
Lasso-Web-Data-Engine:
- 'header="Server: Lasso" || banner="Server: Lasso"'
NETGEAR-R6220:
- 'header="NETGEAR R6220" || banner="NETGEAR R6220" || title="NETGEAR Router R6220 "'
mercur-Messageing:
- 'header="Server: MERCUR Messaging" || title="MERCUR Messaging 2005" || banner="Server: MERCUR Messaging"'
Oce:
- 'title="Print Exec Workgroup" || body="/servlet/owslhtml/owslicons/header_pewg.jpg"'
Telos-Alliance-Omnia-MPX-Node:
- title="Omnia MPX Node | Login"
HUAWEI-Tecal-E6000:
- 'title="Tecal E6000 MM Center-" || (body="The standby MM can not view other board informations." && body="<td class=''td'' id=''pssystemstate''></td>")'
Phoenix-Contact-Device:
- 'header="Server: Phoenix-Contact" || (banner="Server: Phoenix-Contact" && banner!="couchdb") || header="Server: powered by SpiderControl" || banner="Server: powered by SpiderControl"'
New point OA:
- 'title="新点协同办公系统" || body="请安装新点"'
Batflat-CMS:
- body="Powered by Batflat"
AXIS-视频监控:
- '(((banner="Network Camera" && banner="axis") || (banner="armv4tl" && banner="axis")) && banner!="couchdb") || ((body="<meta http-equiv=\"refresh\" content=\"0; url=/view/viewer_index.shtml?id=0\" />" || (body="content=\"Axis Communications AB" && title="AXIS")) && body!="Server: couchdb")'
LuManager:
- 'title="LuManager"'
Qualcomm-4G-LTE-WiFi-Router:
- 'title="4G LTE WiFi Router"'
Serial port server Eth2232x:
- 'title=="串口服务器---eth2232X"'
HuaWei-S12708:
- 'header="S12708 " || banner="S12708" || header="Server: Huawei-S12708" || banner="Server: Huawei-S12708"'
H3C-MSR930:
- 'banner="H3C Series Router MSR930"'
Oriental Thinking - High Speed ??Traffic Management System:
- 'body="OfflineService/ShowDownloadMessage.aspx" || body="add by sll"'
H3C-SecCenter:
- 'body="请登录后使用SecCenter安全管理中心" || body="background=\"/SecCenter/img/index_02.gif" || body="src=\"/SecCenter/img/logo.gif" || body="window.top.location=''/SecCenter/index.jsp'';"'
WebPA:
- 'title="WebPA OS" || title="Web-PA Login" || body="<td align=\"right\"><div id=\"inst_logo\"><img src="'
NETGEAR-GS716Tv2:
- 'banner="GS716Tv2"'
jQuery-official website CDN:
- 'header="code.jquery.com" || body="code.jquery.com" || banner="code.jquery.com"'
ZED_3-Multimedia Scheduling System:
- 'body="document.location=\"main.php\"" && header="Content-Length: 73" && body!="<a "'
ServerTechnology-Sentry-Switch:
- 'banner="Sentry Switched " || banner="Sentry Smart "'
Tutore-Mas:
- 'header="X-Mas-Server" || banner="X-Mas-Server"'
EFM-Networks-ipTIME-N104K:
- 'body="\"/images2/login_title.n104k.gif\"" || title="ipTIME N104K"'
Waibai Information - Online Training Test System:
- '(title="连接中,请稍候" && header="index.html") || body="App_Image/PXSystem" || body="App_Image/System"'
H3C-N12:
- 'title="N12 设备登录"'
Exposure-GitLab-Pipeline-Trigger-Token:
- 'body~="\b(glptt-[0-9a-f]{40})\b"'
ZyXEL-VSG1435:
- 'title="ZyXEL VSG1435" || banner="ZyXEL VSG1435"'
ipTIME-G204:
- 'body="\"/images/login_back_g204.gif\"" || body="\"/images2/login_title.g204.gif\""'
TP_LINK-AC750:
- '(body="if (url.indexOf(\"tplinklogin.net\")" && body="AC750") || header="realm=\"TP-LINK AC750" || banner="realm=\"TP-LINK AC750" || body="var modeldesc=\"AC750 Wireless Dual Band Router\"" || (body="var modelname=\"Archer C20\"" && body="AC750")'
Inspur-Yunhai virtualization:
- '(title="License Tool" && body="class=\"easyui-layout") || title="InCloudSphere"'
友点建站-CMS:
- 'header="X-Powered-By: YoudianCMS" || banner="X-Powered-By: YoudianCMS"'
NETPOSA-PVG video system:
- 'title="东方网力PVG视频系统" || body="<span id=\"sysname\">Power Video Gateway" || (protocol="snmp" && banner="PVG-IPSAN") || title="东方网力PVG_OCX_Demo"'
PlaySMS:
- title="playSMS"
Sinosoft-e-government:
- 'body="App_Themes/1/Style.css" || body="window.location = \"homepages/index.aspx" || body="homepages/content_page.aspx"'
Avaya-IP-Office:
- '(((header="Server: IPOffice/" && body!="Server: boa" && header!="boa") || title="About IP Office" || body="action=\"/login/index.php?st=11&lng=") && body!="Server: couchdb") || (banner="Server: IPOffice/" && banner="301")'
Riicy-Rui Dr. Cloud Office System:
- 'body="/studentSign/toLogin.di" || body="/user/toUpdatePasswordPage.di"'
Hassan Software - Company Products:
- 'title="汉码软件" || body="alt=\"汉码软件LOGO" || body="content=\"汉码软件"'
VAA-embedded telephone recording system:
- 'body="content=\"先锋易讯" || title="先锋嵌入式电话录音系统"'
Mobile Applications:
- '(body="移动应用" && body="<a href=\"fulingmobile.apk\">") || body="plist/flmobile.plist"'
ThreadX:
- 'header="ThreadX" || banner="ThreadX"'
Ruijie-wireless device:
- 'body="var apmainpage = ''ap/main.htm"'
Belkin-N150:
- 'body="src=\"setup_top.htm\"" && body="src=\"status.stm\""'
BAIKAL-Miner:
- 'title="Scr|pta" || body="Baikal</b>Miner"'
Alibaba-Canal:
- title="Canal Admin"
RocketChat:
- header="RocketChat"
- title="RocketChat"
- title="Rocket.Chat"
H3C-Magic-R160:
- 'title="Magic R160 路由器登录"'
Array-AVX-3600:
- 'banner="AVX 3600"'
Lianhuamin-TEAVIEW:
- 'title="TeaView一体化监控运维管理平台"'
QSee-Camera:
- '(body="handlerOcxEvents && handlerOcxEvents.DrawNetPlayRecord(chn);")'
CISCO-Meraki-MR32:
- 'banner="Meraki MR32"'
Sierra-ADSL:
- 'title="::: ACEmanager :::" || header="Sierra Wireless Inc, Embedded Server" || (body="Sierra Wireless, Inc." && body="ACEmanager") || banner="Sierra Wireless Inc, Embedded Server"'
BluePacific-Content Management System:
- 'body="/visadmin/viscms/index.do"'
DELL-DCS2210:
- 'body="id=\"serverinfo\"> DCS2210"'
netcore-NR285G:
- 'header="realm=\"NETCORE NR285G" || banner="realm=\"NETCORE NR285G"'
ECLIPSE-jetty9:
- 'banner="Server: jetty9" || header="Server: jetty9" || ((body="<h1>Jetty9 worked</h1>" || body="<h1>Welcome to Jetty 9</h1>") && title="Jetty") || (body="jetty9" && title="Error 404")'
IMATRIX-mail server:
- 'banner="matrix smtp server" || banner="Matrix Mail Server"'
IMO-Cloud Office:
- 'header="/server/page_download/" || body="download/imo_setup.exe" || title="imo云办公室" || body="title=\"imo云办公室\" href=\"http://imoffice.com" || banner="/server/page_download/"'
DELL-PowerEdge-R620:
- 'body="id=\"serverinfo\"> PowerEdge R620" || banner="PowerEdge R620"'
Dayrui-CMS:
- 'header="dr_ci_session" || body="dayrui/statics" || banner="dr_ci_session"'
Microsoft-RDP-WEB version:
- '(header="Set-Cookie: tswafeaturecheckcookie=" && header="path=/RDWeb/") || ((banner="Location: ./rdweb/" || banner="Location: RDWeb") && banner="IIS")'
DELL-POWEREDGE-R240:
- 'banner="POWEREDGE-R240"'
TDXK-通达OA:
- 'body="/static/templates/2013_01/index.css/" || body="javascript:document.form1.UNAME.focus()" || body="href=\"/static/images/tongda.ico\"" || body="<link rel=\"shortcut icon\" href=\"/images/tongda.ico\" />" || (body="OA提示:不能登录OA" && body="紧急通知:今日10点停电") || title="Office Anywhere 2013" || title="Office Anywhere 2015" || (body="tongda.ico" && (title="OA" || title="办公")) || body="class=\"STYLE1\">新OA办公系统"'
Pharos-LPC:
- 'title="Pharos LPC" || header="realm=\"PharosLPC" || banner="realm=\"PharosLPC"'
gvs-server:
- 'banner="Server: gvs" || header="Server: gvs"'
HikVision - Human Face Analysis System:
- '(body="人脸分析子系统" || body="人脸实时报警系统" || title="人脸检索管理系统") && body="杭州海康威视数字技术股份有限公司"'
Honeywell-IP-Camera:
- '((title="Honeywell IP-Camera" || title="Honeywell IP camera" || body="Checking HNVR Client Control Version......") && body!="Server: couchdb") || cert="HONEYWELL" && cert="security group"'
Avaya-Secure-Router:
- 'body="<b>About Avaya Secure Router</b>" || body="<span id=\"guiname\">Avaya Secure Router" || header="Server: Avaya Http Server" || banner="Server: Avaya Http Server" || title="Avaya Secure Router"'
Broadband-Router:
- 'header="realm=\"Broadband Router" || banner="Internet Broadband Router" || (title="Broadband Router" && title!="I-O DATA Wireless Broadband Router")'
Norton-Cloud-Connect:
- 'title="- Norton Cloud Connect" || body="<h2 style=\"margin-left: 0px;\">Norton Cloud Connect</h2>"'
EMC-OneFS:
- '((title="OneFS" || body="href=\"/onefs/styles/onefs.css" || header="Server: OneFS Platform") && body!="Server: couchdb") || (banner="Server: OneFS Platform" || (protocol="snmp" && banner="Isilon OneFS "))'
Seagate-GoFlex:
- '(body="_gaq.push([''_setAccount'', ''UA-2586520-12'']);" && header="https://www.seagateshare.com/?hipname=") || body="<input id=\"inSubdomain\" name=\"inSubdomain\" type=\"text\" maxlength=\"30\" size=\"23\" value=\""'
Windon - Next Generation Firewall:
- 'title="惠尔顿下一代防火墙" && body="/base/img/login_logo_ngaf.jpg"'
Azure-ARR:
- 'header="ARRAffinity" || banner="ARRAffinity"'
Bminer:
- 'title="Bminer"'
noVNC:
- 'body="id=\"noVNC-control-bar" || body="noVNC example: simple" || body="<!--noVNC Buttons-->" || title=="noVNC"'
Dnion-CDN:
- 'header="Server: dnion" || header="fastcdn.com" || banner="server: DNION" || (header="Server: DnionOS" && header!="couchdb" && header!="drupal") || (banner="Server: DnionOS" && banner!="couchdb" && banner!="drupal")'
ISC-BIND-DNS:
- '(((banner="yamutech-bind" || banner="BIND server") && banner!="this is not a ''bind'' server") && protocol="dns")'
DLink-DI-604:
- 'header="realm=\"DI-604" || banner="DI-604"'
Arab-Portal:
- 'body="Powered by: Arab"'
Fortinet-product:
- 'body="console.error(''Failed to parse language JSON'')" || body="placeholder=\"Next FortiToken Code\"" || (body="href=\"/15248/css/jquery.ui.css\"" && cert="Fortinet") || (body="top.location=\"/login\"" && server="xxxxxxxx-xxxxx")'
Schneider-TAC-Xenta511:
- 'header="Server: TAC/Xenta511" || banner="TAC/Xenta511" || banner="TAC Xenta511"'
ZTE-CPE:
- 'banner="realm=\"[email protected]"'
OneBlog:
- title=="OneBlog开源博客后台管理系统"
- body="<meta name=\"keywords\" content=\"OneBlog"
eSpace-U1981:
- 'banner="eSpace U1981 "'
Polymerization Technology - Unified Certification Management System:
- '(body="action=\"Login.aspx\" id=\"ctl00\"" && body="background-color: #4a93be;") || title=="聚合统一认证管理系统"'
Hongye Technology - Supply Chain System:
- 'body="src=\"/images/hyscm.jpg"'
InfoPro-Eman Workflow Treatment Platform:
- 'body="<input type=\"submit\" name=\"cmdSubmit\" value=\" 登 录 \" onclick=\"javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("cmdSubmit", "", true, "", "", false, false))\" id=\"cmdSubmit\" class=\"ColorButton" && body="WorkFlow"'
VANGE- Grid:
- 'body="技术支持:网格(福建)智能科技有限公司"'
Mizuho companies:
- 'title="Login" && body="Mizuho Bank, Ltd."'
Alibaba-Mongoshake-Unauth:
- body="{\"Uri\":\"/worker\",\"Method\":\"GET\"}" && content_type="text/plain"
Actiontec-xDSL-Router:
- 'banner="Actiontec xDSL Router"'
HP-Nimble-Storage:
- 'banner="Nimble Storage "'
Gol Software - Signature Verification Management System:
- 'title="签名验证管理系统" && body="版权所有:北京格尔国信科技有限公司"'
phpMyBible:
- 'body="<div class=''chaphead''>"'
INOERP-product:
- 'body="id=\"ino-body\""'
H3C-BR104H:
- 'header="Basic realm=\"H3C BR104H\"" || banner="Basic realm=\"H3C BR104H\""'
CISCO-Meraki-MR53:
- 'banner="Meraki MR53"'
FIT2CLOUD-JUMPSERVER-堡垒机:
- 'title="Jumpserver" || (body="<a href=\"/users/password/forgot/\">" && body="csrfmiddlewaretoken" && body="<input type=\"password\" class=\"form-control\" name=\"password\" placeholder=\"密码\" required=\"\">")'
Color Cube Technology - Traffic Management:
- 'title="流量管理后台" && body="CheckCode.aspx"'
AVCON6:
- 'body="filename=AVCON6Setup.exe" || title="AVCON6系统管理平台" || body="language_dispose.action"'
DELL-PowerEdge-400SC:
- 'banner="PowerEdge-400SC" || header="PowerEdge-400SC"'
Ralink-HTTPD:
- 'header="Server: Ralink HTTPD" || (banner="Server: Ralink HTTPD" && banner!="couchdb")'
Searzer Software - Searzer OA:
- 'body="Powered by 协众OA" || body="[email protected]" || body="Powered by CNOA.CN"'
KESION-CMS:
- 'body="/ks_inc/common.js" || body="publish by KesionCMS"'
Default-Parallels-Plesk-Panel-Page:
- title=="Default Parallels Plesk Panel Page"
Michelangelo-PRO-V:
- 'banner="Michelangelo PRO-V"'
Kedacom-SVR2816:
- 'title="SVR2816客户端下载" || body="<a href=\"download/SVR2816 Quick Start Guide.pdf"'
Acquisition System:
- 'body="class=\"S_container_left\"" && body="upgrade/ocx/CCDmsShell.cab#version"'
H3C-安全产品管理平台:
- 'body="/wnm/ssl/web/frame/login.html"'
Ricoh-Network-Printer:
- '(banner="RICOH Network Printer" || banner="RICOH Network Scanner") || banner="infotec MP " || banner="RICOH MP " || banner="RICOH Pro " || banner="RICOH SP " || (((body="setTimeout(''window.location=\"main.asp?lang=" && body="document.cookie=cookie_name + \"=\" + Language + \"; expires=") || (title="Web Image Monitor" && header="cookieonoffchecker=")) && body!="Server: couchdb")'
SONY-SNC-VM772R:
- 'banner="SNC-VM772R" || header="realm=\"SNC-VM772R"'
SDIC-Mei Bo Bo-product:
- 'title="手机数据采集系统 - 美亚柏科" || body="Meiya Pico. All Rights Reserved"'
Tenda-CH22:
- 'body="var sys_target = \"CH22\""'
NAVER-MW-6345AP:
- 'header="realm=\"MW-6345AP" || banner="MW-6345AP"'
Cloud call center - customer service products:
- 'body="tq.cn/floatcard?" || title="TQ云呼叫中心"'
Invision-PowerBoard:
- 'body="Powered by <a href=\"http://www.invisionboard.com" || body="Powered By <a href=''http://www.invisionboard.com''"'
Gadspot-DVR:
- '(body="content=\"ChenXiaohui\"" && body="name=\"configPtz\"")'
Barracuda-SSL-VPN:
- 'banner="Barracuda SSL VPN" || title="Barracuda SSL VPN"'
APC-Environmental-Monitoring:
- 'banner="APC Environmental Monitoring Unit"'
motionEye:
- 'body="static/img/motioneye-logo.svg" || title="Motioneye"'
SITECOM-ADSL-Model:
- 'header="Basic realm=\"Sitecom" || banner="Basic realm=\"Sitecom"'
Weird Technology - Outline Management System:
- 'body="/VHPlot/WebResource.axd"'
Motorola-SBG6782-AC:
- 'body="id=\"thisModelNumberIs\">SBG6782-AC"'
DINSTAR-gateway:
- 'body="action=\"/goform/IADIdentityAuth\""'
SANGFOR-M5100:
- 'body="value=\"M5100-Q-4.0"'
Wazuh:
- title="Wazuh"
netentsec Technology - Intelligent Traffic Management System:
- 'title="网康智能流量管理系统"'
Crystal-Media-CM5000:
- 'protocol="snmp" && banner="Crystal Media CM5000 "'
HP-ARUBA-Network Module:
- 'protocol="snmp" && banner="ArubaOS" && banner="MODEL: "'
Ascotel companies products:
- 'banner="realm=Ascotel domain" || banner="realm=\"Ascotel domain" || header="realm=\"Ascotel domain"'
Puppet-Node-Manager:
- 'title="Puppet Node Manager"'
Nucleus-CMS:
- 'header="Generator: Nucleus CMS" || banner="Generator: Nucleus CMS" || body="target=\"_blank\">Nucleus CMS" || body="nucleus_lf_name" || body="title=\"Nucleus\" href=\"http://nucleuscms.org/"'
Production and management sharing information system:
- 'title="生产经营管理共享信息系统"'
SONY-SNC-EP521:
- 'banner="Sony Network Camera SNC-EP521" || header="Sony Network Camera SNC-EP521"'
Exposure-Twilio-API-Key:
- 'body~="(?i)twilio.{0,20}\b(sk[a-f0-9]{32})\b"'
ZyXEL-GS2210:
- 'header="realm=\"GS2210" || banner="realm=\"GS2210"'
Exposure-Dozzle-logs:
- 'body="\"authorizationNeeded\": \"false\"" && body="Dozzle"'
Alcatel_Lucent-OS6865-P16X:
- 'body="<span>Device OS6865-P16X"'
Blogger:
- 'body="content=''blogger" || body="Powered by Blogger"'
Mobile office system:
- 'body="window.location.href = ''/ui/html/login.html'';" || title="移动办公系统"'
HP-Data-Protector:
- banner="HP Data Protector"
LINKSYS-Switch:
- '(title="Linksys" && title="Switch") || (banner="Linksys" && banner="Switch" && banner!="couchdb")'
Tencent - Enterprise Edition QQ:
- 'body="http://wpa.b.qq.com/cgi/wpa.php" || body="href=\"http://wpa.qq.com/"'
HP-StorageWorks:
- 'title="HP StorageWorks" || (protocol="snmp" && banner="HP StorageWorks ")'
bmc-Control-M:
- 'cert="BMC Control-M Root CA" || title="Control-M Welcome Page"'
EAZYTEC-wire and cable cloud:
- 'title=="电线电缆云"'
Journal Network Technology:
- 'body="highcharts/js/modules/no-data-to-display.js" && body="extjs5/build/examples/ux/css/ItemSelector.css"'
superplaceholder.js:
- 'body="superplaceholder.js" || body="superplaceholder.min.js"'
Alcatel_Lucent-OS6900-T20:
- 'body="<span>Device OS6900-T20"'
Crestron-Electronics-Crestron-Webserver:
- 'header="Server: Crestron Webserver" || banner="Crestron Webserver"'
Academy-LMS:
- body="Academy LMS"
Yilong Tong - Data Leak Protection (DLP):
- 'title=="数据泄露防护(DLP)系统" && body="/CDGServer3/index.jsp"'
TP_LINK-TD-8817:
- 'header="realm=\"TD-8817" || banner="realm=\"TD-8817"'
TP_LINK-TL-WR850N:
- '(body="if (url.indexOf(\"tplinklogin.net\")" && body="TL-WR850N") || body="var modelname=\"TL-WR850N\""'
HANBANG-streaming media server:
- 'banner="Server: HB-DVR"'
TRENDnet-TV-IP344PI:
- 'body="<span>TV-IP344PI</span>"'
HP-ML310-G5:
- 'banner="ML310-G5"'
DELL-N4064:
- 'body="class=\"login_server_default\">N4064" || banner="Dell Networking N4064"'
HP-MSA2312i:
- 'banner="HP StorageWorks MSA2312i"'
NetPort:
- 'header="Server: NetPort Software" || banner="Server: NetPort Software" || header="Power by NetPort" || banner="Power by NetPort"'
cradlepoint-IBR600P:
- 'title="Login :: IBR600P"'
Qianxin-Secfox:
- '(body="id=mTokenPlugin width=0 height=0 style=\"position: absolute;LEFT: 0px; TOP: 0px\"" && body="type=application/x-xtx-axhost" && cert="360企业安全集团") || title="网神SecFox安全审计系统" || title="SecFox-LAS-BH" || title="SecFox" || (body="document.getElementById(''pic'').src" && body="class=\"secfox-login-browser-continue\"") || body="<p>欢迎您使用网神Secfox日志收集与分析系统"'
Hirschmann-Railswitch:
- 'banner="Hirschmann Railswitch" || banner="Hirschmann Rail Switch Power"'
ASP.Net-Test-Page:
- body="Home Page - My ASP.NET Application"
openSUSE:
- 'banner="openSUSE" || header="openSUSE" || banner="x01Welcome to SUSE" || banner="SUSE" || header="SUSE"'
netcore-公司产品:
- '((header="realm=\"NETCORE" || header="Server: Microsoft-NetCore" || header="Server: Boa/Netcore") && header!="couchdb") || banner="Vendor: Netcore"'
LanProxy:
- body="i18nLanguage" && title=="登录"
- body="LanProxy"
ZKTECO-Attendance Management System:
- '((body="/media/images/ZKECO16.ico" || header="sessionidadms") && title="考勤管理系统")'
activeCollab:
- 'body="powered by activeCollab" || body="<p id=\"powered_by\"><a href=\"http://www.activecollab.com/\""'
- body="<form method=\"post\" id=\"system_form_2\" class=\"uniForm focusFirstField\">"
DELL-N3024:
- 'body="class=\"login_server_default\">N3024" || banner="Dell Networking N3024"'
JUNIPer-srx345:
- 'banner="Juniper Networks, Inc. srx345"'
Sambar-Server:
- 'header="Server: SAMBAR" || banner="Server: SAMBAR"'
SwiFTP:
- 'banner="SwiFTP "'
紫光档案管理系统:
- title="紫光档案管理系统"
Omnip:
- 'body="static/style/images/tou.png\") no-repeat"'
360-CDN:
- 'body="src=\"http://js.passport.qihucdn.com/\""'
TaskFreak:
- 'body="<a href=\"http://www.taskfreak.com\">TaskFreak"'
LandRay-OA system:
- '(body="lui_login_message_td" && body="form_bottom") || (body="蓝凌软件 版权所有" && (body="j_acegi_security_check" || title="欢迎登录智慧协同平台")) ||(body="j_acegi_security_check" && body="onsubmit=\"return kmss_onsubmit();" && (body="ExceptionTranslationFilter对SPRING_SECURITY_TARGET_URL 进行未登录url保持 请求中的hash并不会传递到服务端,故只能前端处理" || body="kkDownloadLink link"))'
Optical-Bypass-System:
- 'title="Optical Bypass System"'
LINKSYS-WRT54G2:
- 'header="WRT54G2" || banner="WRT54G2" || header="Linksys WRT54G2"'
New Cape-Zhenggong Accessible System:
- 'header="realm=\"正普门禁系统" || banner="realm=\"正普门禁系统"'
Soft3304-04WebServer:
- 'header="server: 04WebServer" || banner="server: 04WebServer"'
Generate tank table system:
- 'body="value=\"生成罐容表\""'
National standard SIP platform gateway:
- 'title="SipPuAccessServerCtx" || body="<h5><a href=\"config.htm?file=config.htm\">start page</a></h5>"'
DELL-PowerEdge-T320:
- 'banner="PowerEdge T320" || body="id=\"serverinfo\"> PowerEdge T320" || cert="PowerEdge T320"'
Eclipse-Jetty:
- server="Jetty"
- server="jetty9"
- body="<h1>Jetty9 worked</h1>"
- body="<h1>Welcome to Jetty 9</h1>"
- title="Welcome to Jetty"
- body="<a href=\"http://www.eclipse.org/jetty/\">http://www.eclipse.org/jetty</a>"
greencms:
- 'header="X-Powered-By: GreenCMS" || banner="X-Powered-By: GreenCMS"'
Purveyor-Encrypt-WebServer:
- 'header="Server: Purveyor Encrypt" || banner="Server: Purveyor Encrypt"'
Tandberg-Television-Web-server:
- '(header="Server: Tandberg Television Web server") || (banner="Server: Tandberg Television Web server" && banner!="couchdb") || (banner="TANDBERG Gatekeeper" && banner!="couchdb")'
MAVERICK companies:
- 'banner="Maverick_SSHD"'
Digicom-3G-Industrial-VPN-PRO:
- 'banner="3G Industrial VPN PRO"'
DELL-PowerEdge-R320:
- 'body="id=\"serverinfo\"> PowerEdge R320" || banner="PowerEdge R320" || cert="PowerEdge R320"'
OpenAM:
- 'title="OpenAM(登录)" || body="action=\"/openam/UI/Login\"" || header="OpenAM Web Agent" || banner="/OpenAM/UI/Login.jsp" || banner="/openam/XUI/" || banner="OpenAM Web Agent" || banner="openam/SSORedirect" || banner="OpenAM-11.0.0"'
BUSYBOX:
- '(banner="BusyBox" && banner="Built in") || banner="BusyBox on " || banner="Busybox Login" || banner="BusyBox v0.61.pre" || banner="/bin/busybox" || (banner="220 Operation successful") || (banner="HTTP/1.1 400 Bad Request" && banner="Connection: close" && banner="Content-Type: text/plain" && banner="Transfer-Encoding: chunked" && banner!="Server") || (header="HTTP/1.1 400 Bad Request" && header="Connection: close" && header="Content-Type: text/plain" && header="Transfer-Encoding: chunked" && header!="Server" && header!="Date")'
Citywide-VOIP:
- 'body="document.write(\"<div id=''web_bottom''><h2>\" + copy_right.VOIP + \"</h2></div>\");"'
H3C-S5120:
- 'banner="H3C Switch S5120" || banner="H3C S5120"'
Nimsoft-Wasp:
- body="Powered by <b>Nimsoft WASP "
- title=="WASP"
Hanwha-SNP-6230RH:
- 'body="var defaultfilename = \"SNP-6230RH\""'
Mitel-web products:
- 'body="pathname = pathName.replace(/esm_loginMain.htm/i,\"main.htm\");"'
EFM-Networks-ipTIME-N2+:
- 'body="\"/images2/login_title.n2p.gif\"" || body="\"/images2/login_title.n2.gif\"" || title="ipTIME N2+"'
reolink-NVR:
- 'body="<a id=\"preview_play_balancestream\">Balanced" || title=="Reolink"'
SmugMug-公司产品:
- '(header="X-Powered-By: SmugMug" && header="X-Smugmug-Values") || (banner="X-Powered-By: SmugMug" && banner="X-Smugmug-Values")'
KaiBB:
- 'body="Powered by KaiBB" || body="content=\"Forum powered by KaiBB"'
Vertiv - Dimensional Power and Environmental Monitoring System:
- 'body="var port = \"9528"'
DELL-poweredge-r410:
- 'banner="poweredge-r410" || header="poweredge-r410" || cert="poweredge-r410"'
WisiyiLink-Print Server:
- 'body="<a class=\"brand\" href=http://www.wisiyilink.com" || body="WiSiYiLink©2013-2017版权所有 专注打印服务器"'
Qi'an letter - website security testing:
- 'body="webscan.360.cn/status/pai/hash"'
OpenCTI:
- body="OpenCTI"
Fastcgi-Default-Test-Page:
- title="TurnKey NGINX PHP FastCGI Server"
Canon-MX860-series:
- 'body="nowrap>Canon MX860 series</td>"'
indy:
- '(header="Server: Indy" && header!="couchdb" && header!="drupal") || (banner="Server: Indy" && banner!="couchdb" && banner!="drupal")'
Alarmability - Fire Mobile Electronic Evidence Management:
- 'title="消防移动电子证据管理系统" && body="深圳市警翼数码科技有限公司"'
nostromo:
- 'header="Server: nostromo" || banner="Server: nostromo "'
CP_PLUS-webcam:
- 'title="CPPLUS Remote – Web View" || (body="dhvideowhmode" && body="platformHtm" && body="cpplus_bottom")'
Online-Grades:
- 'body="content=\"Online Grades" || title="online grades"'
Claymores-Ethereum-Dual-Miner-Manager:
- 'header="Claymore''s Ethereum Dual Miner Manager" || banner="Claymore''s Ethereum Dual Miner Manager"'
用友-U8远程:
- 'body="javascript/bw8.js" && body="var servervendor = ''yonyouupcn''"'
Digi-Connect-Device:
- 'protocol="snmp" && banner="Digi Connect Device"'
Argon-VPN:
- 'banner="VPN Firewall" && banner="Argon"'
LUA:
- 'server="lua"'
cradlepoint-CTR500: