forked from dochne/wappalyzer
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathr.json
2556 lines (2556 loc) · 63.9 KB
/
r.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
{
"RBS Change": {
"cats": [
1,
6
],
"html": "<html[^>]+xmlns:change=",
"icon": "RBS Change.png",
"implies": "PHP",
"meta": {
"generator": "RBS Change"
},
"website": "https://www.rbschange.fr"
},
"RCMS": {
"cats": [
1
],
"icon": "RCMS.png",
"meta": {
"generator": "^(?:RCMS|ReallyCMS)"
},
"website": "https://www.rcms.fi"
},
"RD Station": {
"cats": [
32
],
"description": "RD Station is a platform that helps medium and small businesses manage and automate their Digital Marketing strategy.",
"icon": "RD Station.png",
"js": {
"RDStation": ""
},
"scriptSrc": "d335luupugsy2\\.cloudfront\\.net/js/loader-scripts/.*-loader\\.js",
"website": "https://rdstation.com.br"
},
"RDoc": {
"cats": [
4
],
"cpe": "cpe:2.3:a:dave_thomas:rdoc:*:*:*:*:*:*:*:*",
"description": "RDoc produces HTML and command-line documentation for Ruby projects.",
"html": [
"<link[^>]+href=\"[^\"]*rdoc-style\\.css",
"Generated by <a[^>]+href=\"https?://rdoc\\.rubyforge\\.org[^>]+>RDoc</a> ([\\d.]*\\d)\\;version:\\1",
"Generated by <a href=\"https:\\/\\/ruby\\.github\\.io\\/rdoc\\/\">RDoc<\\/a> ([\\d.]*\\d)\\;version:\\1"
],
"icon": "RDoc.png",
"implies": "Ruby",
"js": {
"rdoc_rel_prefix": ""
},
"website": "https://github.com/ruby/rdoc"
},
"REDAXO": {
"cats": [
1
],
"description": "REDAXO is a content management system that provides business optimisation through web projects and output codes.",
"icon": "REDAXO.png",
"implies": "PHP",
"js": {
"redaxo": "\\;confidence:50"
},
"oss": true,
"url": "^https?://(?:www\\.)?[\\d\\w\\-]+\\.[\\w]+/redaxo/\\;confidence:50",
"website": "https://redaxo.org"
},
"REG.RU": {
"cats": [
88
],
"description": "REG.RU is a web hosting provider and internet domain registrar.",
"dns": {
"SOA": "(?:\\.hosting)?\\.reg\\.ru"
},
"icon": "REG.RU.svg",
"pricing": [
"low",
"recurring"
],
"website": "https://www.reg.ru"
},
"RND": {
"cats": [
6
],
"description": "RND is a software technology used for companies to set up ecommerce infrastructure.",
"dom": "div#rnd-mobile-menu, a[href*='www.rnd.com.tr/?utm_source='][target='_blank']",
"icon": "RND.png",
"pricing": [
"recurring"
],
"requires": [
"Microsoft ASP.NET",
"New Relic"
],
"saas": true,
"scriptSrc": "/Scripts/plugins/rnd-mobilemenu/",
"website": "https://www.rnd.com.tr/en/"
},
"RSS": {
"cats": [
19
],
"description": "RSS is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format.",
"dom": {
"link[type*='application']": {
"attributes": {
"type": "application/(?:rss|atom)\\+xml"
}
}
},
"icon": "RSS.svg",
"website": "https://www.rssboard.org/rss-specification"
},
"RTB House": {
"cats": [
77
],
"description": "RTB House is a company that provides learning-powered retargeting solutions for brands and agencies.",
"icon": "RTB House.png",
"pricing": [
"payg"
],
"saas": true,
"website": "https://www.rtbhouse.com",
"xhr": "\\.creativecdn\\.com"
},
"RX Web Server": {
"cats": [
22
],
"headers": {
"X-Powered-By": "RX-WEB"
},
"icon": "RXWeb.svg",
"website": "https://developers.rokitax.co.uk/projects/rxweb"
},
"RackCache": {
"cats": [
23
],
"description": "RackCache is a quick drop-in component to enable HTTP caching for Rack-based applications.",
"headers": {
"X-Rack-Cache": ""
},
"icon": "RackCache.png",
"implies": "Ruby",
"website": "https://github.com/rtomayko/rack-cache"
},
"Radix UI": {
"cats": [
66
],
"css": [
"--radix-accordion-content-height",
"--radix-toast-swipe-end-x",
"--radix-toast-swipe-move-x",
"--radix-navigation-menu-viewport-width",
"--radix-navigation-menu-viewport-height",
"--radix-select-trigger-width",
"--radix-select-trigger-height",
"--radix-context-menu-content-transform-origin",
"--radix-context-menu-content-available-height",
"--radix-dropdown-menu-content-available-height",
"--radix-dropdown-menu-content-transform-origin",
"--radix-hover-card-content-transform-origin",
"--radix-popover-trigger-width",
"--radix-popover-content-transform-origin",
"--radix-select-trigger-width",
"--radix-select-content-available-height",
"--radix-select-content-transform-origin",
"--radix-tooltip-content-transform-origin"
],
"description": "Radix UI is a React-based user interface component library that offers accessible, responsive, and customisable components for building web applications.",
"dom": "a[data-radix-collection-item], button[data-radix-collection-item]",
"icon": "Radix UI.svg",
"oss": true,
"requires": "React",
"website": "https://www.radix-ui.com"
},
"Rain": {
"cats": [
6
],
"description": "Rain is a cloud-based point of sale (POS) system for small to midsized retailers.",
"icon": "Rain.svg",
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": "\\.rainpos\\.com/",
"website": "https://www.rainpos.com"
},
"RainLoop": {
"cats": [
30
],
"description": "RainLoop is a web-based email client.",
"headers": {
"Server": "^RainLoop"
},
"html": [
"<link[^>]href=\"rainloop/v/([0-9.]+)/static/apple-touch-icon\\.png/>\\;version:\\1"
],
"icon": "RainLoop.png",
"implies": "PHP",
"js": {
"rainloop": "",
"rainloopI18N": ""
},
"meta": {
"rlAppVersion": "^([0-9.]+)$\\;version:\\1"
},
"scriptSrc": "^rainloop/v/([0-9.]+)/\\;version:\\1",
"website": "https://www.rainloop.net/"
},
"RaiseDonors": {
"cats": [
111
],
"description": "RaiseDonors is for anyone raising money and cultivating donor relationships online.",
"dom": "a[href*='//raisedonors.com/'][target='_blank']",
"icon": "RaiseDonors.png",
"meta": {
"author": "^RaiseDonors$"
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://explore.raisedonors.com"
},
"Raisely": {
"cats": [
111
],
"description": "Raisely is a cloud-based fundraising platform that helps non-profits and charities drive fundraising campaigns and collect donations.",
"icon": "Raisely.svg",
"js": {
"RaiselyComponents": "",
"__raiselyDebug": "",
"wpRaisely": ""
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"website": "https://raisely.com"
},
"Rakuten": {
"cats": [
71
],
"cookies": {
"rakuten-source": ""
},
"description": "Rakuten (formerly Ebates) allows you to earn cash-back rewards.",
"icon": "Rakuten.svg",
"js": {
"rakutenRanMID": "",
"rakutenSource": ""
},
"scriptSrc": [
"tag\\.rmp\\.rakuten\\.com",
"\\.linksynergy\\.com"
],
"website": "https://www.rakuten.com/"
},
"Rakuten Advertising": {
"cats": [
36
],
"icon": "Rakuten Advertising.svg",
"scriptSrc": "tag\\.rmp\\.rakuten\\.com",
"website": "https://rakutenadvertising.com/"
},
"Rakuten Digital Commerce": {
"cats": [
6
],
"icon": "RakutenDigitalCommerce.png",
"js": {
"RakutenApplication": ""
},
"website": "https://digitalcommerce.rakuten.com.br"
},
"Ramda": {
"cats": [
59
],
"icon": "Ramda.png",
"scriptSrc": "ramda.*\\.js",
"website": "https://ramdajs.com"
},
"RankMath SEO": {
"cats": [
87,
54
],
"description": "RankMath SEO is a search engine optimisation plugin for WordPress.",
"dom": "link[href*='/wp-content/plugins/seo-by-rank-math/'], script.rank-math-schema-pro, script.rank-math-schema",
"icon": "RankMath SEO.svg",
"pricing": [
"freemium",
"low",
"recurring"
],
"requires": "WordPress",
"scriptSrc": "/wp-content/plugins/seo-by-rank-math(?:-pro)?/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
"website": "https://rankmath.com"
},
"Raphael": {
"cats": [
25
],
"description": "Raphael is a cross-browser JavaScript library that draws Vector graphics for websites.",
"icon": "Raphael.png",
"js": {
"Raphael.version": "^(.+)$\\;version:\\1"
},
"scriptSrc": "raphael(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1",
"website": "https://dmitrybaranovskiy.github.io/raphael/"
},
"RapidSec": {
"cats": [
16
],
"description": "RapidSec offers automated client-side security and monitoring.",
"headers": {
"Content-Security-Policy": "\\.rapidsec\\.net",
"Content-Security-Policy-Report-Only": "\\.rapidsec\\.net",
"report-to": "\\.rapidsec\\.net"
},
"icon": "RapidSec.svg",
"pricing": [
"mid",
"freemium",
"recurring"
],
"saas": true,
"website": "https://rapidsec.com"
},
"RapidSpike": {
"cats": [
13,
78
],
"description": "RapidSpike is an uptime and performance monitoring service for web sites and applications.",
"icon": "RapidSpike.svg",
"js": {
"rspike_timing": ""
},
"pricing": [
"poa",
"recurring"
],
"saas": true,
"scriptSrc": "\\.rapidspike\\.com/",
"website": "https://www.rapidspike.com"
},
"Raptor": {
"cats": [
76
],
"description": "Raptor is a personalisation engine based on machine learning that analyses and learns about the user's behavior and unique browser history.",
"icon": "Raptor.png",
"js": {
"Raptor": "",
"onRaptorLoaded": "",
"raptorBase64": ""
},
"pricing": [
"poa"
],
"saas": true,
"scriptSrc": [
"api\\.raptorsmartadvisor\\.com",
"msecnd\\.net/script/raptor-([\\d.]+)\\.js\\;version:\\1"
],
"website": "https://raptorsmartadvisor.com"
},
"Raspbian": {
"cats": [
28
],
"description": "Raspbian is a free operating system for the Raspberry Pi hardware.",
"headers": {
"Server": "Raspbian",
"X-Powered-By": "Raspbian"
},
"icon": "Raspbian.svg",
"website": "https://www.raspbian.org/"
},
"RateParity": {
"cats": [
5
],
"description": "RateParity is a conversion rate optimisation platform for hotels.",
"icon": "RateParity.svg",
"pricing": [
"recurring",
"mid"
],
"saas": true,
"scriptSrc": "code\\.rateparity\\.com/",
"website": "https://www.rateparity.com"
},
"Rawabit": {
"cats": [
51
],
"cookies": {
"rawabit_session": ""
},
"description": "Rawabit is a website builder that lets small businesses design landing pages, modify sections, and embed content links using a drag and drop editor.",
"icon": "Rawabit.svg",
"meta": {
"powered-by": "^Rawabit$"
},
"pricing": [
"freemium",
"recurring",
"low"
],
"saas": true,
"website": "https://www.rawabit.me"
},
"Raychat": {
"cats": [
52
],
"description": "Raychat is a free customer messaging platform.",
"icon": "raychat.png",
"js": {
"Raychat": ""
},
"scriptSrc": "app\\.raychat\\.io/scripts/js",
"website": "https://raychat.io"
},
"Raygun": {
"cats": [
78,
13
],
"description": "Raygun is a cloud-based networking monitoring and bug tracking application.",
"icon": "Raygun.svg",
"js": {
"Raygun": "",
"raygunEnabled": "",
"raygunFactory": ""
},
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scriptSrc": "\\.raygun\\.io",
"website": "https://raygun.com"
},
"Rayo": {
"cats": [
1
],
"icon": "Rayo.png",
"implies": [
"AngularJS",
"Microsoft ASP.NET"
],
"js": {
"Rayo": ""
},
"meta": {
"generator": "^Rayo"
},
"website": "https://www.rayo.ir"
},
"Razorpay": {
"cats": [
41
],
"description": "Razorpay is a provider of an online payment gateway that allows businesses to accept, process, and disburse payments.",
"icon": "Razorpay.svg",
"js": {
"Razorpay": ""
},
"pricing": [
"payg"
],
"scriptSrc": "checkout\\.razorpay\\.com",
"website": "https://razorpay.com/"
},
"Re:amaze": {
"cats": [
52
],
"description": "Re:amaze is a multi-brand customer service, live chat, and help desk solution.",
"icon": "Re-amaze.png",
"js": {
"reamaze.version": "^([\\d\\.]+)$\\;version:\\1"
},
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scriptSrc": "\\.reamaze\\.com/",
"website": "https://www.reamaze.com"
},
"ReCaptcha v2 for Contact Form 7": {
"cats": [
87
],
"description": "Contact Form 7 v5.1 dropped support for reCaptcha v2 along with the [recaptcha] tag December 2018. This plugin brings that functionality back from Contact Form 7 5.0.5 and re-adds the [recaptcha] tag.",
"icon": "ReCaptcha v2 for Contact Form 7.svg",
"implies": "Contact Form 7",
"pricing": [
"freemium"
],
"requires": "WordPress",
"scriptSrc": "/wp-content/plugins/wpcf7-recaptcha/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
"website": "https://wordpress.org/plugins/wpcf7-recaptcha/"
},
"ReConvert": {
"cats": [
100
],
"description": "ReConvert is a post-purchase upsell & thank you page.",
"icon": "ReConvert.svg",
"implies": "Shopify",
"pricing": [
"low",
"payg",
"freemium",
"recurring"
],
"saas": true,
"scriptSrc": "\\.stilyoapps\\.com/reconvert/assets/js/store_reconvert_node\\.js",
"website": "https://www.reconvert.io"
},
"ReDoc": {
"cats": [
4
],
"description": "Redoc is an open-source tool that generates API documentation from OpenAPI specifications.",
"html": "<redoc ",
"icon": "redoc.png",
"implies": "React",
"js": {
"Redoc.version": "^(.+)$\\;version:\\1"
},
"scriptSrc": "/redoc\\.(?:min\\.)?js",
"website": "https://github.com/Rebilly/ReDoc"
},
"React": {
"cats": [
12
],
"cpe": "cpe:2.3:a:facebook:react:*:*:*:*:*:*:*:*",
"description": "React is an open-source JavaScript library for building user interfaces or UI components.",
"dom": {
"body > div": {
"properties": {
"_reactRootContainer": ""
}
},
"div[id*='react-root'], span[id*='react-']": {
"exists": ""
}
},
"html": "<[^>]+data-react",
"icon": "React.svg",
"js": {
"React.version": "^([\\d\\.]+)$\\;version:\\1",
"ReactOnRails": "",
"__REACT_ON_RAILS_EVENT_HANDLERS_RAN_ONCE__": ""
},
"meta": {
"description": "^Web site created using create-react-app$"
},
"scriptSrc": [
"react(?:-with-addons)?[.-](\\d+(?:\\.\\d+)+)[^/]*\\.js\\;version:\\1",
"/([\\d\\.]+)/react(?:\\.min)?\\.js\\;version:\\1",
"^react\\b.*\\.js"
],
"website": "https://reactjs.org"
},
"React Bricks": {
"cats": [
1
],
"description": "React Bricks is a visual editing CMS based on React components.",
"dom": {
"img[src*='react']": {
"attributes": {
"src": "react(?:-)?bricks\\."
}
}
},
"icon": "React Bricks.svg",
"implies": "React",
"pricing": [
"mid",
"recurring"
],
"requires": "React",
"saas": true,
"website": "https://reactbricks.com"
},
"React Redux": {
"cats": [
12
],
"description": "React Redux is the official React binding for Redux.",
"icon": "Redux.svg",
"implies": [
"React",
"Redux"
],
"scriptSrc": [
"/react-redux(@|/)([\\d.]+)(?:/[a-z]+)?/react-redux(?:.min)?\\.js\\;version:\\2"
],
"website": "https://react-redux.js.org/"
},
"React Router": {
"cats": [
12
],
"description": "React Router provides declarative routing for React.",
"icon": "React Router.svg",
"implies": "React",
"js": {
"__reactRouterVersion": "([\\d\\.]+)\\;version:\\1"
},
"oss": true,
"website": "https://reactrouter.com"
},
"Reactive": {
"cats": [
1,
6
],
"description": "Reactive is a subscription-based software that allows you to set up an online store and website. It has a CMS and has been created to support retail, coffee bars, restaurants owners and accomodation properties such as hotels or villas. With Reactive one can sell products or accept reservations and online orders.",
"icon": "Reactive.svg",
"implies": [
"Ruby on Rails"
],
"meta": {
"generator": "Reactive"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"url": "^https?//.+\\.reactiveonline\\.io",
"website": "https://reactiveonline.io"
},
"ReadAloud": {
"cats": [
5
],
"description": "The SiteSpeaker text-to-speech widget is embedded into your posts and give users an alternate way to consume your content as audio.",
"dom": "div#ra-player, div[data-skin*='assets\\.sitespeaker\\.link/embed/skins']",
"icon": "default.svg",
"website": "https://www.readaloudwidget.com",
"xhr": "assets\\.sitespeaker\\.link"
},
"ReadMe": {
"cats": [
4,
1
],
"description": "ReadMe is a content management system that businesses use to create and manage technical or API documentation.",
"icon": "readme.svg",
"meta": {
"readme-deploy": "^[\\d\\.]+$",
"readme-version": "^[\\d\\.]+$"
},
"pricing": [
"freemium",
"mid",
"recurring"
],
"scriptSrc": "/cdn\\.readme\\.io/js/",
"website": "https://readme.com"
},
"ReadSpeaker": {
"cats": [
5
],
"description": "ReadSpeaker is an intuitive text-to-speech API that converts text into natural-sounding audio files for websites and applications.",
"icon": "ReadSpeaker.svg",
"js": {
"ReadSpeaker": "",
"ReadSpeaker.meta.version": "^([\\d\\.]+)_.+$\\;version:\\1"
},
"pricing": [
"poa",
"low",
"recurring"
],
"saas": true,
"scriptSrc": "\\.readspeaker\\.com/",
"website": "https://www.readspeaker.com"
},
"Readymag": {
"cats": [
51
],
"description": "Readymag is a browser-based design tool that helps create websites, portfolios and all kinds of online publications without coding.",
"icon": "Readymag.svg",
"meta": {
"generator": "^Readymag$"
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"website": "https://readymag.com"
},
"Really Simple CAPTCHA": {
"cats": [
87
],
"description": "Really Simple CAPTCHA does not work alone and is intended to work with other plugins. It is originally created for Contact Form 7, however, you can use it with your own plugin.",
"dom": "img[src*='/wp-content/plugins/really-simple-captcha/']",
"icon": "Really Simple CAPTCHA.png",
"oss": true,
"requires": "WordPress",
"website": "https://wordpress.org/plugins/really-simple-captcha"
},
"Really Simple SSL & Security": {
"cats": [
16
],
"description": "Really Simple SSL & Security is an easy to install and performant security solution for WordPress.",
"dom": "body[data-rsssl]",
"icon": "really-simple-ssl.png",
"pricing": [
"freemium",
"recurring"
],
"requires": "WordPress",
"saas": true,
"website": "https://really-simple-ssl.com"
},
"RebelMouse": {
"cats": [
1
],
"headers": {
"x-rebelmouse-cache-control": "",
"x-rebelmouse-surrogate-control": ""
},
"html": "<!-- Powered by RebelMouse\\.",
"icon": "RebelMouse.svg",
"website": "https://www.rebelmouse.com/"
},
"Rebuy": {
"cats": [
76,
100
],
"description": "Rebuy offers personlisation solutions for ecommerce sites.",
"icon": "Rebuy.png",
"implies": [
"Cart Functionality"
],
"js": {
"rebuyConfig": ""
},
"pricing": [
"recurring",
"payg",
"low"
],
"scriptSrc": "rebuyengine\\.com",
"website": "https://rebuyengine.com/"
},
"Recapture": {
"cats": [
98
],
"description": "Recapture is an abandoned cart recovery and email marketing solution.",
"icon": "Recapture.png",
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "cdn\\.recapture\\.io/.+\\?v=\\d+(?:&ver=([\\d\\.]+)?)?\\;version:\\1",
"website": "https://recapture.io"
},
"Recart": {
"cats": [
98
],
"description": "Recart is a tool to engage users who abandoned their shopping cart via Facebook Messenger.",
"icon": "Recart.svg",
"js": {
"__recart": "",
"recart": ""
},
"scriptSrc": "api\\.recart\\.com",
"website": "https://recart.com/"
},
"Recent Posts Widget With Thumbnails": {
"cats": [
87
],
"description": "Recent Posts Widget With Thumbnails is based on the well-known WordPress default widget 'Recent Posts' and extended to display more informations about the posts.",
"dom": {
"link[href*='/wp-content/plugins/recent-posts-widget-with-thumbnails/']": {
"attributes": {
"href": "/wp-content/plugins/recent-posts-widget-with-thumbnails/.+\\.css(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1"
}
}
},
"icon": "Recent Posts Widget With Thumbnails.png",
"pricing": [
"freemium"
],
"requires": "WordPress",
"website": "https://wordpress.org/plugins/recent-posts-widget-with-thumbnails/"
},
"Recharge": {
"cats": [
41
],
"description": "Recharge is the a subscription payments platform designed for merchants to set up and manage dynamic recurring billing across web and mobile.",
"icon": "Recharge.svg",
"implies": [
"Cart Functionality"
],
"js": {
"ReChargeWidget": ""
},
"pricing": [
"recurring",
"payg",
"mid"
],
"saas": true,
"scriptSrc": [
"rechargeassets-bootstrapheroes-rechargeapps\\.netdna-ssl\\.com",
"\\.rechargecdn\\.com/"
],
"website": "https://rechargepayments.com"
},
"Recharts": {
"cats": [
25
],
"description": "Recharts is a component-based charting library, which is exclusively built for React applications.",
"dom": {
"div > div > svg.recharts-surface": {
"attributes": {
"class": ""
}
}
},
"icon": "Recharts.svg",
"implies": "React",
"oss": true,
"website": "https://recharts.org/"
},
"Recite Me": {
"cats": [
68
],
"description": "Recite Me is a web accessibility overlay that claims to allow website visitors to customize a site in a way that works for them.",
"icon": "Recite Me.png",
"scriptSrc": "api\\.reciteme\\.com/asset/js",
"website": "https://reciteme.com/"
},
"Recomify": {
"cats": [
100
],
"description": "Recomify is a 1-click install, cost-effective smart product recommendation engine.",
"icon": "Recomify.png",
"implies": "Shopify",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scriptSrc": "app\\.recomify\\.com/",
"website": "https://www.recomify.com"
},
"RecoverMyCart": {
"cats": [
76,
100
],
"description": "RecoverMyCart is a Shopify app for abandoned basket recovery.",
"icon": "RecoverMyCart.png",
"implies": "Shopify",
"pricing": [
"low",
"freemium",
"recurring"
],
"saas": true,
"scriptSrc": "cdn\\.recovermycart\\.com",
"website": "https://app.recovermycart.com/"
},
"Recruitee": {
"cats": [
101
],
"description": "Recruitee is an integrated cloud-based recruitment management and applicant tracking system.",
"dom": "a[href*='.recruitee.com']",
"icon": "Recruitee.svg",
"js": {
"RtApp.mapBoxToken": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://recruitee.com"
},
"Recurate": {
"cats": [
19
],
"description": "Recurate is a tech-enabled resale service that empowers brands & retailers to establish their own integrated resale platforms directly on their ecommerce sites.",
"dom": {
"a[href*='[email protected]']": {
"attributes": {
"href": "mailto\\:support\\@recurate\\.com"
}
},
"link[href*='/recurate-site.css']": {
"attributes": {
"href": "cdn\\.shopify\\.com/.+/recurate-site\\.css"
}
}
},
"icon": "Recurate.svg",
"requires": "Shopify",
"scripts": "\"(?:vendor|title)?\"\\:\"Recurate\"",
"website": "https://www.recurate.com"
},
"Recurly": {
"cats": [
41
],
"description": "Recurly provides enterprise-class subscription billing and recurring payment management for thousands of businesses worldwide.",
"html": "<input[^>]+data-recurly",
"icon": "Recurly.png",
"js": {
"recurly.version": "^(.+)$\\;version:\\1"
},
"scriptSrc": "js\\.recurly\\.com",
"website": "https://recurly.com"
},
"Red Hat": {
"cats": [
28
],
"cpe": "cpe:2.3:o:redhat:linux:*:*:*:*:*:*:*:*",
"description": "Red Hat is an open-source Linux operating system.",
"headers": {
"Server": "Red Hat",
"X-Powered-By": "Red Hat"
},
"icon": "Red Hat.svg",
"website": "https://www.redhat.com"
},
"Red Hat Gluster": {
"cats": [
48
],
"description": "Gluster is a free and open source scalable network filesystem.",
"icon": "gluster.png",
"saas": true,
"website": "https://www.gluster.org"
},
"Red je Pakketje": {
"cats": [
99
],
"description": "Red je Pakketje is a Dutch company specialised in same-day-delivery.",
"icon": "Red je Pakketje.svg",
"requiresCategory": 6,
"text": [
"\\bRed je Pakketje\\b"
],
"website": "https://redjepakketje.nl"
},
"RedCart": {
"cats": [