summaryrefslogtreecommitdiff
path: root/wappalyzer/src/technologies/e.json
blob: e1a03b258890c0668f0333bb92efd05403c82c7e (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
{
  "EC-CUBE": {
    "cats": [
      6
    ],
    "cpe": "cpe:/a:lockon:ec-cube",
    "description": "EC-CUBE is an open source package used to build ecommerce sites.",
    "icon": "EC-CUBE.svg",
    "implies": "PHP",
    "oss": true,
    "scriptSrc": [
      "eccube\\.js",
      "win_op\\.js"
    ],
    "website": "http://www.ec-cube.net"
  },
  "ECharts": {
    "cats": [
      25
    ],
    "description": "ECharts is an open-source JavaScript visualisation library.",
    "dom": "div[_echarts_instance_]",
    "icon": "echarts.png",
    "oss": true,
    "scriptSrc": [
      "/echarts\\.min\\.[a-zA-Z0-9]*\\.js",
      "/echarts(?:\\.simple)?(?:\\.esm)?(?:\\.common)?(?:\\.min)?\\.js",
      "cdn\\.jsdelivr\\.net/(?:npm|gh/apache)/echarts@([\\d.]+(?:-[^/]+)?|latest)/dist/echarts.*\\.js\\;version:\\1"
    ],
    "website": "https://echarts.apache.org/"
  },
  "EKM": {
    "cats": [
      6
    ],
    "cookies": {
      "ekmpowershop": ""
    },
    "description": "EKM is an all-in-one online store builder, with the company based in the UK.",
    "icon": "EKM.png",
    "js": {
      "_ekmpinpoint": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.ekm.com"
  },
  "ELOG": {
    "cats": [
      19
    ],
    "html": "<title>ELOG Logbook Selection</title>",
    "icon": "ELOG.png",
    "website": "http://midas.psi.ch/elog"
  },
  "ELOG HTTP": {
    "cats": [
      22
    ],
    "headers": {
      "Server": "ELOG HTTP ?([\\d.-]+)?\\;version:\\1"
    },
    "icon": "ELOG.png",
    "implies": "ELOG",
    "website": "http://midas.psi.ch/elog"
  },
  "EPiServer": {
    "cats": [
      1
    ],
    "cookies": {
      "EPiServer": "",
      "EPiTrace": ""
    },
    "cpe": "cpe:/a:episerver:episerver",
    "icon": "EPiServer.png",
    "implies": "Microsoft ASP.NET",
    "meta": {
      "generator": "EPiServer"
    },
    "website": "http://episerver.com"
  },
  "EPrints": {
    "cats": [
      19
    ],
    "icon": "EPrints.png",
    "implies": "Perl",
    "js": {
      "EPJS_menu_template": "",
      "EPrints": ""
    },
    "meta": {
      "generator": "EPrints ([\\d.]+)\\;version:\\1"
    },
    "website": "http://www.eprints.org"
  },
  "ESW": {
    "cats": [
      106
    ],
    "description": "eShopWorld is a company providing payments, shipping, and delivery services focusing on cross-border commerce.",
    "icon": "ESW.png",
    "js": {
      "eshopworld": "",
      "eswRetailerDisplayConfiguration": ""
    },
    "scriptSrc": "Eswhooks\\.js",
    "website": "http://esw.com/"
  },
  "EWWW Image Optimizer": {
    "cats": [
      87,
      92
    ],
    "description": "EWWW Image Optimizer is an image optimisation WordPress plugin designed to improve the performance of your website.",
    "icon": "EWWW Image Optimizer.png",
    "js": {
      "ewww_webp_supported": ""
    },
    "oss": true,
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/ewww-image-optimizer/",
    "website": "https://github.com/nosilver4u/ewww-image-optimizer"
  },
  "EX.CO": {
    "cats": [
      5
    ],
    "description": "EX.CO (formerly Playbuzz) is an online publishing platform for publishers, brand agencies, and individual content creators to create content in interactive formats such as polls, quizzes, lists, video snippets, slideshows, and countdowns.",
    "icon": "EX.CO.svg",
    "js": {
      "__EXCO": "",
      "__EXCO_INTEGRATION_TYPE": "",
      "excoPixelUrl": ""
    },
    "pricing": [
      "poa"
    ],
    "scriptSrc": [
      "\\.ex\\.co",
      "\\.playbuzz\\.com"
    ],
    "website": "https://ex.co",
    "xhr": "prd-collector-anon\\.ex\\.co"
  },
  "Easy Hide PayPal": {
    "cats": [
      100
    ],
    "description": "Easy Hide PayPal hides PayPal button from product page, cart and checkout but keep PayPal as payment option in checkout.",
    "icon": "Easy Hide PayPal.png",
    "implies": "Shopify",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "easyhide\\.herculesapps\\.com/",
    "website": "https://apps.shopify.com/easyhide"
  },
  "Easy Redirects": {
    "cats": [
      100
    ],
    "description": "Easy Redirects is a Shopify app built by Eastside, and part of the best Shopify Apps collection.",
    "icon": "Easy Redirects.png",
    "implies": "Shopify",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "easy-redirects\\..+/redirect-app\\.js",
    "website": "https://apps.shopify.com/easyredirects"
  },
  "EasyDigitalDownloads": {
    "cats": [
      6,
      87
    ],
    "description": "Easy Digital Downloads is a WordPress ecommerce plugin that focuses purely on digital products.",
    "icon": "EasyDigitalDownloads.svg",
    "meta": {
      "generator": "^Easy Digital Downloads v(.*)$\\;version:\\1"
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "requires": "WordPress",
    "saas": true,
    "website": "https://easydigitaldownloads.com"
  },
  "EasyEngine": {
    "cats": [
      47,
      9
    ],
    "description": "EasyEngine is a command-line tool for the Nginx web servers to manage WordPress sites that are running on the LEMP Stack.",
    "headers": {
      "x-powered-by": "^EasyEngine (.*)$\\;version:\\1"
    },
    "icon": "EasyEngine.png",
    "implies": "Docker",
    "website": "https://easyengine.io"
  },
  "EasyStore": {
    "cats": [
      6
    ],
    "description": "EasyStore is a multi sales channel ecommerce platform.",
    "icon": "EasyStore.svg",
    "js": {
      "EasyStore": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.easystore\\.co/",
    "website": "https://www.easystore.co"
  },
  "Easylog": {
    "cats": [
      99
    ],
    "description": "EasyLog is a logistics company based in Brazil.",
    "requiresCategory": 6,
    "text": [
      "\\bEasylog\\b"
    ],
    "website": "http://www.easylog.com.br"
  },
  "Ebasnet": {
    "cats": [
      1
    ],
    "description": "Ebasnet is a web project creation and management platform in the cloud. It allows anyone to set up an online store or corporate website without prior IT knowledge.",
    "icon": "Ebasnet.svg",
    "implies": [
      "PHP",
      "MySQL",
      "Varnish",
      "Symfony"
    ],
    "meta": {
      "author": "^Ebasnet Web Solutions$"
    },
    "pricing": [
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cdnebasnet\\.com/",
    "website": "https://ebasnet.com"
  },
  "Ecovium": {
    "cats": [
      99
    ],
    "description": "Ecovium is an end-to-end logistics company in Germany.",
    "icon": "Ecovium.svg",
    "requiresCategory": 6,
    "text": [
      "\\bMHP\\b",
      "\\bEcovium\\b"
    ],
    "website": "https://ecovium.com"
  },
  "Ecwid": {
    "cats": [
      6
    ],
    "description": "Ecwid is a shopping cart plugin that turns any existing website into an online store.",
    "icon": "ecwid.svg",
    "js": {
      "Ecwid": "",
      "EcwidCart": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": [
      "https://app\\.multiscreenstore\\.com/script\\.js",
      "https://app\\.ecwid\\.com/script\\.js"
    ],
    "website": "https://www.ecwid.com/"
  },
  "EdgeCast": {
    "cats": [
      31
    ],
    "description": "EdgeCast is a content delivery network (CDN) that accelerated and delivers static content to users around the world.",
    "headers": {
      "Server": "^ECD\\s\\(\\S+\\)"
    },
    "icon": "EdgeCast.png",
    "url": "https?://(?:[^/]+\\.)?edgecastcdn\\.net/",
    "website": "http://www.edgecast.com"
  },
  "Editor.js": {
    "cats": [
      24
    ],
    "description": "Editor.js is a Javascript library which allows developers to implement a block base text editor with plugins on their page.",
    "icon": "Editor.js.png",
    "js": {
      "EditorJS": ""
    },
    "oss": true,
    "website": "https://editorjs.io"
  },
  "Elastic APM": {
    "cats": [
      10,
      13,
      78
    ],
    "description": "Elastic APM offers free and open application performance monitoring.",
    "icon": "ElasticAPM.png",
    "implies": [
      "Elasticsearch"
    ],
    "js": {
      "elasticApm": ""
    },
    "website": "https://www.elastic.co/apm"
  },
  "ElasticPress": {
    "cats": [
      87
    ],
    "description": "ElasticPress is a hosting service that connects your WordPress site to search hosting.",
    "headers": {
      "x-elasticpress-query": ""
    },
    "icon": "elasticpress.svg",
    "implies": [
      "Elasticsearch"
    ],
    "pricing": [
      "recurring",
      "freemium",
      "mid"
    ],
    "saas": true,
    "website": "https://www.elasticpress.io/"
  },
  "ElasticSuite": {
    "cats": [
      29
    ],
    "cookies": {
      "STUID": "\\;confidence:50",
      "STVID": "\\;confidence:50"
    },
    "description": "ElasticSuite is a merchandising suite for Magento and OroCommerce.",
    "icon": "ElasticSuite.svg",
    "implies": [
      "PHP",
      "Elasticsearch"
    ],
    "js": {
      "smileTracker": ""
    },
    "oss": true,
    "pricing": [
      "poa"
    ],
    "requires": [
      "OroCommerce",
      "Magento"
    ],
    "scriptSrc": "/Smile_ElasticsuiteTracker/",
    "website": "https://elasticsuite.io"
  },
  "Elasticsearch": {
    "cats": [
      29
    ],
    "description": "Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.",
    "icon": "Elasticsearch.svg",
    "website": "https://www.elastic.co"
  },
  "Elcodi": {
    "cats": [
      6
    ],
    "headers": {
      "X-Elcodi": ""
    },
    "icon": "Elcodi.png",
    "implies": [
      "PHP",
      "Symfony"
    ],
    "website": "http://elcodi.io"
  },
  "Eleanor CMS": {
    "cats": [
      1
    ],
    "cpe": "cpe:/a:eleanor-cms:eleanor_cms",
    "icon": "Eleanor CMS.png",
    "implies": "PHP",
    "meta": {
      "generator": "Eleanor"
    },
    "website": "http://eleanor-cms.ru"
  },
  "Element UI": {
    "cats": [
      12
    ],
    "html": [
      "<(?:div|button) class=\"el-(?:table-column|table-filter|popper|pagination|pager|select-group|form|form-item|color-predefine|color-hue-slider|color-svpanel|color-alpha-slider|color-dropdown|color-picker|badge|tree|tree-node|select|message|dialog|checkbox|checkbox-button|checkbox-group|container|steps|carousel|menu|menu-item|submenu|menu-item-group|button|button-group|card|table|select-dropdown|row|tabs|notification|radio|progress|progress-bar|tag|popover|tooltip|cascader|cascader-menus|cascader-menu|time-spinner|spinner|spinner-inner|transfer|transfer-panel|rate|slider|dropdown|dropdown-menu|textarea|input|input-group|popup-parent|radio-group|main|breadcrumb|time-range-picker|date-range-picker|year-table|date-editor|range-editor|time-spinner|date-picker|time-panel|date-table|month-table|picker-panel|collapse|collapse-item|alert|select-dropdown|select-dropdown__empty|select-dropdown__wrap|select-dropdown__list|scrollbar|switch|carousel|upload|upload-dragger|upload-list|upload-cover|aside|input-number|header|message-box|footer|radio-button|step|autocomplete|autocomplete-suggestion|loading-parent|loading-mask|loading-spinner|)"
    ],
    "icon": "ElementUI.svg",
    "implies": "Vue.js",
    "website": "https://element.eleme.io/"
  },
  "Elementor": {
    "cats": [
      51
    ],
    "description": "Elementor is a website builder platform for professionals on WordPress.",
    "html": [
      "<div class=(?:\"|')[^\"']*elementor",
      "<section class=(?:\"|')[^\"']*elementor",
      "<link [^>]*href=(?:\"|')[^\"']*elementor/assets",
      "<link [^>]*href=(?:\"|')[^\"']*uploads/elementor/css"
    ],
    "icon": "Elementor.png",
    "js": {
      "elementorFrontend.getElements": ""
    },
    "scriptSrc": "elementor/assets/js/[^/]+\\.js\\?ver=([\\d.]+)$\\;version:\\1",
    "website": "https://elementor.com"
  },
  "Elementor Header & Footer Builder": {
    "cats": [
      87
    ],
    "description": "Elementor Header & Footer Builder is a simple yet powerful WordPress plugin that allows you to create a layout with Elementor and set it as.",
    "dom": "link[href*='/wp-content/plugins/header-footer-elementor/']",
    "icon": "Elementor Header & Footer Builder.svg",
    "implies": "Elementor",
    "pricing": [
      "freemium"
    ],
    "requires": [
      "WordPress",
      "Elementor"
    ],
    "website": "https://github.com/brainstormforce/header-footer-elementor"
  },
  "Elevar": {
    "cats": [
      10
    ],
    "description": "Elevar is an official Shopify Plus Partner data collection and marketing monitoring tool.",
    "icon": "Elevar.svg",
    "js": {
      "ElevarGtmSuite": "",
      "elevar_gtm_errors": "",
      "webpackChunkelevar_gtm_suite_scripts": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.getelevar.com"
  },
  "Elm": {
    "cats": [
      27,
      12
    ],
    "icon": "elm.svg",
    "js": {
      "Elm.Main.embed": "\\;version:0.18",
      "Elm.Main.init": "\\;version:0.19"
    },
    "website": "https://elm-lang.org/"
  },
  "Elm-ui": {
    "cats": [
      66
    ],
    "html": "<style>[\\s\\S]*\\.explain > \\.s[\\s\\S]*\\.explain > \\.ctr > \\.s",
    "icon": "elm.svg",
    "implies": "Elm",
    "website": "https://github.com/mdgriffith/elm-ui"
  },
  "Eloqua": {
    "cats": [
      32
    ],
    "cookies": {
      "ELOQUA": ""
    },
    "description": "Eloqua is a Software-as-a-Service (SaaS) platform for marketing automation offered that aims to help B2B marketers and organisations manage marketing campaigns and sales lead generation.",
    "icon": "Oracle.svg",
    "js": {
      "_elq": "",
      "_elqQ": "",
      "eloqContactData": "",
      "eloquaActionSettings": "",
      "elqCookieValue": "",
      "elqCurESite": "",
      "elqLoad": "",
      "elqSiteID": "",
      "elq_global": ""
    },
    "scriptSrc": "elqCfg\\.js",
    "website": "http://eloqua.com"
  },
  "Emarsys": {
    "cats": [
      32,
      97
    ],
    "description": "Emarsys is a cloud-based B2C marketing platform.",
    "icon": "Emarsys.svg",
    "js": {
      "Scarab": "",
      "ScarabQueue": ""
    },
    "scriptSrc": "(?:static|cdn)\\.scarabresearch\\.com",
    "website": "https://emarsys.com/"
  },
  "EmbedPlus": {
    "cats": [
      87
    ],
    "description": "EmbedPlus is a WordPress plugin for YouTube allows you to embed gallery, channel, playlist, or even live stream on your webpage.",
    "icon": "EmbedPlus.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/youtube-embed-plus(?:-pro)?/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://www.embedplus.com"
  },
  "EmbedSocial": {
    "cats": [
      5
    ],
    "description": "EmbedSocial is a social media management platform.",
    "icon": "EmbedSocial.svg",
    "js": {
      "EMBEDSOCIALHASHTAG": "",
      "EmbedSocialIframeLightbox": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "embedsocial\\.com/",
    "website": "https://embedsocial.com"
  },
  "EmbedThis Appweb": {
    "cats": [
      22
    ],
    "cpe": "cpe:/a:embedthis:appweb",
    "headers": {
      "Server": "Mbedthis-Appweb(?:/([\\d.]+))?\\;version:\\1"
    },
    "icon": "Embedthis.png",
    "website": "http://embedthis.com/appweb"
  },
  "Embedly": {
    "cats": [
      5
    ],
    "description": "Embedly is a service that allows developers to convert URLs into rich previews and embeddable content.",
    "icon": "Embedly.svg",
    "js": {
      "embedly": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cdn\\.embedly\\.com/",
    "website": "https://embed.ly"
  },
  "Ember.js": {
    "cats": [
      12
    ],
    "cpe": "cpe:/a:emberjs:ember.js",
    "icon": "Ember.js.png",
    "js": {
      "Ember": "",
      "Ember.VERSION": "^(.+)$\\;version:\\1",
      "EmberENV": ""
    },
    "scripts": "@overview\\s+Ember -[\\s\\S]+@version\\s+(.+)\\;version:\\1",
    "website": "http://emberjs.com"
  },
  "Emotion": {
    "cats": [
      12,
      47
    ],
    "description": "Emotion is a library designed for writing CSS styles with JavaScript.",
    "dom": "style[data-emotion], style[data-emotion-css]",
    "icon": "Emotion.png",
    "website": "http://emotion.sh"
  },
  "Emotive": {
    "cats": [
      32
    ],
    "description": "Emotive is a computer software company that provides SaaS, Mobile Marketing, NLP, machine learning, and B2B.",
    "icon": "Emotive.svg",
    "js": {
      "emotivePopupInitializing": ""
    },
    "pricing": [
      "mid",
      "recurring",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "emotivecdn\\.io/",
    "website": "https://emotive.io"
  },
  "Enable": {
    "cats": [
      68
    ],
    "description": "Enable is a web accessibility plugin by uPress.",
    "icon": "Enable.png",
    "js": {
      "enable_toolbar.is_premium": ""
    },
    "pricing": [
      "freemium",
      "poa"
    ],
    "scriptSrc": "cdn\\.enable\\.co\\.il/",
    "website": "https://www.enable.co.il"
  },
  "Endurance Page Cache": {
    "cats": [
      87,
      23
    ],
    "description": "Endurance Page Cache adds basic file-based caching to WordPress.",
    "headers": {
      "x-endurance-cache-level": ""
    },
    "icon": "endurance-cache.png",
    "oss": true,
    "requires": "WordPress",
    "website": "https://github.com/bluehost/endurance-page-cache"
  },
  "Engagio": {
    "cats": [
      10
    ],
    "icon": "Engagio.png",
    "scriptSrc": [
      "web-analytics\\.engagio\\.com/js/ei\\.js",
      "web-analytics\\.engagio\\.com/api/"
    ],
    "website": "https://www.engagio.com/"
  },
  "Engintron": {
    "cats": [
      33
    ],
    "description": "Engintron is a plugin that integrates Nginx to cPanel/WHM server.",
    "headers": {
      "X-Server-Powered-By": "^Engintron$"
    },
    "icon": "engintron.png",
    "requires": "Nginx",
    "website": "https://github.com/engintron/engintron"
  },
  "Enigma": {
    "cats": [
      80
    ],
    "description": "Enigma is the popular superfine multipurpose responsive WordPress theme from Infigo Software.",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/enigma/",
    "website": "https://wordpress.org/themes/enigma"
  },
  "Enjin CMS": {
    "cats": [
      1
    ],
    "description": "Enjin CMS is a content management system which focused creation of websites for gaming guilds, clans, Minecraft servers, or fan communities.",
    "icon": "Enjin.svg",
    "js": {
      "Enjin_Core_Storage_Cache": "",
      "Enjin_UI": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.enjin\\.com/",
    "website": "https://www.enjin.com"
  },
  "Ensi": {
    "cats": [
      6
    ],
    "description": "Ensi is an open source ecommerce platform based on service oriented architecture.",
    "headers": {
      "X-Ensi-Platform": ""
    },
    "icon": "Ensi.png",
    "meta": {
      "generator": "Ensi Platform"
    },
    "oss": true,
    "website": "https://ensi.tech"
  },
  "Ensighten": {
    "cats": [
      42
    ],
    "description": "Ensighten is a solution that enables secure management, implementation and control of website technologies.",
    "icon": "ensighten.png",
    "scriptSrc": "//nexus\\.ensighten\\.com/",
    "website": "https://success.ensighten.com/hc/en-us"
  },
  "Envialia": {
    "cats": [
      99
    ],
    "description": "",
    "icon": "Envialia.png",
    "requiresCategory": 6,
    "text": [
      "\\bEnvialia\\b"
    ],
    "website": "https://www.envialia.com"
  },
  "Envo Shop": {
    "cats": [
      80
    ],
    "description": "Envo Shop is a fast, clean and modern-looking responsive free WooCommerce WordPress theme by Envo Themes.",
    "icon": "Envo Themes.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/envo-shop/.+customscript\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://envothemes.com/free-envo-shop"
  },
  "Envo Storefront": {
    "cats": [
      80
    ],
    "description": "Envo Storefront is a fast, clean and modern-looking responsive WooCommerce theme for WordPress.",
    "icon": "Envo Themes.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/envo-storefront/.+customscript\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://envothemes.com/free-envo-storefront"
  },
  "Envo eCommerce": {
    "cats": [
      80
    ],
    "description": "Envo eCommerce is a fast, clean and modern-looking responsive free WooCommerce theme for WordPress.",
    "icon": "Envo Themes.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/envo-ecommerce/.+customscript\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://envothemes.com/free-envo-ecommerce/"
  },
  "Envoy": {
    "cats": [
      64
    ],
    "cpe": "cpe:/a:envoyproxy:envoy",
    "description": "Envoy is an open-source edge and service proxy, designed for cloud-native applications.",
    "headers": {
      "Server": "^envoy$",
      "x-envoy-upstream-service-time": ""
    },
    "icon": "Envoy.png",
    "website": "https://www.envoyproxy.io/"
  },
  "Envybox": {
    "cats": [
      5,
      52
    ],
    "description": "Envybox is a multiservice for increasing sales.",
    "icon": "Envybox.svg",
    "js": {
      "EnvyWidget": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "static\\.saas-support\\.com/",
    "website": "https://envybox.io"
  },
  "Enyo": {
    "cats": [
      12,
      26
    ],
    "description": "Enyo is an open-source JavaScript framework for cross-platform for mobile, desktop, TV and web applications.",
    "icon": "Enyo.png",
    "js": {
      "enyo": ""
    },
    "scriptSrc": "enyo\\.js",
    "website": "http://enyojs.com"
  },
  "Epoch": {
    "cats": [
      25
    ],
    "html": "<link[^>]+?href=\"[^\"]+epoch(?:\\.min)?\\.css",
    "implies": "D3",
    "scriptSrc": "epoch(?:\\.min)?\\.js",
    "website": "https://fastly.github.io/epoch"
  },
  "Epom": {
    "cats": [
      36
    ],
    "icon": "Epom.png",
    "js": {
      "epomCustomParams": ""
    },
    "url": "^https?://(?:[^/]+\\.)?ad(?:op)?shost1\\.com/",
    "website": "http://epom.com"
  },
  "EqualWeb": {
    "cats": [
      68
    ],
    "description": "EqualWeb provides a web accessibility overlay, and helps some people with disabilities access digital information.",
    "icon": "EqualWeb.png",
    "scriptSrc": "cdn\\.equalweb\\.com.*\\.js",
    "website": "https://www.equalweb.com/"
  },
  "EraofEcom Cartroids": {
    "cats": [
      100
    ],
    "description": "EraofEcom Cartroids makes it easy for you to create highly targeted upsells, cross-sells and bundle offers.",
    "icon": "EraofEcom.png",
    "implies": "Shopify",
    "js": {
      "cartroids.appBase": "cartroids\\.eraofecom\\.org"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://eraofecom.org/collections/tech/products/cartroids"
  },
  "EraofEcom MTL": {
    "cats": [
      100
    ],
    "description": "EraofEcom MTL is a Shopify pop up app that enables you to catch your website visitors.",
    "icon": "EraofEcom.png",
    "implies": "Shopify",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "mtl\\.eraofecom\\.org",
    "website": "https://eraofecom.org/collections/tech/products/milk-the-leads"
  },
  "EraofEcom WinAds": {
    "cats": [
      100
    ],
    "description": "EraofEcom WinAds is an all-in-one Facebook pixel app for Shopify.",
    "dom": "link[href*='winads.eraofecom.org']",
    "icon": "EraofEcom.png",
    "implies": "Shopify",
    "js": {
      "win_ads.baseURL": "winads\\.eraofecom\\.org"
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://eraofecom.org/collections/tech/products/win-ads-manager"
  },
  "Erlang": {
    "cats": [
      27
    ],
    "cpe": "cpe:/a:erlang:erlang%2fotp",
    "description": "Erlang is a general-purpose, concurrent, functional programming language, and a garbage-collected runtime system.",
    "headers": {
      "Server": "Erlang( OTP/(?:[\\d.ABR-]+))?\\;version:\\1"
    },
    "icon": "Erlang.png",
    "website": "http://www.erlang.org"
  },
  "Errorception": {
    "cats": [
      10
    ],
    "description": "Errorception is a error reporting service for client-side in-browser JavaScript errors.",
    "icon": "Errorception.png",
    "js": {
      "_errs": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://errorception.com"
  },
  "Essent SiteBuilder Pro": {
    "cats": [
      1,
      6
    ],
    "description": "Essent SiteBuilder Pro is a fully-integrated web-based website design system, content management and ecommerce system.",
    "dom": "a[href*='www.essent.com'][target='_blank']",
    "icon": "Essent.png",
    "meta": {
      "GENERATOR": "^Essent® SiteBuilder Pro$"
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.essent.com/SiteBuilderPro.html"
  },
  "Essential Addons for Elementor": {
    "cats": [
      87
    ],
    "description": "Essential Addons for Elementor gives you 70+ creative elements and extensions to help you extend the stock features of Elementor page builder.",
    "dom": "link[href*='/wp-content/uploads/essential-addons-elementor/']",
    "icon": "Essential Addons for Elementor.svg",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/uploads/essential-addons-elementor/",
    "website": "https://essential-addons.com/elementor/"
  },
  "Essential JS 2": {
    "cats": [
      12,
      59
    ],
    "html": "<[^>]+ class ?= ?\"(?:e-control|[^\"]+ e-control)(?: )[^\"]* e-lib\\b",
    "icon": "syncfusion.svg",
    "website": "https://www.syncfusion.com/javascript-ui-controls"
  },
  "Estore Compare": {
    "cats": [
      74
    ],
    "description": "Estore Compare is a website optimisation software that offers A/B testing, CVR and LTV measuring tools.",
    "icon": "EstoreCompare.svg",
    "scriptSrc": "cdn\\d+\\.estore\\.jp/",
    "website": "https://estore.co.jp/estorecompare/"
  },
  "Estore Shopserve": {
    "cats": [
      6
    ],
    "description": "Estore Shopserve is an all-in-one payment processing and ecommerce solution.",
    "icon": "EstoreShopserve.svg",
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cart\\d+\\.shopserve\\.jp/",
    "website": "https://estore.co.jp/shopserve"
  },
  "Etherpad": {
    "cats": [
      24
    ],
    "cpe": "cpe:/a:etherpad:etherpad",
    "description": "Etherpad is an open-source, web-based collaborative real-time editor, allowing authors to simultaneously edit a text document, and see all of the participants' edits in real-time, with the ability to display each author's text in their own colour.",
    "headers": {
      "Server": "^Etherpad"
    },
    "icon": "etherpad.png",
    "implies": "Node.js",
    "js": {
      "padeditbar": "",
      "padimpexp": ""
    },
    "scriptSrc": [
      "/ep_etherpad-lite/"
    ],
    "website": "https://etherpad.org"
  },
  "EthicalAds": {
    "cats": [
      36
    ],
    "description": "EthicalAds is a privacy-preserving ad network targeting developers.",
    "icon": "EthicalAds.svg",
    "saas": true,
    "scriptSrc": [
      "media\\.ethicalads\\.io"
    ],
    "website": "https://www.ethicalads.io/"
  },
  "Etix": {
    "cats": [
      104
    ],
    "description": "Etix is an international web-based ticketing service provider for the entertainment, travel, and sports industries.",
    "dom": "a[href*='.etix.com/ticket/'][target='_blank']",
    "icon": "Etix.svg",
    "js": {
      "Etix.javaContext": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "website": "https://hello.etix.com"
  },
  "Etracker": {
    "cats": [
      10,
      74
    ],
    "description": "Etracker is a web optimisation solution.",
    "icon": "Etracker.png",
    "js": {
      "_etracker": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.etracker\\.com",
    "website": "https://www.etracker.com"
  },
  "Everflow": {
    "cats": [
      10
    ],
    "description": "Everflow is a partner marketing analytics platform.",
    "icon": "Everflow.png",
    "pricing": [
      "high",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "everflow\\.js",
    "website": "https://www.everflow.io"
  },
  "Eveve": {
    "cats": [
      5,
      72
    ],
    "description": "Eveve is a restaurant table booking widget.",
    "html": "<iframe[^>]*[\\w]+\\.eveve\\.com",
    "icon": "Eveve.svg",
    "implies": "PHP",
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.eveve.com"
  },
  "Evidon": {
    "cats": [
      67
    ],
    "description": "Evidon is a transparency company that helps organizations educate consumers on how and why data is collected, as well as provide consumers with the ability to give and withdraw consent to their data being used.",
    "dom": "a[href*='info.evidon.com/pub_info/']",
    "icon": "Evidon.png",
    "js": {
      "EB.EvidonConsent": "",
      "evidon": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.evidon\\.com/",
    "website": "https://www.evidon.com"
  },
  "ExactMetrics": {
    "cats": [
      87,
      10
    ],
    "description": "ExactMetrics (formerly Google Analytics Dashboard for WP) plugin helps you properly setup all the powerful Google Analytics tracking features without writing any code or hiring a developer.",
    "icon": "ExactMetrics.svg",
    "js": {
      "ExactMetrics": "",
      "exactmetrics_frontend": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/google-analytics-dashboard-for-wp/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://www.exactmetrics.com"
  },
  "Exemptify": {
    "cats": [
      106,
      100
    ],
    "description": "Exemptify allows you to conduct proper EU B2B transactions by validating EU VAT IDs.",
    "icon": "Exemptify.png",
    "implies": "Shopify",
    "js": {
      "ExemptifyTriggerUpdate": "",
      "m4u_ex_vat_postfix_txt": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.modules4u\\.biz/shopify/exemptify",
    "website": "http://modules4u.biz/exemptify"
  },
  "Exhibit": {
    "cats": [
      25
    ],
    "icon": "Exhibit.png",
    "js": {
      "Exhibit": "",
      "Exhibit.version": "^(.+)$\\;version:\\1"
    },
    "scriptSrc": "exhibit.*\\.js",
    "website": "http://simile-widgets.org/exhibit/"
  },
  "ExitIntel": {
    "cats": [
      32
    ],
    "description": "ExitIntel is a full service conversion optimisation agency that focuses on ecommerce companies.",
    "icon": "ExitIntel.png",
    "js": {
      "exitintel.VERSION": "(.+)$\\;version:\\1",
      "exitintelAccount": "",
      "exitintelConfig": ""
    },
    "pricing": [
      "high",
      "recurring",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "(?:get.)?exitintel\\.com",
    "website": "https://exitintelligence.com"
  },
  "ExoClick": {
    "cats": [
      36
    ],
    "description": "ExoClick is a Barcelona-based online advertising company, which provides online advertising services to both advertisers and publishers.",
    "icon": "ExoClick.png",
    "meta": {
      "exoclick-site-verification": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.exoclick\\.com/",
    "website": "https://www.exoclick.com"
  },
  "ExpertRec": {
    "cats": [
      29
    ],
    "description": "ExpertRec is a collaborative Web search engine, which allows users share search histories through a web browser.",
    "icon": "ExpertRec.png",
    "js": {
      "_er_config": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "expertrec\\.com/api/js/ci_common\\.js\\?id=.*",
    "website": "https://www.expertrec.com/"
  },
  "Exponea": {
    "cats": [
      97
    ],
    "description": "Exponea is a cloud-based marketing analysis platform suitable for large and midsize organisations in a variety of industries.",
    "icon": "Exponea.svg",
    "js": {
      "exponea.version": "^v([\\d.]+)$\\;version:\\1"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "(?:\\.exponea\\.com)?/js/exponea\\.min\\.js",
    "website": "https://go.exponea.com"
  },
  "Express": {
    "cats": [
      18,
      22
    ],
    "cpe": "cpe:/a:expressjs:express",
    "description": "Express is a web application framework for Node.js, released as free and open-source software under the MIT License. It is designed for building web applications and APIs.",
    "headers": {
      "X-Powered-By": "^Express(?:$|,)"
    },
    "icon": "Express.png",
    "implies": "Node.js",
    "website": "http://expressjs.com"
  },
  "ExpressionEngine": {
    "cats": [
      1
    ],
    "cookies": {
      "exp_csrf_token": "",
      "exp_last_activity": "",
      "exp_tracker": ""
    },
    "cpe": "cpe:/a:ellislab:expressionengine",
    "description": "ExpressionEngine is a free and open-source CMS.",
    "icon": "ExpressionEngine.svg",
    "implies": "PHP",
    "oss": true,
    "website": "http://expressionengine.com"
  },
  "ExtJS": {
    "cats": [
      12
    ],
    "cpe": "cpe:/a:sencha:ext_js",
    "icon": "ExtJS.png",
    "js": {
      "Ext": "",
      "Ext.version": "^(.+)$\\;version:\\1",
      "Ext.versions.extjs.version": "^(.+)$\\;version:\\1"
    },
    "scriptSrc": "ext-base\\.js",
    "website": "https://www.sencha.com"
  },
  "ExtendThemes Calliope": {
    "cats": [
      80
    ],
    "description": "ExtendThemes Calliope is an flexible, multipurpose WordPress child theme of Colibri WP.",
    "dom": "link[href*='/wp-content/themes/calliope/']",
    "icon": "ExtendThemes.svg",
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/calliope/",
    "website": "https://wordpress.org/themes/calliope"
  },
  "ExtendThemes EmpowerWP": {
    "cats": [
      80
    ],
    "description": "ExtendThemes EmpowerWP is an flexible, multipurpose WordPress theme.",
    "dom": "link[href*='/wp-content/themes/empowerwp']",
    "excludes": "ExtendThemes Mesmerize",
    "icon": "ExtendThemes.svg",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/empowerwp(?:-pro)?/",
    "website": "https://extendthemes.com/empowerwp"
  },
  "ExtendThemes Highlight": {
    "cats": [
      80
    ],
    "description": "ExtendThemes Highlight is an flexible, multipurpose WordPress theme.",
    "dom": "link[href*='/wp-content/themes/highlight/'], link[href*='/wp-content/themes/highlight-pro/']",
    "excludes": "ExtendThemes Mesmerize",
    "icon": "ExtendThemes.svg",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/highlight(?:-pro)?/",
    "website": "https://extendthemes.com/highlight"
  },
  "ExtendThemes Materialis": {
    "cats": [
      80
    ],
    "description": "ExtendThemes Materialis is an flexible, multipurpose WordPress theme.",
    "dom": "link#materialis-style-css",
    "icon": "ExtendThemes.svg",
    "js": {
      "MaterialisTheme": "",
      "materialisSetHeaderTopSpacing": "",
      "materialis_theme_pro_settings": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/materialis(?:-pro)?/",
    "website": "https://extendthemes.com/materialis"
  },
  "ExtendThemes Mesmerize": {
    "cats": [
      80
    ],
    "description": "ExtendThemes Mesmerize is an flexible, multipurpose WordPress theme.",
    "dom": "link#mesmerize-style-css",
    "icon": "ExtendThemes.svg",
    "js": {
      "MesmerizeKube": "",
      "mesmerizeDomReady": "",
      "mesmerizeFooterParalax": "",
      "mesmerizeMenuSticky": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/mesmerize(?:-pro)?/",
    "website": "https://extendthemes.com/mesmerize"
  },
  "Extendify": {
    "cats": [
      87
    ],
    "description": "Extendify (formerly Redux framework) is one of the most popular, advanced, and free to use option panel frameworks for WordPress themes and plugins.",
    "icon": "Extendify.svg",
    "meta": {
      "framework": "^Redux ([\\d\\.]+)\\;version:\\1"
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "website": "https://extendify.com"
  },
  "Extole": {
    "cats": [
      94,
      84
    ],
    "description": "Extole is an online marketing platform that enables brands and businesses to get new customers through loyalty and referral programs.",
    "dom": "li > a[href*='.extole.com/'][target='_blank']",
    "icon": "Extole.png",
    "js": {
      "extole.VERSION": "^([\\d\\.]+)$\\;version:\\1"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.(?:extole|xtlo)\\.(?:com|net)/",
    "website": "https://www.extole.com"
  },
  "Ezoic": {
    "cats": [
      10,
      36
    ],
    "description": "Ezoic is a website optimisation platform for digital publishers and website owners powered by machine learning.",
    "icon": "Ezoic.svg",
    "js": {
      "EzoicA": "",
      "EzoicBanger": "",
      "ezoicTestActive": ""
    },
    "pricing": [
      "freemium",
      "recurring",
      "poa",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.ezo(?:js|ic|dn)\\.(?:com|net)",
    "website": "https://www.ezoic.com"
  },
  "e-Shop Commerce": {
    "cats": [
      6
    ],
    "description": "e-Shop is a all-in-one Software-as-a-Service (SaaS) that allows Israeli customers to set up an online store and sell their products.",
    "icon": "eShop eCommerce.svg",
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "/template_inc/eshopstoresframework",
    "website": "https://www.e-shop.co.il"
  },
  "e-goi": {
    "cats": [
      32,
      75
    ],
    "description": "e-goi is a multichannel marketing automation software for ecommerce.",
    "icon": "e-goi.svg",
    "js": {
      "Egoimmerce": "",
      "_egoiaq": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.e-goi\\.com/egoimmerce\\.js",
    "website": "https://www.e-goi.com"
  },
  "e107": {
    "cats": [
      1
    ],
    "cookies": {
      "e107_tz": ""
    },
    "headers": {
      "X-Powered-By": "e107"
    },
    "icon": "e107.png",
    "implies": "PHP",
    "scriptSrc": "[^a-z\\d]e107\\.js",
    "website": "http://e107.org"
  },
  "eBay Partner Network": {
    "cats": [
      71,
      94
    ],
    "description": "eBay Partner Network is an online referral program where eBay pays commissions to referrers on sales generated by customers they’ve referred.",
    "icon": "eBay.svg",
    "scriptSrc": "epnt\\.ebay\\.com/",
    "website": "https://partnernetwork.ebay.com"
  },
  "eCaupo": {
    "cats": [
      6
    ],
    "description": "eCaupo is no delivery portal, but your own shop.",
    "icon": "eCaupo.png",
    "pricing": [
      "low",
      "recurring",
      "payg"
    ],
    "scriptSrc": "\\.ecaupo\\.(?:at|com)/",
    "website": "https://www.ecaupo.com"
  },
  "eClass": {
    "cats": [
      1
    ],
    "description": "eClass is an online learning platform.",
    "icon": "eClass.png",
    "js": {
      "fe_eclass": "\\;confidence:50",
      "fe_eclass_guest": "\\;confidence:50"
    },
    "website": "https://www.eclass.com.hk"
  },
  "eDokan": {
    "cats": [
      6
    ],
    "description": "eDokan is hosted ecommerce platform with drag-drop template builder and zero programming knowledge.",
    "dom": "img[src*='cdn.edokan.co']",
    "icon": "eDokan.png",
    "implies": [
      "Node.js",
      "Angular",
      "MongoDB"
    ],
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://edokan.co"
  },
  "eKomi": {
    "cats": [
      5
    ],
    "description": "eKomi is a German supplier and product review service.",
    "dom": ".ekomi-widget-container",
    "icon": "eKomi.png",
    "js": {
      "ekomiWidgetMain": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.ekomi.de"
  },
  "ePages": {
    "cats": [
      6
    ],
    "description": "ePages is a provider of cloud-based online shop solutions.",
    "headers": {
      "X-epages-RequestId": ""
    },
    "icon": "ePages.svg",
    "js": {
      "epages": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "http://www.epages.com/"
  },
  "eSSENTIAL Accessibility": {
    "cats": [
      68
    ],
    "description": "eSSENTIAL Accessibility provides an accessibility overlay for websites.",
    "dom": " a[href*='.essentialaccessibility.com'] > img",
    "icon": "eSSENTIAL Accessibility.png",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.essentialaccessibility.com"
  },
  "eShopCRM": {
    "cats": [
      53
    ],
    "description": "eShopCRM is an ecommerce CRM for Shopify.",
    "icon": "eShopCRM.png",
    "implies": "Shopify",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "eshopcrm\\.com/",
    "website": "https://eshopcrm.com"
  },
  "eSyndiCat": {
    "cats": [
      1
    ],
    "headers": {
      "X-Drectory-Script": "^eSyndiCat"
    },
    "icon": "eSyndiCat.png",
    "implies": "PHP",
    "js": {
      "esyndicat": ""
    },
    "meta": {
      "generator": "^eSyndiCat "
    },
    "website": "http://esyndicat.com"
  },
  "eWAY Payments": {
    "cats": [
      41
    ],
    "description": "eWAY is a global omnichannel payment provider. The company processes secure credit card payments for merchants. eWay works through eCommerce.",
    "html": "<img [^>]*src=\"[^/]*//[^/]*eway\\.com",
    "icon": "eway.png",
    "scriptSrc": "secure\\.ewaypayments\\.com",
    "website": "https://www.eway.com.au/"
  },
  "eZ Platform": {
    "cats": [
      1,
      6
    ],
    "icon": "eZ.svg",
    "implies": "Symfony",
    "meta": {
      "generator": "eZ Platform"
    },
    "website": "https://ezplatform.com/"
  },
  "eZ Publish": {
    "cats": [
      1,
      6
    ],
    "cookies": {
      "eZSESSID": ""
    },
    "headers": {
      "X-Powered-By": "^eZ Publish"
    },
    "icon": "eZ.svg",
    "implies": "PHP",
    "meta": {
      "generator": "eZ Publish"
    },
    "website": "https://github.com/ezsystems/ezpublish-legacy"
  },
  "ef.js": {
    "cats": [
      12
    ],
    "icon": "ef.js.svg",
    "js": {
      "ef.version": "^(.+)$\\;version:\\1",
      "efCore": ""
    },
    "scriptSrc": "/ef(?:-core)?(?:\\.min|\\.dev)?\\.js",
    "website": "http://ef.js.org"
  },
  "emBlue": {
    "cats": [
      32,
      75
    ],
    "description": "emBlue is an email and marketing automation platform.",
    "icon": "emBlue.svg",
    "js": {
      "emblueOnSiteApp": ""
    },
    "pricing": [
      "freemium",
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.embluemail\\.com/(?:library/([\\d.]+))?\\;version:\\1",
    "website": "https://www.embluemail.com/en"
  },
  "enduro.js": {
    "cats": [
      1
    ],
    "headers": {
      "X-Powered-By": "^enduro\\.js"
    },
    "icon": "enduro.js.svg",
    "implies": "Node.js",
    "website": "http://endurojs.com"
  },
  "etika": {
    "cats": [
      91
    ],
    "description": "etika is a fintech company based in Manchester which provide buy now pay later solution.",
    "icon": "etika.svg",
    "js": {
      "EtikaProductJsHelper": "",
      "etikaBannerInject": "",
      "etikaGlobal": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "website": "https://etika.com"
  },
  "eucookie.eu": {
    "cats": [
      67
    ],
    "icon": "eucookie.png",
    "scriptSrc": "eucookie\\.eu/public/gdpr-cookie-consent\\.js",
    "website": "https://www.eucookie.eu/"
  },
  "experiencedCMS": {
    "cats": [
      1
    ],
    "cpe": "cpe:/a:experiencedcms:experiencedcms",
    "icon": "experiencedCMS_Logo.png",
    "implies": "PHP",
    "meta": {
      "generator": "^experiencedCMS$"
    },
    "website": "https://experiencedcms.berkearas.de"
  }
}