forked from enthec/webappanalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.json
More file actions
8687 lines (8687 loc) · 217 KB
/
a.json
File metadata and controls
8687 lines (8687 loc) · 217 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"A-Frame": {
"cats": [
25,
105
],
"description": "A-Frame is an open-source web framework that simplifies building cross-platform virtual reality (VR) experiences using HTML and JavaScript.",
"html": [
"<a-scene[^<>]*>"
],
"icon": "A-Frame.svg",
"implies": [
"Three.js"
],
"js": {
"AFRAME.version": "^(.+)$\\;version:\\1",
"aframeStats": ""
},
"oss": true,
"scriptSrc": [
"/?([\\d.]+)?/aframe(?:\\.min)?\\.js\\;version:\\1"
],
"website": "https://aframe.io"
},
"A2Z Events": {
"cats": [
72
],
"description": "A2Z Events is an event management solution designed by and for event professionals.",
"icon": "A2ZEvents.svg",
"js": {
"a2z.Widget": "",
"a2zAnalytics": ""
},
"saas": true,
"scriptSrc": [
"\\.a2zinc\\.net/"
],
"website": "https://mya2zevents.com"
},
"A8.net": {
"cats": [
71
],
"description": " A8.net is an affiliate marketing network.",
"dom": [
"img[src*='.a8.net']"
],
"icon": "A8.net.svg",
"js": {
"A8salesCookieRepository": "",
"a8sales": "",
"map_A8": ""
},
"scriptSrc": [
"statics\\.a8\\.net"
],
"website": "https://www.a8.net"
},
"AB Tasty": {
"cats": [
74
],
"description": "AB Tasty is a customer experience optimisation company. AB Tasty offers AI-driven experimentation, personalisation, and product optimisation platforms for user testing.",
"icon": "AB Tasty.svg",
"js": {
"ABTasty": "",
"_abtasty": "",
"loadABTasty": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"try\\.abtasty\\.com"
],
"website": "https://www.abtasty.com"
},
"ABLyft": {
"cats": [
74
],
"description": "ABlyft is an A/B-Testing Platform made for developers.",
"icon": "ABlyft.svg",
"js": {
"ablyft.get": "",
"ablyftClickListener": "",
"ablyftEventQueueInterv": "",
"ablyftStopQueue": ""
},
"pricing": [
"freemium",
"poa"
],
"saas": true,
"website": "https://ablyft.com"
},
"ABOUT YOU Commerce Suite": {
"cats": [
6
],
"description": "ABOUT YOU Commerce Suite is an enterprise ready infrastructure solution designed for ecommerce companies.",
"dom": [
"link[href*='cdn.aboutyou.de/'], img[src*='cdn.aboutyou.de/']"
],
"icon": "ABOUT YOU Commerce Suite.svg",
"pricing": [
"poa"
],
"saas": true,
"website": "https://commercesuite.aboutyou.com"
},
"ABP Framework": {
"cats": [
18
],
"description": "ABP Framework is a complete infrastructure to create modern web applications by following the best practices and conventions of software development.",
"icon": "abp.svg",
"implies": [
"Microsoft ASP.NET"
],
"js": {
"abp.timing.timeZone": "",
"abp.version": "(.*)\\;version:\\1"
},
"oss": true,
"website": "https://abp.io/"
},
"AD EBiS": {
"cats": [
36,
32
],
"description": "AD EBiS is an advertising and marketing platform that offers advertisement effectiveness measurement, access and user analysis.",
"dom": [
"a[href*='.ebis.ne.jp/'][target='_blank']"
],
"icon": "ebis.svg",
"js": {
"ebis.c.pageurl": ""
},
"pricing": [
"freemium",
"payg"
],
"saas": true,
"scriptSrc": [
"\\.ebis\\.ne\\.jp/"
],
"website": "https://www.ebis.ne.jp"
},
"ADAPT": {
"cats": [
6
],
"description": "ADAPT is a subscription-based app that allows anyone to create video focused online store in minutes on their phone.",
"icon": "ADAPT.svg",
"meta": {
"image": "assets\\.adapt\\.ws/"
},
"pricing": [
"low",
"freemium",
"recurring"
],
"saas": true,
"website": "https://adapt.ws"
},
"ADFOX": {
"cats": [
36
],
"description": "ADFOX is an advertising management platform for media publishers.",
"icon": "ADFOX.svg",
"js": {
"AdFox_getCodeScript": "",
"Site.adFoxParams": "",
"adFoxParams": "",
"adfoxAsyncParams": "",
"adfoxBiddersMap": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://adfox.yandex.ru"
},
"AFThemes CoverNews": {
"cats": [
80
],
"description": "AFThemes CoverNews is a clean and elegant free WordPress theme that is perfect for online blog and magazine.",
"icon": "AFThemes.svg",
"pricing": [
"freemium",
"onetime",
"recurring",
"low"
],
"requires": [
"WordPress"
],
"scriptSrc": [
"/wp-content/themes/covernews(?:-pro)?/"
],
"website": "https://afthemes.com/products/covernews"
},
"AI LOG": {
"cats": [
32
],
"description": "AI LOG is a marketing automation and fraud click prevention tool.",
"icon": "AI-LOG.svg",
"js": {
"ai_getScript_load": ""
},
"saas": true,
"scriptSrc": [
"\\.ai-log\\.biz/"
],
"website": "https://www.ai-log.biz/"
},
"AIMEOS": {
"cats": [
6
],
"description": "Aimeos is a PHP ecommerce framework designed for custom online shops, multi-vendor marketplaces, and complex B2B applications.",
"dom": [
"link[href*='aimeos.com']"
],
"icon": "aimeos.svg",
"js": {
"Aimeos": "",
"AimeosAccountFavorite": "",
"AimeosBasketMini": "",
"AimeosCatalog": ""
},
"oss": true,
"website": "https://aimeos.org"
},
"AINIRO": {
"cats": [
52
],
"description": "AINIRO is a provider of AI chatbots, AI agents, and custom AI solutions designed for various applications.",
"icon": "AINIRO.svg",
"js": {
"ainiro.init": "",
"ainiro_faq_question": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scriptSrc": [
"\\.ainiro\\.io"
],
"website": "https://ainiro.io"
},
"ALL-INKL": {
"cats": [
88
],
"description": "ALL-INKL is a German-based web hosting provider that promises to offer high-performance services for fair prices.",
"dns": {
"SOA": [
"\\.kasserver\\.com"
]
},
"icon": "ALL-INKL.svg",
"pricing": [
"low",
"recurring"
],
"website": "https://all-inkl.com"
},
"AMP": {
"cats": [
12
],
"description": "AMP, originally created by Google, is an open-source HTML framework developed by the AMP open-source Project. AMP is designed to help webpages load faster.",
"html": [
"<html[^>]* (?:amp|⚡)[^-]",
"<link rel=\"amphtml\""
],
"icon": "Accelerated-Mobile-Pages.svg",
"js": {
"AMP_CONFIG": "",
"AMP_EXP": "",
"__AMP_BASE_CE_CLASS": "",
"__AMP_EXTENDED_ELEMENTS": "",
"__AMP_TAG": "",
"ampInaboxIframes": "",
"ampInaboxPendingMessages": ""
},
"oss": true,
"website": "https://www.amp.dev",
"xhr": [
"cdn\\.ampproject\\.org"
]
},
"AMP for WordPress": {
"cats": [
87
],
"cpe": "cpe:2.3:a:ampforwp:accelerated_mobile_pages:*:*:*:*:*:wordpress:*:*",
"description": "AMP for WordPress automatically adds Accelerated Mobile Pages (Google AMP Project) functionality to your WordPress site.",
"dom": [
"link[href*='/wp-content/plugins/amp/']"
],
"icon": "Accelerated-Mobile-Pages.svg",
"implies": [
"AMP"
],
"meta": {
"generator": "^AMP Plugin v(\\d+\\.\\d+.*)$\\;version:\\1"
},
"requires": [
"WordPress"
],
"website": "https://amp-wp.org"
},
"ANS": {
"cats": [
88,
62
],
"description": "ANS is a UK-based IT services company specializing in cloud computing, managed services, and digital transformation solutions.",
"dns": {
"SOA": [
"\\.ukfast\\.net"
]
},
"icon": "ANS.svg",
"pricing": [
"recurring",
"payg"
],
"website": "https://www.ans.co.uk"
},
"AOLserver": {
"cats": [
22
],
"cpe": "cpe:2.3:a:aol:aolserver:*:*:*:*:*:*:*:*",
"headers": {
"Server": "AOLserver/?([\\d.]+)?\\;version:\\1"
},
"icon": "AOLserver.svg",
"website": "https://aolserver.com"
},
"AOS": {
"cats": [
59
],
"description": "JavaScript library to animate elements on your page as you scroll.",
"dom": [
" body[data-aos-easing]"
],
"icon": "AOS.svg",
"js": {
"AOS.init": "",
"AOS.refresh": "",
"AOS.refreshHard": ""
},
"oss": true,
"scriptSrc": [
"unpkg\\.com/aos@([\\d\\.]+)/dist/aos\\.js\\;version:\\1",
"/typo3conf/ext/udem_vendor/Resources/Public/aos-([\\d\\.]+)\\;version:\\1"
],
"website": "https://michalsnik.github.io/aos/"
},
"APC": {
"cats": [
99
],
"description": "APC offers door-to-door parcel and mail delivery.",
"icon": "APC.svg",
"requiresCategory": [
6
],
"text": [
"\\APC\\b"
],
"website": "https://www.apc-pli.com"
},
"API Spreadsheets": {
"cats": [
47
],
"description": "API Spreadsheets is a developer tool for integrating spreadsheet features into applications, enabling data management, automation, and real-time updates.",
"icon": "APISpreadsheets.svg",
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"scripts": [
"api\\.apispreadsheets\\.com"
],
"website": "https://apispreadsheets.com"
},
"ARCaptcha": {
"cats": [
16
],
"description": "ARCaptcha is a CAPTCHA system designed to enhance online security by preventing automated bots from accessing websites.",
"icon": "ARCaptcha.svg",
"js": {
"arcaptcha.checkboxCreatorRegistered": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://arcaptcha.co"
},
"ARI Network Services": {
"cats": [
6
],
"description": "ARI Network Services provides website, software, and data solutions to help dealers, distributors, and OEMs improve their selling process.",
"icon": "ARINetworkServices.svg",
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"\\.ari-secure\\.com/"
],
"website": "https://arinet.com"
},
"ASP.NET Boilerplate": {
"cats": [
18
],
"description": "ASP.NET Boilerplate is a general purpose application framework especially designed for new modern web applications. It uses already familiar tools and implements best practices around them to provide you a SOLID development experience.",
"icon": "aspnetboilerplate.png",
"implies": [
"Microsoft ASP.NET"
],
"js": {
"abp.aspnetboilerplate.version": "(.*)\\;version:\\1",
"abp.timing.utcClockProvider": ""
},
"oss": true,
"website": "https://www.aspnetboilerplate.com"
},
"AT Internet Analyzer": {
"cats": [
10
],
"icon": "AT Internet.svg",
"js": {
"ATInternet": "",
"xtsite": ""
},
"website": "https://atinternet.com/en"
},
"AT Internet XiTi": {
"cats": [
10
],
"icon": "AT Internet.svg",
"js": {
"xt_click": ""
},
"scriptSrc": [
"xiti\\.com/hit\\.xiti"
],
"website": "https://atinternet.com/en"
},
"ATSHOP": {
"cats": [
6
],
"description": "ATSHOP is an all-in-one ecommerce platform.",
"dom": [
"link[href*='cdn.atshop.io']"
],
"icon": "ATSHOP.png",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"\\.atshop\\.io"
],
"website": "https://atshop.io"
},
"AWIN": {
"cats": [
71
],
"cookies": {
"BAGawin": "",
"_aw_xid": ""
},
"description": "AWIN is a global affiliate marketing network.",
"dom": [
"img[src*='add.zanox.com/']"
],
"icon": "AWIN.svg",
"js": {
"AWIN.Tracking": "",
"zanox": ""
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": [
"dwin1\\.com",
"zanox\\.com/scripts/zanox\\.js$"
],
"website": "https://www.awin.com"
},
"AWS Certificate Manager": {
"cats": [
70
],
"certIssuer": "Amazon",
"cpe": "cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:*",
"description": "AWS Certificate Manager is a service that lets you easily provision, manage, and deploy public and private Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services and your internal connected resources.",
"icon": "AWS Certificate Manager.svg",
"implies": [
"Amazon Web Services"
],
"saas": true,
"website": "https://aws.amazon.com/certificate-manager/"
},
"AWS WAF Captcha": {
"cats": [
16
],
"description": "AWS WAF Captcha helps block unwanted bot traffic by requiring users to successfully complete challenges before their web request are allowed to reach AWS WAF protected resources.",
"headers": {
"x-amzn-waf-action": "^captcha$"
},
"icon": "AWS WAF Captcha.svg",
"implies": [
"Amazon Web Services"
],
"pricing": [
"recurring",
"payg"
],
"saas": true,
"scriptSrc": [
"captcha\\.awswaf\\.com/"
],
"website": "https://docs.aws.amazon.com/waf/latest/developerguide/waf-captcha.html"
},
"AWStats": {
"cats": [
10
],
"cpe": "cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:*",
"icon": "AWStats.png",
"implies": [
"Perl"
],
"meta": {
"generator": "AWStats ([\\d.]+(?: \\(build [\\d.]+\\))?)\\;version:\\1"
},
"website": "https://awstats.sourceforge.net"
},
"Aarki": {
"cats": [
36
],
"description": "Aarki is an AI platform that develops advertising solutions aimed at increasing mobile revenue growth.",
"icon": "Aarki.svg",
"saas": true,
"scripts": [
"\\.aarki\\.net"
],
"website": "https://www.aarki.com"
},
"Aasaan": {
"cats": [
6
],
"description": "Aasaan is a no-code e-commerce platform that helps digitalize businesses to grow.",
"icon": "Aasaan.svg",
"pricing": [
"low",
"recurring",
"poa"
],
"saas": true,
"scriptSrc": [
"assets\\.aasaan\\.app"
],
"website": "https://aasaan.app"
},
"AbhiCMS": {
"cats": [
1
],
"description": "AbhiCMS is a lesser-known content management system that may not have a significant user base or active development community.",
"implies": [
"PHP",
"MySQL"
],
"meta": {
"generator": "AbhiCMS\\s([\\d\\.]+)\\;version:\\1"
},
"pricing": [
"poa"
],
"website": "https://website999.org"
},
"Abicart": {
"cats": [
6
],
"description": "Abicart is an ecommerce platform developed by the Swedish company Abicart AB.",
"icon": "abicart.svg",
"meta": {
"generator": "Abicart"
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://abicart.com/"
},
"Able CDP": {
"cats": [
97
],
"description": "Able CDP is a customer journey tracking system that monitors and analyzes user interactions across multiple touchpoints to provide insights into engagement and behavior.",
"icon": "AbleCDP.svg",
"pricing": [
"mid",
"recurring",
"poa"
],
"saas": true,
"scriptSrc": [
"app\\.ablecdp\\.com"
],
"website": "https://www.ablecdp.com"
},
"Abralytics": {
"cats": [
10
],
"description": "Abralytics is a privacy-focused alternative to Google Analytics that provides email reports.",
"icon": "Abralytics.svg",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"app\\.abralytics\\.com/"
],
"website": "https://www.abralytics.com"
},
"Absorb": {
"cats": [
21
],
"cookies": {
"_absorb_ui_session": ""
},
"description": "Absorb is a cloud-based learning management system.",
"icon": "Absorb.svg",
"js": {
"AbsorbLMS": ""
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.absorblms.com"
},
"Accentuate Custom Fields": {
"cats": [
100
],
"description": "Accentuate Custom Fields is the professional and de facto solution to easily extend your Shopify store with your own custom fields such multi-language text fields, images, checkboxes, dates, selection list and custom JSON objects.",
"dom": [
"a[style*='.accentuate.io/'], a[data-bg*='.accentuate.io/'], div[style*='.accentuate.io/'], img[src*='.accentuate.io/'], img[data-src*='.accentuate.io/']"
],
"icon": "Accentuate Custom Fields.png",
"pricing": [
"freemium",
"mid",
"recurring"
],
"requires": [
"Shopify"
],
"saas": true,
"scripts": [
"\\.accentuate\\.io/"
],
"website": "https://www.accentuate.io"
},
"Accertify": {
"cats": [
16
],
"description": "Accertify is a platform specialising in fraud prevention and chargeback management.",
"dom": [
"div[id*='Accertify']"
],
"icon": "Accertify.svg",
"saas": true,
"website": "https://www.accertify.com/"
},
"AccessAlly": {
"cats": [
21
],
"description": "AccessAlly is a customizable platform designed for scalable growth, offering tools for membership management, online courses, and automation.",
"icon": "AccessAlly.svg",
"js": {
"accessally_order_form_data_is_during_restore": "",
"accessally_script_object": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://accessally.com"
},
"AccessTrade": {
"cats": [
71
],
"description": "AccessTrade is an affiliate marketing platform based on the CPA model developed by Interspace Co.",
"dom": [
"img[src*='.accesstrade.net'],img[data-src*='.accesstrade.net']"
],
"icon": "AccessTrade.svg",
"scriptSrc": [
"accesstrade\\.net/js/",
"click\\.accesstra\\.de/js/nct/lp\\.js"
],
"website": "https://accesstrade.global/"
},
"AccessiBe": {
"cats": [
68
],
"description": "AccessiBe is an accessibility overlay which claims to provide ADA and WCAG compliance. The system scans and analyzes a website, and applies adjustments which they claim make your website ADA and WCAG 2.1 compliant.",
"icon": "AccessiBe.svg",
"js": {
"acsb": "\\;confidence:50",
"acsbJS": "\\;confidence:50"
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scriptSrc": [
"acsbapp?\\.com/.*/acsb\\.js"
],
"website": "https://accessibe.com"
},
"Accessibility Toolbar Plugin": {
"cats": [
68
],
"description": "Accessibility Toolbar Plugin is an accessibility component without dependencies (clean javascript), including a variety of tools.",
"icon": "Accessibility Toolbar Plugin.png",
"js": {
"MicAccessTool.prototype.openCloseBoxKeyboard": ""
},
"oss": true,
"website": "https://webworks.ga/acc_toolbar"
},
"Accessible360": {
"cats": [
68
],
"description": "Accessible360 is a web accessibility company based in Edina, Minnesota.",
"dom": [
"a[href*='accessible360.com/'][target='_blank'], a[href*='accessible360.com/'] > img"
],
"icon": "Accessible360.png",
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"/npm/@accessible360/accessible-slick@([\\d\\.]+)/\\;version:\\1",
"/accessible360/accessible-slick/slick/slick\\.min\\.js\\?v=([\\d\\.]+)\\;version:\\1"
],
"website": "https://accessible360.com"
},
"Accessibly": {
"cats": [
68
],
"description": "Accessibly is an app which is designed to assist with meeting certain requirements of WCAG 2.1 using an overlay solution.",
"icon": "Accessibly.svg",
"js": {
"accessibilityWidget.name": "bound"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"accessibly\\.onthemapmarketing\\.com"
],
"website": "https://www.onthemapmarketing.com/accessibly/"
},
"Accesso": {
"cats": [
6,
72
],
"description": "Accesso provides ticketing, ecommerce and Point-of-Sale (PoS) solutions.",
"icon": "Accesso.svg",
"js": {
"accesso": ""
},
"scriptSrc": [
"/embed/accesso\\.js"
],
"website": "https://accesso.com/"
},
"Acconsento.click": {
"cats": [
67
],
"description": "Acconsento.click is a software solution designed to assist users in achieving cookie policy compliance for their websites.",
"dom": [
"link[href*='//acconsento.click/']"
],
"icon": "Acconsento.click.png",
"js": {
"AcconsentoAPI": "",
"acconsentoCreateElement": ""
},
"pricing": [
"low",
"recurring",
"payg"
],
"saas": true,
"website": "https://shop.acconsento.click"
},
"Accredible": {
"cats": [
21
],
"description": "Accredible is a branded digital certificates provider that supports learner and program growth through secure, verifiable credentialing.",
"dom": [
"iframe[src*='api.accredible.com/']"
],
"headers": {
"Access-Control-Allow-Headers": "^Accredible-Authorization"
},
"icon": "Accredible.svg",
"pricing": [
"low",
"recurring",
"poa"
],
"saas": true,
"website": "https://www.accredible.com"
},
"AccuWeather": {
"cats": [
5
],
"description": "AccuWeather provides weather forecasts and warnings and additional weather products and services.",
"dom": [
"a[href*='.accuweather.com'][target='_blank']"
],
"icon": "AccuWeather.svg",
"pricing": [
"poa"
],
"saas": true,
"website": "https://partners.accuweather.com"
},
"Ace": {
"cats": [
24
],
"description": "Ace is an embeddable code editor written in JavaScript.",
"icon": "Ace.png",
"js": {
"ace.EditSession": "",
"ace.Editor": "",
"ace.version": "([\\d\\.]+)\\;version:\\1"
},
"oss": true,
"website": "https://github.com/ajaxorg/ace"
},
"Acecounter": {
"cats": [
10
],
"description": "Acecounter is a Korean analytics service that consolidates website analytics data into a single platform for streamlined access and analysis.",
"icon": "Acecounter.svg",
"js": {
"_AceCounter": ""
},
"saas": true,
"scriptSrc": [
"\\.acecounter\\.com/"
],
"website": "https://www.home.acecounter.com"
},
"Ackee": {
"cats": [
10
],
"description": "Ackee is a self-hosted, Node.js based analytics tool with a focus on privacy.",
"dom": [
"[data-ackee-domain-id], [data-ackee-server]"
],
"icon": "Ackee.svg",
"js": {
"ackeeTracker": ""
},
"oss": true,
"website": "https://ackee.electerious.com"
},
"Acoustic Experience Analytics": {
"cats": [
10
],
"description": "Acoustic Experience Analytics (Tealeaf), formerly known as IBM Tealeaf Customer Experience on Cloud, is a SaaS-based analytics solution that delivers Tealeaf core capabilities in an managed cloud environment. Tealeaf captures and manages each visitor interaction on your website and mobile applications.",
"icon": "Acoustic.svg",
"js": {
"TLT.config.core.modules.TLCookie": "",
"TLT_VERSION": "",
"TeaLeaf": ""
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://acoustic.com/tealeaf"
},
"Acquia Campaign Factory": {
"cats": [
32
],
"description": "Acquia Campaign Factory is centralized marketing management system powered by Mautic.",
"icon": "acquia-campaign-factory.svg",
"implies": [
"Mautic"
],
"saas": true,
"scriptSrc": [
"mautic\\.net",
"maestro\\.mautic\\.com"
],
"website": "https://www.acquia.com/products/marketing-cloud/campaign-factory"
},
"Acquia Cloud IDE": {
"cats": [
47
],
"description": "Acquia Cloud IDE is a browser-based source code editor and a Drupal development stack running on the Acquia Cloud Platform.",
"icon": "acquia-cloud-ide.png",
"implies": [
"Acquia Cloud Platform"
],
"saas": true,
"scriptSrc": [
"https?:\\/\\/.+\\.web\\.ahdev\\.cloud"
],
"url": [
"https:?\\/\\/.+\\.web\\.ahdev\\.cloud"
],
"website": "https://www.acquia.com/products/drupal-cloud/cloud-ide"
},
"Acquia Cloud Platform": {
"cats": [
62
],
"description": "Acquia Cloud Platform is a Drupal-tuned application lifecycle management suite with an infrastructure to support Drupal deployment workflow processes.",
"headers": {
"X-AH-Environment": "^(next)?.*$\\;version:\\1?Next:"
},
"icon": "acquia-cloud.svg",
"implies": [
"Amazon Web Services"