Repository: Lissy93/wapalyzer Branch: main Commit: 296c041099a4 Files: 111 Total size: 3.9 MB Directory structure: gitextract_ueqeqyc0/ ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── technology-request.md │ └── workflows/ │ ├── docker-image.yml │ ├── node.js.yml │ ├── pull-upstream.yml │ ├── stale.yml │ ├── submit.yml │ └── validate.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── apps.json ├── bin/ │ ├── build.js │ ├── convert.js │ ├── manifest.js │ └── validate.js ├── browser.js ├── build/ │ └── .gitkeep ├── cli.js ├── driver.js ├── index.js ├── npm-shrinkwrap.json ├── package.json ├── schema.json ├── scripts/ │ └── pull_upstream.py ├── src/ │ ├── _locales/ │ │ ├── ca/ │ │ │ └── messages.json │ │ ├── de/ │ │ │ └── messages.json │ │ ├── el/ │ │ │ └── messages.json │ │ ├── en/ │ │ │ └── messages.json │ │ ├── es/ │ │ │ └── messages.json │ │ ├── fa/ │ │ │ └── messages.json │ │ ├── fr/ │ │ │ └── messages.json │ │ ├── gl_ES/ │ │ │ └── messages.json │ │ ├── gr/ │ │ │ └── messages.json │ │ ├── id/ │ │ │ └── messages.json │ │ ├── it/ │ │ │ └── messages.json │ │ ├── ja/ │ │ │ └── messages.json │ │ ├── kk/ │ │ │ └── messages.json │ │ ├── ko/ │ │ │ └── messages.json │ │ ├── nl/ │ │ │ └── messages.json │ │ ├── pl/ │ │ │ └── messages.json │ │ ├── pt/ │ │ │ └── messages.json │ │ ├── pt_BR/ │ │ │ └── messages.json │ │ ├── ro/ │ │ │ └── messages.json │ │ ├── ru/ │ │ │ └── messages.json │ │ ├── sk/ │ │ │ └── messages.json │ │ ├── tr/ │ │ │ └── messages.json │ │ ├── uk/ │ │ │ └── messages.json │ │ ├── uz/ │ │ │ └── messages.json │ │ ├── vi/ │ │ │ └── messages.json │ │ ├── zh_CN/ │ │ │ └── messages.json │ │ └── zh_TW/ │ │ └── messages.json │ ├── categories.json │ ├── css/ │ │ └── styles.css │ ├── groups.json │ ├── html/ │ │ ├── background.html │ │ ├── options.html │ │ └── popup.html │ ├── images/ │ │ └── icons/ │ │ └── converted/ │ │ └── .gitkeep │ ├── js/ │ │ ├── background.js │ │ ├── content.js │ │ ├── dom.js │ │ ├── index.js │ │ ├── js.js │ │ ├── options.js │ │ ├── popup.js │ │ ├── tictactoe.js │ │ ├── utils.js │ │ └── wappalyzer.js │ ├── manifest-safari.json │ ├── manifest-v2.json │ ├── manifest-v3.json │ ├── schema.json │ └── technologies/ │ ├── _.json │ ├── a.json │ ├── b.json │ ├── c.json │ ├── d.json │ ├── e.json │ ├── f.json │ ├── g.json │ ├── h.json │ ├── i.json │ ├── j.json │ ├── k.json │ ├── l.json │ ├── m.json │ ├── n.json │ ├── o.json │ ├── p.json │ ├── q.json │ ├── r.json │ ├── s.json │ ├── t.json │ ├── u.json │ ├── v.json │ ├── w.json │ ├── x.json │ ├── y.json │ └── z.json └── wappalyzer.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .dockerignore ================================================ vendor/ server .DS_Store node_modules/ ================================================ FILE: .editorconfig ================================================ # editorconfig.org root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false ================================================ FILE: .eslintignore ================================================ **/lib/* node_modules ================================================ FILE: .eslintrc.js ================================================ module.exports = { root: true, env: { browser: true, node: true, }, parserOptions: { parser: 'babel-eslint', }, extends: [ '@nuxtjs', 'prettier', 'prettier/vue', 'plugin:prettier/recommended', 'plugin:nuxt/recommended', 'plugin:json/recommended', ], plugins: ['prettier'], } ================================================ FILE: .gitattributes ================================================ # End-of-line normalization * text=auto *.cmd text eol=lf *.sh text eol=lf *.md text eol=lf *.json text eol=lf *.js text eol=lf *.html text eol=lf *.css text eol=lf *.manifest text eol=lf *.rdf text eol=lf *.xul text eol=lf *.dtd text eol=lf *.properties text eol=lf *.php text eol=lf *.png binary *.gif binary ================================================ FILE: .github/FUNDING.yml ================================================ github: [Lissy93, AliasIO] ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: Bug assignees: '' --- **Platform** Which platform does the bug apply to? * WebExtension (Google Chrome, Mozilla Firefox) * NPM * Bookmarklet * Website **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '...' 3. Scroll down to '...' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: Feature request assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is, e.g. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/technology-request.md ================================================ --- name: Technology request about: Propose a technology to be added title: '' labels: Technology request assignees: '' --- You may request a new technology to be added but chances of having it included are greatly improved if you submit a pull request. Please refer to the [contributing guide](https://github.com/AliasIO/wappalyzer/blob/master/CONTRIBUTING.md). ================================================ FILE: .github/workflows/docker-image.yml ================================================ name: Build & Publish Docker Container on: push: branches: - 'master' jobs: docker: runs-on: ubuntu-latest steps: - name: Set up QEMU uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to Docker Hub uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v3 with: push: true tags: theboatymcboatface/wappalyzer:latest ================================================ FILE: .github/workflows/node.js.yml ================================================ # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs name: Node.js CI on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [14.x, 16.x, 18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - run: npm run build --if-present - run: npm test ================================================ FILE: .github/workflows/pull-upstream.yml ================================================ name: Merge Upstream on: schedule: # Runs at 23:39 every Sunday - cron: '39 23 * * 0' workflow_dispatch: # Adds the ability to manually trigger the workflow jobs: update-and-commit: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: "3.x" - name: Install dependencies run: | python -m pip install --upgrade pip pip install requests - name: Update Fingerprints run: | python scripts/pull_upstream.py - name: Generate branch name id: set_branch_name run: echo "BRANCH_NAME=update-fingerprints-$(date +'%Y%m%d')" >> $GITHUB_ENV - name: Create Pull Request uses: peter-evans/create-pull-request@v6 with: commit-message: Merge in new official signatures title: New Official Signatures body: | This is an automated update of fingerprints from the official Wappalyzer. branch: ${{ env.BRANCH_NAME }} delete-branch: true signoff: true ================================================ FILE: .github/workflows/stale.yml ================================================ name: Close inactive issues on: schedule: - cron: "30 0 * * *" permissions: {} jobs: close-issues: permissions: issues: write # to close stale issues (actions/stale) pull-requests: write # to close stale PRs (actions/stale) runs-on: ubuntu-latest steps: - uses: actions/stale@v3 with: days-before-stale: 90 days-before-close: 14 stale-issue-label: "stale" stale-pr-message: "This PR is stale because it has been open for 90 days with no activity." close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale." stale-issue-message: "This issue is stale because it has been open for 90 days with no activity." close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." ================================================ FILE: .github/workflows/submit.yml ================================================ name: "submit" on: workflow_dispatch: permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - name: Download Github Release Assets uses: PlasmoHQ/download-release-asset@v1.0.0 with: files: webextension.zip - name: Browser Plugin Publish uses: PlasmoHQ/bpp@v2 with: artifact: webextension.zip keys: ${{ secrets.SUBMIT_KEYS }} ================================================ FILE: .github/workflows/validate.yml ================================================ name: Validate on: push: pull_request: permissions: contents: read # to fetch code (actions/checkout) jobs: validate: name: Validate runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.3.3 - uses: actions/setup-node@v2.1.2 with: node-version: '14' - name: Restore npm cache uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} restore-keys: | ${{ runner.os }}-node- - name: Install dependencies run: npm install - name: Validate run: npm run validate ================================================ FILE: .gitignore ================================================ /build/* /src/images/icons/converted/* /src/manifest.json /src/manifest.bak.json node_modules package-lock.json !.gitkeep Thumbs.db Desktop.ini *.DS_Store *.log ._* tags tags.* .idea /nbproject/private/ src/out.json keys.json ================================================ FILE: .prettierrc ================================================ { "semi": false, "arrowParens": "always", "singleQuote": true } ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Wappalyzer is an [GPLv3 licensed](https://github.com/wappalyzer/wappalyzer/blob/master/LICENSE), open source project written in JavaScript. Anyone is welcome to contribute. ## Getting started To get started, see the [README](https://github.com/wappalyzer/wappalyzer/blob/master/README.md). ## Submitting changes - First, run `yarn run validate` to identify any issues. - Use descriptive commit messages, e.g. 'Add WordPress detection'. - Push your commits to a new branch on your own fork. - Finally, submit a [pull request](https://help.github.com/articles/about-pull-requests/) and describe your changes. ## Adding a new technology Wappalyzer uses [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) to fingerprint technologies. Refer to the [specification](https://github.com/wappalyzer/wappalyzer/blob/master/README.md#specification) for detail. - Add a new block to [`src/technologies/*.json`](https://github.com/wappalyzer/wappalyzer/blob/master/src/technologies). The filename should match the first letter of the technology name (a-z). Use `_.json` if the first character is a number or symbol. - Add an icon to [`src/images/icons`](https://github.com/wappalyzer/wappalyzer/tree/master/src/images/icons). The image must be square, either SVG or PNG (32 x 32 pixels). Only widely used technologies are accepted. When creating a pull request, include ten or more links to websites that use the application, a GitHub page with at least 1,000 stars or anything that will help establish the size of the user base. ## Adding a new category Please [open an issue on GitHub](https://github.com/wappalyzer/wappalyzer/issues) first to discuss the need for a new category. To add a category, edit [`src/categories.json`](https://github.com/wappalyzer/wappalyzer/blob/master/src/categories.json) and update every [locale](https://github.com/wappalyzer/wappalyzer/tree/master/src/_locales). You may use the English category name in all of them. ## Adding a new translation To add a new translation, copy the `en` folder in [`src/_locales`](https://github.com/wappalyzer/wappalyzer/tree/master/src/_locales), rename it to the relevant two-letter country code and update the containing `messages.json` file. ## Adding a new feature Please [open an issue on GitHub](https://github.com/wappalyzer/wappalyzer/issues) first. New features and large changes are rarely accepted without prior discussion. ================================================ FILE: Dockerfile ================================================ FROM node:12-alpine MAINTAINER Wappalyzer ENV WAPPALYZER_ROOT /opt/wappalyzer ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true ENV CHROME_BIN /usr/bin/chromium-browser RUN apk update && apk add --no-cache \ nodejs \ nodejs-npm \ udev \ chromium \ ttf-freefont RUN mkdir -p "$WAPPALYZER_ROOT/browsers" WORKDIR "$WAPPALYZER_ROOT" ADD apps.json . ADD browser.js . ADD browsers/zombie.js ./browsers ADD browsers/puppeteer.js ./browsers ADD cli.js . ADD driver.js . ADD index.js . ADD package.json . ADD wappalyzer.js . RUN npm i && npm i puppeteer RUN /usr/bin/chromium-browser --version ENTRYPOINT ["node", "cli.js"] ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================

