-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathp.json
More file actions
4102 lines (4102 loc) · 107 KB
/
p.json
File metadata and controls
4102 lines (4102 loc) · 107 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
{
"PCRecruiter": {
"cats": [
101
],
"description": "PCRecruiter is an ATS/CRM hybrid SaaS solution for recruiting and sourcing professionals.",
"icon": "PCRecruiter.png",
"js": {
"pcrbaseurl": "\\.pcrecruiter\\.net/",
"pcrdialog": "",
"pcrframeoptions": ""
},
"pricing": [
"recurring",
"mid"
],
"saas": true,
"website": "https://www.pcrecruiter.net"
},
"PDF Embedder": {
"cats": [
5,
87
],
"description": "Upload PDFs and embed them straight into a Wordpress site.",
"dom": "link[href*='/wp-content/plugins/pdf-embedder/']",
"icon": "PDF Embedder.png",
"oss": true,
"requires": "WordPress",
"scriptSrc": "pdf-embedder(?:\\/assets)?(?:\\/js)?(?:\\/min)?(?:\\/pdfjs)?(?:\\/pdf)?(?:\\/all-pdfemb)?(?:-basic)?(?:-min)?(?:-((?:\\d+\\.)+\\d+))?(?:\\.worker)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1\\;version:\\2",
"website": "https://wordpress.org/plugins/pdf-embedder/"
},
"PDF.js": {
"cats": [
19
],
"html": "<\\/div>\\s*<!-- outerContainer -->\\s*<div\\s*id=\"printContainer\"><\\/div>",
"icon": "PDF.js.svg",
"js": {
"PDFJS": "",
"PDFJS.version": "^(.+)$\\;version:\\1",
"_pdfjsCompatibilityChecked": "",
"pdfjsDistBuildPdf.version": "^(.+)$\\;version:\\1",
"pdfjsLib.version": "^(.+)$\\;version:\\1"
},
"url": "/web/viewer\\.html?file=[^&]\\.pdf",
"website": "https://mozilla.github.io/pdf.js/"
},
"PHP": {
"cats": [
27
],
"cookies": {
"PHPSESSID": ""
},
"cpe": "cpe:2.3:a:php:php:*:*:*:*:*:*:*:*",
"description": "PHP is a general-purpose scripting language used for web development.",
"headers": {
"Server": "php/?([\\d.]+)?\\;version:\\1",
"X-Powered-By": "^php/?([\\d.]+)?\\;version:\\1"
},
"icon": "PHP.svg",
"url": "\\.php(?:$|\\?)",
"website": "https://php.net"
},
"PHP-Nuke": {
"cats": [
1
],
"cpe": "cpe:2.3:a:phpnuke:php-nuke:*:*:*:*:*:*:*:*",
"html": "<[^>]+Powered by PHP-Nuke",
"icon": "PHP-Nuke.png",
"implies": "PHP",
"meta": {
"generator": "PHP-Nuke"
},
"website": "https://phpnuke.org"
},
"PHPDebugBar": {
"cats": [
47
],
"icon": "phpdebugbar.png",
"js": {
"PhpDebugBar": "",
"phpdebugbar": ""
},
"scriptSrc": [
"debugbar.*\\.js"
],
"website": "https://phpdebugbar.com/"
},
"PHPFusion": {
"cats": [
1
],
"cpe": "cpe:2.3:a:phpfusion:phpfusion:*:*:*:*:*:*:*:*",
"headers": {
"X-PHPFusion": "(.+)$\\;version:\\1",
"X-Powered-By": "PHPFusion (.+)$\\;version:\\1"
},
"html": [
"Powered by <a href=\"[^>]+phpfusion",
"Powered by <a href=\"[^>]+php-fusion"
],
"icon": "PHPFusion.png",
"implies": [
"PHP",
"MySQL"
],
"website": "https://phpfusion.com"
},
"PIXIjs": {
"cats": [
25
],
"description": "PIXIjs is a free open-source 2D engine used to make animated websites and HTML5 games.",
"icon": "PIXIjs.svg",
"js": {
"PIXI": "",
"PIXI.VERSION": "^(.+)$\\;version:\\1",
"PIXI_WEBWORKER_URL": ""
},
"oss": true,
"scriptSrc": "pixi(?:\\.min|-legacy)?\\.js$",
"url": ".+\\.pixijs\\.com",
"website": "https://www.pixijs.com"
},
"POLi Payment": {
"cats": [
41
],
"description": "POLi Payment(formerly known as Centricom) is an online payment service in Australia and New Zealand.",
"icon": "POLi Payment.svg",
"js": {
"wc_ga_pro.available_gateways.poli": ""
},
"pricing": [
"payg"
],
"saas": true,
"website": "https://www.polipayments.com"
},
"POWR": {
"cats": [
5
],
"description": "POWR is a cloud-based system of plugins that work on almost any website.",
"icon": "POWR.svg",
"js": {
"POWR_RECEIVERS": "",
"loadPowr": ""
},
"pricing": [
"low",
"recurring",
"freemium"
],
"saas": true,
"scriptSrc": "www\\.powr\\.io/powr\\.js",
"website": "https://www.powr.io"
},
"PRONOTE": {
"cats": [
21
],
"description": "PRONOTE is an information system created by Index Education, a French company, designed for deployment in approximately 7,400 schools to enable streamlined communication among administrative personnel, teachers, and families.",
"headers": {
"Server": "^PRONOTE\\s[\\d]{4}\\s-\\s([\\d\\.]+)\\;version:\\1"
},
"icon": "PRONOTE.png",
"meta": {
"application-name": "^PRONOTE$"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://www.index-education.com/fr/logiciel-gestion-vie-scolaire.php"
},
"PWA": {
"cats": [
19
],
"description": "Progressive Web Apps (PWAs) are web apps built and enhanced with modern APIs to deliver enhanced capabilities, reliability, and installability while reaching anyone, anywhere, on any device, all with a single codebase.",
"dom": "link[rel='manifest']",
"icon": "PWA.svg",
"website": "https://web.dev/progressive-web-apps/"
},
"PWA Studio": {
"cats": [
108
],
"description": "PWA Studio is a collection of tools that lets developers build complex Progressive Web Applications on top of Magento 2 or Adobe Commerce stores.",
"icon": "PWA Studio.png",
"js": {
"__fetchLocaleData__": "\\;confidence:50",
"fetchRootComponent": "\\;confidence:50"
},
"oss": true,
"scripts": "RootCmp_CMS_PAGE",
"website": "https://developer.adobe.com/commerce/pwa-studio/"
},
"Pace": {
"cats": [
41,
91
],
"description": "PacePay offers a BNPL (Buy now pay later) solution for merchants.",
"icon": "Pace.svg",
"js": {
"pacePay": "",
"rely_month_installment": "",
"rely_shop_currency": "",
"rely_shop_money_format": ""
},
"saas": true,
"scriptSrc": "pay\\.pacenow\\.co",
"website": "https://pacenow.co/"
},
"Packery": {
"cats": [
59,
66
],
"description": "Packery is a JavaScript library and jQuery plugin that makes gapless and draggable layouts.",
"icon": "Packery.svg",
"pricing": [
"onetime"
],
"scriptSrc": "packery(?:\\.pkgd)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1",
"website": "https://packery.metafizzy.co/"
},
"Packlink PRO": {
"cats": [
100,
99
],
"description": "Packlink PRO is a multicarrier shipping solutions for ecommerce and marketplaces.",
"icon": "Packlink.png",
"implies": "Shopify",
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "packlink-spf-pro\\.appspot\\.com/.+myshopify\\.com",
"website": "https://apps.shopify.com/packlink-pro"
},
"Paddle": {
"cats": [
41
],
"description": "Paddle is a billing and payment gateway for B2B SaaS companies.",
"icon": "Paddle.svg",
"js": {
"Paddle.Checkout": "",
"PaddleScriptLocation": ""
},
"pricing": [
"recurring",
"poa"
],
"saas": true,
"scriptSrc": "cdn\\.paddle\\.com/paddle/paddle\\.js",
"website": "https://paddle.com/"
},
"PagSeguro": {
"cats": [
41
],
"description": "PagSeguro is an online or mobile payment-based ecommerce service for commercial operations.",
"dom": "form[action*='pagseguro.uol.com.br'][target='pagseguro']",
"icon": "PagSeguro.svg",
"js": {
"PagSeguroDirectPayment": "",
"_PagSeguroDirectPayment": ""
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "\\.pagseguro\\.uol\\.com\\.br/",
"website": "https://pagseguro.uol.com.br"
},
"Pagar.me": {
"cats": [
41
],
"description": "Pagar.me is a Portuguese-language online payments solution for businesses in Brazil.",
"icon": "Pagar.me.svg",
"js": {
"PagarMeCheckout": "",
"pagarme.balance": ""
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "assets\\.pagar\\.me/",
"website": "https://pagar.me"
},
"Page Builder Framework": {
"cats": [
80
],
"description": "Page Builder Framework is a lightweight (less than 50kb on the frontend) and highly customizible WordPress theme.",
"icon": "Page Builder Framework.png",
"pricing": [
"low",
"recurring",
"onetime"
],
"requires": "WordPress",
"scriptSrc": "/wp-content/themes/page-builder-framework/.+site-min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
"website": "https://wp-pagebuilderframework.com"
},
"PageFly": {
"cats": [
51
],
"description": "PageFly is an app for Shopify that allows you to build landing pages, product pages, blogs, and FAQs.",
"headers": {
"X-Powered-By": "PageFly"
},
"icon": "pagefly.png",
"js": {
"__pagefly_setting__": ""
},
"saas": true,
"scriptSrc": "cdn\\.pagefly\\.io",
"website": "https://pagefly.io"
},
"PageLayer": {
"cats": [
5,
87
],
"description": "Drag and drop page builder for Wordpress.",
"dom": "link[href*='/wp-content/plugins/pagelayer/'], #pagelayer-frontend-css, #pagelayer-global-styles, .pagelayer-body, .pagelayer-header, .pagelayer-footer, .pagelayer-content",
"icon": "PageLayer.png",
"oss": true,
"requires": "WordPress",
"scriptSrc": "pagelayer(?:-frontend)?(?:\\/js)?(?:\\/combined)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1",
"website": "https://wordpress.org/plugins/pagelayer"
},
"Pagefai CMS": {
"cats": [
1
],
"description": "Pagefai is a cloud-based platform that offers software-as-a-service solutions to businesses, including the Pagefai CMS which provides ecommerce functionality and other business tools.",
"headers": {
"x-powered-by": "PAGEFAI CMS"
},
"icon": "Pagefai.png",
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.pagefai.com"
},
"Pagekit": {
"cats": [
1
],
"cpe": "cpe:2.3:a:pagekit:pagekit:*:*:*:*:*:*:*:*",
"icon": "Pagekit.png",
"meta": {
"generator": "Pagekit"
},
"website": "https://pagekit.com"
},
"Pagely": {
"cats": [
62,
88
],
"headers": {
"Server": "^Pagely"
},
"icon": "pagely.svg",
"implies": [
"WordPress",
"Amazon Web Services"
],
"website": "https://pagely.com/"
},
"Pagevamp": {
"cats": [
1
],
"headers": {
"X-ServedBy": "pagevamp"
},
"icon": "Pagevamp.png",
"js": {
"Pagevamp": ""
},
"website": "https://www.pagevamp.com"
},
"Paidy": {
"cats": [
41,
91
],
"description": "Paidy is basically a two-sided payments service, acting as a middleman between consumers and merchants in Japan.",
"icon": "Paidy.png",
"js": {
"Constants.paidy": ""
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "apps\\.paidy\\.com",
"website": "https://paidy.com"
},
"Paloma": {
"cats": [
100
],
"description": "Paloma helps ecommerce businesses sell directly to customers in messaging channels, with automated personal shopping conversations.",
"icon": "Paloma.svg",
"js": {
"Paloma.createCookie": ""
},
"pricing": [
"payg"
],
"requires": "Shopify",
"saas": true,
"scriptSrc": "\\.getpaloma\\.com/",
"website": "https://www.getpaloma.com"
},
"Panda CSS": {
"cats": [
66
],
"css": "--made-with-panda",
"description": "Panda is a styling engine that generates styling primitives to author atomic CSS and recipes in a type-safe and readable manner.",
"icon": "PandaCSS.svg",
"oss": true,
"website": "https://panda-css.com/"
},
"Panelbear": {
"cats": [
10,
13
],
"description": "Panelbear is a simple website performance and traffic analytics tool.",
"icon": "Panelbear.svg",
"js": {
"panelbear": ""
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"website": "https://panelbear.com"
},
"Pannellum": {
"cats": [
59
],
"description": "Pannellum is a lightweight, free, and open source panorama viewer for the web.",
"oss": true,
"scriptSrc": "(?:((?:\\d+\\.)+\\d+)\\/(?:build\\/)?)?pannellum(?:-plugin)?\\.js\\;version:\\1",
"website": "https://pannellum.org/"
},
"Pantheon": {
"cats": [
62
],
"description": "Pantheon is a WebOps (Website Operations) and Management Platform for WordPress and Drupal.",
"headers": {
"Server": "^Pantheon",
"x-pantheon-styx-hostname": "",
"x-styx-req-id": ""
},
"icon": "Pantheon.svg",
"implies": [
"PHP",
"Nginx",
"MariaDB",
"Fastly"
],
"website": "https://pantheon.io/"
},
"Paper.js": {
"cats": [
25,
59
],
"description": "Paper.js is an open-source, vector graphics scripting framework, which offers a powerful Scene Graph and extensive functionality to create and manipulate graphic items using layers, gradients, blending, and other advanced features",
"icon": "Paper.js.png",
"oss": true,
"scriptSrc": "(?:((?:\\d+\\.)+\\d+)\\/)?paper(?:-full)?(?:-core)?(?:\\.min)?(?:-[\\d\\w]{0,64})?\\.js\\;version:\\1",
"website": "http://paperjs.org/"
},
"Paradox": {
"cats": [
101
],
"description": "Paradox is an AI company that helps companies capture and screen candidates, improve conversions, and answer all candidate questions.",
"icon": "Paradox.svg",
"js": {
"_applybase": "\\.paradox\\.ai",
"oliviaChatBaseUrl": "\\.paradox\\.ai"
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.paradox.ai"
},
"Parcelforce": {
"cats": [
99
],
"description": "Parcelforce is a courier and logistics service in the United Kingdom.",
"icon": "Parcelforce.svg",
"requiresCategory": 6,
"text": [
"\\bParcelforce\\b"
],
"website": "https://www.parcelforce.com"
},
"ParkingCrew": {
"cats": [
19
],
"description": "ParkingCrew is a direct navigation monetisation provider.",
"icon": "ParkingCrew.png",
"js": {
"pcrewAdloaded": ""
},
"scripts": "var\\slink\\s=\\s'www\\.parkingcrew\\.net'",
"website": "https://www.parkingcrew.com"
},
"Parmin Cloud": {
"cats": [
63
],
"description": "Parmin Cloud operates in the field of cloud services.",
"headers": {
"x-powered-by": "^ParminCloud$"
},
"icon": "Parmin Cloud.svg",
"pricing": [
"poa",
"payg"
],
"website": "https://parmin.cloud"
},
"Pars Elecom Portal": {
"cats": [
1
],
"headers": {
"X-Powered-By": "Pars Elecom Portal"
},
"icon": "parselecom.png",
"implies": [
"Microsoft ASP.NET",
"IIS",
"Windows Server"
],
"meta": {
"copyright": "Pars Elecom Portal"
},
"website": "https://parselecom.net"
},
"Parse.ly": {
"cats": [
10
],
"icon": "Parse.ly.svg",
"js": {
"PARSELY": ""
},
"website": "https://www.parse.ly"
},
"Parsley.js": {
"cats": [
59
],
"description": "Javascript forms validation script.",
"js": {
"parsley": ""
},
"oss": true,
"scriptSrc": "parsley(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1",
"website": "https://parsleyjs.org"
},
"Partial.ly": {
"cats": [
41,
91
],
"description": "Partial.ly payment plan software lets businesses offer customizable payment plans to their customers.",
"icon": "Partially.png",
"js": {
"PartiallyButton": ""
},
"saas": true,
"scriptSrc": "partial\\.ly",
"website": "https://partial.ly/"
},
"Partnerize": {
"cats": [
71
],
"description": "Partnerize is the only partnership management solution for marketers seeking high quality, scalable subsidies to primary channels.",
"dom": "a[href*='prf.hn/click'], img[src*='.prf.hn/']",
"icon": "Partnerize.png",
"pricing": [
"payg"
],
"saas": true,
"website": "https://prf.hn"
},
"Parttrap ONE": {
"cats": [
6
],
"description": "Parttrap ONE is a complete solution including PIM, CMS, business optimization and ERP integration.",
"icon": "Parttrap.png",
"implies": [
"Handlebars",
"Microsoft ASP.NET",
"Bootstrap"
],
"js": {
"PT.Analytics.addItem": "",
"PT.Sections.Checkout": "",
"PT.Translation.BasketIsEmpty": ""
},
"pricing": [
"poa"
],
"requires": "Microsoft ASP.NET",
"saas": true,
"website": "https://www.parttrap.com"
},
"Partytown": {
"cats": [
92
],
"description": "Partytown is a lazy-loaded library to help relocate resource intensive scripts into a web worker, and off of the main thread.",
"dom": "script[type*='text/partytown']",
"icon": "Partytown.svg",
"js": {
"partytown": ""
},
"oss": true,
"website": "https://partytown.builder.io/"
},
"Passage": {
"cats": [
69
],
"description": "Passage, a feature provided by 1Password, enables easy implementation of passwordless authentication methods on websites and apps.",
"icon": "Passage.svg",
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scriptSrc": "\\.1password\\.com/",
"website": "https://passage.1password.com"
},
"Paths.js": {
"cats": [
25
],
"scriptSrc": "paths(?:\\.min)?\\.js",
"website": "https://github.com/andreaferretti/paths-js"
},
"Patreon": {
"cats": [
5,
41
],
"description": "Patreon is an American membership platform that provides business tools for content creators to run a subscription service.",
"dom": {
"a[href*='www.patreon.com/']": {
"attributes": {
"href": "patreon\\.com/.+"
}
}
},
"icon": "Patreon.svg",
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "patreon-connect/assets/.+ver=([\\d.]+)\\;version:\\1",
"website": "https://www.patreon.com"
},
"Pattern by Etsy": {
"cats": [
6
],
"description": "Pattern is an offering by Etsy to set up a website for Etsy sellers, in addition to Etsy shop.",
"icon": "Etsy.svg",
"js": {
"Etsy": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://www.etsy.com/pattern"
},
"Pay It Later": {
"cats": [
91
],
"description": "Pay It Later collect payments in weekly instalments from you when you make a purchase online, so you can buy now and pay it later.",
"dom": "a[href*='.payitlater.com.au'][target='_blank'], img[src*='PayItLater'][alt='PayItLater']",
"icon": "Pay It Later.png",
"js": {
"payitlater": ""
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "/wp-content/plugins/payitlater-gateway-for-woocommerce/(?:.+\\?ver=([\\d\\.]+))?\\;version:\\1",
"website": "https://www.payitlater.com.au"
},
"PayBright": {
"cats": [
41,
91
],
"description": "PayBright is a Canadian fintech company that offers short-term interest-free installment loans for online shopping to consumers at checkout.",
"dom": "link[href*='app.paybright.com']",
"icon": "PayBright.png",
"js": {
"_paybright_config": ""
},
"scriptSrc": "app\\.paybright\\.com",
"website": "https://paybright.com"
},
"PayFast": {
"cats": [
41
],
"description": "PayFast is a payments processing service for South Africans & South African websites.",
"dom": "[aria-labelledby='pi-payfast_instant_eft']",
"icon": "Payfast.svg",
"website": "https://www.payfast.co.za/"
},
"PayGreen": {
"cats": [
41
],
"description": "PayGreen is a French payment processor.",
"icon": "PayGreen.svg",
"js": {
"paygreenjs": ""
},
"pricing": [
"payg",
"low",
"recurring"
],
"website": "https://www.paygreen.io"
},
"PayJustNow": {
"cats": [
91
],
"description": "PayJustNow is a buy now, pay later checkout option for ecommerce sites.",
"icon": "PayJustNow.svg",
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "\\.payjustnow\\.com/",
"website": "https://payjustnow.com"
},
"PayKickStart": {
"cats": [
5,
71
],
"description": "PayKickstart is an online shopping cart and affiliate management platform with built-in conversion enhancing features like one-click upsells for credit card/paypal, order bumps, custom checkout pages/widgets/embed forms, coupon management, auto-complete shipping fields, subscription saver sequences, and more.",
"icon": "PayKickStart.png",
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scriptSrc": "app\\.paykickstart\\.com",
"website": "https://paykickstart.com"
},
"PayPal": {
"cats": [
41
],
"cpe": "cpe:2.3:a:paypal:paypal:*:*:*:*:*:*:*:*",
"description": "PayPal is an online payments system that supports online money transfers and serves as an electronic alternative to traditional paper methods like checks and money orders.",
"dom": {
"button": {
"text": "PayPal"
},
"iframe[src*='paypal.com'], img[src*='paypal.com'], img[src*='paypalobjects.com'], [aria-labelledby='pi-paypal'], [data-paypal-v4='true'], img[alt*='PayPal' i]": {
"exists": ""
}
},
"headers": {
"content-security-policy": "\\.paypal\\.com"
},
"icon": "PayPal.svg",
"js": {
"PAYPAL": "",
"__paypal_global__": "",
"checkout.enabledpayments.paypal": "^true$",
"enablePaypal": "",
"paypal": "",
"paypalClientId": "",
"paypalJs": "",
"wc_ga_pro.available_gateways.paypal": ""
},
"meta": {
"id": "in-context-paypal-metadata"
},
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "paypalobjects\\.com",
"website": "https://paypal.com",
"xhr": "\\.paypal\\.com"
},
"PayPal Credit": {
"cats": [
91
],
"description": "PayPal Credit is a reusable line of credit that lets you pay for online purchases over time.",
"dom": "img[alt*='PayPal Credit'], a[title*='PayPal Credit']",
"icon": "PayPal.svg",
"implies": "PayPal",
"js": {
"PaypalOffersObject": "",
"payPalCreditPopover": ""
},
"requiresCategory": 6,
"scriptSrc": "\\.paypalobjects\\.com/.+/smart-credit-message@([\\d\\.]+)\\.js\\;version:\\1",
"website": "https://www.paypal.com/uk/webapps/mpp/paypal-virtual-credit"
},
"PayPal Marketing Solutions": {
"cats": [
10,
32
],
"description": "PayPal Marketing Solutions enables merchants to see shopper insights and provide custom rewards for buyers with PayPal accounts.",
"icon": "PayPal.svg",
"implies": "PayPal",
"pricing": [
"freemium"
],
"saas": true,
"scriptSrc": [
"\\.paypalobjects\\.com/muse/",
"\\.paypal\\.com/tagmanager/pptm\\.js"
],
"website": "https://developer.paypal.com/docs/marketing-solutions"
},
"PayWhirl": {
"cats": [
41
],
"description": "PayWhirl provides widgets and tools to handle recurring payments.",
"icon": "paywhirl.png",
"js": {
"paywhirlForShopifySettings": ""
},
"pricing": [
"payg",
"recurring"
],
"website": "https://app.paywhirl.com/"
},
"Payflex": {
"cats": [
41,
91
],
"description": "Payflex offers an online payment gateway solution to South African merchants that allows shoppers to pay over 6 weeks, interest-free.",
"dom": "[aria-labelledby='pi-payflex']",
"icon": "Payflex.png",
"saas": true,
"scriptSrc": "partpayassets\\.blob\\.core\\.windows\\.net",
"website": "https://payflex.co.za/"
},
"Payl8r": {
"cats": [
41,
91
],
"description": "PayL8r.com offers repayment plans and online finance which allow you to purchase products online.",
"icon": "Payl8r.svg",
"saas": true,
"scriptSrc": "payl8r\\.com",
"website": "https://payl8r.com/"
},
"Paylocity": {
"cats": [
101
],
"description": "Paylocity is an American company which provides cloud-based payroll and human capital management software.",
"dom": "a[href*='recruiting\\.paylocity\\.com/recruiting/jobs/']",
"icon": "Paylocity.svg",
"pricing": [
"low",
"payg",
"recurring"
],
"saas": true,
"website": "https://www.paylocity.com"
},
"Paymenter": {
"cats": [
1,
6
],
"cookies": {
"paymenter_session": ""
},
"description": "Paymenter is an open-source webshop solution for hosting companies.",
"icon": "Paymenter.png",
"implies": [
"PHP",
"MySQL",
"Tailwind CSS"
],
"oss": true,
"website": "https://paymenter.org"
},
"Payplug": {
"cats": [
41
],
"description": "Payplug is a French omnichannel payment solution dedicated to merchants.",
"icon": "Payplug.svg",
"js": {
"PAYPLUG_DOMAIN": "\\.payplug\\.com",
"payplug.card": "",
"payplug_ajax_url": ""
},
"pricing": [
"payg"
],
"website": "https://www.payplug.com"
},
"Paysafe": {
"cats": [
41
],
"description": "Paysafe is a payment platform that enables businesses and consumers to connect and transact by payment processing, digital wallet, and online cash solutions.",
"icon": "paysafe.svg",
"js": {
"paysafe": "",
"paysafe.checkout": "",
"paysafe.fields": "",
"paysafe.threedsecure": ""
},
"scriptSrc": "/hosted\\.paysafe\\.com/",
"website": "https://www.paysafe.com/en"
},
"PebblePost": {
"cats": [
77
],
"description": "PebblePost provides marketers a way to transform recent online data into intelligent direct mail programs that perform.",
"icon": "PebblePost.svg",
"pricing": [
"payg"
],
"saas": true,
"scriptSrc": "cdn\\.pbbl\\.co/",
"website": "https://www.pebblepost.com"
},
"Peek": {
"cats": [
5,
72
],
"description": "Peek is a online booking system for tour and activity providers.",
"icon": "Peek.svg",
"js": {
"Peek": "",
"PeekJsApi": "",
"_peekConfig": ""