forked from enthec/webappanalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths.json
11162 lines (11162 loc) · 264 KB
/
s.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"S-COREpion": {
"cats": [
1
],
"description": "S-COREpion is a PHP and MySQL-based content management system (CMS) used for creating and managing websites and web applications.",
"headers": {
"x-powered-by": "^S-COREpion CMS$"
},
"icon": "S-COREpion.svg",
"implies": [
"PHP",
"MySQL"
],
"pricing": [
"poa",
"recurring",
"onetime"
],
"website": "https://s-corepion.ru"
},
"SALESmanago": {
"cats": [
97,
32
],
"description": "SALESmanago is a no-code marketing automation and customer data platform designed for mid-sized buinesses and enterprises.",
"icon": "SALESmanago.svg",
"js": {
"SalesmanagoObject": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"\\.salesmanago\\.com/"
],
"website": "https://www.salesmanago.com"
},
"SAP": {
"cats": [
53
],
"cpe": "cpe:2.3:a:sap:netweaver_application_server:*:*:*:*:*:*:*:*",
"headers": {
"Server": "SAP NetWeaver Application Server"
},
"icon": "SAP.svg",
"website": "https://sap.com"
},
"SAP Commerce Cloud": {
"cats": [
6
],
"cookies": {
"_hybris": ""
},
"cpe": "cpe:2.3:a:sap:commerce_cloud:*:*:*:*:*:*:*:*",
"description": "SAP Commerce Cloud is a cloud-native omnichannel commerce solution for B2B, B2C, and B2B2C companies.",
"html": [
"<[^>]+/(?:sys_master|hybr|_ui/(?:.*responsive/)?(?:desktop|common(?:/images|/img|/css|ico)?))/",
"<script[^>].*hybris.*.js"
],
"icon": "SAP.svg",
"implies": [
"Java"
],
"js": {
"ACC.config.commonResourcePath": "/_ui/responsive/common\\;confidence:25",
"ACC.config.rootPath": "/_ui/responsive\\;confidence:25",
"ACC.config.themeResourcePath": "/_ui/responsive/theme-\\;confidence:50",
"getProductAttrFromHybris": "",
"getProductAvailabilityHybris": "",
"hybrisId": "",
"passLgDataToHybris": "",
"smartedit": ""
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.sap.com/products/commerce-cloud.html"
},
"SAP Customer Data Cloud Sign-in": {
"cats": [
69
],
"icon": "SAP.svg",
"scriptSrc": [
"\\.gigya\\.com/JS/gigya\\.js"
],
"website": "https://www.sap.com/uk/acquired-brands/what-is-gigya.html"
},
"SAP Upscale Commerce": {
"cats": [
6
],
"description": "SAP Upscale Commerce is a SaaS solution for small-to-medium organizations selling directly to consumers.",
"dom": {
"[upscale-version]": {
"attributes": {
"upscale-version": "^([\\d.]+)\\;version:\\1"
}
}
},
"icon": "SAP.svg",
"saas": true,
"website": "https://www.sapstore.com/solutions/47000/SAP-Upscale-Commerce"
},
"SDL Tridion": {
"cats": [
1
],
"html": [
"<img[^>]+_tcm\\d{2,3}-\\d{6}\\."
],
"icon": "SDL Tridion.svg",
"website": "https://www.sdl.com/products/tridion"
},
"SEMrush": {
"cats": [
32
],
"description": "SEMrush is an all-in-one tool suite for improving online visibility and discovering marketing insights.",
"icon": "SEMrush.svg",
"js": {
"SEMRUSH": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scriptSrc": [
"www\\.semrush\\.com"
],
"website": "https://www.semrush.com"
},
"SEOAnt": {
"cats": [
54
],
"description": "SEOAnt is a SEO customization service that provides professional improvement suggestions, aimed at enhancing Google rankings and increasing conversions.",
"icon": "SEOAnt.svg",
"js": {
"BlackUrlArray_SEOAnt": "",
"SEOAnt_toConsumableArray": ""
},
"pricing": [
"freemium",
"low",
"recurring"
],
"requires": [
"Shopify"
],
"saas": true,
"website": "https://www.seoant.com"
},
"SEOPress": {
"cats": [
54
],
"description": "SEOPress is a WordPress plugin for SEO.",
"icon": "SEOPress.svg",
"pricing": [
"freemium",
"low",
"recurring"
],
"requires": [
"WordPress"
],
"saas": true,
"scriptSrc": [
"/wp-content/themes/seopress/"
],
"website": "https://www.seopress.org"
},
"SEOmatic": {
"cats": [
54
],
"description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3.",
"icon": "SEOmatic.svg",
"implies": [
"Craft CMS"
],
"meta": {
"generator": "^SEOmatic$"
},
"pricing": [
"onetime"
],
"saas": true,
"website": "https://plugins.craftcms.com/seomatic"
},
"SEOmator": {
"cats": [
54
],
"description": "SEOmator is an AI-powered SEO and SEM platform designed for website optimisation.",
"icon": "SEOmator.svg",
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scriptSrc": [
"//seomator\\.com/"
],
"website": "https://seomator.com"
},
"SEUR": {
"cats": [
99
],
"description": "SEUR is a Spanish shipments and express transport company.",
"icon": "DPD.svg",
"requiresCategory": [
6
],
"text": [
"\\bSEUR\\b"
],
"website": "https://www.seur.com"
},
"SHE Media": {
"cats": [
36
],
"description": "SHE Media is an ad network, which means that they basically serve as a coordinator between advertisers and publishers (bloggers).",
"icon": "SHE Media.png",
"js": {
"SheMedia": "",
"blogherads.adq": ""
},
"pricing": [
"payg"
],
"saas": true,
"website": "https://www.shemedia.com"
},
"SIDEARM Sports": {
"cats": [
1
],
"description": "SIDEARM Sports provides the software and technology that powers the websites, livestats, and video streaming for athletic programs North America.",
"icon": "SIDEARM Sports.svg",
"implies": [
"Microsoft ASP.NET"
],
"js": {
"sidearmComponents": "",
"sidearmsports": ""
},
"pricing": [
"poa"
],
"website": "https://sidearmsports.com/websites"
},
"SIMsite": {
"cats": [
1
],
"icon": "SIMsite.png",
"meta": {
"SIM.medium": ""
},
"scriptSrc": [
"/sim(?:site|core)/js"
],
"website": "https://simgroep.nl/internet/portfolio-contentbeheer_41623/"
},
"SNO Flex": {
"cats": [
80
],
"description": "SNO Flex is a WordPress theme developed by SNO Sites. SNO Sites is a company that specialises in providing website solutions for schools and educational institutions.",
"icon": "SNO.svg",
"js": {
"sno_infographics_ajax_object": ""
},
"pricing": [
"onetime",
"recurring"
],
"requires": [
"WordPress"
],
"website": "https://snosites.com"
},
"SOBI 2": {
"cats": [
19
],
"description": "SOBI2 is an older version of the SOBI (Simple Open Business Index) directory extension for Joomla. It was used for creating and managing directory listings on Joomla-powered websites, allowing users to list businesses, services, or other types of entries.",
"html": [
"(?:<!-- start of Sigsiu Online Business Index|<div[^>]* class=\"sobi2)"
],
"icon": "Sobi.svg",
"implies": [
"Joomla"
],
"js": {
"sobi2Cats": ""
},
"website": "https://www.sigsiu.net/sobi2.html"
},
"SOPlanning": {
"cats": [
13
],
"description": "SOPlanning is an online project management software that enhances team visibility and facilitates task coordination through a centralized platform.",
"icon": "SOPlanning.svg",
"meta": {
"email": "^support@soplanning\\.org$"
},
"pricing": [
"low",
"recurring",
"poa"
],
"website": "https://www.soplanning.org/en/"
},
"SOTA CRM": {
"cats": [
53
],
"description": "SOTA CRM is a software solution designed to help businesses manage customer relationships and related data.",
"icon": "SOTACRM.svg",
"pricing": [
"freemium",
"mid",
"recurring"
],
"saas": true,
"scripts": [
"app\\.sotacrm\\.com"
],
"website": "https://sotacrm.com"
},
"SPDY": {
"cats": [
19
],
"excludes": [
"HTTP/2"
],
"headers": {
"X-Firefox-Spdy": "\\d\\.\\d"
},
"icon": "SPDY.png",
"website": "https://chromium.org/spdy"
},
"SPIP": {
"cats": [
1
],
"cpe": "cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:*",
"description": "SPIP is a content management system written in PHP that uses one or more databases like SQL, SQLite or PostgreSQL.",
"dom": [
"div.formulaire_spip"
],
"headers": {
"Composed-By": "SPIP ([\\d.]+) @\\;version:\\1",
"X-Spip-Cache": ""
},
"icon": "spip.svg",
"implies": [
"PHP"
],
"meta": {
"generator": "(?:^|\\s)SPIP(?:\\s([\\d.]+(?:\\s\\[\\d+\\])?))?\\;version:\\1"
},
"oss": true,
"website": "https://www.spip.net"
},
"SPNEGO": {
"cats": [
16
],
"description": "SPNEGO is an authentication method commonly used in Windows servers to allow NTLM or Kerberos authentication.",
"headers": {
"WWW-Authenticate": "^Negotiate"
},
"website": "https://tools.ietf.org/html/rfc4559"
},
"SPREAD": {
"cats": [
32
],
"description": "SPREAD is a platform offering tailored marketing campaigns designed to enhance ecommerce engagement and performance.",
"icon": "SPREAD.svg",
"js": {
"loadSpreadTracker": ""
},
"saas": true,
"website": "https://www.spreadfamily.fr"
},
"SQL Buddy": {
"cats": [
3
],
"description": "SQL Buddy is an open-source web-based application written in PHP to handle the administration of MySQL and SQLite with the use of a Web browser.",
"html": [
"(?:<title>SQL Buddy</title>|<[^>]+onclick=\"sideMainClick\\(\"home\\.php)"
],
"icon": "SQL Buddy.png",
"implies": [
"PHP"
],
"website": "https://www.sqlbuddy.com"
},
"SQLite": {
"cats": [
34
],
"cpe": "cpe:2.3:a:sqlite:sqlite:*:*:*:*:*:*:*:*",
"icon": "SQLite.png",
"website": "https://www.sqlite.org"
},
"STN Video": {
"cats": [
36,
14
],
"description": "STN Video is a online video platform that solves digital video for publishers, content creators, and advertisers.",
"icon": "STN Video.svg",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"embed\\.sendtonews\\.com/"
],
"scripts": [
"embed\\.sendtonews\\.com/"
],
"website": "https://www.stnvideo.com"
},
"STUDIO": {
"cats": [
51
],
"description": "STUDIO is a Japan-based company and SaaS application for designing and hosting websites. The service includes a visual editor with built-in CMS and analytics.",
"dom": [
".StudioCanvas, .publish-studio-style"
],
"icon": "STUDIO.svg",
"implies": [
"Vue.js",
"Nuxt.js",
"Firebase",
"Google Cloud",
"Google Tag Manager"
],
"meta": {
"generator": "^STUDIO$"
},
"pricing": [
"low",
"recurring",
"freemium"
],
"saas": true,
"website": "https://studio.design"
},
"SUSE": {
"cats": [
28
],
"description": "SUSE is a Linux-based server operating system.",
"headers": {
"Server": "SUSE(?:/?\\s?-?([\\d.]+))?\\;version:\\1",
"X-Powered-By": "SUSE(?:/?\\s?-?([\\d.]+))?\\;version:\\1"
},
"icon": "SUSE.svg",
"website": "https://suse.com"
},
"SVG Support": {
"cats": [
87
],
"description": "SVG Support is a WordPress plugin which allows you to safely upload SVG files to your media library and use them like any other image.",
"dom": [
"link[href*='/wp-content/plugins/svg-support/']"
],
"icon": "SVG Support.png",
"oss": true,
"requires": [
"WordPress"
],
"scriptSrc": [
"/wp-content/plugins/svg-support/"
],
"website": "https://github.com/wp-plugins/svg-support"
},
"SWC": {
"cats": [
19
],
"description": "SWC is an extensible Rust-based platform for the next generation of fast developer tools.",
"icon": "swc.svg",
"oss": true,
"website": "https://swc.rs"
},
"SWFObject": {
"cats": [
19
],
"description": "SWFObject is an open-source JavaScript library used to embed Adobe Flash content onto web pages.",
"icon": "SWFObject.svg",
"js": {
"SWFObject": ""
},
"oss": true,
"scriptSrc": [
"swfobject.*\\.js"
],
"website": "https://github.com/swfobject/swfobject"
},
"SaaSquatch": {
"cats": [
94,
84
],
"description": "SaaSquatch is a cloud-based loyalty, referral and rewards marketing platform.",
"icon": "SaaSquatch.svg",
"js": {
"SAASQUATCH_TENANT_ALIAS": "",
"squatch.CtaWidget": "",
"squatchQuery": ""
},
"pricing": [
"high",
"recurring"
],
"saas": true,
"scriptSrc": [
"(?:\\.cloudfront\\.net/assets/javascripts/(?:v2/)?|/sas)squatch\\.min\\.js"
],
"website": "https://www.saasquatch.com"
},
"Saba.Host": {
"cats": [
88
],
"description": "Saba.Host is a total web-hosting solutions. It provides shared hosting, WordPress hosting, dedicated server, virtual private server (VPS), SSL and more.",
"dns": {
"SOA": "\\.saba\\.host"
},
"icon": "Saba.Host.svg",
"pricing": [
"recurring"
],
"website": "https://saba.host"
},
"SabaVision": {
"cats": [
36
],
"description": "SabaVision, one of the core products of SabaIdea, is Iran's largest online advertising agency.",
"icon": "SabaVision.svg",
"js": {
"SabavisionElement": "",
"__SABAVISION_GET_ADD_TIMEOUT": "",
"sabaVisionWebsiteID": "",
"sabaVisionWebsitePage": ""
},
"meta": {
"sabavision_zone": ""
},
"website": "https://www.sabavision.com"
},
"SabeeApp": {
"cats": [
53,
72
],
"description": "SabeeApp is a property management system for hoteliers, managing reservations, controlling online distribution platforms, handling payments, and engaging with guests.",
"icon": "SabeeApp.svg",
"js": {
"webhome": "ibe\\.sabeeapp\\.com"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"ibe\\.sabeeapp\\.com/v(\\d+)/scripts\\;version:\\1"
],
"website": "https://www.sabeeapp.com"
},
"Saber": {
"cats": [
57
],
"description": "Saber is a framework for building static websites.",
"html": [
"<div [^>]*id=\"_saber\""
],
"icon": "Saber.svg",
"implies": [
"Vue.js"
],
"meta": {
"generator": "^Saber v([\\d.]+)$\\;version:\\1"
},
"website": "https://saber.land/"
},
"SafeBuy": {
"cats": [
90
],
"description": "SafeBuy is a platform that reviews consumer feedback, verifies site links, ensures data privacy, and checks legal compliance to generate a reliable Universal Rating for customers.",
"dom": [
"a[href*='www.safebuy.org.uk'] > img[src*='.safebuy.org.uk']"
],
"icon": "SafeBuy.svg",
"saas": true,
"website": "https://www.safebuy.org.uk"
},
"Sails.js": {
"cats": [
18
],
"cookies": {
"sails.sid": ""
},
"headers": {
"X-Powered-By": "^Sails(?:$|[^a-z0-9])"
},
"icon": "Sails.js.svg",
"implies": [
"Express"
],
"website": "https://sailsjs.org"
},
"Sailthru": {
"cats": [
32,
75,
76
],
"cookies": {
"sailthru_pageviews": ""
},
"description": "Sailthru is a marketing automation software and multi-channel personalisation tool that serves ecommerce and media brands.",
"dom": {
"link[href*='ak.sail-horizon.com'],link[href*='api.sail-personalize.com'],link[href*='api.sail-track.com']": {
"attributes": {
"href": ""
}
}
},
"icon": "Sailthru.svg",
"js": {
"Sailthru": "",
"sailthruIdentify": "",
"sailthruNewsletterRegistration": "",
"trackSailthruUser": ""
},
"meta": {
"sailthru.image.full": "",
"sailthru.title": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"ak\\.sail-horizon\\.com"
],
"website": "https://www.sailthru.com"
},
"Sakai": {
"cats": [
21
],
"cookies": {
"SAKAIID": ""
},
"cpe": "cpe:2.3:a:sakailms:sakai:*:*:*:*:*:*:*:*",
"description": "Sakai is a robust open-source learning management system created by higher ed for higher ed.",
"icon": "Sakai.svg",
"js": {
"sakai": "",
"sakaiPortalWindow": "",
"sakaiTutorialSkin": ""
},
"oss": true,
"website": "https://www.sakailms.org"
},
"Sakura Internet": {
"cats": [
88
],
"description": "Sakura Internet is a web hosting provider that has been operating for almost 30 years.",
"dns": {
"NS": "\\.gslbN\\.sakura\\.ne\\.jp",
"SOA": "tech\\.sakura\\.ad\\.jp"
},
"icon": "Sakura Internet.svg",
"pricing": [
"payg"
],
"website": "https://www.sakura.ad.jp"
},
"SaleCycle": {
"cats": [
76
],
"description": "SaleCycle is a UK based global behavioral marketing firm.",
"dom": [
"iframe[src*='.salecycle.com'][target='_self']"
],
"icon": "salecycle.svg",
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.salecycle.com"
},
"Saleor": {
"cats": [
6
],
"cpe": "cpe:2.3:a:saleor:saleor:*:*:*:*:*:*:*:*",
"description": "Saleor is a headless, GraphQL ecommerce platform.",
"dom": {
"img[src*='saleor'], img[srcset*='saleor'], link[imagesrcset*='saleor']": {
"attributes": {
"imagesrcset": "/_next.+-saleor-",
"src": "saleor\\.imgix\\.net",
"srcset": "/_next.+-saleor-"
}
}
},
"icon": "Saleor.svg",
"implies": [
"GraphQL"
],
"js": {
"__NEXT_DATA__.runtimeConfig.SALEOR": "",
"___NEXT_DATA__.runtimeConfig.SALEOR": ""
},
"oss": true,
"pricing": [
"freemium",
"high",
"recurring"
],
"saas": true,
"website": "https://saleor.io"
},
"SalesCandy": {
"cats": [
53
],
"description": "SalesCandy is a sales performance improvement solution designed to optimize sales team efficiency through automated lead distribution, real-time tracking, and actionable insights.",
"icon": "SalesCandy.svg",
"saas": true,
"scriptSrc": [
"\\.salescandy\\.com/"
],
"scripts": [
"\\.salescandy\\.com/"
],
"website": "https://www.salescandy.com"
},
"SalesFire": {
"cats": [
76,
29
],
"description": "SalesFire is a SaaS company specialising in conversion rate optimisation, intelligent personalisation and on-site search solutions.",
"icon": "SalesFire.svg",
"js": {
"loadSalesfire": ""
},
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scriptSrc": [
"cdn\\.salesfire\\.co\\.uk/"
],
"website": "https://www.salesfire.co.uk"
},
"SalesReps.io": {
"cats": [
10
],
"description": "SalesReps.io is a sales representative performance and commission reporting software provider.",
"icon": "SalesReps.io.svg",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": [
"api\\.salesreps\\.io/"
],
"website": "https://salesreps.io"
},
"SalesViewer": {
"cats": [
10,
32
],
"description": "SalesViewer is a tool that identifies anonymous website visitors.",
"icon": "SalesViewer.svg",
"js": {
"SV_JSON": "",
"SV_XHR": "",
"SV_XHR_0": ""
},
"pricing": [
"freemium",
"mid",
"recurring"
],
"saas": true,
"website": "https://www.salesviewer.com"
},
"Salesfloor": {
"cats": [
5,
6
],
"description": "Salesfloor is a mobile clienteling and virtual selling platform designed for store associates to connect with customers-beyond the store and a mpos platform for frictionless in-store experiences.",
"dom": [
"iframe[src*='.salesfloor.net'], div[data-siterefer='salesfloor']"
],
"icon": "salesfloor.svg",
"js": {
"NMConfig.SALESFLOOR_ENV": "",
"salesFloorHost": ""
},
"pricing": [
"recurring"
],
"saas": true,
"scriptSrc": [
"\\.salesfloor\\.net/"
],
"website": "https://salesfloor.net"
},
"Salesforce": {
"cats": [
53
],
"cookies": {
"com.salesforce": ""
},
"cpe": "cpe:2.3:a:salesforce:*:*:*:*:*:*:*:*:*",
"description": "Salesforce is a cloud computing service software (SaaS) that specializes in customer relationship management (CRM).",
"dns": {
"TXT": [
"salesforce\\.com"
]
},
"html": [
"<[^>]+=\"brandQuaternaryFgrs\""
],
"icon": "Salesforce.svg",
"js": {
"SFDCApp": "",
"SFDCCmp": "",
"SFDCPage": "",
"SFDCSessionVars": "",
"pardot": "",
"piHostname": "pi.pardot"
},
"pricing": [
"low"
],
"saas": true,
"website": "https://www.salesforce.com"
},
"Salesforce Audience Studio": {
"cats": [
86,
97
],
"description": "Salesforce Audience Studio is a customer data marketplace that only other platform users can access.",
"dom": [
"link[href*='.krxd.net']"
],
"icon": "Salesforce.svg",
"js": {
"Krux": "",
"updateKruxCookie": ""
},
"pricing": [
"high",
"recurring"
],
"saas": true,
"scriptSrc": [
"\\.krxd\\.net/"
],
"website": "https://www.salesforce.com/products/marketing-cloud/data-management"
},
"Salesforce Commerce Cloud": {
"cats": [
6
],
"cookies": {
"dw_dnt": "",
"dwsid": ""
},
"description": "Salesforce Commerce Cloud is a cloud-based software-as-a-service (SaaS) ecommerce solution.",
"headers": {
"Server": "Demandware eCommerce Server"
},
"icon": "Salesforce.svg",
"implies": [
"Salesforce"
],
"js": {
"dwAnalytics": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"/demandware\\.static/"
],
"website": "https://demandware.com"
},
"Salesforce Desk": {
"cats": [
53
],
"description": "Salesforce Desk(Desk.com) is software as a service (SaaS) tool on the help desk.",
"dom": [
"link[href*='/s/sfsites/']"
],
"icon": "Salesforce.svg",
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scriptSrc": [
"^/s/sfsites/auraFW/"
],
"website": "https://www.salesforce.com/solutions/small-business-solutions/help-desk-software/"
},
"Salesforce Interaction Studio": {
"cats": [
76,
86
],
"description": "Salesforce Interaction Studio (formerly Evergage) is a cloud-based software that allows users to collect, analyze, and respond to user behavior on their websites and web applications in real-time.",
"icon": "Salesforce.svg",
"js": {
"Evergage": "",
"evergageHideSections": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"cdn\\.evgnet\\.com"
],
"website": "https://www.salesforce.com/products/marketing-cloud/customer-interaction"
},
"Salesforce Marketing Cloud Account Engagement": {
"cats": [
32
],
"description": "Salesforce Marketing Cloud Account Engagement (formerly known as Pardot) is an application specifically designed for B2B marketing automation.",
"dns": {
"TXT": [
"pardot"
]
},
"dom": [
"iframe[scr*='.pardot.com/']"
],
"headers": {
"X-Pardot-LB": "",
"X-Pardot-Route": "",
"X-Pardot-Rsp": ""
},
"icon": "Salesforce.svg",
"js": {
"piAId": "",
"piCId": "",
"piHostname": "",
"piProtocol": "",