Wapalyzer


Identify the technologies powering any website

--- > This is a community fork of the now removed [wappalyzer](https://web.archive.org/web/20230821034415/https://20230821034415/github.com/wappalyzer/wappalyzer) project, initially developed by [@AliasIO](https://github.com/AliasIO). >
> The original author maintains a hosted instanced, availible at [wappalyzer.com](https://www.wappalyzer.com/). ## Prerequisites - [Git](https://git-scm.com) - [Node.js](https://nodejs.org) version 14 or higher - [Yarn](https://yarnpkg.com) ## Quick start ```sh git clone https://github.com/lissy93/wapalyzer.git cd wappalyzer yarn install yarn run link ``` ## Usage ### Command line ```sh node src/drivers/npm/cli.js https://example.com ``` ### Chrome extension * Go to `about:extensions` * Enable 'Developer mode' * Click 'Load unpacked' * Select `src/drivers/webextension` ### Firefox extension * Go to `about:debugging#/runtime/this-firefox` * Click 'Load Temporary Add-on' * Select `src/drivers/webextension/manifest.json` ## Specification A long list of [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) is used to identify technologies on web pages. wapalyzer inspects HTML code, as well as JavaScript variables, response headers and more. Patterns (regular expressions) are kept in [`src/technologies/`](https://github.com/lissy93/wapalyzer/blob/master/src/technologies). The following is an example of an application fingerprint. #### Example ```json "Example": { "description": "A short description of the technology.", "cats": [ "1" ], "cookies": { "cookie_name": "Example" }, "dom": { "#example-id": { "exists": "", "attributes": { "class": "example-class" }, "properties": { "example-property": "" }, "text": "Example text content" } }, "dns": { "MX": [ "example\\.com" ] }, "js": { "Example.method": "" }, "excludes": "Example", "headers": { "X-Powered-By": "Example" }, "html": "]example\\.css", "text": "\bexample\b", "css": "\\.example-class", "robots": "Disallow: /unique-path/", "implies": "PHP\\;confidence:50", "requires": "WordPress", "requiresCategory": "Ecommerce", "meta": { "generator": "(?:Example|Another Example)" }, "probe": { "/path": "" }, "scriptSrc": "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1", "scripts": "function webpackJsonpCallback\\(data\\) {", "url": "example\\.com", "xhr": "example\\.com", "oss": true, "saas": true, "pricing": ["mid", "freemium", "recurring"], "website": "https://example.com", } ``` ## JSON fields Find the JSON schema at [`schema.json`](https://github.com/lissy93/wapalyzer/blob/master/schema.json). ### Required properties
Field Type Description Example
cats Array One or more category IDs. [1, 6]
website String URL of the application's website. "https://example.com"
### Optional properties
Field Type Description Example
description String A short description of the technology in British English (max. 250 characters). Write in a neutral, factual tone; not like an ad. "A short description."
icon String Application icon filename. "WordPress.svg"
cpe String CPE is a structured naming scheme for technologies. To check if a CPE is valid and exists (using v2.3), use the search). "cpe:2.3:a:apache:http_server
:*:*:*:*:*:*:*:*"
saas Boolean The technology is offered as a Software-as-a-Service (SaaS), i.e. hosted or cloud-based. true
oss Boolean The technology has an open-source license. true
pricing Array Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only. One of:
  • lowLess than US $100 / mo
  • midBetween US $100 - $1,000 / mo
  • highMore than US $1,000 / mo
Plus any of:
  • freemium Free plan available
  • onetime One-time payments accepted
  • recurring Subscriptions available
  • poa Price on asking
  • payg Pay as you go (e.g. commissions or usage-based fees)
["low", "freemium"]
### Implies, requires and excludes (optional)
Field Type Description Example
implies String | Array The presence of one application can imply the presence of another, e.g. WordPress means PHP is also in use. "PHP"
requires String | Array Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS. "WordPress"
requiresCategory String | Array Similar to requires; detection only runs if a technology in the required category has been identified. "Ecommerce"
excludes String | Array Opposite of implies. The presence of one application can exclude the presence of another. "Apache"
### Patterns (optional)
Field Type Description Example
cookies Object Cookies. { "cookie_name": "Cookie value" }
dom String | Array | Object Uses a query selector to inspect element properties, attributes and text content. { "#example-id": { "property": { "example-prop": "" } } }
dns Object DNS records: supports MX, TXT, SOA and NS (NPM driver only). { "MX": "example\\.com" }
js Object JavaScript properties (case sensitive). Avoid short property names to prevent matching minified code. { "jQuery.fn.jquery": "" }
headers Object HTTP response headers. { "X-Powered-By": "^WordPress$" }
html String | Array HTML source code. Patterns must include an HTML opening tag to avoid matching plain text. For performance reasons, avoid html where possible and use dom instead. "<a [^>]*href=\"index.html"
text String | Array Matches plain text. Should only be used in very specific cases where other methods can't be used. \bexample\b
css String | Array CSS rules. Unavailable when a website enforces a same-origin policy. For performance reasons, only a portion of the available CSS rules are used to find matches. "\\.example-class"
probe Object Request a URL to test for its existence or match text content (NPM driver only). { "/path": "Example text" }
robots String | Array Robots.txt contents. "Disallow: /unique-path/"
url String | Array Full URL of the page. "^https?//.+\\.wordpress\\.com"
xhr String | Array Hostnames of XHR requests. "cdn\\.netlify\\.com"
meta Object HTML meta tags, e.g. generator. { "generator": "^WordPress$" }
scriptSrc String | Array URLs of JavaScript files included on the page. "jquery\\.js"
scripts String | Array JavaScript source code. Inspects inline and external scripts. For performance reasons, avoid scripts where possible and use js instead. "function webpackJsonpCallback\\(data\\) {"
## Patterns Patterns are essentially JavaScript regular expressions written as strings, but with some additions. ### Quirks and pitfalls - Because of the string format, the escape character itself must be escaped when using special characters such as the dot (`\\.`). Double quotes must be escaped only once (`\"`). Slashes do not need to be escaped (`/`). - Flags are not supported. Regular expressions are treated as case-insensitive. - Capture groups (`()`) are used for version detection. In other cases, use non-capturing groups (`(?:)`). - Use start and end of string anchors (`^` and `$`) where possible for optimal performance. - Short or generic patterns can cause applications to be identified incorrectly. Try to find unique strings to match. ### Tags Tags (a non-standard syntax) can be appended to patterns (and implies and excludes, separated by `\\;`) to store additional information.
Tag Description Example
confidence Indicates a less reliable pattern that may cause false positives. The aim is to achieve a combined confidence of 100%. Defaults to 100% if not specified. "js": { "Mage": "\\;confidence:50" }
version Gets the version number from a pattern match using a special syntax. "scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1"
### Version syntax Application version information can be obtained from a pattern using a capture group. A condition can be evaluated using the ternary operator (`?:`).
Example Description
\\1 Returns the first match.
\\1?a: Returns a if the first match contains a value, nothing otherwise.
\\1?a:b Returns a if the first match contains a value, b otherwise.
\\1?:b Returns nothing if the first match contains a value, b otherwise.
foo\\1 Returns foo with the first match appended.
================================================ FILE: apps.json ================================================ { "$schema": "../schema.json", "apps": { "1C-Bitrix": { "cats": [ 1, 6 ], "cookies": { "BITRIX_SM_GUEST_ID": "", "BITRIX_SM_LAST_IP": "", "BITRIX_SM_SALE_UID": "" }, "description": "1C-Bitrix is a system of web project management, universal software for the creation, support and successful development of corporate websites and online stores.", "headers": { "Set-Cookie": "BITRIX_", "X-Powered-CMS": "Bitrix Site Manager" }, "icon": "1C-Bitrix.svg", "implies": "PHP", "pricing": [ "onetime", "mid", "recurring" ], "saas": true, "scriptSrc": "bitrix(?:\\.info/|/js/main/core)", "website": "http://www.1c-bitrix.ru" }, "2B Advice": { "cats": [ 67 ], "description": "2B Advice provides a plug-in to manage GDPR cookie consent.", "icon": "2badvice.png", "js": { "BBCookieControler": "" }, "saas": true, "scriptSrc": "2badvice-cdn\\.azureedge\\.net", "website": "https://www.2b-advice.com/en/data-privacy-software/cookie-consent-plugin/" }, "30namaPlayer": { "cats": [ 14 ], "description": "30namaPlayer is a modified version of Video.js to work with videos on HTML using javascript.", "dom": "section[class*='player30nama']", "icon": "30namaPlayer.png", "website": "https://30nama.com/" }, "33Across": { "cats": [ 36 ], "description": "33Across is a technology company focused on solving the challenge of consumer attention for automated advertising.", "dom": "iframe[src*='.33across.com'], link[href*='.33across.com'], link[href*='.tynt.com']", "icon": "33Across.png", "js": { "Tynt": "" }, "saas": true, "scriptSrc": [ "\\.33across\\.com/", "\\.tynt\\.com/" ], "website": "https://www.33across.com", "xhr": "\\.33across\\.com" }, "34SP.com": { "cats": [ 88 ], "description": "34SP.com specialises in website hosting, discount domain names, low cost VPS servers and dedicated servers.", "dns": { "SOA": "ns(?:\\d+)?\\.34sp\\.com" }, "icon": "34SP.com.svg", "pricing": [ "recurring", "low" ], "website": "https://www.34sp.com" }, "4-Tell": { "cats": [ 76 ], "cookies": { "4Tell": "", "4TellCart": "", "4TellSession": "" }, "description": "4-Tell is an ecommerce software company for retailers with AI-powered personalisation and recommendations products.", "icon": "4-Tell.png", "js": { "_4TellBoost": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "4tellcdn\\.azureedge\\.net", "website": "https://4-tell.com" }, "51.LA": { "cats": [ 10 ], "description": "51.LA is a Chinese based website visitor counter.", "icon": "51.LA.png", "js": { "LA.config.ck": "" }, "pricing": [ "freemium", "recurring", "payg" ], "saas": true, "website": "https://www.51.la" }, "6sense": { "cats": [ 32, 76 ], "description": "6sense is a B2B predictive intelligence platform for marketing and sales.", "headers": { "Content-Security-Policy": "\\.6sc\\.co/" }, "icon": "6sense.svg", "pricing": [ "poa", "high", "recurring" ], "saas": true, "scriptSrc": "\\.6sc\\.co/", "website": "https://6sense.com" }, "8base": { "cats": [ 3, 62 ], "description": "8base is a low-code development platform for building and running enterprise-grade digital products including SaaS solutions, marketplaces and other go-to-market applications.", "icon": "8base.svg", "pricing": [ "low", "freemium", "recurring" ], "saas": true, "website": "https://8base.com", "xhr": "api\\.8base\\.com" }, "": { "cats": [ 105 ], "description": " is an open-source web component developed by Google and maintained through GitHub. aims at putting 3D content on the web easily with a few lines of HTML code. This was first introduced with Chrome 72 in July 2019 and enables users to view 3D in the browser and mobile devices.", "dom": "model-viewer", "icon": "model-viewer.svg", "oss": true, "scriptSrc": "/model-viewer/dist/model-viewer\\.min\\.js", "website": "https://modelviewer.dev" }, "@sulu/web": { "cats": [ 59 ], "icon": "Sulu.svg", "js": { "web.startComponents": "" }, "website": "https://github.com/sulu/web-js" }, "_hyperscript ": { "cats": [ 59 ], "description": "_​hyperscript is a scripting language for adding interactivity to the front-end.", "icon": "_hyperscript.png", "js": { "_hyperscript": "" }, "oss": true, "scriptSrc": "//unpkg\\.com/hyperscript\\.org@([\\d\\.]+)\\;version:\\1", "website": "https://hyperscript.org" }, "ZK": { "cats": [ 18 ], "html": "", "icon": "ZK.png", "implies": "Java", "scriptSrc": "zkau/", "website": "http://zkoss.org" }, "ZURB Foundation": { "cats": [ 66 ], "description": "Zurb Foundation is used to prototype in the browser. Allows rapid creation of websites or applications while leveraging mobile and responsive technology. The front end framework is the collection of HTML, CSS, and Javascript containing design patterns.", "html": [ "]+foundation[^>\"]+css", "
]*class=\"[^\"]*(?:small|medium|large)-\\d{1,2} columns" ], "icon": "ZURB Foundation.png", "js": { "Foundation.version": "([\\d.]+)\\;version:\\1" }, "website": "http://foundation.zurb.com" }, "Zabbix": { "cats": [ 19 ], "cpe": "cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:*", "html": "]+zbxCallPostScripts", "icon": "Zabbix.png", "implies": "PHP", "js": { "zbxCallPostScripts": "" }, "meta": { "Author": "ZABBIX SIA\\;confidence:70" }, "url": "\\/zabbix\\/\\;confidence:30", "website": "http://zabbix.com" }, "Zakeke": { "cats": [ 76 ], "description": "Zakeke is a product customisation tool compatible with services and apps mostly used to manage ecommerce store.", "icon": "Zakeke.png", "js": { "zakekeBoot": "", "zakekeCustomizeLabel": "", "zakekeLoading": "", "zakekeProductPage": "" }, "pricing": [ "recurring", "low" ], "saas": true, "website": "https://www.zakeke.com" }, "Zakeke Interactive Product Designer": { "cats": [ 87, 76 ], "description": "Zakeke Interactive Product Designer lets customers personalise any product and visualise how they’ll look before checking out.", "icon": "Zakeke.png", "implies": "Zakeke", "pricing": [ "recurring", "low" ], "requires": "WooCommerce", "saas": true, "scriptSrc": "/wp-content/plugins/zakeke-interactive-product-designer/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1", "website": "https://www.zakeke.com" }, "Zakeke Visual Customizer": { "cats": [ 100, 76 ], "description": "Zakeke Visual Customizer is a cloud-connected visual ecommerce tool that allows brands and retailers to offer live, personalised, 2D, 3D, and augmented reality (AR) functionality for their products.", "icon": "Zakeke.png", "implies": "Zakeke", "pricing": [ "recurring", "low" ], "requires": "Shopify", "saas": true, "scriptSrc": "\\.zakeke\\.com/Scripts/integration/shopify/", "website": "https://www.zakeke.com" }, "Zakra": { "cats": [ 80 ], "description": "Zakra is flexible, fast, lightweight and modern multipurpose WordPress theme that comes with many starter free sites.", "dom": "link#zakra-style-css", "icon": "Zakra.png", "js": { "zakraFrontend": "", "zakraNavHelper.dimension": "" }, "pricing": [ "freemium", "low", "recurring", "onetime" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/zakra/", "website": "https://zakratheme.com" }, "Zanox": { "cats": [ 36 ], "html": "]*src=\"[^\"]+ad\\.zanox\\.com", "icon": "Zanox.png", "js": { "zanox": "" }, "scriptSrc": "zanox\\.com/scripts/zanox\\.js$", "website": "http://zanox.com" }, "Zeleris": { "cats": [ 99 ], "description": "Zeleris provides door to door shipment delivery to Ireland, UK and the EU.", "requiresCategory": 6, "text": [ "\\Zeleris\\b" ], "website": "https://www.zeleris.com" }, "Zen Cart": { "cats": [ 6 ], "icon": "Zen Cart.png", "meta": { "generator": "Zen Cart" }, "website": "http://www.zen-cart.com" }, "Zend": { "cats": [ 22 ], "cookies": { "ZENDSERVERSESSID": "" }, "cpe": "cpe:2.3:a:zend:zend_server:*:*:*:*:*:*:*:*", "headers": { "X-Powered-By": "Zend(?:Server)?(?:[\\s/]?([0-9.]+))?\\;version:\\1" }, "icon": "Zend.png", "website": "http://zend.com" }, "Zendesk": { "cats": [ 4, 13, 52 ], "cookies": { "_help_center_session": "", "_zendesk_cookie": "", "_zendesk_shared_session": "" }, "description": "Zendesk is a cloud-based help desk management solution offering customizable tools to build customer service portal, knowledge base and online communities.", "dns": { "TXT": [ "mail\\.zendesk\\.com" ] }, "headers": { "x-zendesk-user-id": "" }, "icon": "Zendesk.svg", "js": { "Zendesk": "" }, "pricing": [ "low" ], "saas": true, "scriptSrc": "static\\.zdassets\\.com", "website": "https://zendesk.com" }, "Zendesk Chat": { "cats": [ 52 ], "description": "Zendesk Chat is a live chat and communication widget.", "icon": "Zendesk Chat.png", "pricing": [ "freemium", "payg" ], "saas": true, "scriptSrc": "v2\\.zopim\\.com", "website": "http://zopim.com" }, "Zendesk Sunshine Conversations": { "cats": [ 52 ], "description": "Zendesk Sunshine Conversations lets you share a single, continuous conversation with every team in your business. With a unified API and native connectors to popular business applications like Zendesk and Slack, everyone in your organization can get access to a single view of the customer conversation.", "icon": "Zendesk.svg", "implies": "Zendesk", "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "cdn\\.smooch\\.io/", "website": "https://www.zendesk.com/platform/conversations" }, "Zenfolio": { "cats": [ 7 ], "description": "Zenfolio is a photography website builder.", "icon": "Zenfolio.png", "js": { "Zenfolio": "" }, "website": "https://zenfolio.com" }, "Zeotap": { "cats": [ 97 ], "description": "Zeotap is a customer intelligence platform that helps brands better understand their customers and predict behaviors.", "dom": "link[href*='.zeotap.com']", "icon": "Zeotap.png", "pricing": [ "poa" ], "saas": true, "scriptSrc": "\\.zeotap\\.com", "website": "https://zeotap.com" }, "Zepto": { "cats": [ 59 ], "icon": "Zepto.png", "js": { "Zepto": "" }, "scriptSrc": "zepto.*\\.js", "website": "http://zeptojs.com" }, "ZestMoney": { "cats": [ 91 ], "description": "ZestMoney is a fintech company that uses digital EMI without the need for a credit card or a credit score.", "icon": "ZestMoney.png", "js": { "ZestMoneyWidget": "", "zestBind": "", "zestMerchant": "" }, "pricing": [ "freemium" ], "saas": true, "website": "https://www.zestmoney.in" }, "Zeus Technology": { "cats": [ 36 ], "description": "Zeus Technology is a media monetisation platform that levels the playing field for publishers and advertisers of all sizes.", "icon": "Zeus Technology.svg", "js": { "zeus.version": "v([\\d\\.]+)\\;version:\\1", "zeusAdUnitPath": "" }, "pricing": [ "poa" ], "saas": true, "website": "https://www.zeustechnology.com" }, "Zid": { "cats": [ 6 ], "cookies": { "zid_catalog_session": "" }, "description": "Zid is an ecommerce SaaS that allows merchants to build and manage their online stores.", "icon": "Zid.png", "js": { "zid.store": "", "zidTracking.sendGaProductRemoveFromCartEvent": "" }, "pricing": [ "mid", "recurring" ], "saas": true, "website": "https://zid.sa" }, "Zimbra": { "cats": [ 30 ], "cookies": { "ZM_TEST": "true" }, "cpe": "cpe:2.3:a:zimbra:zimbra:*:*:*:*:*:*:*:*", "icon": "Zimbra.png", "implies": "Java", "website": "https://www.zimbra.com/" }, "ZingChart": { "cats": [ 25 ], "description": "ZingChart is a open-source and free JavaScript library for building interactive and intuitive charts.", "icon": "ZingChart.svg", "js": { "zingchart": "" }, "oss": true, "pricing": [ "recurring", "mid" ], "saas": true, "website": "https://www.zingchart.com" }, "Zinnia": { "cats": [ 11 ], "description": "Zimbra is a is a collaborative software suite that includes an email server and a web client.", "icon": "Zinnia.png", "implies": "Django", "meta": { "generator": "Zinnia" }, "website": "http://django-blog-zinnia.com" }, "Zinrelo": { "cats": [ 84 ], "description": "Zinrelo is an enterprise-grade, loyalty rewards platform.", "icon": "Zinrelo.png", "js": { "zrl_mi": "" }, "pricing": [ "poa" ], "website": "https://www.zinrelo.com" }, "Zip": { "cats": [ 41, 91 ], "description": "Zip is a payment service that lets you receive your purchase now and spread the total cost over a interest-free payment schedule.", "dom": "link[href*='widgets.quadpay.com/'], div[data-quadpay-src*='.quadpay.com/']", "icon": "zip_pay.svg", "js": { "QuadPayShopify": "", "checkout.enabledpayments.zip": "^true$", "quadpayID": "" }, "pricing": [ "payg" ], "saas": true, "scriptSrc": [ "quadpay\\.com", "static\\.zipmoney\\.com\\.au", "zip\\.co" ], "website": "https://www.zip.co/" }, "Zipify OCU": { "cats": [ 100 ], "description": "Zipify OCU allows you to add upsells and cross-sells to your checkout sequence.", "icon": "Zipify OCU.svg", "pricing": [ "mid", "recurring" ], "saas": true, "scriptSrc": "/zipify-oneclickupsell-vendor\\.js", "website": "https://zipify.com/apps/ocu/" }, "Zipify Pages": { "cats": [ 100, 51 ], "description": "Zipify Pages the first landing page builder uniquely designed for ecommerce.", "icon": "Zipify Pages.svg", "implies": "Shopify", "js": { "ZipifyPages": "" }, "pricing": [ "low", "recurring" ], "saas": true, "website": "https://zipify.com/apps/pages/" }, "Zipkin": { "cats": [ 10 ], "headers": { "X-B3-Flags": "", "X-B3-ParentSpanId": "", "X-B3-Sampled": "", "X-B3-SpanId": "", "X-B3-TraceId": "" }, "icon": "Zipkin.png", "website": "https://zipkin.io/" }, "Zmags Creator": { "cats": [ 95 ], "description": "Zmags Creator enables marketers to design and publish endless types of interactive digital experiences without coding.", "icon": "Zmags Creator.png", "js": { "__zmags": "" }, "pricing": [ "mid", "recurring" ], "saas": true, "scriptSrc": "c(?:reator)?\\.zmags\\.com/", "website": "https://www.creatorbyzmags.com" }, "Zocdoc": { "cats": [ 72 ], "description": "Zocdoc is a New York City-based company offering an online service that allows people to find and book in-person or telemedicine appointments for medical or dental care.", "dom": "a[href*='www.zocdoc.com'][target='_blank']", "icon": "Zocdoc.svg", "pricing": [ "payg" ], "saas": true, "scriptSrc": "offsiteschedule\\.zocdoc\\.com", "website": "https://www.zocdoc.com" }, "Zoey": { "cats": [ 6 ], "description": "Zoey is a cloud-based ecommerce platform for B2B and wholesale businesses.", "excludes": "Magento", "icon": "Zoey.svg", "implies": [ "PHP", "MySQL" ], "js": { "Zoey.module": "", "zoey.developer": "", "zoeyDev": "" }, "scriptSrc": "cdna4\\.zoeysite\\.com", "website": "https://www.zoey.com/" }, "Zoho": { "cats": [ 53 ], "description": "Zoho is a web-based online office suite.", "dns": { "TXT": [ "\\.zoho\\.com" ] }, "icon": "Zoho.svg", "pricing": [ "low", "freemium" ], "saas": true, "website": "https://www.zoho.com/" }, "Zoho Mail": { "cats": [ 75 ], "description": "Zoho Mail is an email hosting service for businesses.", "dns": { "TXT": [ "transmail\\.net" ] }, "icon": "Zoho.svg", "implies": "Zoho", "website": "https://www.zoho.com/mail/" }, "Zoho PageSense": { "cats": [ 74, 76 ], "description": "Zoho PageSense is a conversion optimisation platform which combines the power of web analytics, A/B testing, and personalisation.", "icon": "Zoho.svg", "implies": "Zoho", "js": { "$pagesense": "", "pagesense": "" }, "pricing": [ "recurring", "payg" ], "saas": true, "scriptSrc": "\\.pagesense\\.(?:cn|io)?", "website": "https://www.zoho.com/pagesense/" }, "Zoko": { "cats": [ 52 ], "description": "Zoko is an all-in-one system that leverages the WhatsApp API to help you do business, on WhatsApp", "icon": "Zoko.png", "implies": [ "WhatsApp Business Chat" ], "js": { "__zoko_app_version": "" }, "pricing": [ "recurring", "payg", "mid" ], "saas": true, "scriptSrc": "zoko-shopify-prod\\.web\\.app", "website": "https://www.zoko.io/" }, "Zone.js": { "cats": [ 12 ], "icon": "Angular.svg", "implies": "Angular", "js": { "Zone.root": "" }, "website": "https://github.com/angular/angular/tree/master/packages/zone.js" }, "Zonos": { "cats": [ 106 ], "description": "Zonos is a cross-border ecommerce software and app solution for companies with international business.", "icon": "Zonos.svg", "js": { "Zonos": "", "zonos": "", "zonosCheckout": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "\\.zonos\\.com/", "website": "https://zonos.com" }, "ZoodPay": { "cats": [ 91 ], "dom": "img[src*='zoodpay']", "icon": "ZoodPay.png", "pricing": [ "payg" ], "saas": true, "scriptSrc": "wp-content/plugins/zoodpay/(?:.+\\?ver=([\\d\\.]+))?\\;version:\\1", "website": "https://www.zoodpay.com" }, "Zoominfo": { "cats": [ 10 ], "description": "ZoomInfo provides actionable B2B contact and company information for sales and marketing teams.", "icon": "Zoominfo.svg", "saas": true, "scriptSrc": "ws\\.zoominfo\\.com", "website": "https://www.zoominfo.com/" }, "Zoominfo Chat": { "cats": [ 52 ], "description": "ZoomInfo chat is a live chat solution.", "icon": "Zoominfo.svg", "saas": true, "scriptSrc": "madstreetden\\.widget\\.insent\\.ai", "website": "https://www.zoominfo.com/chat" }, "Zope": { "cats": [ 22 ], "headers": { "Server": "^Zope/" }, "icon": "Zope.png", "website": "http://zope.org" }, "Zotabox": { "cats": [ 32 ], "description": "Zotabox is marketing tool which includes popups, header bars, page/form builder, testimonial, live chat, etc.", "icon": "zotabox.png", "js": { "Zotabox": "", "Zotabox_Init ": "" }, "pricing": [ "low", "recurring" ], "website": "https://info.zotabox.com" }, "Zozo": { "cats": [ 6 ], "description": "Zozo is a multi-channel ecommerce services provider from Vietnam.", "dom": { "a[href*='/zozo.vn/'][href*='footerurl'][target='_blank']": { "text": "^Zozo" } }, "excludes": "OpenCart", "icon": "Zozo.png", "implies": [ "PHP", "MySQL" ], "meta": { "generator": "Zozo Ecommerce" }, "scriptSrc": "zozo-main\\.min\\.js", "website": "https://zozo.vn" }, "Zuppler": { "cats": [ 93 ], "description": "Zuppler is a complete and branded online ordering solution for restaurants and caterers with multi-locations.", "dom": "link[href*='.zuppler.com/']", "icon": "Zuppler.png", "pricing": [ "payg" ], "saas": true, "website": "https://www.zuppler.com" }, "Zyro": { "cats": [ 51 ], "description": "Zyro is a website builder service by the Hostinger group.", "icon": "Zyro.svg", "implies": "Vue.js", "meta": { "generator": "^Zyro\\.com Website Builder$" }, "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "userapp\\.zyrosite\\.com/", "website": "https://zyro.com" }, "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.js": { "cats": [ 19 ], "html": "<\\/div>\\s*\\s*<\\/div>", "icon": "PDF.js.svg", "js": { "PDFJS": "", "PDFJS.version": "^(.+)$\\;version:\\1", "_pdfjsCompatibilityChecked": "", "pdfjs-dist/build/pdf.version": "^(.+)$\\;version:\\1", "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": "http://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": "http://phpnuke.org" }, "PHPDebugBar": { "cats": [ 47 ], "icon": "phpdebugbar.png", "js": { "PhpDebugBar": "", "phpdebugbar": "" }, "scriptSrc": [ "debugbar.*\\.js" ], "website": "http://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 ]+phpfusion", "Powered by ]+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" }, "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/" }, "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" }, "Pagekit": { "cats": [ 1 ], "cpe": "cpe:2.3:a:pagekit:pagekit:*:*:*:*:*:*:*:*", "icon": "Pagekit.png", "meta": { "generator": "Pagekit" }, "website": "http://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" }, "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" }, "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/" }, "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" }, "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": "http://parselecom.net" }, "Parse.ly": { "cats": [ 10 ], "icon": "Parse.ly.svg", "js": { "PARSELY": "" }, "website": "https://www.parse.ly" }, "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/" }, "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/" }, "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" }, "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": "" }, "scriptSrc": "js\\.peek\\.\\w+", "website": "https://www.peek.com/" }, "PeerBoard": { "cats": [ 2 ], "description": "PeerBoard is a plug-and-play community solution, which helps groups, clubs, startups, marketplaces and businesses create discussion forums.", "icon": "PeerBoard.png", "pricing": [ "freemium", "low", "recurring" ], "saas": true, "scriptSrc": "\\.peerboard\\.com/", "website": "https://peerboard.com" }, "PeerTube": { "cats": [ 2 ], "description": "PeerTube is a free and open-source, decentralized, federated video platform powered by ActivityPub and WebTorrent.", "dom": { "#incompatible-browser p": { "text": "^We are sorry but it seems that PeerTube is not compatible with your web browser\\.$" } }, "icon": "PeerTube.svg", "meta": { "og:platform": "^PeerTube$" }, "website": "https://joinpeertube.org/" }, "Pelican": { "cats": [ 57 ], "html": [ "powered by ]+getpelican\\.com", "powered by ]+class=\"perc-region\"", "icon": "Percussion.png", "meta": { "generator": "(?:Percussion|Rhythmyx)" }, "website": "http://percussion.com" }, "PerfectApps Swift": { "cats": [ 100, 92 ], "description": "Swift is a page speed solution for ecommerce store owners built by PerfectApps.", "icon": "PerfectApps Swift.png", "js": { "ps_apiURI": "swift-api\\.perfectapps\\.io/", "ps_storeUrl": "swift\\.perfectapps\\.io" }, "pricing": [ "low", "recurring" ], "requires": "Shopify", "saas": true, "scriptSrc": "swift\\.perfectapps\\.io/", "website": "https://apps.shopify.com/swift" }, "Perfex CRM": { "cats": [ 53 ], "description": "Perfex CRM is self hosted customer relationship management software that is a great fit for almost any company, freelancer or many other uses.", "icon": "Perfex CRM.png", "pricing": [ "onetime", "low" ], "saas": true, "scriptSrc": "/assets/themes/perfex/js/global\\.min\\.js(?:\\?v=(\\d+(?:\\.\\d+)+))?\\;version:\\1", "website": "https://www.perfexcrm.com" }, "Performance Lab": { "cats": [ 87 ], "description": "Performance plugin from the WordPress Performance Group, which is a collection of standalone performance modules.", "icon": "Performance Lab.svg", "meta": { "generator": "^Performance Lab ?([\\d.]+)?\\;version:\\1" }, "requires": "WordPress", "website": "https://wordpress.org/plugins/performance-lab/" }, "PerimeterX": { "cats": [ 16 ], "cookies": { "_px3": "", "_pxff_cc": "", "_pxhd": "", "_pxvid": "" }, "description": "PerimeterX is a provider of scalable, behavior-based threat protection technology for the web, cloud, and mobile.", "icon": "PerimeterX.svg", "js": { "_pxAppId": "" }, "pricing": [ "payg", "recurring", "poa" ], "saas": true, "scriptSrc": "client\\.a\\.pxi\\.pub/", "website": "https://www.perimeterx.com" }, "Periodic": { "cats": [ 72 ], "description": "Periodic is a white-label scheduling system.", "dom": "#periodic-embedded-calendar-script, .periodic-embedded-calendar-window, .bookingmain__maincontent", "icon": "Periodic.svg", "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "/integrations/embed/periodic-embed-resize\\.js", "website": "https://periodic.is" }, "Perl": { "cats": [ 27 ], "cpe": "cpe:2.3:a:perl:perl:*:*:*:*:*:*:*:*", "description": "Perl is a family of two high-level, general-purpose, interpreted, dynamic programming languages.", "headers": { "Server": "\\bPerl\\b(?: ?/?v?([\\d.]+))?\\;version:\\1" }, "icon": "Perl.png", "website": "http://perl.org" }, "Permutive": { "cats": [ 19 ], "description": "Permutive is a publisher-focused data management platform.", "icon": "Permutive.png", "js": { "permutive": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "cdn\\.permutive\\.com", "website": "https://permutive.com", "xhr": "api\\.permutive\\.com" }, "PersonaClick": { "cats": [ 76 ], "description": "PersonaClick is a provide personalisation, recommandation and multi channel services.", "icon": "PersonaClick.png", "js": { "personaclick": "", "personaclick_callback": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "cdn\\.personaclick\\.com/v([\\d.]+)\\.js\\;version:\\1", "website": "https://www.personaclick.com" }, "Personio": { "cats": [ 101 ], "description": "Personio is the all-in-one HR software for small- and medium-sized companies with 10 to 2000 employees.", "dom": "a[href*='.jobs.personio.']", "icon": "Personio.svg", "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "\\.cdn\\.personio\\.", "website": "https://www.personio.com" }, "Personizely": { "cats": [ 76 ], "description": "Personizely is a conversion marketing toolkit which helps websites and ecommerce stores better engage with visitors using website widgets and personalisation.", "icon": "Personizely.svg", "js": { "Personizely": "" }, "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "static\\.personizely\\.net/", "website": "https://www.personizely.net" }, "Perzonalization": { "cats": [ 76 ], "description": "Perzonalization is a AI powered personalization engine for eCommerce", "icon": "Perzonalization.png", "saas": true, "scriptSrc": "cdn\\.perzonalization\\.com", "website": "https://www.perzonalization.com/" }, "Phabricator": { "cats": [ 13, 47 ], "cookies": { "phsid": "" }, "description": "Phabricator is a suite of web-based software development collaboration tools, including the Differential code review tool, the Diffusion repository browser, the Herald change monitoring tool, the Maniphest bug tracker and the Phriction wiki. Phabricator integrates with Git, Mercurial, and Subversion.", "html": "<[^>]+(?:class|id)=\"phabricator-", "icon": "Phabricator.png", "implies": "PHP", "scriptSrc": "/phabricator/[a-f0-9]{8}/rsrc/js/phui/[a-z-]+\\.js$", "website": "http://phacility.com" }, "Phaser": { "cats": [ 12 ], "icon": "Phaser.png", "js": { "Phaser": "", "Phaser.VERSION": "^(.+)$\\;version:\\1" }, "website": "https://phaser.io" }, "Phenomic": { "cats": [ 57 ], "description": "Phenomic is a modular website compiler.", "html": [ "<[^>]+id=\"phenomic(?:root)?\"" ], "icon": "Phenomic.svg", "implies": "React", "scriptSrc": "/phenomic\\.browser\\.[a-f0-9]+\\.js", "website": "https://phenomic.io/" }, "Phlox": { "cats": [ 80 ], "description": "Phlox is a modern, lightweight and customizable WordPress theme gratify for almost any type of website.", "dom": "link[href*='/wp-content/themes/phlox/'], link[href*='/wp-content/themes/phlox-pro/']", "icon": "Phlox.png", "pricing": [ "freemium", "low", "onetime" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/phlox(?:-pro)?/", "website": "https://www.phlox.pro" }, "Phoenix": { "cats": [ 18 ], "icon": "sazito-phoenix.png", "implies": [ "React", "Webpack", "Node.js" ], "js": { "Phoenix": "" }, "meta": { "generator": "^phoenix" }, "website": "https://github.com/Sazito/phoenix/" }, "Phoenix Site": { "cats": [ 1 ], "cookies": { "phoenix_p_session": "" }, "description": "Phoenix Site software has been developed by the Internet Marketing Union and is especially intended for entrepreneurs (without technical knowledge) who want to score better in Google (SEO) and get more leads and customers (conversion) from their website.", "icon": "Phoenix Site.png", "js": { "phxsite.pages_version": "([\\d\\.]+)\\;version:\\1" }, "pricing": [ "low", "recurring" ], "saas": true, "website": "https://phoenixsite.nl" }, "Photo Gallery": { "cats": [ 87, 7 ], "description": "Photo Gallery plugin is a feature-rich, yet easy-to-use WordPress tool, which lets you add mobile-friendly image galleries and gallery groups to your website by 10Web.", "dom": "link[href*='/wp-content/plugins/photo-gallery/']", "icon": "Photo Gallery.svg", "pricing": [ "freemium", "onetime" ], "requires": "WordPress", "scriptSrc": "/wp-content/plugins/photo-gallery/.+scripts\\.min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1", "website": "https://10web.io/plugins/wordpress-photo-gallery" }, "PhotoShelter": { "cats": [ 1, 6 ], "description": "PhotoShelter is a cloud storage service that doubles as a website and ecommerce platform for photographers.", "dom": "link[href*='.c.photoshelter.com']", "icon": "PhotoShelter.png", "implies": [ "PHP", "MySQL", "jQuery" ], "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "\\.psecn\\.photoshelter\\.com/", "url": "photoshelter\\.com", "website": "https://www.photoshelter.com" }, "PhotoShelter for Brands": { "cats": [ 95 ], "description": "PhotoShelter for Brands is a cloud-based media management system for companies and organizations.", "dom": { "a[href*='.photoshelter.com/']": { "attributes": { "href": "^(?:(?!psecn).)*$" } }, "a[href*='brands.photoshelter.com/']": { "attributes": { "text": "^Powered by PhotoShelter for Brands$" } } }, "excludes": "PhotoShelter", "icon": "PhotoShelter.png", "pricing": [ "poa" ], "saas": true, "website": "https://brands.photoshelter.com" }, "PhotoSwipe": { "cats": [ 7, 59 ], "description": "PhotoSwipe is an open-source gallery to support JavaScript-based image zooming.", "icon": "PhotoSwipe.png", "js": { "PhotoSwipe": "", "PhotoSwipeUI_Default": "", "photoswipeParseHash": "" }, "oss": true, "scriptSrc": "photoswipe/([\\d\\.]+)/photoswipe\\.min\\.js\\;version:\\1", "website": "https://photoswipe.com" }, "Photoslurp": { "cats": [ 96 ], "description": "Photoslurp is a visual commerce platform that collects photos and videos of customers using your products from across social networks.", "icon": "Photoslurp.svg", "js": { "Photoslurp": "", "photoSlurpWidgetSettings": "", "photoslurp_script": "", "photoslurp_wdgts": "" }, "pricing": [ "mid", "recurring" ], "saas": true, "website": "https://hi.photoslurp.com" }, "Phusion Passenger": { "cats": [ 22 ], "cpe": "cpe:2.3:a:phusionpassenger:phusion_passenger:*:*:*:*:*:*:*:*", "description": "Phusion Passenger is a free web server and application server with support for Ruby, Python and Node.js.", "headers": { "Server": "Phusion Passenger ([\\d.]+)\\;version:\\1", "X-Powered-By": "Phusion Passenger(?:\\(R\\))? ?([\\d.]+)?\\;version:\\1" }, "icon": "Phusion Passenger.png", "website": "https://phusionpassenger.com" }, "Piano": { "cats": [ 76 ], "description": "Piano is a enterprise SaaS company which specializing in advanced media business processes and ecommerce optimisation.", "icon": "Piano.png", "js": { "PianoESPConfig": "", "gciDataPiano": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": [ "\\.tinypass\\.com", "\\.piano\\.io" ], "website": "https://piano.io" }, "PickyStory": { "cats": [ 100 ], "description": "PickyStory is the ecommerce conversion platform.", "icon": "PickyStory.png", "implies": "Shopify", "js": { "pickystory.overrideStore": "" }, "pricing": [ "freemium", "payg" ], "saas": true, "scriptSrc": "cdn\\.pickystory\\.com/", "website": "https://pickystory.com" }, "Pico": { "cats": [ 53 ], "icon": "pico.svg", "js": { "Pico": "" }, "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": [ "widget\\.pico\\.tools" ], "website": "https://trypico.com" }, "Picreel": { "cats": [ 77, 5 ], "description": "Picreel is a conversion optimisation software.", "dom": "iframe[src*='app.picreel.com']", "icon": "Picreel.svg", "js": { "picreel": "" }, "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "\\.picreel\\.com", "website": "https://www.picreel.com" }, "Picturepark": { "cats": [ 95 ], "description": "Picturepark is designed to facilitate your DAM policies by storing, tagging, searching and delivering files in an automated and controlled way.", "dom": "img[data-name*='Picturepark'], img[data-srcset*='picturepark'], div[style*='picturepark'], source[srcset*='picturepark']", "icon": "Picturepark.svg", "js": { "pictureparkConfiguration": "" }, "pricing": [ "high", "recurring" ], "website": "https://picturepark.com" }, "Piman": { "cats": [ 68 ], "description": "Piman is an open-source accessibility UI framework create by Blueplanet Inc.", "dom": "button.bpa-btn", "icon": "Piman.svg", "oss": true, "website": "https://ya-sai.github.io/piman/" }, "Pimcore": { "cats": [ 1, 6 ], "cpe": "cpe:2.3:a:pimcore:pimcore:*:*:*:*:*:*:*:*", "description": "Pimcore is an open-source digital platform that aggregates, enriches, and manages enterprise data and provides up-to-date, consistent, and personalised experiences to customers.", "dom": ".pimcore_area_content", "headers": { "X-Powered-By": "^pimcore$" }, "icon": "pimcore.svg", "implies": "PHP", "oss": true, "pricing": [ "poa" ], "website": "https://pimcore.com/en/digital-experience-platform" }, "Pin Payments": { "cats": [ 41 ], "description": "Pin Payments is an all-in-one online payment system. It offers merchants a simple JSON API, secure credit card storage, multi-currency capabilities, bank account compatibility, onsite payment processing and automatic fund transfer to specified bank accounts.", "icon": "pinpayments.png", "scriptSrc": "api\\.pinpayments\\.com", "website": "https://www.pinpayments.com/" }, "Pingdom": { "cats": [ 78 ], "description": "Pingdom is a Swedish website monitoring software as a service company.", "icon": "Pingdom.svg", "pricing": [ "payg", "recurring" ], "saas": true, "scriptSrc": "\\.pingdom\\.net", "website": "https://www.pingdom.com" }, "Pingoteam": { "cats": [ 1 ], "icon": "Pingoteam.svg", "implies": "PHP", "meta": { "designer": "Pingoteam" }, "website": "https://www.pingoteam.ir/" }, "PinnacleCart": { "cats": [ 6 ], "description": "PinnacleCart is an ecommerce platform.", "icon": "PinnacleCart.png", "js": { "USER_DELETE_ADDRESS": "^DeleteShippingAddress$\\;confidence:49", "USER_DELETE_PAYMENT_PROFILE": "^DeletePaymentProfile$\\;confidence:49" }, "pricing": [ "freemium", "mid", "recurring" ], "saas": true, "website": "https://www.pinnaclecart.com" }, "Pinterest": { "cats": [ 5 ], "description": "Pinterest is an image sharing and social media service designed to enable saving and discovery of information.", "icon": "Pinterest.svg", "scriptSrc": "//assets\\.pinterest\\.com/js/pinit\\.js", "website": "http://pinterest.com" }, "Pinterest Ads": { "cats": [ 36 ], "description": "Pinterest Ads is an online advertising platform developed by Pinterest.", "icon": "Pinterest.svg", "website": "https://ads.pinterest.com/", "xhr": "ct\\.pinterest\\.com" }, "Pinterest Conversion Tag": { "cats": [ 10 ], "description": "Pinterest Conversion Tag allows you to track actions people take on your website after viewing your Promoted Pin.", "dom": "img[src*='ct.pinterest.com/v3/?tid']", "icon": "Pinterest.svg", "js": { "pintrk": "" }, "website": "https://www.pinterest.com.au/business/" }, "Pipedrive": { "cats": [ 52, 53 ], "description": "Pipedrive is a cloud-based sales CRM.", "icon": "Pipedrive.svg", "js": { "LeadBooster": "" }, "pricing": [ "low" ], "saas": true, "website": "https://www.pipedrive.com/" }, "Piwik PRO Core": { "cats": [ 10 ], "description": "Piwik PRO Core is a free alternative to Google Analytics that is privacy & compliance focused.", "excludes": "Matomo Analytics", "icon": "Piwik PRO Core.svg", "pricing": [ "freemium", "poa" ], "saas": true, "scriptSrc": "\\.piwik\\.pro/", "website": "https://piwik.pro" }, "Pixc": { "cats": [ 19 ], "description": "Pixc is human powered image editing platform.", "icon": "Pixc.svg", "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "//pixc\\.com/", "website": "https://pixc.com" }, "PixelFed": { "cats": [ 2 ], "description": "PixelFed is an activitypub based image sharing platform.", "dom": { "a[href='pixelfed.org'][title*='version']": { "attributes": { "title": "^version ([0-9.]+)$\\;version:\\1" }, "text": "^Powered by Pixelfed$" } }, "icon": "PixelFed.svg", "implies": [ "Laravel" ], "website": "https://pixelfed.org" }, "PixelYourSite": { "cats": [ 87, 10 ], "description": "PixelyourSite is now probably the most complex tracking tool for WordPress, managing the Facebook Pixel, Google Analytics, Google Ads Remarketing, Pinterest Tag, Bing Tag, and virtually any other script.", "icon": "PixelYourSite.png", "js": { "pys.Facebook": "", "pysOptions": "", "pys_generate_token": "" }, "pricing": [ "low", "recurring" ], "requires": "WordPress", "scriptSrc": "/wp-content/plugins/pixelyoursite/", "website": "https://www.pixelyoursite.com" }, "Pixieset Store": { "cats": [ 6 ], "description": "Pixieset Store lets you sell professional print products, digital downloads, and other items directly from your galleries.", "icon": "Pixieset.svg", "js": { "PixiesetProductEditor": "", "PixiesetProductOptionSelection": "" }, "pricing": [ "payg" ], "saas": true, "website": "https://pixieset.com" }, "Pixieset Website": { "cats": [ 1, 51 ], "description": "Pixieset Website is a space to create your own beautiful photography website.", "icon": "Pixieset.svg", "meta": { "generator": "^Pixieset$" }, "pricing": [ "freemium", "low", "recurring" ], "saas": true, "website": "https://pixieset.com" }, "Pixlee TurnTo": { "cats": [ 96 ], "description": "Pixlee TurnTo is a social UGC, ratings and reviews, and influencer marketing platform for community-driven brands.", "icon": "Pixelee TurnTo.png", "js": { "Pixlee": "", "Pixlee_Analytics": "", "TurnTo": "", "turnToConfig": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "assets\\.pixlee\\.com", "website": "https://pixlee.com" }, "Pixnet": { "cats": [ 1 ], "description": "Pixnet is an Taiwanese mobile photo sharing, blogging, and social networking service.", "icon": "Pixnet.svg", "js": { "pix.MIB": "" }, "website": "https://www.pixnet.net" }, "PizzaNetz": { "cats": [ 1, 93 ], "description": "PizzaNetz is an ordering system and shop system for pizzerias, Chinese restaurant and kebabs.", "dom": "form[name*='pizzanetz']", "icon": "PizzaNetz.png", "pricing": [ "low", "recurring" ], "website": "https://www.pizzanetz.de" }, "Plaid": { "cats": [ 41, 19 ], "description": "Plaid is a fintech company that facilitates communication between financial services apps and users' banks and credit card providers.", "headers": { "content-security-policy": "cdn\\.plaid\\.com/" }, "icon": "Plaid.svg", "js": { "Plaid.version": "([\\.\\d]+)\\;version:\\1" }, "pricing": [ "payg", "recurring" ], "scriptSrc": "\\.plaid\\.com/", "website": "https://plaid.com" }, "Planet": { "cats": [ 49 ], "description": "Planet is a feed aggregator, which creates pages with entries from the original feeds in chronological order, most recent entries first.", "icon": "Planet.png", "meta": { "generator": "^Planet(?:/([\\d.]+))?\\;version:\\1" }, "website": "http://planetplanet.org" }, "Platform.sh": { "cats": [ 62 ], "headers": { "x-platform-cluster": "", "x-platform-processor": "", "x-platform-router": "", "x-platform-server": "" }, "icon": "platformsh.svg", "website": "https://platform.sh" }, "PlatformOS": { "cats": [ 1, 62 ], "headers": { "x-powered-by": "^platformOS$" }, "icon": "PlatformOS.svg", "website": "https://www.platform-os.com" }, "Plausible": { "cats": [ 10 ], "cookies": {}, "description": "Plausible is an open-source alternative to Google Analytics.", "icon": "Plausible.svg", "js": { "plausible": "" }, "scriptSrc": "plausible\\.io/js/plausible\\.js", "website": "https://plausible.io/" }, "Play": { "cats": [ 18 ], "cookies": { "PLAY_SESSION": "" }, "cpe": "cpe:2.3:a:playframework:play_framework:*:*:*:*:*:*:*:*", "icon": "Play.svg", "implies": "Scala", "website": "https://www.playframework.com" }, "Plaza": { "cats": [ 103 ], "description": "Plaza is a ecommerce platform that allows brands and retailers to communicate with customers via live video.", "dom": "iframe[src*='stream.useplaza.com/']", "icon": "Plaza.svg", "pricing": [ "freemium", "low", "recurring" ], "saas": true, "website": "https://www.useplaza.com" }, "Pleroma": { "cats": [ 2 ], "description": "Pleroma is a free, federated social networking server built on open protocols.", "dom": { "noscript": { "text": "^To use Pleroma, please enable JavaScript.$" }, "title": { "text": "^Pleroma$" } }, "icon": "Pleroma.svg", "website": "https://pleroma.social/" }, "Plesk": { "cats": [ 9 ], "cpe": "cpe:2.3:a:parallels:parallels_plesk_panel:*:*:*:*:*:*:*:*", "description": "Plesk is a web hosting and server data centre automation software with a control panel developed for Linux and Windows-based retail hosting service providers.", "headers": { "X-Powered-By": "^Plesk(?:L|W)in", "X-Powered-By-Plesk": "^Plesk" }, "icon": "Plesk.png", "scriptSrc": "common\\.js\\?plesk", "website": "https://www.plesk.com/" }, "Pligg": { "cats": [ 1 ], "cpe": "cpe:2.3:a:pligg:pligg_cms:*:*:*:*:*:*:*:*", "html": "]+id=\"xvotes-0", "icon": "Pligg.svg", "js": { "pligg_": "" }, "meta": { "generator": "Pligg" }, "website": "http://pligg.com" }, "Plone": { "cats": [ 1 ], "cpe": "cpe:2.3:a:plone:plone:*:*:*:*:*:*:*:*", "description": "Plone is a free and open source content management system (CMS) built on top of the Zope application server.", "icon": "Plone.svg", "implies": "Python", "meta": { "generator": "Plone" }, "oss": true, "website": "https://plone.org/" }, "Plotly": { "cats": [ 25 ], "icon": "Plotly.png", "implies": "D3", "js": { "Plotly.version": "([\\d.])\\;version:\\1" }, "scriptSrc": "https?://cdn\\.plot\\.ly/plotly", "website": "https://plot.ly/javascript/" }, "Plyr": { "cats": [ 14 ], "css": "--plyr-progress", "description": "Plyr is a simple, lightweight, accessible and customizable HTML5, YouTube and Vimeo media player that supports modern browsers.", "icon": "Plyr.png", "js": { "Plyr": "" }, "oss": true, "scriptSrc": "cdn\\.plyr\\.io/([0-9.]+)/.+\\.js\\;version:\\1", "website": "https://plyr.io" }, "Po.st": { "cats": [ 5 ], "icon": "Po.st.png", "js": { "pwidget_config": "" }, "website": "http://www.po.st/" }, "Pocket": { "cats": [ 5 ], "description": "Pocket is a social bookmarking service that can be integrated into a website with the use of a web widget.", "dom": "iframe[src*='widgets.getpocket.com/']", "icon": "pocket.svg", "meta": { "pocket-site-verification'": "" }, "pricing": [ "freemium", "low", "recurring" ], "scriptSrc": "widgets\\.getpocket\\.com/", "website": "https://getpocket.com" }, "Podia": { "cats": [ 21, 6 ], "cookies": { "_podia_storefront_visitor_id": "" }, "description": "Podia is a platform to host and sell online courses, memberships, and digital downloads.", "icon": "Podia.svg", "js": { "Podia.Checkout": "" }, "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "cdn\\.podia\\.com", "website": "https://www.podia.com" }, "Podigee": { "cats": [ 5 ], "description": "Podigee is an independent company for podcast publishers. Podigee offers hosting, distribution, analytics and monetisation of podcasts.", "dom": "iframe[src*='cdn.podigee.com/']", "icon": "Podigee.svg", "js": { "podigeePodcastPlayers": "" }, "pricing": [ "low", "recurring" ], "saas": true, "website": "https://www.podigee.com" }, "Podium": { "cats": [ 5, 52 ], "description": "Podium is a customer communication platform for businesses who interact with customers on a local level.", "icon": "Podium.png", "js": { "PodiumWebChat": "", "podiumWebsiteWidgetLoaded": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "\\.podium\\.com/", "website": "https://www.podium.com" }, "Podsights": { "cats": [ 36 ], "description": "Podsights is attribution technology platform that brands and agencies use to measure and scale their podcast advertising", "icon": "Podsights.png", "scriptSrc": "cdn\\.pdst\\.fm", "website": "https://podsights.com/" }, "Pojo.me": { "cats": [ 68 ], "description": "Pojo.me provides a Accessibility overlay plug-in for any WordPress Theme or Page Builder.", "icon": "Pojo.me.png", "js": { "PojoA11yOptions": "" }, "website": "https://pojo.me/plugins/accessibility/" }, "Poloriz": { "cats": [ 76 ], "description": "Poloriz's technology automatically creates a personalised, full-screen, mobile-first, cross-selling user experience for shoppers.", "icon": "Poloriz.svg", "pricing": [ "payg", "mid", "recurring" ], "saas": true, "scriptSrc": "widget\\.poloriz\\.com/", "website": "https://www.poloriz.com" }, "Polyfill": { "cats": [ 59 ], "description": "Polyfill is a service which accepts a request for a set of browser features and returns only the polyfills that are needed by the requesting browser.", "icon": "polyfill.svg", "oss": true, "scriptSrc": "polyfill\\.io/v([\\d\\.]+)\\;version:\\1", "website": "https://polyfill.io" }, "Polylang": { "cats": [ 87, 89 ], "cookies": { "pll_language": "[a-z]{2}" }, "description": "Polylang is a WordPress plugin which allows you to create multilingual WordPress site.", "dom": "#pll_switcher", "headers": { "x-redirected-by": "Polylang(?: (Pro))?\\;version:\\1" }, "icon": "Polylang.svg", "oss": true, "pricing": [ "freemium" ], "requires": "WordPress", "website": "https://wordpress.org/plugins/polylang" }, "Polymer": { "cats": [ 12 ], "html": "(?:]+|]+rel=\"import\"[^>]+/polymer\\.html\")", "icon": "Polymer.png", "js": { "Polymer.version": "^(.+)$\\;version:\\1" }, "scriptSrc": "polymer\\.js", "website": "http://polymer-project.org" }, "Popmenu": { "cats": [ 1, 93 ], "cookies": { "Popmenu-Token": "" }, "description": "Popmenu is a restaurant platform which offers CMS, online menus, ordering and delivery and marketing automation solutions.", "icon": "Popmenu.svg", "implies": [ "React", "Apollo" ], "js": { "POPMENU_CLIENT": "", "popmenuHydrated": "" }, "pricing": [ "recurring", "mid" ], "website": "https://get.popmenu.com", "xhr": "popmenu\\.com" }, "Popper": { "cats": [ 19 ], "description": "Popper is a positioning engine, its purpose is to calculate the position of an element to make it possible to position it near a given reference element.", "icon": "Popper.svg", "js": { "Popper.Defaults": "", "Popper.applyStyles": "", "createPopper": "" }, "oss": true, "scriptSrc": [ "/popper(?:\\.min)?\\.js(?:/([0-9.]+))?\\;version:\\1", "popperjs(?:/|-)core(?:@|-)([\\d\\.]+)\\;version:\\1" ], "website": "https://popper.js.org" }, "PopularFX": { "cats": [ 80 ], "description": "PopularFX is a fully customizable responsive WordPress theme. It comes with drag and drop page builder.", "dom": "link#popularfx-style-css", "icon": "PopularFX.png", "pricing": [ "freemium", "low", "recurring" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/popularfx/.+\\?ver=([\\d\\.]+)\\;version:\\1", "website": "https://popularfx.com" }, "Popup Maker": { "cats": [ 87 ], "description": "Popup Maker is a plugin that lets you create popup windows for your WordPress website.", "icon": "Popup Maker.png", "js": { "pum_popups": "" }, "pricing": [ "freemium", "low", "recurring" ], "requires": "WordPress", "scriptSrc": "/wp-content/plugins/popup-maker/(?:.+site(?:\\.min)?\\.js\\?.+ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1", "website": "https://wppopupmaker.com" }, "Post Affiliate Pro": { "cats": [ 71 ], "description": "Post Affiliate Pro is a software built for online stores and ecommerce websites that need to track and monitor their affiliate network.", "icon": "Post Affiliate Pro.svg", "js": { "PostAffAction": "", "PostAffCookie": "", "PostAffInfo": "", "PostAffTracker": "" }, "pricing": [ "mid", "recurring" ], "saas": true, "scriptSrc": [ "postaffiliatepro\\.com/scripts/trackjs\\.js", "(?:affiliate|associate)\\..+/scripts/trackjs\\.js" ], "website": "https://www.postaffiliatepro.com" }, "PostNL": { "cats": [ 99 ], "description": "PostNL (formerly TNT) is a mail, parcel and ecommerce corporation with operations in the Netherlands, Germany, Italy, Belgium, and the United Kingdom.", "dom": "img[alt*='postnl' i], img[src*='postnl' i]", "icon": "PostNL.svg", "requiresCategory": 6, "text": [ "\\bPostNL\\b" ], "website": "https://postnl.post" }, "Poste Italiane": { "cats": [ 99 ], "description": "Poste Italiane is the Italian postal service provider.", "icon": "Poste Italiane.svg", "requiresCategory": 6, "text": [ "\\bPoste Italiane\\b" ], "website": "https://www.poste.it" }, "Posterous": { "cats": [ 1, 11 ], "html": "
]+title=\"POWERGAP", " *, body > * > *, body > * > * > *": { "properties": { "__k": "" } } }, "icon": "Preact.svg", "oss": true, "website": "https://preactjs.com" }, "Prebid": { "cats": [ 36 ], "description": "Prebid is an open-source header bidding wrapper. It forms the core of our Nucleus ad platform, helping maximize revenue and performance for publishers.", "icon": "Prebid.png", "js": { "PREBID_TIMEOUT": "", "pbjs": "", "pbjs.version": "v([\\d\\.]+)\\;version:\\1" }, "oss": true, "scriptSrc": [ "/prebid\\.js", "adnxs\\.com/[^\"]*(?:prebid|/pb\\.js)" ], "website": "http://prebid.org" }, "Prediggo": { "cats": [ 76, 32 ], "description": "Prediggo is an ecommerce personalisation and marketing automation software provider.", "icon": "Prediggo.png", "js": { "Prediggo": "", "PrediggoSearchFormExternalAc": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "js/prediggo/(?:[\\w]+)\\.js", "website": "https://prediggo.com" }, "Prefix-Free": { "cats": [ 19 ], "icon": "Prefix-Free.png", "js": { "PrefixFree": "" }, "scriptSrc": "prefixfree\\.js", "website": "https://leaverou.github.io/prefixfree/" }, "Premio Chaty": { "cats": [ 87 ], "description": "Chat with your website visitors via their favorite channels with Chaty by Premio.", "icon": "Premio.png", "js": { "chaty_settings.chaty_widgets": "", "chaty_settings.object_settings": "" }, "pricing": [ "low", "recurring" ], "requires": "WordPress", "saas": true, "scriptSrc": "/wp-content/plugins/chaty/", "website": "https://premio.io/downloads/chaty" }, "Press Customizr": { "cats": [ 80 ], "description": "Press Customizr is a multipurpose WordPress theme suitable for small businesses and ecommerce sites.", "dom": "style#customizr-skin-inline-css, link#customizr-style-css", "icon": "Press.svg", "pricing": [ "freemium" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/customizr/.+js(?:\\?ver=([\\d\\.]+))?\\;version:\\1", "website": "https://presscustomizr.com/customizr" }, "Press Hueman": { "cats": [ 80 ], "description": "Press Hueman is a mobile friendly WordPress theme for blogs, magazines and business websites.", "dom": "link[href*='/wp-content/themes/hueman/']", "icon": "Press.svg", "js": { "HUParams": "" }, "pricing": [ "freemium" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/hueman/.+scripts\\.min\\.js(?:\\?ver=([\\d\\.]+))?\\;version:\\1", "website": "https://presscustomizr.com/hueman" }, "PressMaximum Customify": { "cats": [ 80 ], "description": "PressMaximum Customify is lightweight, responsive and flexible multipurpose WordPress theme.", "icon": "PressMaximum.png", "js": { "Customify": "", "Customify_JS": "", "customify_is_mobile": "" }, "pricing": [ "freemium", "low", "recurring" ], "requires": "WordPress", "scriptSrc": "/wp-content/themes/customify/.+theme\\.min\\.js(?:.+ver=([\\d\\.]+))?\\;version:\\1", "website": "https://pressmaximum.com/customify" }, "Pressable": { "cats": [ 62 ], "description": "Pressable is a managed hoting platform for WordPress.", "headers": { "host-header": "^Pressable" }, "icon": "pressable.svg", "implies": [ "WordPress" ], "website": "https://pressable.com" }, "PrestaShop": { "cats": [ 6 ], "cookies": { "PrestaShop": "" }, "cpe": "cpe:2.3:a:prestashop:prestashop:*:*:*:*:*:*:*:*", "description": "PrestaShop is a freemium, open-source ecommerce solution, written in the PHP programming language with support for the MySQL database management system.", "dom": "img[src*='/modules/prestablog/themes/'], img[data-src*='/modules/prestablog/themes/']", "headers": { "Powered-By": "^Prestashop$" }, "html": [ "Powered by ]+>PrestaShop", "", "" ], "icon": "PrestaShop.svg", "implies": [ "PHP", "MySQL" ], "js": { "freeProductTranslation": "\\;confidence:25", "prestashop": "", "priceDisplayMethod": "\\;confidence:25", "priceDisplayPrecision": "\\;confidence:25", "rcAnalyticsEvents.eventPrestashopCheckout": "" }, "meta": { "generator": "PrestaShop" }, "oss": true, "website": "http://www.prestashop.com" }, "Pretty Links": { "cats": [ 87, 71 ], "description": "Pretty Links is a WordPress plugin URL shortener, link cloaker, branded link, and QR code generator.", "dom": "link[href*='/wp-content/plugins/pretty-link/']", "icon": "Pretty Links.png", "pricing": [ "freemium", "low", "recurring" ], "requires": "WordPress", "website": "https://prettylinks.com" }, "PriceSpider": { "cats": [ 97 ], "description": "PriceSpider is an advanced retail data technology company that provides insights about consumer purchasing behavior.", "icon": "PriceSpider.png", "js": { "PriceSpider.version": "(.+)\\;version:\\1" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": "cdn\\.pricespider\\.com/", "website": "https://www.pricespider.com" }, "PrimeNG": { "cats": [ 66 ], "css": "\\.p-(?:toast|calendar|dialog-mask|menuitem-text)(?:-content)?\\{", "description": "PrimeNG is a rich set of open-source UI Components for Angular.", "icon": "PrimeNG.svg", "oss": true, "pricing": [ "onetime" ], "requires": "Angular", "website": "https://www.primefaces.org" }, "PrimeReact": { "cats": [ 66 ], "css": "\\.p-(?:toast|calendar|dialog-mask|menuitem-text)(?:-content)?\\{", "description": "PrimeReact is a rich set of open-source UI Components for React.", "icon": "PrimeReact.svg", "oss": true, "pricing": [ "onetime" ], "requires": "React", "website": "https://www.primefaces.org" }, "PrimeVue": { "cats": [ 66 ], "css": "\\.p-(?:toast|calendar|dialog-mask|menuitem-text)(?:-content)?\\{", "description": "PrimeVue is a rich set of open-source UI Components for Vue.js.", "icon": "PrimeVue.svg", "oss": true, "pricing": [ "onetime" ], "requires": "Vue.js", "website": "https://www.primefaces.org" }, "Primis": { "cats": [ 36 ], "description": "Primis is a video discovery platform for publishers.", "dom": { "iframe[src*='.sekindo.com']": { "attributes": { "src": "" } }, "img[src*='.sekindo.com']": { "attributes": { "src": "" } } }, "icon": "Primis.svg", "js": { "SekindoNativeSkinApi": "", "sekindoDisplayedPlacement": "", "sekindoFlowingPlayerOn": "" }, "saas": true, "scriptSrc": "\\.sekindo\\.com", "website": "https://www.primis.tech", "xhr": "\\.sekindo\\.com" }, "Printful": { "cats": [ 76 ], "description": "Printful offers print-on-demand drop shipping solution for ecommerce sites.", "icon": "Printful.png", "implies": [ "Cart Functionality" ], "scriptSrc": "static\\.cdn\\.printful\\.com", "website": "https://www.printful.com/" }, "Priority Hints": { "cats": [ 92 ], "description": "Priority Hints exposes a mechanism for developers to signal a relative priority for browsers to consider when fetching resources.", "dom": "iframe[fetchpriority], img[fetchpriority], script[fetchpriority], link[fetchpriority]", "icon": "Priority Hints.svg", "website": "https://wicg.github.io/priority-hints/" }, "Prism": { "cats": [ 19 ], "description": "Prism is an extensible syntax highlighter.", "icon": "Prism.svg", "js": { "Prism": "", "apex.libVersions.prismJs": "^([\\d\\.]+)$\\;version:\\1" }, "scriptSrc": "prism\\.js", "website": "http://prismjs.com" }, "Prismic": { "cats": [ 1 ], "description": "Prismic is a headless CMS for Jamstack.", "dom": "img[src*='images.prismic.io']", "icon": "Prismic.svg", "pricing": [ "low", "freemium", "recurring" ], "saas": true, "scriptSrc": "\\.prismic\\.io/", "website": "https://prismic.io", "xhr": "\\.cdn\\.prismic\\.io" }, "Privy": { "cats": [ 32, 75 ], "description": "Privy is a all-in-one marketing automation platform for ecommerce.", "icon": "Privy.svg", "js": { "Privy": "", "PrivyWidget": "", "privySettings": "" }, "pricing": [ "low", "freemium", "recurring" ], "saas": true, "scriptSrc": "\\.privy\\.com/", "website": "https://www.privy.com" }, "Privy App": { "cats": [ 100 ], "description": "Privy App helps you improve your website conversion rate, grow your email list, automate your email marketing, drive repeat purchases and much more.", "icon": "Privy.svg", "implies": "Privy", "pricing": [ "low", "freemium", "recurring" ], "requires": "Shopify", "saas": true, "scriptSrc": "//shopify\\.privy\\.com/", "website": "https://apps.shopify.com/privy" }, "ProcessWire": { "cats": [ 1 ], "description": "ProcessWire is an open source content management system (CMS) and framework (CMF).", "headers": { "X-Powered-By": "ProcessWire CMS" }, "icon": "ProcessWire.svg", "implies": "PHP", "js": { "ProcessWire": "" }, "oss": true, "website": "https://processwire.com/" }, "Product Hunt": { "cats": [ 19 ], "description": "Product Hunt is a community-based website that allows makers and marketers to launch their products or services and get in touch with their first real users.", "dom": { "a[href*='.producthunt.com/']": { "attributes": { "href": "\\.producthunt\\.com/(?:post|tech|products)" } } }, "icon": "Product Hunt.svg", "pricing": [ "freemium", "mid", "recurring" ], "website": "https://www.producthunt.com" }, "Product Personalizer": { "cats": [ 100, 76 ], "description": "Product Personalizer apps can help you to customise your products and offer a more personalised experience for your customers.", "icon": "Product Personalizer.png", "implies": "Shopify", "pricing": [ "low", "recurring" ], "saas": true, "scriptSrc": "/product-personalizer/pplr_common\\.js", "website": "https://productpersonalizer.com" }, "ProfilePress": { "cats": [ 87 ], "cookies": { "ppwp_wp_session": "" }, "description": "ProfilePress is a WordPress registration plugin that lets you create login forms, registration forms, user profiles, and more.", "dom": "link[href*='/wp-content/plugins/wp-user-avatar/']", "icon": "ProfilePress.svg", "pricing": [ "low", "recurring" ], "requires": "WordPress", "scriptSrc": "/wp-content/plugins/wp-user-avatar(?:-pro)?/.+frontend\\.min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1", "website": "https://profilepress.net" }, "Profitwell": { "cats": [ 10 ], "icon": "Profitwell.svg", "js": { "profitwell": "" }, "scriptSrc": [ "profitwell\\.js" ], "website": "https://www.profitwell.com/" }, "Project Wonderful": { "cats": [ 36 ], "html": "]+id=\"pw_adbox_", "icon": "Project Wonderful.png", "js": { "pw_adloader": "" }, "scriptSrc": "^https?://(?:www\\.)?projectwonderful\\.com/(?:pwa\\.js|gen\\.php)", "website": "http://projectwonderful.com" }, "Projesoft": { "cats": [ 6 ], "icon": "projesoft.png", "scriptSrc": [ "projesoft\\.js" ], "website": "https://www.projesoft.com.tr" }, "PromoBuilding": { "cats": [ 51 ], "cookies": { "promobuilding_session": "" }, "description": "PromoBuilding is a subscription-based website builder for optimising budgets for creating promotional campaigns.", "html": "\\;version:\\1", "icon": "phpAlbum.png", "implies": "PHP", "website": "http://phpalbum.net" }, "phpBB": { "cats": [ 2 ], "cookies": { "phpbb": "" }, "cpe": "cpe:2.3:a:phpbb:phpbb:*:*:*:*:*:*:*:*", "description": "phpBB is a free open-source Internet forum package in the PHP scripting language.", "html": [ "Powered by ]+phpBB", "