summaryrefslogtreecommitdiff
path: root/wappalyzer/src/technologies/w.json
blob: 514f7870f99321e6b2342f33a620a9ee48d5ac4a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
{
  "W3 Total Cache": {
    "cats": [
      23,
      87
    ],
    "description": "W3 Total Cache (W3TC) improves the SEO and increases website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.",
    "headers": {
      "X-Powered-By": "W3 Total Cache(?:/([\\d.]+))?\\;version:\\1"
    },
    "html": "<!--[^>]+W3 Total Cache",
    "icon": "W3 Total Cache.png",
    "requires": "WordPress",
    "website": "http://www.w3-edge.com/wordpress-plugins/w3-total-cache"
  },
  "W3Counter": {
    "cats": [
      10
    ],
    "icon": "W3Counter.png",
    "scriptSrc": "w3counter\\.com/tracker\\.js",
    "website": "http://www.w3counter.com"
  },
  "WEBDEV": {
    "cats": [
      20
    ],
    "description": "WEBDEV is a tool to develop internet and intranet sites and applications that support data and processes",
    "headers": {
      "WebDevSrc": ""
    },
    "html": "<!-- [a-zA-Z0-9_]+ [\\d/]+ [\\d:]+ WebDev \\d\\d ([\\d.]+) -->\\;version:\\1",
    "icon": "webdev.png",
    "meta": {
      "generator": "^WEBDEV$"
    },
    "website": "https://www.windev.com/webdev/index.html"
  },
  "WEBXPAY": {
    "cats": [
      6
    ],
    "html": "Powered by <a href=\"https://www\\.webxpay\\.com\">WEBXPAY<",
    "icon": "WEBXPAY.png",
    "js": {
      "WEBXPAY": ""
    },
    "website": "https://webxpay.com"
  },
  "WEN Themes Education Hub": {
    "cats": [
      80
    ],
    "description": "WEN Themes Education Hub is a clean and elegant WordPress education theme.",
    "icon": "WEN Themes.png",
    "js": {
      "EducationHubScreenReaderText": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/education-hub(?:-pro)?/",
    "website": "https://wenthemes.com/item/wordpress-themes/education-hub"
  },
  "WEN Themes Signify Dark": {
    "cats": [
      80
    ],
    "description": "Signify Dark is a free dark blog and corporate WordPress theme that is trendy, responsive, and dynamic by WEN Themes.",
    "icon": "WEN Themes.png",
    "js": {
      "signifyOptions": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "website": "https://wenthemes.com/item/wordpress-themes/signify-dark"
  },
  "WHMCS": {
    "cats": [
      1
    ],
    "description": "WHMCS is an automation platform that simplifies and automates all aspects of operating an online web hosting and domain registrar business.",
    "icon": "WHMCS.png",
    "js": {
      "WHMCS": ""
    },
    "oss": true,
    "pricing": [
      "low",
      "recurring"
    ],
    "website": "http://www.whmcs.com"
  },
  "WP Engine": {
    "cats": [
      62,
      88
    ],
    "description": "WP Engine is a website hosting provider.",
    "headers": {
      "X-Pass-Why": "",
      "X-Powered-By": "WP Engine",
      "X-WPE-Loopback-Upstream-Addr": "",
      "wpe-backend": ""
    },
    "icon": "wpengine.svg",
    "implies": "WordPress",
    "website": "https://wpengine.com"
  },
  "WP Fastest Cache": {
    "cats": [
      87,
      92
    ],
    "description": "WP Fastest Cache is one of a number of plugins for WordPress designed to accelerate the performance of your website.",
    "dom": "link[href*='/wp-content/cache/wpfc-minified/']",
    "icon": "WP Fastest Cache.png",
    "js": {
      "Wpfcll": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/cache/wpfc-minified/",
    "website": "https://www.wpfastestcache.com"
  },
  "WP Google Map Plugin": {
    "cats": [
      87,
      35
    ],
    "description": "WP Google Map Plugin allows you to create google maps shortcodes to display responsive google maps on pages, widgets and custom templates.",
    "icon": "WP Google Map Plugin.png",
    "js": {
      "wpgmp_local": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wp-google-map-plugin/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://www.wpmapspro.com"
  },
  "WP Maintenance Mode": {
    "cats": [
      87
    ],
    "description": "WP Maintenance Mode is a WordPress plugin which add a maintenance page to your blog.",
    "icon": "WP Maintenance Mode.png",
    "js": {
      "wpmm_vars": ""
    },
    "oss": true,
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wp-maintenance-mode/.+wpmm\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://github.com/andrianvaleanu/WP-Maintenance-Mode"
  },
  "WP Puzzle Basic": {
    "cats": [
      80
    ],
    "description": "WP Puzzle Basic is fully responsive, clean and minimal WordPress theme.",
    "icon": "WP Puzzle.svg",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/basic/",
    "website": "https://wp-puzzle.com/basic"
  },
  "WP Rocket": {
    "cats": [
      23,
      87
    ],
    "description": "WP Rocket is a caching and performance optimisation plugin to improve the loading speed of WordPress websites.",
    "headers": {
      "X-Powered-By": "WP Rocket(?:/([\\d.]+))?\\;version:\\1",
      "X-Rocket-Nginx-Bypass": ""
    },
    "html": "<!--[^>]+WP Rocket",
    "icon": "WP Rocket.png",
    "requires": "WordPress",
    "website": "http://wp-rocket.me"
  },
  "WP-Optimize": {
    "cats": [
      87,
      92
    ],
    "description": "WP-Optimize is an all-in-one WordPress plugin that cleans your database, compresses your large images and caches your site.",
    "html": "<!--[^>]+Cached by WP-Optimize",
    "icon": "WP-Optimize.png",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "website": "https://getwpo.com"
  },
  "WP-PageNavi": {
    "cats": [
      87
    ],
    "description": "WP-PageNavi is a WordPress plugin which adds a more advanced paging navigation interface to your WordPress blog.",
    "dom": "link[href*='/wp-content/plugins/wp-pagenavi/']",
    "icon": "WP-PageNavi.svg",
    "oss": true,
    "requires": "WordPress",
    "website": "https://github.com/lesterchan/wp-pagenavi"
  },
  "WP-Royal Ashe": {
    "cats": [
      80
    ],
    "description": "WP-Royal Ashe is a personal and multi-author WordPress blog theme.",
    "dom": "link#ashe-style-css",
    "icon": "WP-Royal.png",
    "js": {
      "ashePreloader": "",
      "asheStickySidebar": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/ashe(?:-pro-premium)?/",
    "website": "https://wp-royal.com/themes/item-ashe-free"
  },
  "WP-Royal Bard": {
    "cats": [
      80
    ],
    "description": "WP-Royal Bard is a personal and multi-author WordPress blog theme.",
    "dom": "link#bard-style-css, style#bard_predefined_custom_css",
    "icon": "WP-Royal.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/bard(?:-pro-premium)?/",
    "website": "https://wp-royal.com/themes/item-bard-free"
  },
  "WP-Statistics": {
    "cats": [
      10,
      87
    ],
    "description": "WP-Statistics is a WordPress plugin which allows you to know your website statistics.",
    "dom": "link[href*='/wp-content/plugins/wp-statistics/']",
    "icon": "WP-Statistics.svg",
    "js": {
      "WP_Statistics_http": "",
      "wps_statistics_object": ""
    },
    "oss": true,
    "pricing": [
      "onetime"
    ],
    "requires": "WordPress",
    "website": "https://wp-statistics.com"
  },
  "WPCacheOn": {
    "cats": [
      23,
      87
    ],
    "description": "WPCacheOn is a caching and performance optimisation plugin, which improves the loading speed of WordPress websites.",
    "headers": {
      "x-powered-by": "^Optimized by WPCacheOn"
    },
    "icon": "WPCacheOn.png",
    "requires": [
      "WordPress"
    ],
    "website": "https://wpcacheon.io"
  },
  "WPForms": {
    "cats": [
      87
    ],
    "description": "WPForms is a drag and drop WordPress form builder.",
    "icon": "WPForms.svg",
    "js": {
      "wpforms": "",
      "wpforms_settings": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wpforms(?:-lite)?/.+(?:frontend\\.min|wpforms)\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://wpforms.com"
  },
  "WPMU DEV Smush": {
    "cats": [
      87
    ],
    "description": "WPMU DEV Smush is a WordPress plugin that allows you to optimise images without losing quality.",
    "icon": "WPMU DEV.png",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wp-smushit(?:-pro)?/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://wpmudev.com/project/wp-smush-pro"
  },
  "Wagtail": {
    "cats": [
      1
    ],
    "description": "Wagtail is a Django content management system (CMS) focused on flexibility and user experience.",
    "dom": {
      "[data-block-key]": {
        "attributes": {
          "data-block-key": "[a-z0-9]{5}"
        }
      },
      "[style*='images/']": {
        "attributes": {
          "style": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
        }
      },
      "img[src*='images/']": {
        "attributes": {
          "src": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
        }
      },
      "img[srcset*='images/'], source[srcset*='images/']": {
        "attributes": {
          "srcset": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
        }
      },
      "meta[content*='images/']": {
        "attributes": {
          "content": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
        }
      },
      "style, script": {
        "text": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
      },
      "video[poster*='images/']": {
        "attributes": {
          "poster": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
        }
      }
    },
    "icon": "Wagtail.svg",
    "implies": [
      "Django",
      "Python"
    ],
    "oss": true,
    "website": "https://wagtail.io/"
  },
  "Wair": {
    "cats": [
      76,
      5
    ],
    "description": "Wair is the widget to personalised fit.",
    "icon": "Wair.png",
    "js": {
      "PredictV3.default.version": "([\\d.]+)\\;version:\\1",
      "predictWidget": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "getwair\\.com",
    "website": "https://getwair.com"
  },
  "Wakav Performance Monitoring": {
    "cats": [
      78
    ],
    "description": "Wakav Performance Monitoring is a real user monitoring (RUM), Web/App performance and availability test platform.",
    "icon": "Wakav Performance Monitoring.png",
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "rum\\.wakav\\.ir/",
    "website": "https://www.wakav.ir"
  },
  "WalkMe": {
    "cats": [
      58
    ],
    "description": "WalkMe is a cloud-based interactive guidance and engagement platform.",
    "dom": "link[href*='.walkme.com']",
    "icon": "WalkMe.svg",
    "js": {
      "WalkMeAPI": "",
      "_walkmeConfig": ""
    },
    "pricing": [
      "high",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.walkme.com"
  },
  "Wangsu": {
    "cats": [
      31
    ],
    "description": "Wangsu is a China-based company that provides content delivery network and internet data center services.",
    "icon": "Wangsu.png",
    "js": {
      "__cdnRoute": "^wangsu$",
      "playurl.wangsu": ""
    },
    "website": "https://en.wangsu.com"
  },
  "Warp": {
    "cats": [
      22
    ],
    "headers": {
      "Server": "^Warp/(\\d+(?:\\.\\d+)+)?$\\;version:\\1"
    },
    "icon": "Warp.png",
    "implies": "Haskell",
    "website": "http://www.stackage.org/package/warp"
  },
  "Weaver Xtreme": {
    "cats": [
      80
    ],
    "description": "Weaver Xtreme is the orginal options-based WordPress theme.",
    "dom": "link#weaverx-style-sheet-css",
    "icon": "Weaver Xtreme.png",
    "js": {
      "weaverxBottomFooter": "",
      "weaverxMonitorContent": "",
      "weaverxOnResize": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/weaver-xtreme/.+weaverxjslib-end\\.min.\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://weavertheme.com"
  },
  "Web Shop Manager": {
    "cats": [
      6
    ],
    "description": "Web Shop Manager is an ecommerce and search platform for the automotive industry and markets with complex product catalogs.",
    "icon": "Web Shop Manager.png",
    "js": {
      "WSM.Tracking": "",
      "WSM_CHART_COLORS_OPAQUE": "",
      "wsmHideHelpBox": "",
      "wsm_catalogTabby": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://webshopmanager.com"
  },
  "Web Stories": {
    "cats": [
      5
    ],
    "description": "Web Stories is a format for visual storytelling for the open web.",
    "dom": "amp-story",
    "icon": "Web-Stories.svg",
    "implies": "AMP",
    "oss": true,
    "website": "https://amp.dev/about/stories/"
  },
  "Web Stories for WordPress": {
    "cats": [
      20,
      87
    ],
    "description": "Web Stories for WordPress is a visual editor for creating Web Stories.",
    "icon": "Web-Stories.svg",
    "implies": "Web Stories",
    "meta": {
      "amp-story-generator-name": "^Web Stories for WordPress$",
      "amp-story-generator-version": "^(.+)$\\;version:\\1"
    },
    "oss": true,
    "requires": "WordPress",
    "website": "https://wp.stories.google"
  },
  "Web2py": {
    "cats": [
      18
    ],
    "headers": {
      "X-Powered-By": "web2py"
    },
    "icon": "Web2py.png",
    "implies": [
      "Python",
      "jQuery"
    ],
    "meta": {
      "generator": "^Web2py"
    },
    "scriptSrc": "web2py\\.js",
    "website": "http://web2py.com"
  },
  "WebAssembly": {
    "cats": [
      27
    ],
    "description": "WebAssembly (abbreviated Wasm) is a binary instruction format for a stack-based virtual machine. Wasm is designed as a portable compilation target for programming languages, enabling deployment on the web for client and server applications.",
    "headers": {
      "Content-Type": "application/wasm"
    },
    "icon": "WebAssembly.svg",
    "oss": true,
    "website": "https://webassembly.org/"
  },
  "WebEngage": {
    "cats": [
      32,
      76
    ],
    "description": "WebEngage is a customer data platform and marketing automation suite.",
    "icon": "WebEngage.png",
    "js": {
      "webengage.__v": "([\\d.]+)\\;version:\\1"
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.webengage\\.co(?:m)?/",
    "website": "https://webengage.com"
  },
  "WebFactory Maintenance": {
    "cats": [
      87
    ],
    "description": "WebFactory Maintenance is a WordPress plugin which allows you to create an maintenance page.",
    "dom": "link[href*='/wp-content/plugins/maintenance/']",
    "icon": "WebFactory.png",
    "js": {
      "mtnc_front_options": ""
    },
    "oss": true,
    "requires": "WordPress",
    "website": "https://wordpress.org/plugins/maintenance"
  },
  "WebFactory Under Construction": {
    "cats": [
      87
    ],
    "description": "WebFactory Under Construction is a WordPress plugin which allows you to create an under construction page.",
    "dom": "link[href*='/wp-content/plugins/under-construction-page/']",
    "icon": "WebFactory.png",
    "oss": true,
    "requires": "WordPress",
    "website": "https://wordpress.org/plugins/under-construction-page"
  },
  "WebGUI": {
    "cats": [
      1
    ],
    "cookies": {
      "wgSession": ""
    },
    "icon": "WebGUI.png",
    "implies": "Perl",
    "meta": {
      "generator": "^WebGUI ([\\d.]+)\\;version:\\1"
    },
    "website": "http://www.webgui.org"
  },
  "WebHostUK": {
    "cats": [
      88
    ],
    "description": "WebHostUK is a UK based web hosting company offering cheap yet reliable and secure web hosting solutions on both Linux and Windows servers.",
    "dns": {
      "NS": "ns2\\d\\.dnshostcentral\\.com",
      "SOA": "ns2\\d\\.dnshostcentral\\.com"
    },
    "icon": "WebHostUK.png",
    "pricing": [
      "recurring",
      "low"
    ],
    "website": "https://www.webhostuk.co.uk"
  },
  "WebMetric": {
    "cats": [
      10
    ],
    "cookies": {
      "_wmuid": ""
    },
    "icon": "WebMetric.svg",
    "js": {
      "_wmid": ""
    },
    "scriptSrc": "cdn\\.webmetric\\.ir",
    "website": "https://webmetric.ir/"
  },
  "WebNode": {
    "cats": [
      1,
      51
    ],
    "cookies": {
      "_gat_wnd_header": ""
    },
    "description": "Webnode is a drag-and-drop online website builder.",
    "icon": "WebNode.svg",
    "js": {
      "wnd.$system": ""
    },
    "meta": {
      "generator": "^Webnode(?:\\s([\\d.]+))?$\\;version:\\1"
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.webnode.com"
  },
  "WebRTC": {
    "cats": [
      19
    ],
    "description": "WebRTC is an open-source project that enables real-time voice, text and video communications capabilities between web browsers and devices.",
    "icon": "WebRTC.svg",
    "oss": true,
    "website": "https://webrtc.org"
  },
  "WebSite X5": {
    "cats": [
      20
    ],
    "description": "WebSite X5 is a tools to create and publish websites.",
    "icon": "WebSite X5.png",
    "meta": {
      "generator": "Incomedia WebSite X5 (\\w+ [\\d.]+)\\;version:\\1"
    },
    "website": "http://websitex5.com"
  },
  "Webflow": {
    "cats": [
      51
    ],
    "description": "Webflow is Software-as-a-Service (Saas) for website building and hosting.",
    "html": "<html[^>]+data-wf-site",
    "icon": "webflow.svg",
    "js": {
      "Webflow": ""
    },
    "meta": {
      "generator": "Webflow"
    },
    "website": "https://webflow.com"
  },
  "Webgains": {
    "cats": [
      71
    ],
    "description": "Webgains is an affiliate marketing network.",
    "icon": "Webgains.svg",
    "js": {
      "ITCLKQ": ""
    },
    "scriptSrc": "analytics\\.webgains\\.io",
    "website": "https://www.webgains.com/"
  },
  "Webix": {
    "cats": [
      12
    ],
    "icon": "Webix.png",
    "js": {
      "webix": ""
    },
    "scriptSrc": "\\bwebix\\.js",
    "website": "http://webix.com"
  },
  "Weblium": {
    "cats": [
      1,
      6
    ],
    "description": "Weblium let's you create a web site or online store without the need for a web developer or designer.",
    "dom": "link[href*='res2.weblium.site']",
    "icon": "Weblium.svg",
    "implies": [
      "Node.js",
      "OpenResty",
      "React"
    ],
    "pricing": [
      "low",
      "freemium",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "res2\\.weblium\\.site/common/core\\.min\\.js",
    "url": "\\.weblium\\.site",
    "website": "https://weblium.com"
  },
  "Webriti Busiprof": {
    "cats": [
      80
    ],
    "description": "Busiprof is a fully responsive and translation-ready WordPress theme by Webriti.",
    "icon": "Webriti.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/busiprof(?:-pro)?/",
    "website": "https://webriti.com/busiprof-premium-wordpress-theme-1"
  },
  "WebsPlanet": {
    "cats": [
      1
    ],
    "icon": "WebsPlanet.png",
    "meta": {
      "generator": "WebsPlanet"
    },
    "website": "http://websplanet.com"
  },
  "Websale": {
    "cats": [
      6
    ],
    "cookies": {
      "websale_ac": ""
    },
    "icon": "Websale.png",
    "website": "http://websale.de"
  },
  "Website Creator": {
    "cats": [
      1
    ],
    "icon": "WebsiteCreator.png",
    "implies": [
      "PHP",
      "MySQL",
      "Vue.js"
    ],
    "meta": {
      "generator": "Website Creator by hosttech",
      "wsc_rendermode": ""
    },
    "website": "https://www.hosttech.ch/websitecreator"
  },
  "WebsiteBaker": {
    "cats": [
      1
    ],
    "icon": "WebsiteBaker.png",
    "implies": [
      "PHP",
      "MySQL"
    ],
    "meta": {
      "generator": "WebsiteBaker"
    },
    "website": "http://websitebaker2.org/en/home.php"
  },
  "Websocket": {
    "cats": [
      19
    ],
    "html": [
      "<link[^>]+rel=[\"']web-socket[\"']",
      "<(?:link|a)[^>]+href=[\"']wss?://"
    ],
    "icon": "websocket.png",
    "website": "https://en.wikipedia.org/wiki/WebSocket"
  },
  "Webtrends": {
    "cats": [
      10
    ],
    "html": "<img[^>]+id=\"DCSIMG\"[^>]+webtrends",
    "icon": "Webtrends.png",
    "js": {
      "WTOptimize": "",
      "WebTrends": ""
    },
    "website": "http://worldwide.webtrends.com"
  },
  "Webzi": {
    "cats": [
      1
    ],
    "icon": "Webzi.svg",
    "js": {
      "Webzi": ""
    },
    "meta": {
      "generator": "^Webzi"
    },
    "scriptSrc": "cdn\\.6th\\.ir",
    "website": "https://webzi.ir"
  },
  "Weebly": {
    "cats": [
      1
    ],
    "description": "Weebly is a website and eCommerce service.",
    "icon": "Weebly.svg",
    "implies": [
      "PHP",
      "MySQL"
    ],
    "js": {
      "_W.configDomain": ""
    },
    "pricing": [
      "low",
      "recurring",
      "freemium"
    ],
    "saas": true,
    "scriptSrc": "cdn\\d+\\.editmysite\\.com",
    "website": "https://www.weebly.com"
  },
  "Weglot": {
    "cats": [
      89
    ],
    "headers": {
      "Weglot-Translated": ""
    },
    "icon": "Weglot.png",
    "scriptSrc": [
      "cdn\\.weglot\\.com",
      "wp-content/plugins/weglot"
    ],
    "website": "https://www.weglot.com"
  },
  "Welcart": {
    "cats": [
      6,
      87
    ],
    "cookies": {
      "usces_cookie": ""
    },
    "cpe": "cpe:/a:welcart:welcart",
    "description": "Welcart is a free ecommerce plugin for WordPress with top market share in Japan.",
    "html": [
      "<link[^>]+?href=\"[^\"]+usces_default(?:\\.min)?\\.css",
      "<!-- Welcart version : v([\\d.]+)\\;version:\\1"
    ],
    "icon": "Welcart.svg",
    "requires": "WordPress",
    "scriptSrc": "uscesL10n",
    "website": "https://www.welcart.com"
  },
  "Whatfix": {
    "cats": [
      58
    ],
    "description": "Whatfix is a SaaS based platform which provides in-app guidance and performance support for web applications and software products.",
    "icon": "Whatfix.svg",
    "js": {
      "_wfx_add_logger": "",
      "_wfx_settings": "",
      "wfx_is_playing__": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.whatfix\\.com/",
    "website": "https://whatfix.com"
  },
  "WhatsApp Business Chat": {
    "cats": [
      52
    ],
    "description": "WhatsApp Business is a free to download app available on Android and iPhone using which businesses can connect with their customers.",
    "dom": "a[href*='api.whatsapp.com/send'], a[href*='web.whatsapp.com/send'], a[href*='wa.me/'], div[class*='wptwa-container'], a[href*='wa.link'][target='_blank']",
    "icon": "WhatsApp.svg",
    "website": "https://www.whatsapp.com/business"
  },
  "Wheelio": {
    "cats": [
      5
    ],
    "description": "Wheelio is gamified pop-up/widget for ecommerce sites.",
    "icon": "Wheelio.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "wheelioapp\\.azureedge\\.net",
    "website": "https://wheelio-app.com/"
  },
  "Whistl": {
    "cats": [
      99
    ],
    "description": "Whistl is a postal delivery company operating in the United Kingdom.",
    "icon": "Whistl.svg",
    "requiresCategory": 6,
    "text": [
      "\\bWhistl\\b"
    ],
    "website": "https://www.whistl.co.uk"
  },
  "Whooshkaa": {
    "cats": [
      5
    ],
    "html": "<iframe src=\"[^>]+whooshkaa\\.com",
    "icon": "Whooshkaa.svg",
    "website": "https://www.whooshkaa.com"
  },
  "Widen": {
    "cats": [
      95
    ],
    "description": "Widen is a digital asset management and product information management solutions provider.",
    "icon": "Widen.svg",
    "js": {
      "WidenSessionTimer": "\\;confidence:50",
      "WidenUI": "\\;confidence:50"
    },
    "pricing": [
      "high",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "assets/\\d+-\\d+/stack/en/widenjs\\.js",
    "website": "https://www.widen.com"
  },
  "WidgetWhats": {
    "cats": [
      52
    ],
    "description": "WidgetWhats is a fully customizable chat widget with appearance, text, color, button style and position.",
    "icon": "WidgetWhats.png",
    "js": {
      "wwwa_loaded": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.widgetwhats\\.com/",
    "website": "https://widgetwhats.com"
  },
  "Wigzo": {
    "cats": [
      32
    ],
    "description": "Wigzo is e-commerce marketing automation platform that helps businesses of every size dig deeper into data to find opportunities to increase their sales and revenue.",
    "icon": "Wigzo.png",
    "js": {
      "wigzo": ""
    },
    "saas": true,
    "scriptSrc": "app\\.wigzo\\.com",
    "website": "https://www.wigzo.com/"
  },
  "Wiki.js": {
    "cats": [
      4
    ],
    "description": "Wiki.js is a wiki engine running on Node.js and written in JavaScript.",
    "icon": "Wiki.js.png",
    "implies": "Node.js",
    "js": {
      "WIKI.$_apolloInitData": "",
      "WIKI.$apolloProvider": ""
    },
    "oss": true,
    "website": "https://js.wiki"
  },
  "Wikinggruppen": {
    "cats": [
      6
    ],
    "html": [
      "<!-- WIKINGGRUPPEN"
    ],
    "icon": "wikinggruppen.png",
    "website": "https://wikinggruppen.se/"
  },
  "WikkaWiki": {
    "cats": [
      8
    ],
    "description": "WikkaWiki is an open-source wiki application written in PHP.",
    "html": "Powered by <a href=\"[^>]+WikkaWiki",
    "icon": "WikkaWiki.png",
    "meta": {
      "generator": "WikkaWiki"
    },
    "website": "http://wikkawiki.org"
  },
  "WildJar": {
    "cats": [
      10
    ],
    "description": "WildJar is a call tracking and intelligence platform which helps you understand where your leads are coming from, who is calling you, what your conversations are about and connect that data into other platforms.",
    "icon": "WildJar.png",
    "pricing": [
      "freemium",
      "payg",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "trkcall\\.com/scripts",
    "website": "https://www.wildjar.com"
  },
  "Windows CE": {
    "cats": [
      28
    ],
    "description": "Windows CE is an operating system designed for small footprint devices or embedded systems.",
    "headers": {
      "Server": "\\bWinCE\\b"
    },
    "icon": "Microsoft.svg",
    "website": "http://microsoft.com"
  },
  "Windows Server": {
    "cats": [
      28
    ],
    "description": "Windows Server is a brand name for a group of server operating systems.",
    "headers": {
      "Server": "Win32|Win64"
    },
    "icon": "WindowsServer.png",
    "website": "http://microsoft.com/windowsserver"
  },
  "Wink": {
    "cats": [
      26,
      12
    ],
    "description": "Wink Toolkit is a JavaScript toolkit used to build mobile web apps.",
    "icon": "Wink.png",
    "js": {
      "wink.version": "^(.+)$\\;version:\\1"
    },
    "scriptSrc": "(?:_base/js/base|wink).*\\.js",
    "website": "http://winktoolkit.org"
  },
  "Winstone Servlet Container": {
    "cats": [
      22
    ],
    "headers": {
      "Server": "Winstone Servlet (?:Container|Engine) v?([\\d.]+)?\\;version:\\1",
      "X-Powered-By": "Winstone(?:\\/([\\d.]+))?\\;version:\\1"
    },
    "website": "http://winstone.sourceforge.net"
  },
  "Wirecard": {
    "cats": [
      41
    ],
    "description": "Wirecard is a defunct German payment processor and financial services provider.",
    "icon": "Wirecard.svg",
    "js": {
      "WirecardHPP": "",
      "WirecardPaymentPage": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.wirecard\\.com/",
    "website": "https://www.wirecard.com"
  },
  "Wisepops": {
    "cats": [
      5,
      32
    ],
    "description": "Wisepops is an intelligent popup and marketing automation system that offers marketers a single platform from which to create and manage website popups.",
    "icon": "Wisepops.svg",
    "js": {
      "WisePopsObject": "",
      "wisepops._api": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "loader\\.wisepops\\.com/get-loader\\.js",
    "website": "https://wisepops.com"
  },
  "Wishlist King": {
    "cats": [
      100
    ],
    "description": "Wishlist King is a Shopify app which helps you to add your favorite products or share the wishlist with your friends built by Appmate.",
    "icon": "Wishlist King.png",
    "js": {
      "Appmate.version": "([\\d\\.]+)\\;version:\\1\\;confidence:1",
      "Appmate.wk": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "Shopify",
    "saas": true,
    "website": "https://appmate.io"
  },
  "Wistia": {
    "cats": [
      14
    ],
    "description": "Wistia is designed exclusively to serve companies using video on their websites for marketing, support, and sales.",
    "icon": "Wistia.svg",
    "js": {
      "Wistia": "",
      "wistiaEmbeds": "",
      "wistiaUtils": ""
    },
    "pricing": [
      "freemium",
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.wistia\\.com",
    "website": "https://wistia.com"
  },
  "With Reach": {
    "cats": [
      106
    ],
    "description": "With Reach is a fintech/payments service provider that helps retailers connect with customers around the world.",
    "icon": "With Reach.svg",
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.rch\\.io/",
    "website": "https://www.withreach.com"
  },
  "Wix": {
    "cats": [
      1,
      11
    ],
    "cookies": {
      "Domain": "\\.wix\\.com"
    },
    "description": "Wix provides cloud-based web development services, allowing users to create HTML5 websites and mobile sites.",
    "headers": {
      "X-Wix-Renderer-Server": "",
      "X-Wix-Request-Id": "",
      "X-Wix-Server-Artifact-Id": ""
    },
    "icon": "Wix.svg",
    "implies": "React",
    "js": {
      "wixBiSession": "",
      "wixPerformanceMeasurements": ""
    },
    "meta": {
      "generator": "Wix\\.com Website Builder"
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "static\\.parastorage\\.com",
    "website": "https://www.wix.com"
  },
  "Wix Answers": {
    "cats": [
      52
    ],
    "description": "Wix Answers is a cloud-based help desk software.",
    "dom": "iframe[src*='.wixanswers.com/']",
    "icon": "Wix Answers.svg",
    "pricing": [
      "recurring",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.wixanswers\\.com/",
    "website": "https://www.wixanswers.com"
  },
  "Wix eCommerce": {
    "cats": [
      6
    ],
    "dom": {
      "#wix-viewer-model": {
        "text": "wixstores"
      }
    },
    "icon": "Wix.svg",
    "implies": "Wix",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.wix.com/freesitebuilder/tae-store"
  },
  "WiziShop": {
    "cats": [
      6
    ],
    "description": "WiziShop is an ecommerce solution provider.",
    "headers": {
      "Server": "^WiziServer$"
    },
    "icon": "WiziShop.png",
    "js": {
      "WIZIBLOCK_ARRAY": "",
      "wiziblocks_list": "",
      "wsCfg.bNavAjust": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://wizishop.com"
  },
  "Wizpay": {
    "cats": [
      91
    ],
    "description": "Wizpay is a buy now pay later solution.",
    "icon": "Wizpay.png",
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "wp-content/plugins/creditcorp-wizardpay/.+\\?ver=([\\d\\.]+)\\;version:\\1",
    "website": "https://www.wizpay.com.au"
  },
  "Wolf CMS": {
    "cats": [
      1
    ],
    "html": "(?:<a href=\"[^>]+wolfcms\\.org[^>]+>Wolf CMS(?:</a>)? inside|Thank you for using <a[^>]+>Wolf CMS)",
    "icon": "Wolf CMS.png",
    "implies": "PHP",
    "website": "http://www.wolfcms.org"
  },
  "Woltlab Community Framework": {
    "cats": [
      1
    ],
    "icon": "Woltlab Community Framework.png",
    "implies": "PHP",
    "scriptSrc": "WCF\\..*\\.js",
    "website": "http://www.woltlab.com"
  },
  "WooCommerce": {
    "cats": [
      6,
      87
    ],
    "description": "WooCommerce is an open-source ecommerce plugin for WordPress.",
    "dom": ".woocommerce, .woocommerce-no-js, link[rel*='woocommerce']",
    "icon": "WooCommerce.svg",
    "js": {
      "woocommerce_params": ""
    },
    "meta": {
      "generator": "WooCommerce ([\\d.]+)\\;version:\\1"
    },
    "oss": true,
    "requires": "WordPress",
    "scriptSrc": [
      "woocommerce",
      "/woocommerce(?:\\.min)?\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1"
    ],
    "website": "https://woocommerce.com"
  },
  "WooCommerce Blocks": {
    "cats": [
      87
    ],
    "description": "WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.",
    "dom": {
      "link[href*='/wp-content/plugins/woo-gutenberg-products-block/']": {
        "attributes": {
          "href": "/wp-content/plugins/woo-gutenberg-products-block/.+\\.css(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1"
        }
      }
    },
    "icon": "WooCommerce Blocks.png",
    "oss": true,
    "requires": [
      "WordPress",
      "WooCommerce"
    ],
    "website": "https://github.com/woocommerce/woocommerce-gutenberg-products-block"
  },
  "WooCommerce Multilingual": {
    "cats": [
      87,
      89
    ],
    "description": "WooCommerce Multilingual plugin makes it possible to run fully multilingual ecommerce sites using WooCommerce and WPML.",
    "icon": "WooCommerce Multilingual.png",
    "requires": [
      "WordPress",
      "WooCommerce"
    ],
    "scriptSrc": "/wp-content/plugins/woocommerce-multilingual/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://wordpress.org/plugins/woocommerce-multilingual"
  },
  "WooCommerce PayPal Checkout Payment Gateway": {
    "cats": [
      87
    ],
    "description": "WooCommerce PayPal Checkout Payment Gateway is a WordPress plugin which allows you to securely sell your products and subscriptions online using in-context checkout.",
    "dom": "link[href*='/wp-content/plugins/woocommerce-gateway-paypal-express-checkout/']",
    "icon": "WooCommerce PayPal.png",
    "implies": "PayPal",
    "oss": true,
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/woocommerce-gateway-paypal-express-checkout/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://github.com/woocommerce/woocommerce-gateway-paypal-express-checkout"
  },
  "WooCommerce PayPal Payments": {
    "cats": [
      87
    ],
    "description": "WooCommerce PayPal Payments is a latest WordPress plugin with most complete payment processing solution. Accept PayPal exclusives, credit/debit cards and local payment methods.",
    "dom": "link[href*='/wp-content/plugins/woocommerce-paypal-payments/']",
    "icon": "WooCommerce PayPal.png",
    "implies": "PayPal",
    "oss": true,
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/woocommerce-paypal-payments/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://github.com/woocommerce/woocommerce-paypal-payments"
  },
  "WooCommerce Stripe Payment Gateway": {
    "cats": [
      87
    ],
    "description": "WooCommerce Stripe Payment Gateway plugin extends WooCommerce allowing you to take payments directly on your store via Stripe’s API.",
    "dom": "link[href*='/wp-content/plugins/woocommerce-gateway-stripe/']",
    "icon": "WooCommerce Stripe Payment Gateway.png",
    "implies": "Stripe",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/woocommerce-gateway-stripe/",
    "website": "https://woocommerce.com/products/stripe"
  },
  "Woopra": {
    "cats": [
      10
    ],
    "icon": "Woopra.png",
    "scriptSrc": "static\\.woopra\\.com",
    "website": "http://www.woopra.com"
  },
  "Woostify": {
    "cats": [
      80
    ],
    "description": "Woostify is fast, lightweight, responsive and flexible WooCommerce theme built with SEO, speed, and usability in mind.",
    "icon": "Woostify.png",
    "implies": "WooCommerce",
    "js": {
      "woostifyConditionScrolling": "",
      "woostify_woocommerce_general": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/woostify/",
    "website": "https://woostify.com"
  },
  "WoowUp": {
    "cats": [
      53
    ],
    "description": "WoowUp is a tool of CRM and predictive marketing.",
    "icon": "WoowUp.png",
    "js": {
      "WU._trackProductVTEXField": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "assets-cdn\\.woowup\\.com/",
    "website": "https://www.woowup.com"
  },
  "WordAds": {
    "cats": [
      36
    ],
    "description": "WordAds is an advertising platform run by Automatic that allows bloggers and website owners to place advertisements on their blogs and websites.",
    "dom": "link[href*='.pubmine.com']",
    "icon": "WordAds.png",
    "pricing": [
      "freemium",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.pubmine\\.com/",
    "website": "https://wordads.co"
  },
  "WordPress": {
    "cats": [
      1,
      11
    ],
    "cpe": "cpe:/a:wordpress:wordpress",
    "description": "WordPress is a free and open-source content management system written in PHP and paired with a MySQL or MariaDB database. Features include a plugin architecture and a template system.",
    "headers": {
      "X-Pingback": "/xmlrpc\\.php$",
      "link": "rel=\"https://api\\.w\\.org/\""
    },
    "html": [
      "<link rel=[\"']stylesheet[\"'] [^>]+/wp-(?:content|includes)/",
      "<link[^>]+s\\d+\\.wp\\.com"
    ],
    "icon": "WordPress.svg",
    "implies": [
      "PHP",
      "MySQL"
    ],
    "js": {
      "wp_username": ""
    },
    "meta": {
      "generator": "^WordPress(?: ([\\d.]+))?\\;version:\\1",
      "shareaholic:wp_version": ""
    },
    "pricing": [
      "low",
      "recurring",
      "freemium"
    ],
    "saas": true,
    "scriptSrc": [
      "/wp-(?:content|includes)/",
      "wp-embed\\.min\\.js"
    ],
    "website": "https://wordpress.org"
  },
  "WordPress Default": {
    "cats": [
      80
    ],
    "description": "WordPress Default is a default WordPress theme.",
    "dom": "link[href*='/wp-content/themes/default/']",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/default/",
    "website": "https://wordpress.org/themes/default"
  },
  "WordPress Super Cache": {
    "cats": [
      23,
      87
    ],
    "description": "WordPress Super Cache is a static caching plugin for WordPress.",
    "headers": {
      "WP-Super-Cache": ""
    },
    "html": "<!--[^>]+WP-Super-Cache",
    "icon": "wp_super_cache.png",
    "requires": "WordPress",
    "website": "http://z9.io/wp-super-cache/"
  },
  "WordPress VIP": {
    "cats": [
      62
    ],
    "description": "WordPress VIP is a managed hosting platform for WordPress.",
    "headers": {
      "x-powered-by": "^WordPress VIP|wpvip\\.com"
    },
    "icon": "wpvip.svg",
    "implies": [
      "WordPress"
    ],
    "website": "https://wpvip.com"
  },
  "WordPress.com": {
    "cats": [
      62
    ],
    "description": "WordPress.com is a platform for self-publishing that is popular for blogging and other works.",
    "headers": {
      "host-header": "WordPress\\.com"
    },
    "icon": "WordPress.svg",
    "implies": [
      "WordPress"
    ],
    "website": "https://wordpress.com"
  },
  "Wordfence": {
    "cats": [
      87,
      16
    ],
    "description": "Wordfence is a security plugin for sites that use WordPress. Wordfence includes an endpoint firewall and malware scanner.",
    "icon": "Wordfence.svg",
    "js": {
      "wordfenceAJAXWatcher": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wordfence/.+admin\\.ajaxWatcher\\.\\d+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://www.wordfence.com"
  },
  "Wordfence Login Security": {
    "cats": [
      87,
      16
    ],
    "description": "Wordfence Login Security contains a subset of the functionality found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA.",
    "icon": "Wordfence.svg",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/wordfence/.+login\\.\\d+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://www.wordfence.com"
  },
  "Workable": {
    "cats": [
      101
    ],
    "description": "Workable is the all-in-one hiring solution.",
    "dom": "a[href*='.workable.com/']",
    "icon": "Workable.svg",
    "js": {
      "webpackChunk_workable_candidate": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.workable.com"
  },
  "Workarea": {
    "cats": [
      6
    ],
    "description": "Workarea is a SaaS commerce platform for medium to large businesses.",
    "icon": "Workarea.png",
    "js": {
      "workarea": ""
    },
    "website": "https://www.workarea.com/"
  },
  "World4You": {
    "cats": [
      88
    ],
    "description": "World4You operates homepage and domain solutions. World4Youu operates data centers in Austria and provides data protection.",
    "dns": {
      "SOA": "ns\\d+\\.world4you\\.at"
    },
    "icon": "World4You.svg",
    "pricing": [
      "low",
      "recurring"
    ],
    "website": "https://www.world4you.com"
  },
  "WorldPay": {
    "cats": [
      41
    ],
    "description": "WorldPay is a merchant services and payment processing provider offering a payment gateway for online transactions.",
    "dom": "img[src*='secure.worldpay.com'], img[alt='Powered by WorldPay'], a[href*='worldpay.com'][target='_blank']",
    "icon": "WorldPay.svg",
    "pricing": [
      "payg"
    ],
    "saas": true,
    "website": "https://online.worldpay.com"
  },
  "WorldShopping": {
    "cats": [
      106
    ],
    "description": "WorldShopping makes online purchases in Japan easier for international visitors.",
    "icon": "worldshopping.png",
    "scriptSrc": "checkout-api\\.worldshopping\\.jp/(v\\d+)?\\;version:\\1",
    "website": "https://www.worldshopping.global/"
  },
  "Worldz": {
    "cats": [
      5,
      76
    ],
    "description": "Worldz calculates the economic value of a user’s social popularity (qualitatively and quantitatively). In proportion to this value, it provides a personalised discount, which can be applied in exchange for a social sharing by the user on their Instagram or Facebook profile.",
    "icon": "Worldz.png",
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.worldztool\\.com/",
    "website": "https://www.worldz-business.net"
  },
  "Wufoo": {
    "cats": [
      73
    ],
    "description": "Wufoo is an online form builder that creates forms including contact forms, online payments, online surveys and event registrations.",
    "dom": "a[href*='.wufoo.com/forms/'][target='_blank']",
    "icon": "Wufoo.svg",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.wufoo.com"
  },
  "Wunderkind": {
    "cats": [
      32
    ],
    "description": "Wunderkind (Formerly BounceX) is a software for behavioural marketing technologies, created to de-anonymise site visitors, analyse their digital behaviour and create relevant digital experiences regardless of channel or device.",
    "dom": "link[href*='.smarterhq.io']",
    "headers": {
      "Content-Security-Policy": "\\.smarterhq\\.io"
    },
    "icon": "Wunderkind.svg",
    "js": {
      "bouncex": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": [
      "\\.bounceexchange\\.com",
      "\\.smarterhq\\.io/"
    ],
    "website": "https://www.wunderkind.co"
  },
  "Wurfl": {
    "cats": [
      59
    ],
    "description": "WURFL.js is JavaScript that detects device models of smartphones, tablets, smart TVs and game consoles accessing your website.",
    "icon": "Wurfl.png",
    "js": {
      "WURFL": ""
    },
    "scriptSrc": "\\.wurfl\\.io",
    "website": "https://web.wurfl.io/"
  },
  "WysiBB": {
    "cats": [
      24
    ],
    "description": "WysiBB very simple and functional open-source WYSIWYG BBCode editor based on jQuery.",
    "icon": "WysiBB.svg",
    "implies": "jQuery",
    "oss": true,
    "scriptSrc": "/jquery\\.wysibb\\.min\\.js",
    "website": "http://wysibb.com"
  },
  "web-vitals": {
    "cats": [
      59,
      78
    ],
    "description": "The web-vitals JavaScript is a tiny, modular library for measuring all the web vitals metrics on real users.",
    "icon": "web-vitals.svg",
    "js": {
      "webVitals": ""
    },
    "oss": true,
    "scriptSrc": "web-vitals@([\\d.]+)/dist/web-vitals.*\\.js\\;version:\\1",
    "scripts": "(8999999999999[\\s\\S]+1e12[\\s\\S]+(largest-contentful-paint|first-input|layout-shift)|(largest-contentful-paint|first-input|layout-shift)[\\s\\S]+8999999999999[\\s\\S]+1e12)",
    "website": "https://github.com/GoogleChrome/web-vitals"
  },
  "webEdition": {
    "cats": [
      1
    ],
    "cpe": "cpe:/a:webedition:webedition_cms",
    "icon": "webEdition.png",
    "meta": {
      "DC.title": "webEdition",
      "generator": "webEdition"
    },
    "website": "http://webedition.de/en"
  },
  "webpack": {
    "cats": [
      19
    ],
    "description": "Webpack is an open-source JavaScript module bundler.",
    "icon": "webpack.svg",
    "js": {
      "webpackChunk": "",
      "webpackJsonp": ""
    },
    "website": "https://webpack.js.org/"
  },
  "wisyCMS": {
    "cats": [
      1
    ],
    "icon": "wisyCMS.svg",
    "meta": {
      "generator": "^wisy CMS[ v]{0,3}([0-9.,]*)\\;version:\\1"
    },
    "website": "https://wisy.3we.de"
  },
  "wpBakery": {
    "cats": [
      51,
      87
    ],
    "description": "WPBakery is a drag and drop visual page builder plugin for WordPress.",
    "icon": "wpBakery.svg",
    "implies": "PHP",
    "meta": {
      "generator": "WPBakery"
    },
    "pricing": [
      "low",
      "onetime"
    ],
    "requires": "WordPress",
    "website": "https://wpbakery.com"
  },
  "wpCache": {
    "cats": [
      23,
      87
    ],
    "description": "WPCache is a static caching plugin for WordPress.",
    "headers": {
      "X-Powered-By": "wpCache(?:/([\\d.]+))?\\;version:\\1"
    },
    "html": "<!--[^>]+wpCache",
    "icon": "wpCache.png",
    "implies": "PHP",
    "meta": {
      "generator": "wpCache",
      "keywords": "wpCache"
    },
    "requires": "WordPress",
    "url": "^https?://[^/]+\\.wpcache\\.co",
    "website": "https://wpcache.co"
  }
}