-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfofacms.json
3932 lines (3932 loc) · 99.6 KB
/
fofacms.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
[
{
"name": "Dell-Printer",
"rule": "title=\"Dell Laser Printer\"",
"program": ""
},
{
"name": "HP-OfficeJet-Printer",
"rule": "title=\"HP Officejet\" || body=\"align=\"center\">HP Officejet\"",
"program": ""
},
{
"name": "Biscom-Delivery-Server",
"rule": "body=\"/bds/stylesheets/fds.css\" || body=\"/bds/includes/fdsJavascript.do\"",
"program": ""
},
{
"name": "DD-WRT",
"rule": "body=\"style/pwc/ddwrt.css\"",
"program": ""
},
{
"name": "ewebeditor",
"rule": "body=\"/ewebeditor.htm?\"",
"program": ""
},
{
"name": "fckeditor",
"rule": "body=\"new FCKeditor\"",
"program": ""
},
{
"name": "xheditor",
"rule": "body=\"xheditor_lang/zh-cn.js\"||body=\"class=\"xheditor\"||body=\".xheditor(\"",
"program": ""
},
{
"name": "百为路由",
"rule": "body=\"提交验证的id必须是ctl_submit\"",
"program": ""
},
{
"name": "锐捷NBR路由器",
"rule": "body=\"free_nbr_login_form.png\"",
"program": ""
},
{
"name": "mikrotik",
"rule": "title=\"RouterOS\" && body=\"mikrotik\"",
"program": ""
},
{
"name": "ThinkSNS",
"rule": "body=\"/addons/theme/\" && body=\"全局变量\"",
"program": ""
},
{
"name": "h3c路由器",
"rule": "title=\"Web user login\" && body=\"nLanguageSupported\"",
"program": ""
},
{
"name": "jcg无线路由器",
"rule": "title=\"Wireless Router\" && body=\"http://www.jcgcn.com\"",
"program": ""
},
{
"name": "D-Link_VoIP_Wireless_Router",
"rule": "title=\"D-Link VoIP Wireless Router\"",
"program": ""
},
{
"name": "arrisi_Touchstone",
"rule": "title=\"Touchstone Status\" || body=\"passWithWarnings\"",
"program": ""
},
{
"name": "ZyXEL",
"rule": "body=\"Forms/rpAuth_1\"",
"program": ""
},
{
"name": "Ruckus",
"rule": "body=\"mon. Tell me your username\" || title=\"Ruckus Wireless Admin\"",
"program": ""
},
{
"name": "Motorola_SBG900",
"rule": "title=\"Motorola SBG900\"",
"program": ""
},
{
"name": "Wimax_CPE",
"rule": "title=\"Wimax CPE Configuration\"",
"program": ""
},
{
"name": "Cisco_Cable_Modem",
"rule": "title=\"Cisco Cable Modem\"",
"program": ""
},
{
"name": "Scientific-Atlanta_Cable_Modem",
"rule": "title=\"Scientific-Atlanta Cable Modem\"",
"program": ""
},
{
"name": "rap",
"rule": "body=\"/jscripts/rap_util.js\"",
"program": ""
},
{
"name": "ZTE_MiFi_UNE",
"rule": "title=\"MiFi UNE 4G LTE\"",
"program": ""
},
{
"name": "ZTE_ZSRV2_Router",
"rule": "title=\"ZSRV2路由器Web管理系统\" && body=\"ZTE Corporation. All Rights Reserved.\"",
"program": ""
},
{
"name": "百为智能流控路由器",
"rule": "title=\"BYTEVALUE 智能流控路由器\" && body=\"<a href=\"http://www.bytevalue.com/\" target=\"_blank\">\"",
"program": ""
},
{
"name": "乐视路由器",
"rule": "title=\"乐视路由器\" && body=\"<div class=\"login-logo\"></div>\"",
"program": ""
},
{
"name": "Verizon_Wireless_Router",
"rule": "title=\"Wireless Broadband Router Management Console\" && body = \"verizon_logo_blk.gif\"",
"program": ""
},
{
"name": "Nexus_NX_router",
"rule": "body=\"http://nexuswifi.com/\" && title=\"Nexus NX\"",
"program": ""
},
{
"name": "Verizon_Router",
"rule": "title=\"Verizon Router\"",
"program": ""
},
{
"name": "小米路由器",
"rule": "title=\"小米路由器\" ",
"program": ""
},
{
"name": "QNO_Router",
"rule": "body=\"/QNOVirtual_Keyboard.js\" && body=\"/images/login_img01_03.gif\"",
"program": ""
},
{
"name": "爱快流控路由",
"rule": "title=\"爱快\" && body=\"/resources/images/land_prompt_ico01.gif\"",
"program": ""
},
{
"name": "Django",
"rule": "body=\"__admin_media_prefix__\" || body=\"csrfmiddlewaretoken\"",
"program": ""
},
{
"name": "axis2-web",
"rule": "body=\"axis2-web/css/axis-style.css\"",
"program": ""
},
{
"name": "Apache-Wicket",
"rule": "body=\"xmlns:wicket=\" || body=\"/org.apache.wicket.\"",
"program": ""
},
{
"name": "BEA-WebLogic-Server",
"rule": "body=\"<h1>BEA WebLogic Server\" || body=\"WebLogic\"",
"program": ""
},
{
"name": "EDK",
"rule": "body=\"<!-- /killlistable.tpl -->\"",
"program": ""
},
{
"name": "eDirectory",
"rule": "body=\"target=\"_blank\">eDirectory&trade\" || body=\"Powered by <a href=\"http://www.edirectory.com\"",
"program": ""
},
{
"name": "Esvon-Classifieds",
"rule": "body=\"Powered by Esvon\"",
"program": ""
},
{
"name": "Fluid-Dynamics-Search-Engine",
"rule": "body=\"content=\"fluid dynamics\"",
"program": ""
},
{
"name": "mongodb",
"rule": "body=\"<a href=\"/_replSet\">Replica set status</a></p>\"",
"program": ""
},
{
"name": "MVB2000",
"rule": "title=\"MVB2000\" || body=\"The Magic Voice Box\"",
"program": ""
},
{
"name": "GPSweb",
"rule": "title=\"GPSweb\"",
"program": ""
},
{
"name": "phpinfo",
"rule": "title=\"phpinfo\" && body=\"Virtual Directory Support \"",
"program": ""
},
{
"name": "lemis管理系统",
"rule": "body=\"lemis.WEB_APP_NAME\"",
"program": ""
},
{
"name": "FreeboxOS",
"rule": "title=\"Freebox OS\" || body=\"logo_freeboxos\"",
"program": ""
},
{
"name": "Wimax_CPE",
"rule": "title=\"Wimax CPE Configuration\"",
"program": ""
},
{
"name": "Scientific-Atlanta_Cable_Modem",
"rule": "title=\"Scientific-Atlanta Cable Modem\"",
"program": ""
},
{
"name": "rap",
"rule": "body=\"/jscripts/rap_util.js\"",
"program": ""
},
{
"name": "ZTE_MiFi_UNE",
"rule": "title=\"MiFi UNE 4G LTE\"",
"program": ""
},
{
"name": "用友商战实践平台",
"rule": "body=\"Login_Main_BG\" && body=\"Login_Owner\"",
"program": ""
},
{
"name": "moosefs",
"rule": "body=\"mfs.cgi\" || body=\"under-goal files\"",
"program": ""
},
{
"name": "蓝盾BDWebGuard",
"rule": "body=\"BACKGROUND: url(images/loginbg.jpg) #e5f1fc\"",
"program": ""
},
{
"name": "护卫神网站安全系统",
"rule": "title=\"护卫神.网站安全系统\"",
"program": ""
},
{
"name": "phpDocumentor",
"rule": "body=\"Generated by phpDocumentor\"",
"program": ""
},
{
"name": "Adobe_ CQ5",
"rule": "body=\"_jcr_content\"",
"program": ""
},
{
"name": "Adobe_GoLive",
"rule": "body=\"generator\" content=\"Adobe GoLive\"",
"program": ""
},
{
"name": "Adobe_RoboHelp",
"rule": "body=\"generator\" content=\"Adobe RoboHelp\"",
"program": ""
},
{
"name": "Amaya",
"rule": "body=\"generator\" content=\"Amaya\"",
"program": ""
},
{
"name": "OpenMas",
"rule": "title=\"OpenMas\" || body=\"loginHead\"><link href=\"App_Themes\"",
"program": ""
},
{
"name": "recaptcha",
"rule": "body=\"recaptcha_ajax.js\"",
"program": ""
},
{
"name": "TerraMaster",
"rule": "title=\"TerraMaster\" && body=\"/js/common.js\"",
"program": ""
},
{
"name": "创星伟业校园网群",
"rule": "body=\"javascripts/float.js\" && body=\"vcxvcxv\"",
"program": ""
},
{
"name": "正方教务管理系统",
"rule": "body=\"style/base/jw.css\"",
"program": ""
},
{
"name": "UFIDA_NC",
"rule": "(body=\"UFIDA\" && body=\"logo/images/\") || body=\"logo/images/ufida_nc.png\"",
"program": ""
},
{
"name": "北创图书检索系统",
"rule": "body=\"opac_two\"",
"program": ""
},
{
"name": "北京清科锐华CEMIS",
"rule": "body=\"/theme/2009/image\" && body=\"login.asp\"",
"program": ""
},
{
"name": "RG-PowerCache内容加速系统",
"rule": "title=\"RG-PowerCache\"",
"program": ""
},
{
"name": "sugon_gridview",
"rule": "body=\"/common/resources/images/common/app/gridview.ico\"",
"program": ""
},
{
"name": "SLTM32_Configuration",
"rule": "title=\"SLTM32 Web Configuration Pages \"",
"program": ""
},
{
"name": "SHOUTcast",
"rule": "title=\"SHOUTcast Administrator\"",
"program": ""
},
{
"name": "milu_seotool",
"rule": "body=\"plugin.php?id=milu_seotool\"",
"program": ""
},
{
"name": "CISCO_EPC3925",
"rule": "body=\"Docsis_system\" && body=\"EPC3925\"",
"program": ""
},
{
"name": "HP_iLO(HP_Integrated_Lights-Out)",
"rule": "body=\"js/iLO.js\"",
"program": ""
},
{
"name": "Siemens_SIMATIC",
"rule": "body=\"/S7Web.css\"",
"program": ""
},
{
"name": "Schneider_Quantum_140NOE77101",
"rule": "body=\"indexLanguage\" && body=\"html/config.js\"",
"program": ""
},
{
"name": "lynxspring_JENEsys",
"rule": "body=\"LX JENEsys\"",
"program": ""
},
{
"name": "Sophos_Web_Appliance",
"rule": "title=\"Sophos Web Appliance\"",
"program": ""
},
{
"name": "Comcast_Business",
"rule": "body=\"cmn/css/common-min.css\"",
"program": ""
},
{
"name": "Locus_SolarNOC",
"rule": "title=\"SolarNOC - Login\"",
"program": ""
},
{
"name": "Everything",
"rule": "(body=\"Everything.gif\"||body=\"everything.png\") && title=\"Everything\"",
"program": ""
},
{
"name": "honeywell NetAXS",
"rule": "title=\"Honeywell NetAXS\"",
"program": ""
},
{
"name": "Symantec Messaging Gateway",
"rule": "title=\"Messaging Gateway\"",
"program": ""
},
{
"name": "xfinity",
"rule": "title=\"Xfinity\" || body=\"/reset-meyer-1.0.min.css\"",
"program": ""
},
{
"name": "网动云视讯平台",
"rule": "title=\"Acenter\" || body=\"/js/roomHeight.js\" || body=\"meetingShow!show.action\"",
"program": ""
},
{
"name": "蓝凌EIS智慧协同平台",
"rule": "body=\"/scripts/jquery.landray.common.js\" || body=\"v11_QRcodeBar clr\"",
"program": ""
},
{
"name": "金山KingGate",
"rule": "body=\"/src/system/login.php\"",
"program": ""
},
{
"name": "天融信入侵检测系统TopSentry",
"rule": "title=\"天融信入侵检测系统TopSentry\"",
"program": ""
},
{
"name": "天融信日志收集与分析系统",
"rule": "title=\"天融信日志收集与分析系统\"",
"program": ""
},
{
"name": "天融信WEB应用防火墙",
"rule": "title=\"天融信WEB应用防火墙\"",
"program": ""
},
{
"name": "天融信入侵防御系统TopIDP",
"rule": "body=\"天融信入侵防御系统TopIDP\"",
"program": ""
},
{
"name": "天融信Web应用安全防护系统",
"rule": "title=\"天融信Web应用安全防护系统\"",
"program": ""
},
{
"name": "天融信TopFlow",
"rule": "body=\"天融信TopFlow\"",
"program": ""
},
{
"name": "汉码软件",
"rule": "title=\"汉码软件\" || body=\"alt=\"汉码软件LOGO\" || body=\"content=\"汉码软件\"",
"program": ""
},
{
"name": "凡科",
"rule": "body=\"凡科互联网科技股份有限公司\" || body=\"content=\"凡科\"",
"program": ""
},
{
"name": "易分析",
"rule": "title=\"易分析 PHPStat Analytics\" || body=\"PHPStat Analytics 网站数据分析系统\"",
"program": ""
},
{
"name": "phpems考试系统",
"rule": "title=\"phpems\" || body=\"content=\"PHPEMS\"",
"program": ""
},
{
"name": "智睿软件",
"rule": "body=\"content=\"智睿软件\" || body=\"Zhirui.js\"",
"program": ""
},
{
"name": "Apabi数字资源平台",
"rule": "body=\"Default/apabi.css\" || body=\"<link href=\"HTTP://apabi\" || title=\"数字资源平台\"",
"program": ""
},
{
"name": "Fortinet Firewall",
"rule": "title=\"Firewall Notification\"",
"program": ""
},
{
"name": "WDlinux",
"rule": "title=\"wdOS\"",
"program": ""
},
{
"name": "小脑袋",
"rule": "body=\"http://stat.xiaonaodai.com/stat.php\"",
"program": ""
},
{
"name": "天融信ADS管理平台",
"rule": "title=\"天融信ADS管理平台\"",
"program": ""
},
{
"name": "天融信异常流量管理与抗拒绝服务系统",
"rule": "title=\"天融信异常流量管理与抗拒绝服务系统\"",
"program": ""
},
{
"name": "天融信网络审计系统",
"rule": "body=\"onclick=\"dlg_download()\"",
"program": ""
},
{
"name": "天融信脆弱性扫描与管理系统",
"rule": "title=\"天融信脆弱性扫描与管理系统\" || body=\"/js/report/horizontalReportPanel.js\"",
"program": ""
},
{
"name": "AllNewsManager_NET",
"rule": "body=\"Powered by\" && body=\"AllNewsManager\"",
"program": ""
},
{
"name": "Advanced-Image-Hosting-Script",
"rule": "(body=\"Powered by\" && body=\"yabsoft.com\" ) || body=\"Welcome to install AIHS Script\"",
"program": ""
},
{
"name": "SNB股票交易软件",
"rule": "body=\"Copyright 2005–2009 <a href=\"http://www.s-mo.com\">\"",
"program": ""
},
{
"name": "AChecker Web accessibility evaluation tool",
"rule": "body=\"content=\"AChecker is a Web accessibility\" || title=\"Checker : Web Accessibility Checker\"",
"program": ""
},
{
"name": "SCADA PLC",
"rule": "body=\"/images/rockcolor.gif\" || body=\"/ralogo.gif\" || body=\"Ethernet Processor\"",
"program": ""
},
{
"name": ".NET",
"rule": "body=\"content=\"Visual Basic .NET 7.1\"",
"program": ""
},
{
"name": "phpmoadmin",
"rule": "title=\"phpmoadmin\"",
"program": ""
},
{
"name": "SOMOIDEA",
"rule": "body=\"DESIGN BY SOMOIDEA\"",
"program": ""
},
{
"name": "Apache-Archiva",
"rule": "title=\"Apache Archiva\" || body=\"/archiva.js\" || body=\"/archiva.css\"",
"program": ""
},
{
"name": "AM4SS",
"rule": "body=\"Powered by am4ss\" || body=\"am4ss.css\"",
"program": ""
},
{
"name": "ASPThai_Net-Webboard",
"rule": "body=\"ASPThai.Net Webboard\"",
"program": ""
},
{
"name": "Astaro-Command-Center",
"rule": "body=\"/acc_aggregated_reporting.js\" || body=\"/js/_variables_from_backend.js?\"",
"program": ""
},
{
"name": "ASP-Nuke",
"rule": "body=\"CONTENT=\"ASP-Nuke\" || body=\"content=\"ASPNUKE\"",
"program": ""
},
{
"name": "ASProxy",
"rule": "body=\"Surf the web invisibly using ASProxy power\" || body=\"btnASProxyDisplayButton\"",
"program": ""
},
{
"name": "ashnews",
"rule": "body=\"powered by\" && body=\"ashnews\"",
"program": ""
},
{
"name": "Arab-Portal",
"rule": "body=\"Powered by: Arab\"",
"program": ""
},
{
"name": "AppServ",
"rule": "body=\"appserv/softicon.gif\" || body=\"index.php?appservlang=th\"",
"program": ""
},
{
"name": "VZPP Plesk",
"rule": "title=\"VZPP Plesk \"",
"program": ""
},
{
"name": "ApPHP-Calendar",
"rule": "body=\"This script was generated by ApPHP Calendar\"",
"program": ""
},
{
"name": "BigDump",
"rule": "title=\"BigDump\" || body=\"BigDump: Staggered MySQL Dump Importer\"",
"program": ""
},
{
"name": "BestShopPro",
"rule": "body=\"content=\"www.bst.pl\"",
"program": ""
},
{
"name": "BASE",
"rule": "body=\"<!-- Basic Analysis and Security Engine (BASE) -->\" || body=\"mailto:[email protected]\"",
"program": ""
},
{
"name": "Basilic",
"rule": "body=\"/Software/Basilic\"",
"program": ""
},
{
"name": "Basic-PHP-Events-Lister",
"rule": "body=\"Powered by: <a href=\"http://www.mevin.com/\">\"",
"program": ""
},
{
"name": "AV-Arcade",
"rule": "body=\"Powered by <a href=\"http://www.avscripts.net/avarcade/\"",
"program": ""
},
{
"name": "Auxilium-PetRatePro",
"rule": "body=\"index.php?cmd=11\"",
"program": ""
},
{
"name": "Atomic-Photo-Album",
"rule": "body=\"Powered by\" && body=\"Atomic Photo Album\"",
"program": ""
},
{
"name": "Axis-PrintServer",
"rule": "body=\"psb_printjobs.gif\" || body=\"/cgi-bin/prodhelp?prod=\"",
"program": ""
},
{
"name": "TeamViewer",
"rule": "body=\"This site is running\"&&body=\"TeamViewer\"",
"program": ""
},
{
"name": "BlueQuartz",
"rule": "body=\"VALUE=\"Copyright (C) 2000, Cobalt Networks\" || title=\"Login - BlueQuartz\"",
"program": ""
},
{
"name": "BlueOnyx",
"rule": "title=\"Login - BlueOnyx\" || body=\"Thank you for using the BlueOnyx\"",
"program": ""
},
{
"name": "BMC-Remedy",
"rule": "title=\"Remedy Mid Tier\"",
"program": ""
},
{
"name": "BM-Classifieds",
"rule": "body=\"<!-- START HEADER TABLE - HOLDS GRAPHIC AND SITE NAME -->\"",
"program": ""
},
{
"name": "Citrix-Metaframe",
"rule": "body=\"window.location=\"/Citrix/MetaFrame\"",
"program": ""
},
{
"name": "Cogent-DataHub",
"rule": "body=\"/images/Cogent.gif\" || title=\"Cogent DataHub WebView\"",
"program": ""
},
{
"name": "ClipShare",
"rule": "body=\"<!--!!!!!!!!!!!!!!!!!!!!!!!!! Processing SCRIPT\" || body=\"Powered By <a href=\"http://www.clip-share.com\"",
"program": ""
},
{
"name": "CGIProxy",
"rule": "body=\"<a href=\"http://www.jmarshall.com/tools/cgiproxy/\"",
"program": ""
},
{
"name": "CF-Image-Hosting-Script",
"rule": "body=\"Powered By <a href=\"http://codefuture.co.uk/projects/imagehost/\"",
"program": ""
},
{
"name": "Censura",
"rule": "body=\"Powered by: <a href=\"http://www.censura.info\"",
"program": ""
},
{
"name": "CA-SiteMinder",
"rule": "body=\"<!-- SiteMinder Encoding\"",
"program": ""
},
{
"name": "Carrier-CCNWeb",
"rule": "body=\"/images/CCNWeb.gif\" || body=\"<APPLET CODE=\"JLogin.class\" ARCHIVE=\"JLogin.jar\"",
"program": ""
},
{
"name": "cInvoice",
"rule": "body=\"Powered by <a href=\"http://www.forperfect.com/\"",
"program": ""
},
{
"name": "Bomgar",
"rule": "body=\"alt=\"Remote Support by BOMGAR\" || body=\"<a href=\"http://www.bomgar.com/products\" class=\"inverse\"",
"program": ""
},
{
"name": "cApexWEB",
"rule": "body=\"/capexweb.parentvalidatepassword\" || body=\"name=\"dfparentdb\"",
"program": ""
},
{
"name": "CameraLife",
"rule": "body=\"content=\"Camera Life\" || body=\"This site is powered by Camera Life\"",
"program": ""
},
{
"name": "CalendarScript",
"rule": "title=\"Calendar Administration : Login\" || body=\"Powered by <A HREF=\"http://www.CalendarScript.com\"",
"program": ""
},
{
"name": "Cachelogic-Expired-Domains-Script",
"rule": "body=\"href=\"http://cachelogic.net\">Cachelogic.net\"",
"program": ""
},
{
"name": "Burning-Board-Lite",
"rule": "body=\"Powered by <b><a href=\"http://www.woltlab.de\" || body=\"Powered by <b>Burning Board\"",
"program": ""
},
{
"name": "Buddy-Zone",
"rule": "body=\"Powered By <a href=\"http://www.vastal.com\" || body=\">Buddy Zone</a>\"",
"program": ""
},
{
"name": "Bulletlink-Newspaper-Template",
"rule": "body=\"/ModalPopup/core-modalpopup.css\" || body=\"powered by bulletlink\"",
"program": ""
},
{
"name": "Brother-Printer",
"rule": "body=\"<FRAME SRC=\"/printer/inc_head.html\" || body=\"<IMG src=\"/common/image/HL4040CN\"",
"program": ""
},
{
"name": "Daffodil-CRM",
"rule": "body=\"Powered by Daffodil\" || body=\"Design & Development by Daffodil Software Ltd\"",
"program": ""
},
{
"name": "Cyn_in",
"rule": "body=\"content=\"cyn.in\" || body=\"Powered by cyn.in\"",
"program": ""
},
{
"name": "Oracle_OPERA",
"rule": "title=\"MICROS Systems Inc., OPERA\" || body=\"OperaLogin/Welcome.do\"",
"program": ""
},
{
"name": "DUgallery",
"rule": "body=\"Powered by DUportal\" || body=\"DUgallery\"",
"program": ""
},
{
"name": "DublinCore",
"rule": "body=\"name=\"DC.title\"",
"program": ""
},
{
"name": "DZCP",
"rule": "body=\"<!--[ DZCP\"",
"program": ""
},
{
"name": "DVWA",
"rule": "title=\"Damn Vulnerable Web App (DVWA) - Login\" || body=\"dvwa/css/login.css\" || body=\"dvwa/images/login_logo.png\"",
"program": ""
},
{
"name": "DORG",
"rule": "title=\"DORG - \" || body=\"CONTENT=\"DORG\"",
"program": ""
},
{
"name": "VOS3000",
"rule": "title=\"VOS3000\"||body=\"<meta name=\"keywords\" content=\"VOS3000\"||body=\"<meta name=\"description\" content=\"VOS3000\"||body=\"images/vos3000.ico\"",
"program": ""
},
{
"name": "Elite-Gaming-Ladders",
"rule": "body=\"Powered by Elite\"",
"program": ""
},
{
"name": "Entrans",
"rule": "title=\"Entrans\"",
"program": ""
},
{
"name": "GateQuest-PHP-Site-Recommender",
"rule": "title=\"GateQuest\"",
"program": ""
},
{
"name": "Gallarific",
"rule": "body=\"content=\"Gallarific\" || title=\"Gallarific > Sign in\"",
"program": ""
},
{
"name": "EZCMS",
"rule": "body=\"Powered by EZCMS\" || body=\"EZCMS Content Management System\"",
"program": ""
},
{
"name": "Etano",
"rule": "body=\"Powered by <a href=\"http://www.datemill.com\" || body=\"Etano</a>. All Rights Reserved.\"",
"program": ""
},
{
"name": "GeoServer",
"rule": "body=\"/org.geoserver.web.GeoServerBasePage/\" || body=\"class=\"geoserver lebeg\"",
"program": ""
},
{
"name": "GeoNode",
"rule": "body=\"Powered by <a href=\"http://geonode.org\" || body=\"href=\"/catalogue/opensearch\" title=\"GeoNode Search\"",
"program": ""
},
{
"name": "Help-Desk-Software",
"rule": "body=\"target=\"_blank\">freehelpdesk.org\"",
"program": ""
},
{
"name": "GridSite",
"rule": "body=\"<a href=\"http://www.gridsite.org/\">GridSite\" || body=\"gridsite-admin.cgi?cmd\"",
"program": ""
},
{
"name": "GenOHM-SCADA",
"rule": "title=\"GenOHM Scada Launcher\" || body=\"/cgi-bin/scada-vis/\"",
"program": ""
},
{
"name": "Infomaster",
"rule": "body=\"/MasterView.css\" || body=\"/masterView.js\" || body=\"/MasterView/MPLeftNavStyle/PanelBar.MPIFMA.css\"",
"program": ""
},
{
"name": "Imageview",
"rule": "body=\"content=\"Imageview\" || body=\"By Jorge Schrauwen\" || body=\"href=\"http://www.blackdot.be\" title=\"Blackdot.be\"",
"program": ""
},
{
"name": "Ikonboard",
"rule": "body=\"content=\"Ikonboard\" || body=\"Powered by <a href=\"http://www.ikonboard.com\"",
"program": ""
},
{
"name": "i-Gallery",
"rule": "title=\"i-Gallery\" || body=\"href=\"igallery.asp\"",
"program": ""
},
{
"name": "OrientDB",
"rule": "title=\"Redirecting to OrientDB\"",
"program": ""
},
{
"name": "Solr",
"rule": "title=\"Solr Admin\"||body=\"SolrCore Initialization Failures\"||body=\"app_config.solr_path\"",
"program": ""
},
{
"name": "Inout-Adserver",
"rule": "body=\"Powered by Inoutscripts\"",
"program": ""
},
{
"name": "ionCube-Loader",
"rule": "body=\"alt=\"ionCube logo\"",
"program": ""
},
{
"name": "Jamroom",
"rule": "body=\"content=\"Talldude Networks\" || body=\"content=\"Jamroom\"",
"program": ""
},
{
"name": "Juniper-NetScreen-Secure-Access",
"rule": "body=\"/dana-na/auth/welcome.cgi\"",
"program": ""
},
{
"name": "Jcow",
"rule": "body=\"content=\"Jcow\" || body=\"content=\"Powered by Jcow\" || body=\"end jcow_application_box\"",
"program": ""
},
{
"name": "InvisionPowerBoard",
"rule": "body=\"Powered by <a href=\"http://www.invisionboard.com\"",
"program": ""
},
{
"name": "teamportal",
"rule": "body=\"TS_expiredurl\"",
"program": ""
},
{
"name": "VisualSVN",
"rule": "title=\"VisualSVN Server\"",
"program": ""
},
{
"name": "Redmine",
"rule": "body=\"Redmine\" && body=\"authenticity_token\"",
"program": ""
},
{
"name": "testlink",
"rule": "body=\"testlink_library.js\"",
"program": ""
},
{
"name": "mantis",
"rule": "body=\"browser_search_plugin.php?type=id\" || body=\"MantisBT Team\"",
"program": ""
},
{
"name": "Mercurial",
"rule": "title=\"Mercurial repositories index\"",
"program": ""
},
{
"name": "activeCollab",
"rule": "body=\"powered by activeCollab\" || body=\"<p id=\"powered_by\"><a href=\"http://www.activecollab.com/\"\"",
"program": ""
},
{
"name": "Collabtive",
"rule": "title=\"Login @ Collabtive\"",
"program": ""
},
{
"name": "CGI:IRC",
"rule": "title=\"CGI:IRC Login\" || body=\"<!-- This is part of CGI:IRC\" || body=\"<small id=\"ietest\"><a href=\"http://cgiirc.org/\"",
"program": ""
},
{
"name": "DotA-OpenStats",
"rule": "body=\"content=\"dota OpenStats\" || body=\"content=\"openstats.iz.rs\"",
"program": ""
},
{
"name": "eLitius",
"rule": "body=\"content=\"eLitius\" || body=\"target=\"_blank\" title=\"Affiliate\"",
"program": ""