-
Notifications
You must be signed in to change notification settings - Fork 16
/
rules.json
1467 lines (1467 loc) · 43.2 KB
/
rules.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
{
"A-Frame, script": {
"alias": "A-Frame",
"regex": "/?([\\d.]+)?/aframe(?:\\.min)?\\.js",
"type": "software"
},
"AOLserver, headers": {
"alias": "cpe:/a:aol:aolserver",
"regex": "Server:\\s*AOLserver/?([\\d.]+)?",
"type": "cpe"
},
"Adminer, html": {
"alias": "Adminer",
"regex": "Adminer</a> <span class=\"version\">([\\d.]+)</span>|onclick=\"bodyClick\\(event\\);\" onload=\"verifyVersion\\('([\\d.]+)'\\);\">",
"type": "software"
},
"Akka HTTP, headers": {
"alias": "Akka HTTP",
"type": "software",
"regex": "akka-http/([\\d.]+)|Server:\\s*akka-http(?:/([\\d.]+))?"
},
"All in One SEO Pack, html": {
"alias": "cpe:/a:semperfiwebdesign:all_in_one_seo_pack",
"regex": "<!-- All in One SEO Pack ([\\d.]+) ",
"type": "cpe"
},
"Allegro RomPager, headers": {
"alias": "cpe:/a:allegrosoft:rompager",
"regex": "Server:\\s*Allegro-Software-RomPager(?:/([\\d.]+))?",
"type": "cpe"
},
"Angular, html": {
"alias": "Angular",
"regex": "<[^>]+ ng-version=\"([\\d.]+)\"",
"type": "software"
},
"AngularJS, script": {
"alias": "Angular",
"type": "software",
"regex": "/([\\d.]+(?:\\-?rc[.\\d]*)*)/angular(?:\\.min)?\\.js"
},
"Apache, headers": {
"alias": "httpd",
"type": "software",
"regex": "Apache/([\\d.]+(?: \\([ \\w]+\\))?)|Server:\\s*(?:Apache(?:$|/([\\d.]+)|[^/-])|(?:^|\b)HTTPD)"
},
"Apache Tomcat, headers": {
"alias": "cpe:/a:apache:tomcat",
"regex": "Server:\\s*^Apache-Coyote(?:/([\\d.]+))?|X-Powered-By:\\s*\\bTomcat\\b(?:-([\\d.]+))?|Apache Tomcat/([\\d.]+)",
"type": "cpe"
},
"Apache Traffic Server, headers": {
"alias": "cpe:/a:apache:traffic_server",
"regex": "Server:\\s*ATS/?([\\d.]+)?",
"type": "cpe"
},
"Artifactory, html": {
"alias": "cpe:/a:jfrog:artifactory",
"regex": "<span class=\"version\">Artifactory(?: Pro)?(?: Power Pack)?(?: ([\\d.]+))?",
"type": "cpe"
},
"Artifactory Web Server, headers": {
"alias": "cpe:/a:jfrog:artifactory",
"regex": "Server:\\s*Artifactory(?:/([\\d.]+))?",
"type": "cpe"
},
"Atlassian Bitbucket, html": {
"alias": "cpe:/a:atlassian:bitbucket",
"regex": "<li>Atlassian Bitbucket <span title=\"[a-z0-9]+\" id=\"product-version\" data-commitid=\"[a-z0-9]+\" data-system-build-number=\"[a-z0-9]+\"> v([\\d.]+)<",
"type": "cpe"
},
"Atlassian Confluence, html": {
"alias": "cpe:/a:atlassian:confluence",
"regex": "Powered by <a href=[^>]+atlassian\\.com/software/confluence(?:[^>]+>Atlassian Confluence</a> ([\\d.]+))?",
"type": "cpe"
},
"Atlassian Confluence, text": {
"alias": "cpe:/a:atlassian:confluence",
"regex": "Printed by Atlassian Confluence ([\\d.]+)?",
"type": "cpe"
},
"Atlassian FishEye, html": {
"alias": "cpe:/a:atlassian:fisheye",
"regex": "<title>(?:Log in to )?FishEye (?:and Crucible )?([\\d.]+)?</title>",
"type": "cpe"
},
"Banshee, html": {
"alias": "cpe:/a:banshee-project:banshee",
"regex": "Built upon the <a href=\"[^>]+banshee-php\\.org/\">[a-z]+</a>(?:v([\\d.]+))?",
"type": "cpe"
},
"BaseHTTP, headers": {
"alias": "BaseHTTP",
"regex": "Server:\\s*BaseHTTP\\/?([\\d\\.]+)?",
"type": "software"
},
"Bootstrap, html": {
"alias": "Bootstrap",
"regex": "<link[^>]+?href=[^\"]/css/([\\d.]+)/bootstrap\\.(?:min\\.)?css",
"type": "software"
},
"Bootstrap, script": {
"alias": "Bootstrap",
"regex": "(?:/([\\d.]+))?(?:/js)?/bootstrap(?:\\.min)?\\.js",
"type": "software"
},
"Bugzilla, html": {
"alias": "cpe:/a:mozilla:bugzilla",
"regex": "<span id=\"information\" class=\"header_addl_info\">version ([\\d.]+)<",
"type": "cpe"
},
"Chamilo, headers": {
"alias": "cpe:/a:chamilo:chamilo_lms",
"regex": "X-Powered-By:\\s*Chamilo ([\\d.]+)",
"type": "cpe"
},
"Chamilo, html": {
"alias": "cpe:/a:chamilo:chamilo_lms",
"regex": "\">Chamilo ([\\d.]+)</a>",
"type": "cpe"
},
"Chart.js, script": {
"alias": "Chart.js",
"regex": "chartjs\\.org/dist/([\\d.]+(?:-[^/]+)?|master|latest)/Chart.*\\.js",
"type": "software"
},
"Cherokee, headers": {
"alias": "cpe:/a:cherokee-project:cherokee",
"type": "cpe",
"regex": "Server:\\s*Cherokee/([\\d.]+)"
},
"CherryPy, headers": {
"alias": "cpe:/a:cherrypy:cherrypy",
"regex": "Server:\\s*CherryPy\\/?([\\d\\.]+)?",
"type": "cpe"
},
"Clipboard.js, script": {
"alias": "Clipboard.js",
"regex": "clipboard(?:-([\\d.]+))?(?:\\.min)?\\.js",
"type": "software"
},
"CompaqHTTPServer, headers": {
"alias": "cpe:/a:compaq:compaqhttpserver",
"regex": "Server:\\s*CompaqHTTPServer\\/?([\\d\\.]+)?",
"type": "cpe"
},
"Coppermine, html": {
"alias": "cpe:/a:coppermine-gallery:coppermine_photo_gallery",
"regex": "<!--Coppermine Photo Gallery ([\\d.]+)",
"type": "cpe"
},
"CouchDB, headers": {
"alias": "cpe:/a:apache:couchdb",
"regex": "Server:\\s*CouchDB/([\\d.]+)",
"type": "cpe"
},
"CppCMS, headers": {
"alias": "CppCMS",
"type": "software",
"regex": "X-Powered-By:\\s*CppCMS/([\\d.]+)"
},
"Dancer, headers": {
"alias": "cpe:/a:dancer:dancer",
"regex": "Server:\\s*Perl Dancer ([\\d.]+)|X-Powered-By:\\s*Perl Dancer ([\\d.]+)",
"type": "cpe"
},
"Danneo CMS, headers": {
"alias": "cpe:/a:danneo:cms",
"regex": "X-Powered-By:\\s*CMS Danneo ([\\d.]+)",
"type": "cpe"
},
"DirectAdmin, headers": {
"alias": "cpe:/a:directadmin:directadmin",
"regex": "Server:\\s*DirectAdmin Daemon v([\\d.]+)",
"type": "cpe"
},
"Django, html": {
"alias": "cpe:/a:djangoproject:django",
"type": "cpe",
"regex": "(?:powered by <a[^>]+>Django ?([\\d.]+)?|<input[^>]*name=[\"']csrfmiddlewaretoken[\"'][^>]*>)"
},
"Dojo, script": {
"alias": "cpe:/a:dojotoolkit:dojo",
"regex": "([\\d.]+)/dojo/dojo(?:\\.xd)?\\.js",
"type": "cpe"
},
"Doxygen, html": {
"alias": "Doxygen",
"regex": "(?:<!-- Generated by Doxygen ([\\d.]+)|<link[^>]+doxygen\\.css)",
"type": "software"
},
"Drupal, headers": {
"alias": "Drupal",
"regex": "X-Generator:\\s*^Drupal(?:\\s([\\d.]+))?",
"type": "software"
},
"Elementor, script": {
"alias": "Elementor",
"regex": "elementor/assets/js/[^/]+\\.js\\?ver=([\\d.]+)$",
"type": "software"
},
"EmbedThis Appweb, headers": {
"alias": "cpe:/a:embedthis:appweb",
"regex": "Server:\\s*Mbedthis-Appweb(?:/([\\d.]+))?",
"type": "cpe"
},
"FancyBox, script": {
"alias": "jQuery FancyBox",
"regex": "jquery\\.fancybox(?:\\.pack|\\.min)?\\.js(?:\\?v=([\\d.]+))?$",
"type": "software"
},
"Firebase, script": {
"alias": "Firebase",
"regex": "/(?:([\\d.]+)/)?firebase(?:\\.min)?\\.js",
"type": "software"
},
"Flask, headers": {
"alias": "Werkzeug",
"regex": "Server:\\s*Werkzeug/?([\\d\\.]+)?",
"type": "software"
},
"FlexCMP, headers": {
"alias": "FlexCMP",
"regex": "X-Powered-By:\\s*FlexCMP.+\\[v\\. ([\\d.]+)",
"type": "software"
},
"FlexCMP, html": {
"alias": "FlexCMP",
"regex": "<!--[^>]+FlexCMP[^>v]+v\\. ([\\d.]+)",
"type": "software"
},
"Font Awesome, html": {
"alias": "Font Awesome",
"regex": "<link[^>]* href=[^>]+(?:([\\d.]+)/)?(?:css/)?font-awesome(?:\\.min)?\\.css",
"type": "software"
},
"FreeBSD, headers": {
"alias": "cpe:/o:freebsd:freebsd",
"regex": "Server:\\s*FreeBSD(?: ([\\d.]+))?",
"type": "cpe"
},
"Fusion Ads, script": {
"alias": "Fusion Ads",
"regex": "^[^\\/]*//[ac]dn\\.fusionads\\.net/(?:api/([\\d.]+)/)?",
"type": "software"
},
"Gitea, html": {
"alias": "Gitea",
"regex": "<div class=\"ui left\">\\n\\s+\u00a9 Gitea Version: ([\\d.]+)",
"type": "software"
},
"GlassFish, headers": {
"alias": "cpe:/a:oracle:glassfish_server",
"regex": "Server:\\s*GlassFish(?: Server)?(?: Open Source Edition)?(?: ?/?([\\d.]+))?",
"type": "cpe"
},
"Gogs, html": {
"alias": "Gogs",
"regex": "<div class=\"ui left\">\\n\\s+\u00a9 \\d{4} Gogs Version: ([\\d.]+) Page:",
"type": "software"
},
"Google Maps, script": {
"alias": "Google Maps Api",
"regex": "(?:maps\\.google\\.com/maps\\?file=api(?:&v=([\\d.]+))?|maps\\.google\\.com/maps/api/staticmap)",
"type": "software"
},
"Google PageSpeed, headers": {
"alias": "cpe:/a:google:mod_pagespeed",
"regex": "X-Mod-Pagespeed:\\s*([\\d.]+)",
"type": "cpe"
},
"Gravity Forms, script": {
"alias": "Gravity Forms",
"regex": "/wp-content/plugins/gravityforms/js/[^/]+\\.js\\?ver=([\\d.]+)$",
"type": "software"
},
"HERE, script": {
"alias": "HERE Maps JS API",
"regex": "https?://js\\.cit\\.api\\.here\\.com/se/([\\d.]+)\\/",
"type": "software"
},
"HHVM, headers": {
"alias": "cpe:/a:facebook:hhvm",
"regex": "X-Powered-By:\\s*HHVM/?([\\d.]+)?",
"type": "cpe"
},
"HP ChaiServer, headers": {
"alias": "HP ChaiServer",
"regex": "Server:\\s*HP-Chai(?:Server|SOE)(?:/([\\d.]+))?",
"type": "software"
},
"HP Compact Server, headers": {
"alias": "HP Compact Server",
"regex": "Server:\\s*HP_Compact_Server(?:/([\\d.]+))?",
"type": "software"
},
"HP iLO, headers": {
"alias": "cpe:/o:hp:integrated_lights-out",
"regex": "Server:\\s*HP-iLO-Server(?:/([\\d.]+))?",
"type": "cpe"
},
"Handlebars, script": {
"alias": "Handlebars js",
"regex": "handlebars(?:\\.runtime)?(?:-v([\\d.]+?))?(?:\\.min)?\\.js",
"type": "software"
},
"Hiawatha, headers": {
"alias": "Hiawatha",
"type": "software",
"regex": "Hiawatha v([\\d.]+)|Server:\\s*Hiawatha v([\\d.]+)"
},
"Hogan.js, script": {
"alias": "Hogan.js",
"regex": "([\\d.]+)/hogan(?:\\.min)?\\.js",
"type": "software"
},
"IBM HTTP Server, headers": {
"alias": "IBM HTTP Server",
"type": "software",
"regex": "IBM_HTTP_Server/([\\d.]+)|Server:\\s*IBM_HTTP_Server(?:/([\\d.]+))?"
},
"IBM Tivoli Storage Manager, headers": {
"alias": "cpe:/a:ibm:tivoli_storage_manager",
"regex": "Server:\\s*TSM_HTTP(?:/([\\d.]+))?",
"type": "cpe"
},
"IIS, headers": {
"alias": "cpe:/a:microsoft:iis",
"regex": "Server:\\s*(?:Microsoft-)?IIS(?:/([\\d.]+))?",
"type": "cpe"
},
"Indico, html": {
"alias": "CERN Indico",
"regex": "Powered by\\s+(?:CERN )?<a href=\"http://(?:cdsware\\.cern\\.ch/indico/|indico-software\\.org|cern\\.ch/indico)\">(?:CDS )?Indico( [\\d\\.]+)?",
"type": "software"
},
"Indy, headers": {
"alias": "Indy",
"regex": "Server:\\s*Indy(?:/([\\d.]+))?",
"type": "software"
},
"Intel Active Management Technology, headers": {
"alias": "cpe:/o:intel:active_management_technology_firmware",
"regex": "Server:\\s*Intel\\(R\\) Active Management Technology(?: ([\\d.]+))?",
"type": "cpe"
},
"Invenio, html": {
"alias": "CDS Invenio",
"regex": "(?:Powered by|System)\\s+(?:CERN )?<a (?:class=\"footer\" )?href=\"http://(?:cdsware\\.cern\\.ch(?:/invenio)?|invenio-software\\.org|cern\\.ch/invenio)(?:/)?\">(?:CDS )?Invenio</a>\\s*v?([\\d\\.]+)?",
"type": "software"
},
"JBoss Application Server, headers": {
"alias": "cpe:/a:redhat:jboss_community_application_server",
"regex": "X-Powered-By:\\s*JBoss(?:-([\\d.]+))?",
"type": "cpe"
},
"JBoss Web, headers": {
"alias": "cpe:/a:redhat:jboss_enterprise_web_server",
"regex": "X-Powered-By:\\s*JBossWeb(?:-([\\d.]+))?",
"type": "cpe"
},
"Java Servlet, headers": {
"alias": "Java Servlet",
"regex": "X-Powered-By:\\s*Servlet(?:.([\\d.]+))?",
"type": "software"
},
"JavaServer Faces, headers": {
"alias": "cpe:/a:oracle:mojarra",
"regex": "X-Powered-By:\\s*JSF(?:/([\\d.]+))?",
"type": "cpe"
},
"JavaServer Pages, headers": {
"alias": "JavaServer Pages",
"regex": "X-Powered-By:\\s*JSP(?:/([\\d.]+))?",
"type": "software"
},
"Jenkins, headers": {
"alias": "cpe:/a:jenkins:jenkins",
"regex": "X-Jenkins:\\s*([\\d.]+)",
"type": "cpe"
},
"Jenkins, html": {
"alias": "cpe:/a:jenkins:jenkins",
"regex": "<span class=\"jenkins_ver\"><a href=\"https://jenkins\\.io/\">Jenkins ver\\. ([\\d.]+)",
"type": "cpe"
},
"Joomla, headers": {
"alias": "joomla",
"regex": "X-Content-Encoded-By:\\s*Joomla! ([\\d.]+)",
"type": "software"
},
"Kibana, headers": {
"alias": "cpe:/a:elasticsearch:kibana",
"regex": "kbn-version:\\s*^([\\d.]+)$",
"type": "cpe"
},
"KineticJS, script": {
"alias": "KineticJS",
"regex": "kinetic(?:-v?([\\d.]+))?(?:\\.min)?\\.js",
"type": "software"
},
"Kohana, headers": {
"alias": "Kohana",
"regex": "X-Powered-By:\\s*Kohana Framework ([\\d.]+)",
"type": "software"
},
"Koken, script": {
"alias": "Koken",
"regex": "koken(?:\\.js\\?([\\d.]+)|/storage)",
"type": "software"
},
"LabVIEW, headers": {
"alias": "cpe:/a:ni:labview",
"regex": "Server:\\s*LabVIEW(?:/([\\d\\.]+))?",
"type": "cpe"
},
"Liferay, headers": {
"alias": "cpe:/a:liferay:liferay_portal",
"regex": "Liferay-Portal:\\s*[a-zA-Z\\s]+([\\d.]+)",
"type": "cpe"
},
"LinkSmart, script": {
"alias": "LinkSmart",
"regex": "^https?://cdn\\.linksmart\\.com/linksmart_([\\d.]+?)(?:\\.min)?\\.js",
"type": "software"
},
"Logitech Media Server, headers": {
"alias": "Logitech Media Server",
"regex": "Server:\\s*Logitech Media Server(?: \\(([\\d\\.]+))?",
"type": "software"
},
"Lua, headers": {
"alias": "cpe:/a:lua:lua",
"regex": "X-Powered-By:\\s*\\bLua(?: ([\\d.]+))?",
"type": "cpe"
},
"Material Design Lite, script": {
"alias": "Material Design lite",
"regex": "(?:/([\\d.]+))?/material(?:\\.min)?\\.js",
"type": "software"
},
"MathJax, script": {
"alias": "MathJax",
"regex": "([\\d.]+)?/mathjax\\.js",
"type": "software"
},
"MediaTomb, headers": {
"alias": "MediaTomb",
"regex": "Server:\\s*MediaTomb(?:/([\\d.]+))?",
"type": "software"
},
"Microsoft HTTPAPI, headers": {
"alias": "Microsoft HTTPAPI",
"type": "software",
"regex": "Microsoft-HTTPAPI/([\\d.]+)|Server:\\s*Microsoft-HTTPAPI(?:/([\\d.]+))?"
},
"Microsoft PowerPoint, html": {
"alias": "cpe:/a:microsoft:powerpoint",
"regex": "(?:<html [^>]*xmlns:w=\"urn:schemas-microsoft-com:office:powerpoint\"|<link rel=\"?Presentation-XML\"? href=\"?[^\"]+\\.xml\"?>|<o:PresentationFormat>[^<]+</o:PresentationFormat>[^!]+<o:Slides>\\d+</o:Slides>(?:[^!]+<o:Version>([\\d.]+)</o:Version>)?)",
"type": "cpe"
},
"MiniServ, headers": {
"alias": "MiniServ",
"regex": "Server:\\s*MiniServ\\/?([\\d\\.]+)?",
"type": "software"
},
"Mobirise, html": {
"alias": "Mobirise",
"regex": "<!-- Site made with Mobirise Website Builder v([\\d.]+)",
"type": "software"
},
"MochiWeb, headers": {
"alias": "cpe:/a:mochiweb_project:mochiweb",
"regex": "Server:\\s*MochiWeb(?:/([\\d.]+))?",
"type": "cpe"
},
"Modernizr, script": {
"alias": "Modernizr",
"regex": "([\\d.]+)?/modernizr(?:.([\\d.]+))?.*\\.js?\\1:\\2",
"type": "software"
},
"Monkey HTTP Server, headers": {
"alias": "cpe:/a:monkey-project:monkey_http_daemon",
"regex": "Server:\\s*Monkey/?([\\d.]+)?",
"type": "cpe"
},
"NextGEN Gallery, html": {
"alias": "cpe:/a:imagely:nextgen_gallery",
"regex": "<!-- <meta name=\"NextGEN\" version=\"([\\d.]+)\" /> -->",
"type": "cpe"
},
"Nginx, headers": {
"alias": "cpe:/a:nginx:nginx",
"regex": "Server:\\s*nginx(?:(?:-reuseport)?/([\\d.]+))?",
"type": "cpe"
},
"OpenResty, headers": {
"alias": "OpenResty",
"type": "software",
"regex": "openresty/([\\d.]+)|Server:\\s*openresty(?:/([\\d.]+))?"
},
"OpenSSL, headers": {
"alias": "OpenSSL",
"type": "software",
"regex": "OpenSSL/([a-z\\d.]+(-fips|-freebsd)?)|Server:\\s*OpenSSL(?:/([\\d.]+[a-z]?))?"
},
"Oracle Commerce, headers": {
"alias": "cpe:/a:oracle:commerce_platform",
"regex": "X-ATG-Version:\\s*(?:ATGPlatform/([\\d.]+))?",
"type": "cpe"
},
"Oracle HTTP Server, headers": {
"alias": "cpe:/a:oracle:http_server",
"regex": "Server:\\s*Oracle-HTTP-Server(?:/([\\d.]+))?",
"type": "cpe"
},
"Outlook Web App, html": {
"alias": "OWA",
"regex": "<link\\s[^>]*href=\"[^\"]*?([\\d.]+)/themes/resources/owafont\\.css",
"type": "software"
},
"PHP, headers": {
"alias": "cpe:/a:php:php",
"type": "cpe",
"regex": "PHP/([\\d]+[\\.]+(?:[-\\w\\d\\.]+)?)|Server:\\s*php/?([\\d.]+)?|X-Powered-By:\\s*php/?([\\d.]+)?"
},
"Perl, headers": {
"alias": "Perl",
"type": "software",
"regex": "Perl/v([\\d.]+)|Server:\\s*\\bPerl\\b(?: ?/?v?([\\d.]+))?"
},
"Phusion Passenger, headers": {
"alias": "cpe:/a:phusion:passenger",
"regex": "Server:\\s*Phusion Passenger ([\\d.]+)|X-Powered-By:\\s*Phusion Passenger ?([\\d.]+)?|Phusion Passenger(?: \\([a-zA-Z_/]+\\))? ([\\d.]+)",
"type": "cpe"
},
"Python, headers": {
"alias": "Python",
"regex": "Server:\\s*(?:^|\\s)Python(?:/([\\d.]+))?",
"type": "software"
},
"Raphael, script": {
"alias": "raphael",
"regex": "raphael(?:-([\\d.]+))?(?:\\.min)?\\.js",
"type": "software"
},
"React, script": {
"alias": "React",
"regex": "/([\\d.]+)/react(?:\\.min)?\\.js",
"type": "software"
},
"SPIP, headers": {
"alias": "cpe:/a:spip:spip",
"regex": "Composed-By:\\s*SPIP ([\\d.]+) @",
"type": "cpe"
},
"SUSE, headers": {
"alias": "cpe:/o:suse:linux_enterprise_server",
"regex": "Server:\\s*SUSE(?:/?\\s?-?([\\d.]+))?|X-Powered-By:\\s*SUSE(?:/?\\s?-?([\\d.]+))?",
"type": "cpe"
},
"Semantic-ui, script": {
"alias": "Semantic-ui",
"regex": "/semantic(?:-([\\d.]+))?(?:\\.min)?\\.js",
"type": "software"
},
"Shapecss, script": {
"alias": "Shapecss",
"regex": "/([\\d.]+)/shapecss(?:\\.min)?\\.js",
"type": "software"
},
"Shopware, html": {
"alias": "Shopware",
"regex": "<title>Shopware ([\\d\\.]+) [^<]+",
"type": "software"
},
"SimpleHTTP, headers": {
"alias": "SimpleHTTP",
"regex": "Server:\\s*SimpleHTTP(?:/([\\d.]+))?",
"type": "software"
},
"Slick, html": {
"alias": "Slick",
"regex": "<link [^>]+(?:/([\\d.]+)/)?slick-theme\\.css",
"type": "software"
},
"Slick, script": {
"alias": "Slick",
"regex": "(?:/([\\d.]+))?/slick(?:\\.min)?\\.js",
"type": "software"
},
"SonarQubes, html": {
"alias": "SonarQubes",
"regex": "<link href=\"/css/sonar\\.css\\?v=([\\d.]+)",
"type": "software"
},
"SonarQubes, script": {
"alias": "SonarQubes",
"regex": "^/js/bundles/sonar\\.js?v=([\\d.]+)$",
"type": "software"
},
"Splunk, html": {
"alias": "cpe:/a:splunk:splunk",
"regex": "<p class=\"footer\">© [-\\d]+ Splunk Inc\\.(?: Splunk ([\\d\\.]+(?: build [\\d\\.]*\\d)?))?[^<]*</p>",
"type": "cpe"
},
"SunOS, headers": {
"alias": "cpe:/o:sun:sunos",
"regex": "Server:\\s*SunOS( [\\d\\.]+)?|Servlet-engine:\\s*SunOS( [\\d\\.]+)?",
"type": "cpe"
},
"TeamCity, html": {
"alias": "cpe:/a:jetbrains:teamcity",
"regex": "<span class=\"versionTag\"><span class=\"vWord\">Version</span> ([\\d\\.]+)",
"type": "cpe"
},
"TornadoServer, headers": {
"alias": "cpe:/a:tornadoweb:tornado",
"regex": "Server:\\s*TornadoServer(?:/([\\d.]+))?",
"type": "cpe"
},
"Trac, html": {
"alias": "cpe:/a:edgewall_software:trac",
"regex": "Powered by <a href=\"[^\"]*\"><strong>Trac(?:[ /]([\\d.]+))?",
"type": "cpe"
},
"TwistedWeb, headers": {
"alias": "cpe:/a:twistedmatrix:twistedweb",
"regex": "Server:\\s*TwistedWeb(?:/([\\d.]+))?",
"type": "cpe"
},
"Underscore.js, script": {
"alias": "Underscore.js",
"regex": "underscore.*\\.js(?:\\?ver=([\\d.]+))?",
"type": "software"
},
"Vaadin, script": {
"alias": "Vaadin",
"regex": "vaadinBootstrap\\.js(?:\\?v=([\\d.]+))?",
"type": "software"
},
"Varnish, headers": {
"alias": "cpe:/a:varnish-cache:varnish",
"regex": "Via:\\s*varnish(?: \\(Varnish/([\\d.]+)\\))?",
"type": "cpe"
},
"Vue.js, script": {
"alias": "Vue.js",
"type": "software",
"regex": "/([\\d.]+)/vue(?:\\.min)?\\.js"
},
"W3 Total Cache, headers": {
"alias": "cpe:/a:w3edge:total_cache",
"regex": "X-Powered-By:\\s*W3 Total Cache(?:/([\\d.]+))?",
"type": "cpe"
},
"WP Rocket, headers": {
"alias": "WP Rocket",
"regex": "X-Powered-By:\\s*WP Rocket(?:/([\\d.]+))?",
"type": "software"
},
"Webdev, html": {
"alias": "Webdev",
"regex": "<!-- [a-zA-Z0-9_]+ [\\d/]+ [\\d:]+ WebDev \\d\\d ([\\d.]+) -->",
"type": "software"
},
"Webs, headers": {
"alias": "Webs",
"regex": "Server:\\s*Webs\\.com/?([\\d\\.]+)?",
"type": "software"
},
"Winstone Servlet Container, headers": {
"alias": "cpe:/a:jenkins:jenkins",
"regex": "Server:\\s*Winstone Servlet (?:Container|Engine) v?([\\d.]+)?|X-Powered-By:\\s*Winstone(?:.([\\d.]+))?",
"type": "cpe"
},
"WooCommerce, html": {
"alias": "cpe:/a:woocommerce:woocommerce",
"regex": "<link rel='[^']+' id='woocommerce-(?:layout|smallscreen|general)-css' href='https?://[^/]+/wp-content/plugins/woocommerce/assets/css/woocommerce(?:-layout|-smallscreen)?\\.css?ver=([\\d.]+)'",
"type": "cpe"
},
"Wowza Media Server, html": {
"alias": "Wowza Streaming Engine",
"regex": "<title>Wowza Media Server \\d+ ((?:\\w+ Edition )?\\d+\\.[\\d\\.]+(?: build\\d+)?)?",
"type": "software"
},
"XAMPP, html": {
"alias": "cpe:/a:apache_friends:xampp",
"regex": "<title>XAMPP(?: Version ([\\d\\.]+))?</title>",
"type": "cpe"
},
"XRegExp, script": {
"alias": "XRegExp",
"regex": "/([\\d.]+)/xregexp(?:\\.min)?\\.js",
"type": "software"
},
"Xitami, headers": {
"alias": "cpe:/a:imatix:xitami",
"regex": "Server:\\s*Xitami(?:/([\\d.]+))?",
"type": "cpe"
},
"YUI Doc, html": {
"alias": "YUI Doc",
"regex": "(?:<html[^>]* yuilibrary\\.com/rdf/[\\d.]+/yui\\.rdf|<body[^>]+class=\"yui3-skin-sam)",
"type": "software"
},
"Yaws, headers": {
"alias": "cpe:/a:yaws:yaws",
"regex": "Server:\\s*Yaws(?: ([\\d.]+))?",
"type": "cpe"
},
"Yoast SEO, html": {
"alias": "cpe:/a:yoast:wordpress_seo",
"regex": "<!-- This site is optimized with the Yoast (?:WordPress )?SEO plugin v([\\d.]+) -",
"type": "cpe"
},
"WP-Statistics, html": {
"alias": "WP-Statistics",
"regex": "<!-- Analytics by WP-Statistics v([\\d.]+) -",
"type": "software"
},
"animate.css, html": {
"alias": "animate.css",
"regex": "<link [^>]+(?:/([\\d.]+)/)?animate\\.(?:min\\.)?css",
"type": "software"
},
"cPanel, headers": {
"alias": "cpe:/a:cpanel:cpanel",
"regex": "Server:\\s*cpsrvd/([\\d.]+)",
"type": "cpe"
},
"debut, headers": {
"alias": "debut",
"regex": "Server:\\s*debut\\/?([\\d\\.]+)?",
"type": "software"
},
"gitlist, html": {
"alias": "gitlist",
"regex": "<p>Powered by <a[^>]+>GitList ([\\d.]+)",
"type": "software"
},
"gitweb, html": {
"alias": "gitweb",
"regex": "<!-- git web interface version ([\\d.]+)?",
"type": "software"
},
"gunicorn, headers": {
"alias": "gunicorn",
"regex": "Server:\\s*gunicorn(?:/([\\d.]+))?",
"type": "software"
},
"jQuery, script": {
"alias": "cpe:/a:jquery:jquery",
"regex": "/([\\d.]+)/jquery(?:\\.min)?\\.js|jquery.*\\.js(?:\\?ver(?:sion)?=([\\d.]+))?",
"type": "cpe"
},
"jQuery Migrate, script": {
"alias": "jQuery Migrate",
"regex": "jquery[.-]migrate(?:-([\\d.]+))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))??",
"type": "software"
},
"jQuery-pjax, script": {
"alias": "jQuery-pjax",
"regex": "jquery[.-]pjax(?:-([\\d.]))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))??",
"type": "software"
},
"jQuery UI, script": {
"alias": "cpe:/a:jqueryui:jquery_ui",
"regex": "([\\d.]+)/jquery-ui(?:\\.min)?\\.js",
"type": "cpe"
},
"libwww-perl-daemon, headers": {
"alias": "libwww-perl-daemon",
"regex": "Server:\\s*libwww-perl-daemon(?:/([\\d\\.]+))?",
"type": "software"
},
"lighttpd, headers": {
"alias": "cpe:/a:lighttpd:lighttpd",
"type": "cpe",
"regex": "lighttpd/([\\d.]+)|Server:\\s*lighttpd(?:/([\\d.]+))?"
},
"mini_httpd, headers": {
"alias": "cpe:/a:acme:mini_httpd",
"regex": "Server:\\s*mini_httpd(?:/([\\d.]+))?",
"type": "cpe"
},
"mod_auth_pam, headers": {
"alias": "mod_auth_pam",
"regex": "Server:\\s*mod_auth_pam(?:/([\\d\\.]+))?",
"type": "software"
},
"mod_dav, headers": {
"alias": "mod_dav",
"regex": "Server:\\s*\\b(?:mod_)?DAV\\b(?:/([\\d.]+))?",
"type": "software"
},
"mod_fastcgi, headers": {
"alias": "mod_fastcgi",
"regex": "Server:\\s*mod_fastcgi(?:/([\\d.]+))?",
"type": "software"
},
"mod_jk, headers": {
"alias": "mod_jk",
"type": "software",
"regex": "mod_jk/([\\d.]+)|Server:\\s*mod_jk(?:/([\\d\\.]+))?"
},
"mod_perl, headers": {
"alias": "cpe:/a:apache:mod_perl",
"type": "cpe",
"regex": "mod_perl/([\\d.]+)|Server:\\s*mod_perl(?:/([\\d\\.]+))?"
},
"mod_python, headers": {
"alias": "cpe:/a:apache:mod_python",
"regex": "Server:\\s*mod_python(?:/([\\d.]+))?",
"type": "cpe"
},
"mod_rack, headers": {
"alias": "cpe:/a:apache:mod_rack",
"regex": "Server:\\s*mod_rack(?:/([\\d.]+))?|X-Powered-By:\\s*mod_rack(?:/([\\d.]+))?",
"type": "cpe"
},
"mod_rails, headers": {
"alias": "cpe:/a:apache:mod_rails",
"regex": "Server:\\s*mod_rails(?:/([\\d.]+))?|X-Powered-By:\\s*mod_rails(?:/([\\d.]+))?",
"type": "cpe"
},
"mod_ssl, headers": {
"alias": "cpe:/a:modssl:mod_ssl",
"type": "cpe",
"regex": "mod_ssl/([\\d.]+)|Server:\\s*mod_ssl(?:/([\\d.]+))?"
},
"mod_wsgi, headers": {
"alias": "cpe:/a:modwsgi:mod_wsgi",
"regex": "Server:\\s*mod_wsgi(?:/([\\d.]+))?|X-Powered-By:\\s*mod_wsgi(?:/([\\d.]+))?",
"type": "cpe"
},
"phpMyAdmin, html": {
"alias": "phpmyadmin",
"regex": "(?: \\| phpMyAdmin ([\\d.]+)<\\/title>|PMA_sendHeaderLocation\\(|<link [^>]*href=\"[^\"]*phpmyadmin\\.css\\.php)",
"type": "software"
},
"thttpd, headers": {
"alias": "cpe:/a:acme_labs:thttpd",
"regex": "Server:\\s*\\bthttpd(?:/([\\d.]+))?",
"type": "cpe"
},
"uKnowva, headers": {
"alias": "uKnowva",
"regex": "X-Content-Encoded-By:\\s*uKnowva ([\\d.]+)",
"type": "software"
},
"wpCache, headers": {
"alias": "wpCache",
"regex": "X-Powered-By:\\s*wpCache(?:/([\\d.]+))?",
"type": "software"
},
"Google Web Toolkit (GWT), headers": {
"regex": "\\$gwt_version\\s?=\\s?\"([\\d.]+)\"",
"alias": "cpe:/a:google:web_toolkit",
"type": "cpe"
},
"accounting.js, headers": {
"regex": "accounting\\.js v([\\d.]+)",
"alias": "accounting.js",
"type": "software"
},
"Alterian-CME, headers": {
"regex": "Alterian-CME/([\\d.]+)",
"alias": "Alterian-CME",
"type": "software"
},
"Amazon Linux, headers": {
"regex": "([-\\d.]+)amzn1.x86_64",
"alias": "Amazon Linux",
"type": "software"
},
"AOL web Server, headers": {
"regex": "AOLserver/([\\d.]+)",
"alias": "AOL web Server",
"type": "software"
},
"Apache Coyote (Tomcat), headers": {
"regex": "Apache-Coyote/([\\d.]+)",
"alias": "cpe:/a:apache:tomcat",
"type": "cpe"
},
"Apache Subversion": {
"regex": ">Apache Subversion</a>\\s+version\\s+([\\d.]+(?:\\s*\\(r\\d+\\))?)",
"alias": "cpe:/a:apache:subversion",
"type": "cpe"
},
"IIS Application Request Routing, headers": {
"regex": "ARR/([\\d.]+)",
"alias": "IIS Application Request Routing",
"type": "software"
},
"ASP.Net, headers": {
"regex": "X-AspNet-Version: ([\\d.]+)",
"alias": "cpe:/a:microsoft:asp.net",
"type": "cpe"
},
"AWS Elastic Load Balancer, headers": {
"regex": "awselb/([\\d.]+)",
"alias": "AWS Elastic Load Balancer",
"type": "software"
},
"BOA Web Server, headers": {
"regex": "BOA/([\\d.]+)",
"alias": "cpe:/a:boa:boa",
"type": "cpe"
},
"CKEditor, headers": {
"regex": "CKEDITOR.*version:\"([\\d.]+)\"",
"alias": "cpe:/a:ckeditor:ckeditor",
"type": "cpe"
},
"Adobe Communique, headers": {
"regex": "Communique/([\\d.-]+)",
"alias": "Adobe Communique",
"type": "software"
},
"Ember, headers": {
"regex": "Ember\\.VERSION\\s*=\\s*[\"']([\\w.]+)[\"']",
"alias": "cpe:/a:emberjs:ember.js",
"type": "cpe"
},
"H2O, headers": {
"regex": "h2o/([\\d.]+(-DEV)?)",
"alias": "cpe:/a:h2o_project:h2o",
"type": "cpe"
},
"Handlebars.js, headers": {
"regex": "Handlebars\\.VERSION\\s*=\\s*[\"']([\\w.]+)[\"']",
"alias": "Handlebars",
"type": "software"
},
"360vision CCTV Web Server, headers": {
"regex": "IWeb/([\\d.]+)",
"alias": "360vision CCTV Web Server",
"type": "software"
},
"Jetty, headers": {
"regex": "Jetty\\s?\\(?([a-z\\d.]+)\\)?",
"alias": "cpe:/a:mortbay:jetty",
"type": "cpe"
},
"JBoss, headers": {
"regex": "JBPAPP_([\\d_]+(?:GA)?)",
"alias": "cpe:/a:redhat:jboss",
"type": "cpe"
},
"JBoss Enterprise Application Platform, headers": {
"regex": "JBoss-EAP/([\\d.]+)",
"alias": "cpe:/a:redhat:jboss_enterprise_application_platform",
"type": "cpe"
},
"JBoss Webserver, headers": {
"regex": "JBoss\\s?Web[/-]{1}([\\d.]+(?:GA)?)",
"alias": "cpe:/a:redhat:jboss",
"type": "cpe"
},
"Java JDK, headers": {
"regex": "\\bjdk(\\d[x\\d._]+)",
"alias": "cpe:/a:oracle:jdk",
"type": "cpe"
},
"Joomla!, headers": {
"regex": "Joomla! ([\\d.]+)",
"alias": "Joomla",
"type": "software"
},
"Java Server Faces, headers": {
"regex": "\\bJSF/([\\d.]+)",
"alias": "cpe:/a:oracle:mojarra",
"type": "cpe"
},
"Generic Java Servlet engine, headers": {
"regex": "Servlet[ /]([\\d.]+)",
"alias": "Java Servlet",
"type": "software"
},
"jQuery JavaScript Library, headers": {
"regex": "jQuery JavaScript Library v([\\d.]+)",
"alias": "jquery",
"type": "software"
},
"jQuery UI Core, headers": {
"regex": "jQuery UI Core ([\\d.]+)",
"alias": "jquery-ui",
"type": "software"
},
"jQuery UI Touch Punch, headers": {
"regex": "jQuery UI Touch Punch ([\\d.]+)",
"alias": "cpe:/a:jquery:jquery_ui",
"type": "cpe"
},
"jQuery hashchange event, headers": {
"regex": "jQuery hashchange event - v([\\d.]+)",
"alias": "jQuery hashchange event",
"type": "software"