Full Code of Lissy93/wapalyzer for AI

main 296c041099a4 cached
111 files
3.9 MB
1.0M tokens
132 symbols
1 requests
Download .txt
Showing preview only (4,074K chars total). Download the full file or copy to clipboard to get everything.
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 <info@wappalyzer.com>

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. <https://fsf.org/>
 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.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    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 <https://www.gnu.org/licenses/>.

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:

    <program>  Copyright (C) <year>  <name of author>
    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
<https://www.gnu.org/licenses/>.

  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
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================

<h1 align="center">Wapalyzer</h1>


<p align="center">
<img src="https://i.ibb.co/DRQSqXp/wapalyzer.png" width="96" /><br />
<b><i>Identify the technologies powering any website</i></b>
<br />
</p>

---

> 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).
> <br />
> 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": "<link[^>]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

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>cats</code></td>
      <td>Array</td>
      <td>
        One or more category IDs.
      </td>
      <td><code>[1, 6]</code></td>
    </tr>
    <tr>
      <td><code>website</code></td>
      <td>String</td>
      <td>URL of the application's website.</td>
      <td>
        <code>"https://example.com"</code>
      </td>
    </tr>
  </tbody>
</table>

### Optional properties

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>description</code></td>
      <td>String</td>
      <td>
        A short description of the technology in British English (max.
        250 characters). Write in a neutral, factual tone; not like an
        ad.
      </td>
      <td><code>"A short description."</code></td>
    </tr>
    <tr>
      <td><code>icon</code></td>
      <td>String</td>
      <td>Application icon filename.</td>
      <td><code>"WordPress.svg"</code></td>
    </tr>
    <tr>
      <td><code>cpe</code></td>
      <td>String</td>
      <td>
        <a href="https://nvd.nist.gov/products/cpe" target="_blank">CPE</a>
        is a structured naming scheme for technologies. To check if a CPE is valid and exists (using v2.3), use the <a href="https://nvd.nist.gov/products/cpe/search" target="_blank">search</a>).
      </td>
      <td><code>"cpe:2.3:a:apache:http_server</code><br /><code>:*:*:*:*:*:*:*:*"</code></td>
    </tr>
    <tr>
      <td><code>saas</code></td>
      <td>Boolean</td>
      <td>
        The technology is offered as a Software-as-a-Service (SaaS), i.e. hosted or cloud-based.
      </td>
      <td><code>true</code></td>
    </tr>
    <tr>
      <td><code>oss</code></td>
      <td>Boolean</td>
      <td>
        The technology has an open-source license.
      </td>
      <td><code>true</code></td>
    </tr>
    <tr>
      <td><code>pricing</code></td>
      <td>Array</td>
      <td>
Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only.

One of:
<ul>
  <li><code>low</code>Less than US $100 / mo</li>
  <li><code>mid</code>Between US $100 - $1,000 / mo</li>
  <li><code>high</code>More than US $1,000 / mo</li>
</ul>

Plus any of:
<ul>
  <li><code>freemium</code> Free plan available</li>
  <li><code>onetime</code> One-time payments accepted</li>
  <li><code>recurring</code> Subscriptions available</li>
  <li><code>poa</code> Price on asking</li>
  <li><code>payg</code> Pay as you go (e.g. commissions or usage-based fees)</li>
</ul>
      </td>
      <td><code>["low", "freemium"]</code></td>
    </tr>
  </tbody>
</table>

### Implies, requires and excludes (optional)

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>implies</code></td>
      <td>String | Array</td>
      <td>
        The presence of one application can imply the presence of
        another, e.g. WordPress means PHP is also in use.
      </td>
      <td><code>"PHP"</code></td>
    </tr>
    <tr>
      <td><code>requires</code></td>
      <td>String | Array</td>
      <td>
        Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS.
      </td>
      <td><code>"WordPress"</code></td>
    </tr>
    <tr>
      <td><code>requiresCategory</code></td>
      <td>String | Array</td>
      <td>
        Similar to requires; detection only runs if a technology in the required category has been identified.
      </td>
      <td><code>"Ecommerce"</code></td>
    </tr>
    <tr>
      <td><code>excludes</code></td>
      <td>String | Array</td>
      <td>
        Opposite of implies. The presence of one application can exclude
        the presence of another.
      </td>
      <td><code>"Apache"</code></td>
    </tr>
  </tbody>
</table>

### Patterns (optional)

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>cookies</code></td>
      <td>Object</td>
      <td>Cookies.</td>
      <td><code>{ "cookie_name": "Cookie value" }</code></td>
    </tr>
    <tr>
      <td><code>dom</code></td>
      <td>String | Array | Object</td>
      <td>
        Uses a
        <a
          href="https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll"
          target="_blank"
          noopener
          >query selector</a
        >
        to inspect element properties, attributes and text content.
      </td>
      <td>
        <code
          >{ "#example-id": { "property": { "example-prop": "" } }
          }</code
        >
      </td>
    </tr>
    <tr>
      <td><code>dns</code></td>
      <td>Object</td>
      <td>
        DNS records: supports MX, TXT, SOA and NS (NPM driver only).
      </td>
      <td>
        <code>{ "MX": "example\\.com" }</code>
      </td>
    </tr>
    <tr>
      <td><code>js</code></td>
      <td>Object</td>
      <td>
        JavaScript properties (case sensitive). Avoid short property
        names to prevent matching minified code.
      </td>
      <td><code>{ "jQuery.fn.jquery": "" }</code></td>
    </tr>
    <tr>
      <td><code>headers</code></td>
      <td>Object</td>
      <td>HTTP response headers.</td>
      <td><code>{ "X-Powered-By": "^WordPress$" }</code></td>
    </tr>
    <tr>
      <td><code>html</code></td>
      <td>String | Array</td>
      <td>
        HTML source code. Patterns must include an HTML opening tag to
        avoid matching plain text. For performance reasons, avoid
        <code>html</code> where possible and use
        <code>dom</code> instead.
      </td>
      <td><code>"&lt;a [^&gt;]*href=\"index.html"</code></td>
    </tr>
    <tr>
      <td><code>text</code></td>
      <td>String | Array</td>
      <td>
        Matches plain text. Should only be used in very specific cases where other methods can't be used.
      </td>
      <td><code>\bexample\b</code></td>
    </tr>
    <tr>
      <td><code>css</code></td>
      <td>String | Array</td>
      <td>
        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.
      </td>
      <td><code>"\\.example-class"</code></td>
    </tr>
    <tr>
      <td><code>probe</code></td>
      <td>Object</td>
      <td>
        Request a URL to test for its existence or match text content (NPM driver only).
      </td>
      <td><code>{ "/path": "Example text" }</code></td>
    </tr>
    <tr>
      <td><code>robots</code></td>
      <td>String | Array</td>
      <td>
        Robots.txt contents.
      </td>
      <td><code>"Disallow: /unique-path/"</code></td>
    </tr>
    <tr>
      <td><code>url</code></td>
      <td>String | Array</td>
      <td>Full URL of the page.</td>
      <td><code>"^https?//.+\\.wordpress\\.com"</code></td>
    </tr>
    <tr>
      <td><code>xhr</code></td>
      <td>String | Array</td>
      <td>Hostnames of XHR requests.</td>
      <td><code>"cdn\\.netlify\\.com"</code></td>
    </tr>
    <tr>
      <td><code>meta</code></td>
      <td>Object</td>
      <td>HTML meta tags, e.g. generator.</td>
      <td><code>{ "generator": "^WordPress$" }</code></td>
    </tr>
    <tr>
      <td><code>scriptSrc</code></td>
      <td>String | Array</td>
      <td>
        URLs of JavaScript files included on the page.
      </td>
      <td><code>"jquery\\.js"</code></td>
    </tr>
    <tr>
      <td><code>scripts</code></td>
      <td>String | Array</td>
      <td>
        JavaScript source code. Inspects inline and external scripts. For performance reasons, avoid
        <code>scripts</code> where possible and use
        <code>js</code> instead.
      </td>
      <td><code>"function webpackJsonpCallback\\(data\\) {"</code></td>
    </tr>
  </tbody>
</table>

## 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.

<table>
  <thead>
    <tr>
      <th>Tag</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>confidence</code></td>
      <td>
        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.
      </td>
      <td>
        <code>"js": { "Mage": "\\;confidence:50" }</code>
      </td>
    </tr>
    <tr>
      <td><code>version</code></td>
      <td>
        Gets the version number from a pattern match using a special
        syntax.
      </td>
      <td>
        <code>"scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1"</code>
      </td>
    </tr>
  </tbody>
</table>

### Version syntax

Application version information can be obtained from a pattern using a capture group. A condition can be evaluated using the ternary operator (`?:`).

<table>
  <thead>
    <tr>
      <th>Example</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code>\\1</code></td>
      <td>Returns the first match.</td>
    </tr>
    <tr>
      <td><code>\\1?a:</code></td>
      <td>
        Returns a if the first match contains a value, nothing
        otherwise.
      </td>
    </tr>
    <tr>
      <td><code>\\1?a:b</code></td>
      <td>
        Returns a if the first match contains a value, b otherwise.
      </td>
    </tr>
    <tr>
      <td><code>\\1?:b</code></td>
      <td>
        Returns nothing if the first match contains a value, b
        otherwise.
      </td>
    </tr>
    <tr>
      <td><code>foo\\1</code></td>
      <td>
        Returns foo with the first match appended.
      </td>
    </tr>
  </tbody>
</table>


================================================
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"
      },
      "<model-viewer>": {
        "cats": [
          105
        ],
        "description": "<model-viewer> is an open-source web component developed by Google and maintained through GitHub. <model-viewer> 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": "<!-- ZK [.\\d\\s]+-->",
        "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": [
          "<link[^>]+foundation[^>\"]+css",
          "<div [^>]*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": "<body[^>]+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": "<img [^>]*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*<!-- outerContainer -->\\s*<div\\s*id=\"printContainer\"><\\/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 <a href=\"[^>]+phpfusion",
          "Powered by <a href=\"[^>]+php-fusion"
        ],
        "icon": "PHPFusion.png",
        "implies": [
          "PHP",
          "MySQL"
        ],
        "website": "https://phpfusion.com"
      },
      "PIXIjs": {
        "cats": [
          25
        ],
        "description": "PIXIjs is a free open-source 2D engine used to make animated websites and HTML5 games.",
        "icon": "PIXIjs.svg",
        "js": {
          "PIXI": "",
          "PIXI.VERSION": "^(.+)$\\;version:\\1",
          "PIXI_WEBWORKER_URL": ""
        },
        "oss": true,
        "scriptSrc": "pixi(?:\\.min|-legacy)?\\.js$",
        "url": ".+\\.pixijs\\.com",
        "website": "https://www.pixijs.com"
      },
      "POLi Payment": {
        "cats": [
          41
        ],
        "description": "POLi Payment(formerly known as Centricom) is an online payment service in Australia and New Zealand.",
        "icon": "POLi Payment.svg",
        "js": {
          "wc_ga_pro.available_gateways.poli": ""
        },
        "pricing": [
          "payg"
        ],
        "saas": true,
        "website": "https://www.polipayments.com"
      },
      "POWR": {
        "cats": [
          5
        ],
        "description": "POWR is a cloud-based system of plugins that work on almost any website.",
        "icon": "POWR.svg",
        "js": {
          "POWR_RECEIVERS": "",
          "loadPowr": ""
        },
        "pricing": [
          "low",
          "recurring",
          "freemium"
        ],
        "saas": true,
        "scriptSrc": "www\\.powr\\.io/powr\\.js",
        "website": "https://www.powr.io"
      },
      "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 <a href=\"[^>]+getpelican\\.com",
          "powered by <a href=\"https?://pelican\\.notmyidea\\.org"
        ],
        "icon": "pelican.png",
        "implies": "Python",
        "website": "https://blog.getpelican.com/"
      },
      "PencilBlue": {
        "cats": [
          1,
          11
        ],
        "headers": {
          "X-Powered-By": "PencilBlue"
        },
        "icon": "PencilBlue.png",
        "implies": "Node.js",
        "website": "https://github.com/pencilblue/pencilblue"
      },
      "Pendo": {
        "cats": [
          10,
          58
        ],
        "description": "Pendo is a product analytics platform used in release to enrich the product experience and provide insights to the product management team.",
        "icon": "Pendo.svg",
        "js": {
          "pendo.HOST": "\\.pendo\\.io",
          "pendo.VERSION": "(.+)\\;version:\\1\\;confidence:1"
        },
        "pricing": [
          "freemium",
          "poa"
        ],
        "saas": true,
        "scriptSrc": "\\.pendo\\.io/",
        "website": "https://www.pendo.io"
      },
      "Pepperjam": {
        "cats": [
          71
        ],
        "description": "Pepperjam is an affiliate marketing solutions provider.",
        "icon": "Pepperjam.png",
        "js": {
          "Pepperjam": "",
          "PepperjamTracking": ""
        },
        "pricing": [
          "poa"
        ],
        "saas": true,
        "scriptSrc": "\\.pepperjam\\.com/",
        "website": "https://www.pepperjam.com"
      },
      "Percona": {
        "cats": [
          34
        ],
        "description": "Percona server is an opensource, fully compatible, enhanced drop-in replacement for MySQL, providing superior performance, scalability, and instrumentation.",
        "icon": "percona.svg",
        "website": "https://www.percona.com"
      },
      "Percussion": {
        "cats": [
          1
        ],
        "html": "<[^>]+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": "<span[^>]+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": "(?:<polymer-[^>]+|<link[^>]+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": "<div class=\"posterous",
        "icon": "Posterous.png",
        "js": {
          "Posterous": ""
        },
        "website": "http://posterous.com"
      },
      "PostgreSQL": {
        "cats": [
          34
        ],
        "cpe": "cpe:2.3:a:postgresql:postgresql:*:*:*:*:*:*:*:*",
        "description": "PostgreSQL, also known as Postgres, is a free and open-source relational database management system emphasizing extensibility and SQL compliance.",
        "icon": "PostgreSQL.png",
        "website": "http://www.postgresql.org/"
      },
      "Postpay": {
        "cats": [
          91
        ],
        "description": "Postpay is a payment solution that allows you to split your purchase amount into instalments.",
        "icon": "Postpay.svg",
        "js": {
          "PostpayJsConfig": "\\;confidence:50",
          "postpay": "\\;confidence:25",
          "wc_postpay_init_params": "\\;confidence:25"
        },
        "pricing": [
          "payg"
        ],
        "saas": true,
        "scriptSrc": "cdn\\.postpay\\.io/(?:.+\\?ver=([\\d\\.]+))?\\;version:\\1",
        "website": "https://postpay.io"
      },
      "Postscript": {
        "cats": [
          32
        ],
        "description": "Postscript is an SMS and MMS marketing platform for Shopify stores.",
        "icon": "Postscript.svg",
        "js": {
          "Postscript.isSubscriberInputChecked": "",
          "postscript.getSubscriberId": ""
        },
        "pricing": [
          "payg"
        ],
        "saas": true,
        "scriptSrc": "sdk\\.postscript\\.io/",
        "website": "https://www.postscript.io"
      },
      "PowerReviews": {
        "cats": [
          90
        ],
        "description": "Powerreviews is a provider of UGC solutions like ratings and reviews.",
        "icon": "PowerReviews.png",
        "js": {
          "POWERREVIEWS": ""
        },
        "saas": true,
        "scriptSrc": "ui\\.powerreviews\\.com",
        "website": "https://www.powerreviews.com/"
      },
      "Powerboutique": {
        "cats": [
          6
        ],
        "icon": "powerboutique.png",
        "scriptSrc": "powerboutique",
        "website": "https://www.powerboutique.com/"
      },
      "Powergap": {
        "cats": [
          6
        ],
        "html": [
          "<a[^>]+title=\"POWERGAP",
          "<input type=\"hidden\" name=\"shopid\""
        ],
        "icon": "Powergap.png",
        "saas": true,
        "website": "http://powergap.de"
      },
      "Preact": {
        "cats": [
          59
        ],
        "description": "Preact is a JavaScript library that describes itself as a fast 3kB alternative to React with the same ES6 API.",
        "dom": {
          "#app, .app, #root, .root, body, body > *, 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 <a\\s+[^>]+>PrestaShop",
          "<!-- /Block [a-z ]+ module (?:HEADER|TOP)?\\s?-->",
          "<!-- /Module Block [a-z ]+ -->"
        ],
        "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": "<div[^>]+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": "<!-- made with https://promobuilding\\.ru",
        "icon": "PromoBuilding.svg",
        "js": {
          "promoApi": "\\;confidence:25",
          "promoDomain": "\\;confidence:25",
          "promoIsOver": "\\;confidence:25",
          "promoStart": "\\;confidence:25"
        },
        "pricing": [
          "recurring",
          "payg"
        ],
        "saas": true,
        "website": "https://promobuilding.ru"
      },
      "Proton Mail": {
        "cats": [
          30
        ],
        "description": "Proton Mail is the world’s largest secure email service with over 70 million users. Available on Web, iOS, Android, and desktop. Protected by Swiss privacy law.",
        "dns": {
          "MX": [
            "\\.protonmail\\.ch"
          ],
          "TXT": [
            "protonmail-verification="
          ]
        },
        "icon": "Proton Mail.svg",
        "saas": true,
        "website": "https://proton.me/mail"
      },
      "Prototype": {
        "cats": [
          12
        ],
        "cpe": "cpe:2.3:a:prototypejs:prototype:*:*:*:*:*:*:*:*",
        "description": "Prototype is a JavaScript Framework that aims to ease development of web applications.",
        "icon": "Prototype.png",
        "js": {
          "Prototype.Version": "^(.+)$\\;version:\\1"
        },
        "scriptSrc": "(?:prototype|protoaculous)(?:-([\\d.]*[\\d]))?.*\\.js\\;version:\\1",
        "website": "http://www.prototypejs.org"
      },
      "Protovis": {
        "cats": [
          25
        ],
        "js": {
          "protovis": ""
        },
        "scriptSrc": "protovis.*\\.js",
        "website": "http://mbostock.github.io/protovis"
      },
      "ProvenExpert": {
        "cats": [
          5
        ],
        "description": "ProvenExpert is a review based marketing platform that allows users to create customer surveys, provides aggregate reviews and ratings.",
        "dom": {
          "img[src*='provenexpert']": {
            "attributes": {
              "src": "images\\.provenexpert\\.\\w+"
            }
          }
        },
        "icon": "ProvenExpert.svg",
        "scriptSrc": "provenexpert\\.\\w+/widget",
        "website": "https://www.provenexpert.com"
      },
      "Provide Support": {
        "cats": [
          52
        ],
        "description": "Provide Support is a SaaS for customer service that includes live chat, real-time website monitoring, chat statistics.",
        "icon": "Provide Support.svg",
        "pricing": [
          "low",
          "recurring",
          "payg"
        ],
        "saas": true,
        "scriptSrc": "\\.providesupport\\.com",
        "website": "https://www.providesupport.com"
      },
      "Proximis": {
        "cats": [
          5,
          6
        ],
        "icon": "Proximis Omnichannel.png",
        "scriptSrc": "widget-commerce(?:\\.min)?\\.js",
        "website": "https://www.proximis.com"
      },
      "Proximis Unified Commerce": {
        "cats": [
          6,
          1
        ],
        "html": "<html[^>]+data-ng-app=\"RbsChangeApp\"",
        "icon": "Proximis Omnichannel.png",
        "implies": [
          "PHP",
          "AngularJS"
        ],
        "js": {
          "__change": ""
        },
        "meta": {
          "generator": "Proximis Unified Commerce"
        },
        "website": "https://www.proximis.com"
      },
      "Pterodactyl Panel": {
        "cats": [
          9
        ],
        "cookies": {
          "pterodactyl_session": ""
        },
        "description": "Pterodactyl Panel is a free, open-source game server management panel built with PHP, React, and Go.",
        "icon": "Pterodactyl Panel.svg",
        "implies": [
          "Go",
          "PHP",
          "React",
          "Laravel"
        ],
        "oss": true,
        "website": "https://pterodactyl.io"
      },
      "PubGuru": {
        "cats": [
          36
        ],
        "description": "PubGuru is a header wrapper and ad ops platform.",
        "icon": "PubGuru.png",
        "js": {
          "pg.version": "^([\\d\\.]+)$\\;version:\\1\\;confidence:25"
        },
        "pricing": [
          "payg"
        ],
        "saas": true,
        "scriptSrc": "cdn\\.pubguru\\.com/",
        "website": "https://pubguru.com"
      },
      "PubMatic": {
        "cats": [
          36
        ],
        "description": "PubMatic is a company that develops and implements online advertising software and strategies for the digital publishing and advertising industry.",
        "dom": "iframe[src*='.pubmatic.com'], link[href*='.pubmatic.com']",
        "icon": "PubMatic.svg",
        "pricing": [
          "payg"
        ],
        "saas": true,
        "scriptSrc": "https?://[^/]*\\.pubmatic\\.com",
        "website": "http://www.pubmatic.com/",
        "xhr": "\\.pubmatic\\.com"
      },
      "PubSubJS": {
        "cats": [
          59
        ],
        "description": "PubSubJS is a topic-based publish/subscribe library written in JavaScript.",
        "icon": "pubsub-js.png",
        "js": {
          "PubSub": "",
          "PubSub.version": "^(.+)$\\;version:\\1"
        },
        "oss": true,
        "website": "https://github.com/mroderick/PubSubJS"
      },
      "Public CMS": {
        "cats": [
          1
        ],
        "cookies": {
          "PUBLICCMS_USER": ""
        },
        "headers": {
          "X-Powered-PublicCMS": "^(.+)$\\;version:\\1"
        },
        "icon": "Public CMS.png",
        "implies": "Java",
        "website": "http://www.publiccms.com"
      },
      "Pulse Secure": {
        "cats": [
          46
        ],
        "cookies": {
          "DSSIGNIN": ""
        },
        "cpe": "cpe:2.3:a:pulsesecure:pulse_connect_secure:*:*:*:*:*:*:*:*",
        "description": "Pulse Secure allows to deploy VPNs to securely to your internal resources.",
        "icon": "PulseSecure.png",
        "url": "/dana-na/auth/",
        "website": "https://www.pulsesecure.net/products/remote-access-overview/"
      },
      "Pure CSS": {
        "cats": [
          66
        ],
        "description": "Pure CSS is a set of small, responsive CSS modules that can be used in web projects.",
        "html": [
          "<link[^>]+(?:([\\d.])+/)?pure(?:-min)?\\.css\\;version:\\1",
          "<div[^>]+class=\"[^\"]*pure-u-(?:sm-|md-|lg-|xl-)?\\d-\\d"
        ],
        "icon": "Pure CSS.png",
        "website": "http://purecss.io"
      },
      "Pure Chat": {
        "cats": [
          52
        ],
        "description": "Pure Chat is a live chat solution for small to mid-sized teams.",
        "icon": "Pure Chat.png",
        "js": {
          "PCWidget": "",
          "purechatApi": ""
        },
        "pricing": [
          "low",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "app\\.purechat\\.com",
        "website": "https://www.purechat.com"
      },
      "PureCars": {
        "cats": [
          6
        ],
        "description": "PureCars is an automotive software and managed services company serving dealerships, advertising associations, and OEMs across the North American retail automotive industry.",
        "dom": "a[href*='app.purecars.com/']",
        "icon": "PureCars.png",
        "js": {
          "_pureCars": ""
        },
        "pricing": [
          "poa"
        ],
        "saas": true,
        "website": "https://www.purecars.com"
      },
      "PurpleAds": {
        "cats": [
          36
        ],
        "description": "PurpleAds is an online advertising solution that businesses use to promote their products and services on Google Search, YouTube and other sites across the web.",
        "icon": "PurpleAds.svg",
        "meta": {
          "purpleads-verification": ""
        },
        "pricing": [
          "poa"
        ],
        "saas": true,
        "scriptSrc": "\\.purpleads\\.io/",
        "website": "https://purpleads.io"
      },
      "PushDaddy Whatsapp Chat": {
        "cats": [
          100,
          98
        ],
        "description": "Whatsapp Chat is an live chat and abondoned cart solution built by PushDaddy.",
        "dom": "div.pushdaddy-chats",
        "icon": "PushDaddy.png",
        "implies": [
          "WhatsApp Business Chat",
          "Shopify"
        ],
        "pricing": [
          "freemium",
          "payg"
        ],
        "saas": true,
        "scriptSrc": "cdn\\.shopify\\.com/.+/pushdaddy_v([\\d\\.]+).*\\.js\\;version:\\1",
        "website": "https://apps.shopify.com/whatsapp-chat-for-support"
      },
      "PushEngage": {
        "cats": [
          32
        ],
        "description": "PushEngage is a browser push notification platform that helps content website managers engage visitors by automatically segmenting and sending web push messages.",
        "icon": "PushEngage.png",
        "pricing": [
          "low",
          "freemium",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "clientcdn\\.pushengage\\.\\w+/core",
        "website": "https://www.pushengage.com"
      },
      "PushOwl": {
        "cats": [
          32
        ],
        "description": "PushOwl is a push notification platform for ecommerce stores.",
        "icon": "PushOwl.svg",
        "js": {
          "pushowl": ""
        },
        "pricing": [
          "low",
          "freemium",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "cdn\\.pushowl\\.com",
        "website": "https://pushowl.com"
      },
      "PushOwl Web Push Notifications": {
        "cats": [
          98,
          100
        ],
        "description": "PushOwl Web Push Notifications are a Shopify app which helps recover abandoned carts and market better with web push.",
        "icon": "PushOwl.svg",
        "implies": "PushOwl",
        "pricing": [
          "low",
          "freemium",
          "recurring"
        ],
        "requires": "Shopify",
        "saas": true,
        "scriptSrc": "/sdks/pushowl-shopify\\.js",
        "website": "https://apps.shopify.com/pushowl"
      },
      "PushPushGo": {
        "cats": [
          32
        ],
        "description": "PushPushGo is a GDPR-ready platform which enables startups, SMBs and corporations to create and send automatic web push notification campaigns on desktop and via mobile to manage various scenarios including abandoned carts, segmentation, cross-selling, customer engagement, and return rates.",
        "dom": "link[href*='.pushpushgo.com/']",
        "icon": "PushPushGo.svg",
        "pricing": [
          "mid",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "\\.pushpushgo\\.com/",
        "website": "https://pushpushgo.com"
      },
      "Pushnami": {
        "cats": [
          32
        ],
        "description": "Pushnami is an AI-powered messaging platform that uses intelligent analytics to deliver superior push, social, and email performance.",
        "icon": "Pushnami.svg",
        "scriptSrc": "api\\.pushnami\\.com",
        "website": "https://pushnami.com"
      },
      "PyScript": {
        "cats": [
          19
        ],
        "description": "PyScript is a python script that can be run in the browser using a mix of Python and standard HTML.",
        "dom": "py-script",
        "icon": "PyScript.svg",
        "oss": true,
        "website": "https://pyscript.net"
      },
      "Pygments": {
        "cats": [
          19
        ],
        "cpe": "cpe:2.3:a:pygments:pygments:*:*:*:*:*:*:*:*",
        "html": "<link[^>]+pygments\\.css[\"']",
        "icon": "pygments.png",
        "website": "http://pygments.org"
      },
      "PyroCMS": {
        "cats": [
          1
        ],
        "cookies": {
          "pyrocms": ""
        },
        "headers": {
          "X-Streams-Distribution": "PyroCMS"
        },
        "icon": "PyroCMS.png",
        "implies": "Laravel",
        "website": "http://pyrocms.com"
      },
      "Python": {
        "cats": [
          27
        ],
        "cpe": "cpe:2.3:a:python:python:*:*:*:*:*:*:*:*",
        "description": "Python is an interpreted and general-purpose programming language.",
        "headers": {
          "Server": "(?:^|\\s)Python(?:/([\\d.]+))?\\;version:\\1"
        },
        "icon": "Python.png",
        "website": "http://python.org"
      },
      "PythonAnywhere": {
        "cats": [
          62,
          88
        ],
        "description": "PythonAnywhere is an online integrated development environment (IDE) and web hosting service (Platform as a service) based on the Python programming language.",
        "headers": {
          "Server": "^PythonAnywhere$"
        },
        "icon": "PythonAnywhere.svg",
        "implies": "Python",
        "oss": false,
        "pricing": [
          "payg",
          "recurring"
        ],
        "saas": false,
        "website": "https://www.pythonanywhere.com"
      },
      "papaya CMS": {
        "cats": [
          1
        ],
        "html": "<link[^>]*/papaya-themes/",
        "icon": "papaya CMS.png",
        "implies": "PHP",
        "website": "https://papaya-cms.com"
      },
      "parcel": {
        "cats": [
          19
        ],
        "icon": "Parcel.png",
        "implies": [
          "SWC"
        ],
        "js": {
          "parcelRequire": ""
        },
        "website": "https://parceljs.org/"
      },
      "particles.js": {
        "cats": [
          25
        ],
        "description": "Particles.js is a JavaScript library for creating particles.",
        "dom": "div#particles-js",
        "js": {
          "particlesJS": ""
        },
        "oss": true,
        "scriptSrc": "/particles(?:\\.min)?\\.js",
        "website": "https://github.com/VincentGarreau/particles.js"
      },
      "petite-vue": {
        "cats": [
          19
        ],
        "description": "petite-vue is an alternative distribution of Vue optimised for progressive enhancement.",
        "icon": "vue.svg",
        "oss": true,
        "scriptSrc": "/petite-vue",
        "scripts": "/petite-vue@([\\d\\.]+)/\\;version:\\1",
        "website": "https://github.com/vuejs/petite-vue"
      },
      "phpAlbum": {
        "cats": [
          7
        ],
        "description": "phpAlbum is an open-source PHP script which allows you to create your personal photo album.",
        "html": "<!--phpalbum ([.\\d\\s]+)-->\\;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 <a[^>]+phpBB",
          "<div class=phpbb_copyright>",
          "<[^>]+styles/(?:sub|pro)silver/theme",
          "<img[^>]+i_icon_mini",
          "<table class=\"[^\"]*forumline"
        ],
        "icon": "phpBB.png",
        "implies": "PHP",
        "js": {
          "phpbb": "",
          "style_cookie_settings": ""
        },
        "meta": {
          "copyright": "phpBB Group"
        },
        "website": "https://phpbb.com"
      },
      "phpCMS": {
        "cats": [
          1
        ],
        "cpe": "cpe:2.3:a:phpcms:phpcms:*:*:*:*:*:*:*:*",
        "icon": "PHP.svg",
        "implies": "PHP",
        "js": {
          "phpcms": ""
        },
        "website": "http://phpcms.de"
      },
      "phpDocumentor": {
        "cats": [
          4
        ],
        "description": "phpDocumentor is an open-source documentation generator written in PHP.",
        "html": "<!-- Generated by phpDocumentor",
        "icon": "phpDocumentor.png",
        "implies": "PHP",
        "website": "https://www.phpdoc.org"
      },
      "phpMyAdmin": {
        "cats": [
          3
        ],
        "cpe": "cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:*",
        "description": "PhpMyAdmin is a free and open-source administration tool for MySQL and MariaDB.",
        "html": [
          "!\\[CDATA\\[[^<]*PMA_VERSION:\\\"([\\d.]+)\\;version:\\1",
          "(?: \\| phpMyAdmin ([\\d.]+)<\\/title>|PMA_sendHeaderLocation\\(|<link [^>]*href=\"[^\"]*phpmyadmin\\.css\\.php)\\;version:\\1"
        ],
        "icon": "phpMyAdmin.png",
        "implies": [
          "PHP",
          "MySQL"
        ],
        "js": {
          "pma_absolute_uri": ""
        },
        "website": "https://www.phpmyadmin.net"
      },
      "phpPgAdmin": {
        "cats": [
          3
        ],
        "cpe": "cpe:2.3:a:phppgadmin_project:phppgadmin:*:*:*:*:*:*:*:*",
        "html": "(?:<title>phpPgAdmin</title>|<span class=\"appname\">phpPgAdmin)",
        "icon": "phpPgAdmin.png",
        "implies": "PHP",
        "website": "http://phppgadmin.sourceforge.net"
      },
      "phpRS": {
        "cats": [
          1
        ],
        "description": "phpRS is a content management software written in PHP.",
        "dom": {
          "a[href*='.php']": {
            "attributes": {
              "href": "search\\.php\\?.+all-phpRS-all"
            }
          }
        },
        "icon": "default.svg",
        "implies": "PHP",
        "meta": {
          "generator": "^phpRS$"
        },
        "oss": true,
        "website": "https://phprs.net"
      },
      "phpSQLiteCMS": {
        "cats": [
          1
        ],
        "icon": "phpSQLiteCMS.png",
        "implies": [
          "PHP",
          "SQLite"
        ],
        "meta": {
          "generator": "^phpSQLiteCMS(?: (.+))?$\\;version:\\1"
        },
        "website": "http://phpsqlitecms.net"
      },
      "phpwind": {
        "cats": [
          1,
          2
        ],
        "html": "(?:Powered|Code) by <a href=\"[^\"]+phpwind\\.net",
        "icon": "phpwind.png",
        "implies": "PHP",
        "meta": {
          "generator": "^phpwind(?: v([0-9-]+))?\\;version:\\1"
        },
        "website": "https://www.phpwind.net"
      },
      "pinoox": {
        "cats": [
          18
        ],
        "cookies": {
          "pinoox_session": ""
        },
        "icon": "pinoox.png",
        "implies": "PHP",
        "js": {
          "pinoox": ""
        },
        "website": "https://pinoox.com"
      },
      "pirobase CMS": {
        "cats": [
          1
        ],
        "html": [
          "<(?:script|link)[^>]/site/[a-z0-9/._-]+/resourceCached/[a-z0-9/._-]+",
          "<input[^>]+cbi:///cms/"
        ],
        "icon": "pirobaseCMS.svg",
        "implies": "Java",
        "website": "https://www.pirobase-imperia.com/de/produkte/produktuebersicht/pirobase-cms"
      },
      "plentyShop LTS": {
        "cats": [
          6
        ],
        "description": "The official template plugin developed by plentymarkets. plentyShop LTS is the default template for plentymarkets online stores.",
        "headers": {
          "X-Plenty-Shop": "Ceres"
        },
        "icon": "plentyShop LTS.svg",
        "oss": true,
        "website": "https://www.plentymarkets.com/product/modules/online-shop/"
      },
      "plentymarkets": {
        "cats": [
          6
        ],
        "description": "plentymarkets is a cloud-based all-in-one ecommerce ERP solution.",
        "headers": {
          "X-Plenty-Shop": ""
        },
        "icon": "plentymarkets.svg",
        "meta": {
          "generator": "plentymarkets"
        },
        "scriptSrc": [
          "plenty\\.shop\\.(?:min\\.)?js"
        ],
        "website": "https://www.plentymarkets.com/"
      },
      "prettyPhoto": {
        "cats": [
          59
        ],
        "html": "(?:<link [^>]*href=\"[^\"]*prettyPhoto(?:\\.min)?\\.css|<a [^>]*rel=\"prettyPhoto)",
        "icon": "prettyPhoto.png",
        "implies": "jQuery",
        "js": {
          "pp_alreadyInitialized": "",
          "pp_descriptions": "",
          "pp_images": "",
          "pp_titles": ""
        },
        "scriptSrc": "jquery\\.prettyPhoto\\.js",
        "website": "http://no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/"
      },
      "punBB": {
        "cats": [
          2
        ],
        "html": "Powered by <a href=\"[^>]+punbb",
        "icon": "punBB.png",
        "implies": "PHP",
        "js": {
          "PUNBB": ""
        },
        "website": "http://punbb.informer.com"
      },
      "OVHcloud": {
        "cats": [
          62,
          88
        ],
        "description": "OVHcloud is a global, cloud provider delivering hosted private cloud, public cloud, and dedicated server solutions.",
        "dns": {
          "NS": "\\d+\\.ovh\\.net",
          "SOA": "\\d+\\.ovh\\.net"
        },
        "icon": "OVHcloud.svg",
        "pricing": [
          "payg"
        ],
        "website": "https://www.ovhcloud.com"
      },
      "OWL Carousel": {
        "cats": [
          59
        ],
        "description": "OWL Carousel is an enabled jQuery plugin that lets you create responsive carousel sliders.",
        "html": "<link [^>]*href=\"[^\"]+owl\\.carousel(?:\\.min)?\\.css",
        "icon": "OWL Carousel.png",
        "implies": "jQuery",
        "scriptSrc": "owl\\.carousel.*\\.js",
        "website": "https://owlcarousel2.github.io/OwlCarousel2/"
      },
      "OXID eShop": {
        "cats": [
          6
        ],
        "cookies": {
          "sid_key": "oxid"
        },
        "description": "OXID eShop is a free, open source ecommerce solution built using object oriented programming and PHP.",
        "icon": "OXID eShop.svg",
        "implies": "PHP",
        "js": {
          "oxCookieNote": "",
          "oxInputValidator": "",
          "oxLoginBox": "",
          "oxMiniBasket": "",
          "oxModalPopup": "",
          "oxTopMenu": ""
        },
        "website": "https://www.oxid-esales.com"
      },
      "OXID eShop Community Edition": {
        "cats": [
          6
        ],
        "description": "OXID eShop Community Edition is a free, open source ecommerce solution built using object oriented programming and PHP.",
        "excludes": "OXID eShop",
        "html": "<!--[^-]*OXID eShop Community Edition, Version (\\d+)\\;version:\\1",
        "icon": "OXID eShop.svg",
        "implies": "PHP",
        "website": "https://www.oxid-esales.com"
      },
      "OXID eShop Enterprise Edition": {
        "cats": [
          6,
          62
        ],
        "description": "OXID eShop Enterprise Edition is a B2B or B2C ecommerce solution built using object oriented programming and PHP.",
        "excludes": "OXID eShop",
        "html": "<!--[^-]*OXID eShop Enterprise Edition, Version (\\d+)\\;version:\\1",
        "icon": "OXID eShop.svg",
        "implies": "PHP",
        "website": "https://www.oxid-esales.com"
      },
      "OXID eShop Professional Edition": {
        "cats": [
          6
        ],
        "description": "OXID eShop Professional Edition is an e-ommerce platform for both small start-up companies and experience online retailers with a wide range of functions, software maintenance and support.",
        "excludes": "OXID eShop",
        "html": "<!--[^-]*OXID eShop Professional Edition, Version (\\d+)\\;version:\\1",
        "icon": "OXID eShop.svg",
        "implies": "PHP",
        "pricing": [
          "high",
          "onetime"
        ],
        "website": "https://exchange.oxid-esales.com/OXID-Products/OXID-eShop/OXID-eShop-Professional-Edition-6-Professional-Edition-6-Stable-PE-6-0-x.html"
      },
      "Obsidian Incentivize": {
        "cats": [
          100
        ],
        "description": "Obsidian Incentivize is designed to increase your average order size through in-cart upsells, cross sells and personalised product recommendations.",
        "icon": "Obsidian.png",
        "js": {
          "Obsidian.IncentiveApi": ""
        },
        "pricing": [
          "low",
          "recurring",
          "freemium"
        ],
        "requires": "Shopify",
        "saas": true,
        "scriptSrc": "cdn\\.shopify\\.com/extensions/.+/([\\.\\d]{3,})/assets/upsell\\.min\\.js\\;version:\\1",
        "website": "https://obsidianapps.co"
      },
      "Obsidian Publish": {
        "cats": [
          4
        ],
        "description": "Obsidian Publish is an official, paid plugin for Obsidian that allows users to post selected notes to a directory on the publish.obsidian.md domain.",
        "icon": "Obsidian Publish.svg",
        "implies": [
          "Prism",
          "PIXIjs"
        ],
        "js": {
          "siteInfo.host": "\\.obsidian\\.md"
        },
        "pricing": [
          "low",
          "recurring"
        ],
        "saas": true,
        "website": "https://obsidian.md/publish"
      },
      "Obviyo": {
        "cats": [
          100,
          76
        ],
        "description": "Obviyo is an ecommerce intelligence platform helping merchants personalise and optimise shopping experience.",
        "icon": "Obviyo.png",
        "js": {
          "__hic.version": "([\\d.]+)\\;version:\\1"
        },
        "pricing": [
          "freemium",
          "mid",
          "recurring"
        ],
        "requires": "Shopify",
        "saas": true,
        "scriptSrc": "deploy\\.hiconversion\\.com",
        "website": "https://www.obviyo.com"
      },
      "Occasion": {
        "cats": [
          72
        ],
        "description": "Occasion is an online booking system.",
        "dom": [
          "iframe[src*='app.getoccasion.com']",
          "a[href*='app.getoccasion.com']"
        ],
        "icon": "Occasion.png",
        "js": {
          "OCCSN.stack": "",
          "occsnMerchantToken": ""
        },
        "pricing": [
          "low",
          "payg",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "app\\.getoccasion\\.com",
        "website": "https://www.getoccasion.com"
      },
      "OceanWP": {
        "cats": [
          80
        ],
        "description": "OceanWP is a fast-loading WordPress theme that has great support for third-party plugins and drag-and-drop page builders.",
        "dom": {
          "body[class*='oceanwp-theme']": {
            "text": ""
          },
          "link[id*='oceanwp']": {
            "attributes": {
              "href": "oceanwp\\S*\\.css(?:\\?ver=([0-9.]+))?\\;version:\\1"
            }
          }
        },
        "icon": "OceanWP.png",
        "pricing": [
          "low",
          "recurring"
        ],
        "requires": "WordPress",
        "scriptSrc": "themes/oceanwp\\S*\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1",
        "website": "https://oceanwp.org"
      },
      "Ochanoko": {
        "cats": [
          6
        ],
        "description": "Ochanoko is a ecommerce online shopping cart solutions, ecommerce web site hosting.",
        "icon": "Ochanoko.svg",
        "js": {
          "ocnkProducts": ""
        },
        "pricing": [
          "low",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "ocnk-min\\.js",
        "website": "https://www.ocnk.com"
      },
      "Oct8ne": {
        "cats": [
          52
        ],
        "description": "Oct8ne is a visual customer service software.",
        "icon": "Oct8ne.png",
        "js": {
          "oct8ne.agentsAvailable": "",
          "oct8neApi": "",
          "oct8neVars.pluginVersion": "([\\d\\.]+)\\;version:\\1"
        },
        "pricing": [
          "poa"
        ],
        "saas": true,
        "scriptSrc": "\\.oct8ne\\.com/",
        "website": "https://oct8ne.com"
      },
      "Octane AI": {
        "cats": [
          5,
          52
        ],
        "description": "Octane AI provides an all-in-one platform for engaging quizzes, data collection, and personalised Facebook Messenger and SMS automation.",
        "icon": "Octane AI.svg",
        "js": {
          "OctaneConfig": ""
        },
        "pricing": [
          "low",
          "recurring"
        ],
        "saas": true,
        "scriptSrc": "\\.octaneai\\.com/",
        "website": "https://www.octaneai.com"
      },
      "October CMS": {
        "cats": [
          1
        ],
        "cookies": {
          "october_session": ""
        },
        "description": "October is a free, open-source, self-hosted CMS platform based on the Laravel PHP Framework.",
        "icon": "October CMS.png",
        "implies": "Laravel",
        "js": {
          "ocJSON": ""
        },
        "meta": {
          "generator": "OctoberCMS"
        },
        "oss": true,
        "website": "http://octobercms.com"
      },
      "Octopress": {
        "cats": [
          57
        ],
        "description": "Octopress is a static blogging framework.",
        "html": "Powered by <a href=\"http://octopress\\.org\">",
        "icon": "octopress.png",
        "implies": "Jekyll",
        "meta": {
          "generator": "Octopress"
        },
        "scriptSrc": "/octopress\\.js",
        "website": "http://octopress.org"
      },
      "Ocuco FitMix": {
        "cats": [
          105
        ],
        "description": "Ocuco is now offering its customers FittingBox's FitMix, a virtual frame try-on tool.",
        "icon": "Ocuco.png",
        "js": {
          "FitMix.WIDGET_BASE_URL": "static\\.fittingbox\\.com"
        },
        "pricing": [
          "poa"
        ],
        "saas": true,
        "website": "https://www.ocuco.com/fitmix"
      },
      "Odoo": {
        "cats": [
          1,
          6
        ],
        "cpe": "cpe:2.3:a:odoo:odoo:*:*:*:*:*:*:*:*",
        "description": "Odoo is business management software which includes CRM, ecommerce, billing, accounting, manufacturing, warehouse, project management, and inventory management.",
        "html": "<link[^>]* href=[^>]+/web/css/(?:web\\.assets_common/|website\\.assets_frontend/)\\;confidence:25",
        "icon": "Odoo.png",
        "implies": [
          "Python",
          "PostgreSQL",
          "Node.js",
          "Less"
        ],
        "meta": {
          "generator": "Odoo"
        },
        "oss": true,
        "scriptSrc": "/we
Download .txt
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
Download .txt
SYMBOL INDEX (132 symbols across 13 files)

FILE: bin/convert.js
  function copyFiles (line 29) | function copyFiles(source, destination) {
  function getFileExtension (line 39) | function getFileExtension(filePath) {
  function getFileName (line 47) | function getFileName(filePath) {
  function getConvertFileName (line 51) | function getConvertFileName(filePath) {
  function checkFileExists (line 60) | function checkFileExists(imagePath) {
  function checkIfFile (line 70) | function checkIfFile(filePath) {
  function dateModified (line 74) | function dateModified(file) {
  function dateDiff (line 78) | function dateDiff(file) {

FILE: browser.js
  class Browser (line 1) | class Browser {
    method constructor (line 2) | constructor(options) {

FILE: driver.js
  function sleep (line 17) | function sleep(ms) {
  function processJs (line 21) | function processJs(window, patterns) {
  function processHtml (line 49) | function processHtml(html, maxCols, maxRows) {
  class Driver (line 68) | class Driver {
    method constructor (line 69) | constructor(Browser, pageUrl, options) {
    method on (line 114) | on(event, callback) {
    method emit (line 122) | emit(event, params) {
    method analyze (line 128) | analyze() {
    method log (line 137) | log(message, source, type) {
    method displayApps (line 146) | displayApps(detected, meta) {
    method fetch (line 176) | async fetch(pageUrl, index, depth) {
    method visit (line 204) | async visit(pageUrl, timerScope) {
    method crawl (line 287) | async crawl(pageUrl, index = 1, depth = 1) {
    method chunk (line 317) | async chunk(links, depth, chunk = 0) {
    method timer (line 329) | timer(message, scope) {

FILE: index.js
  class Wappalyzer (line 3) | class Wappalyzer {
    method constructor (line 4) | constructor(pageUrl, options) {

FILE: scripts/pull_upstream.py
  function download_and_extract_fingerprints (line 16) | def download_and_extract_fingerprints():

FILE: src/js/content.js
  function inject (line 5) | function inject(src, id, message) {
  function getJs (line 36) | function getJs(technologies) {
  function getDom (line 44) | async function getDom(technologies) {
  method init (line 196) | async init() {
  method onMessage (line 375) | onMessage({ source, func, args }, sender, callback) {
  method driver (line 395) | driver(func, args) {
  method analyzeRequires (line 428) | async analyzeRequires(url, requires) {
  method onGetTechnologies (line 458) | async onGetTechnologies(technologies = [], requires, categoryRequires) {

FILE: src/js/index.js
  function getRequiredTechnologies (line 32) | function getRequiredTechnologies(name, categoryId) {
  function isSimilarUrl (line 42) | function isSimilarUrl(a, b) {
  method init (line 52) | async init() {
  method log (line 116) | log(message, source = 'driver', type = 'log') {
  method error (line 126) | error(error, source = 'driver') {
  method loadTechnologies (line 133) | async loadTechnologies() {
  method getCategories (line 169) | getCategories() {
  method post (line 178) | post(url, body) {
  method analyze (line 191) | analyze(...args) {
  method analyzeJs (line 200) | analyzeJs(url, js, requires, categoryRequires) {
  method analyzeDom (line 226) | analyzeDom(url, dom, requires, categoryRequires) {
  method detectTechnology (line 289) | detectTechnology(url, name) {
  method onMessage (line 303) | onMessage({ source, func, args }, sender, callback) {
  method content (line 330) | async content(url, func, args) {
  method onWebRequestComplete (line 372) | async onWebRequestComplete(request) {
  method onScriptRequestComplete (line 410) | async onScriptRequestComplete(request) {
  method onXhrRequestComplete (line 447) | async onXhrRequestComplete(request) {
  method onContentLoad (line 492) | async onContentLoad(url, items, language, requires, categoryRequires) {
  method getTechnologies (line 530) | getTechnologies() {
  method isDisabledDomain (line 537) | async isDisabledDomain(url) {
  method onDetect (line 554) | async onDetect(
  method setIcon (line 718) | async setIcon(url, technologies = []) {
  method getDetections (line 790) | async getDetections() {
  method getRobots (line 830) | async getRobots(hostname, secure = false) {
  method checkRobots (line 901) | async checkRobots(href) {
  method clearCache (line 921) | async clearCache() {
  method ping (line 933) | async ping() {

FILE: src/js/options.js
  method init (line 11) | async init() {
  method driver (line 59) | driver(func, args, callback) {

FILE: src/js/popup.js
  function setDisabledDomain (line 92) | function setDisabledDomain(enabled) {
  function getCsv (line 107) | function getCsv() {
  function csvEscape (line 172) | function csvEscape(value = '') {
  function parseEmail (line 196) | function parseEmail(fullEmail) {
  function getTechnologySpend (line 204) | function getTechnologySpend(technologies) {
  method init (line 236) | async init() {
  method driver (line 517) | driver(func, args) {
  method log (line 525) | log(message) {
  method categorise (line 533) | categorise(technologies) {
  method onGetDetections (line 556) | async onGetDetections(detections = []) {
  method getPlus (line 694) | async getPlus(url) {
  method downloadCsv (line 975) | async downloadCsv(event) {

FILE: src/js/tictactoe.js
  function fill (line 32) | function fill(cell, player) {
  function reset (line 40) | function reset() {
  function checkLine (line 68) | function checkLine(line, complete) {
  function check (line 78) | function check(dryrun) {
  function play (line 139) | function play(cells) {

FILE: src/js/utils.js
  method promisify (line 24) | promisify(context, method, ...args) {
  method open (line 41) | open(url, active = true) {
  method getOption (line 50) | async getOption(name, defaultValue = null) {
  method setOption (line 84) | async setOption(name, value) {
  method i18n (line 98) | i18n() {
  method sendMessage (line 104) | sendMessage(source, func, args) {
  method globEscape (line 121) | globEscape(string) {

FILE: src/js/wappalyzer.js
  function toArray (line 3) | function toArray(value) {
  function benchmark (line 12) | function benchmark(duration, pattern, value = '', technology) {
  function benchmarkSummary (line 26) | function benchmarkSummary() {
  method resolve (line 98) | resolve(detections = []) {
  method resolveVersion (line 187) | resolveVersion({ version, regex }, match) {
  method resolveExcludes (line 229) | resolveExcludes(resolved) {
  method resolveImplies (line 257) | resolveImplies(resolved) {
  method analyze (line 296) | analyze(items, technologies = Wappalyzer.technologies) {
  method setTechnologies (line 345) | setTechnologies(data) {
  method setCategories (line 474) | setCategories(data) {
  method transformPatterns (line 495) | transformPatterns(patterns, caseSensitive = false, isRegex = true) {
  method parsePattern (line 523) | parsePattern(pattern, isRegex = true) {
  method analyzeOneToOne (line 580) | analyzeOneToOne(technology, type, value) {
  method analyzeOneToMany (line 611) | analyzeOneToMany(technology, type, items = []) {
  method analyzeManyToMany (line 646) | analyzeManyToMany(technology, types, items = {}) {

FILE: wappalyzer.js
  function asArray (line 17) | function asArray(value) {
  function asyncForEach (line 24) | function asyncForEach(iterable, iterator) {
  function addDetected (line 32) | function addDetected(app, pattern, type, value, key) {
  function resolveExcludes (line 70) | function resolveExcludes(apps, detected) {
  class Application (line 93) | class Application {
    method constructor (line 94) | constructor(name, props, detected) {
    method getConfidence (line 107) | getConfidence() {
  class Wappalyzer (line 120) | class Wappalyzer {
    method constructor (line 121) | constructor() {
    method log (line 140) | log(message, source, type) {
    method analyze (line 146) | analyze(url, data, context) {
    method cacheDetectedAds (line 258) | cacheDetectedAds(ad) {
    method robotsTxtAllows (line 265) | robotsTxtAllows(url) {
    method parseUrl (line 286) | parseUrl(url) {
    method parseRobotsTxt (line 299) | static parseRobotsTxt(robotsTxt) {
    method ping (line 324) | ping() {
    method parsePatterns (line 341) | parsePatterns(patterns) {
    method parseJsPatterns (line 397) | parseJsPatterns() {
    method resolveImplies (line 405) | resolveImplies(apps, url) {
    method cacheDetectedApps (line 449) | cacheDetectedApps(apps, url) {
    method trackDetectedApps (line 470) | trackDetectedApps(apps, url, language) {
    method analyzeUrl (line 517) | analyzeUrl(app, url) {
    method analyzeHtml (line 534) | analyzeHtml(app, html) {
    method analyzeScripts (line 551) | analyzeScripts(app, scripts) {
    method analyzeMeta (line 570) | analyzeMeta(app, metaTags) {
    method analyzeHeaders (line 600) | analyzeHeaders(app, headers) {
    method analyzeCookies (line 626) | analyzeCookies(app, cookies) {
    method analyzeJs (line 650) | analyzeJs(app, results) {
Condensed preview — 111 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,519K chars).
[
  {
    "path": ".dockerignore",
    "chars": 39,
    "preview": "vendor/\nserver\n.DS_Store\nnode_modules/\n"
  },
  {
    "path": ".editorconfig",
    "chars": 207,
    "preview": "# editorconfig.org\nroot = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_"
  },
  {
    "path": ".eslintignore",
    "chars": 22,
    "preview": "**/lib/*\nnode_modules\n"
  },
  {
    "path": ".eslintrc.js",
    "chars": 327,
    "preview": "module.exports = {\n  root: true,\n  env: {\n    browser: true,\n    node: true,\n  },\n  parserOptions: {\n    parser: 'babel-"
  },
  {
    "path": ".gitattributes",
    "chars": 422,
    "preview": "# End-of-line normalization\n* text=auto\n\n*.cmd         text eol=lf\n*.sh          text eol=lf\n*.md          text eol=lf\n*"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 28,
    "preview": "github: [Lissy93, AliasIO]\n\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 586,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: Bug\nassignees: ''\n\n---\n\n**Platform**\nWh"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 609,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: Feature request\nassignees: ''\n\n---\n\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/technology-request.md",
    "chars": 365,
    "preview": "---\nname: Technology request\nabout: Propose a technology to be added\ntitle: ''\nlabels: Technology request\nassignees: ''\n"
  },
  {
    "path": ".github/workflows/docker-image.yml",
    "chars": 666,
    "preview": "name: Build & Publish Docker Container\n\non:\n  push:\n    branches:\n      - 'master'\n\njobs:\n  docker:\n    runs-on: ubuntu-"
  },
  {
    "path": ".github/workflows/node.js.yml",
    "chars": 864,
    "preview": "# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tes"
  },
  {
    "path": ".github/workflows/pull-upstream.yml",
    "chars": 1178,
    "preview": "name: Merge Upstream\n\non:\n  schedule:\n    # Runs at 23:39 every Sunday\n    - cron: '39 23 * * 0'\n  workflow_dispatch: # "
  },
  {
    "path": ".github/workflows/stale.yml",
    "chars": 888,
    "preview": "name: Close inactive issues\non:\n  schedule:\n    - cron: \"30 0 * * *\"\n\npermissions: {}\njobs:\n  close-issues:\n    permissi"
  },
  {
    "path": ".github/workflows/submit.yml",
    "chars": 434,
    "preview": "name: \"submit\"\non: \n  workflow_dispatch:\n\npermissions:\n  contents: read\n\njobs:\n  build: \n    runs-on: ubuntu-latest\n    "
  },
  {
    "path": ".github/workflows/validate.yml",
    "chars": 653,
    "preview": "name: Validate\non:\n  push:\n  pull_request:\n\npermissions:\n  contents: read # to fetch code (actions/checkout)\n\njobs:\n  va"
  },
  {
    "path": ".gitignore",
    "chars": 230,
    "preview": "/build/*\n/src/images/icons/converted/*\n/src/manifest.json\n/src/manifest.bak.json\n\nnode_modules\npackage-lock.json\n\n!.gitk"
  },
  {
    "path": ".prettierrc",
    "chars": 70,
    "preview": "{\n  \"semi\": false,\n  \"arrowParens\": \"always\",\n  \"singleQuote\": true\n}\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 2475,
    "preview": "# Contributing\n\nWappalyzer is an [GPLv3 licensed](https://github.com/wappalyzer/wappalyzer/blob/master/LICENSE), open so"
  },
  {
    "path": "Dockerfile",
    "chars": 646,
    "preview": "FROM node:12-alpine\n\nMAINTAINER Wappalyzer <info@wappalyzer.com>\n\nENV WAPPALYZER_ROOT /opt/wappalyzer\nENV PUPPETEER_SKIP"
  },
  {
    "path": "LICENSE",
    "chars": 35129,
    "preview": "GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation,"
  },
  {
    "path": "README.md",
    "chars": 13824,
    "preview": "\n<h1 align=\"center\">Wapalyzer</h1>\n\n\n<p align=\"center\">\n<img src=\"https://i.ibb.co/DRQSqXp/wapalyzer.png\" width=\"96\" /><"
  },
  {
    "path": "apps.json",
    "chars": 1696553,
    "preview": "{\n\"$schema\": \"../schema.json\",\n\"apps\": {\n      \"1C-Bitrix\": {\n        \"cats\": [\n          1,\n          6\n        ],\n    "
  },
  {
    "path": "bin/build.js",
    "chars": 1022,
    "preview": "const fs = require('fs')\nconst Zip = require('adm-zip')\n\nconst currentVersion = JSON.parse(\n  fs.readFileSync('./src/man"
  },
  {
    "path": "bin/convert.js",
    "chars": 4653,
    "preview": "const fs = require('fs')\nconst path = require('path')\nconst { createConverter } = require('convert-svg-to-png')\nconst te"
  },
  {
    "path": "bin/manifest.js",
    "chars": 261,
    "preview": "const fs = require('fs')\n\nconst version = process.argv[2]\n\nif (!version) {\n  // eslint-disable-next-line no-console\n  co"
  },
  {
    "path": "bin/validate.js",
    "chars": 5903,
    "preview": "const fs = require('fs')\n\nconst iconPath = './src/images/icons'\n\nconst categories = JSON.parse(fs.readFileSync('./src/ca"
  },
  {
    "path": "browser.js",
    "chars": 380,
    "preview": "class Browser {\n  constructor(options) {\n    this.options = options;\n\n    this.window = null;\n    this.document = null;\n"
  },
  {
    "path": "build/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "cli.js",
    "chars": 2695,
    "preview": "#!/usr/bin/env node\n\nconst Wappalyzer = require('./driver');\n\nconst args = process.argv.slice(2);\n\nconst options = {};\n\n"
  },
  {
    "path": "driver.js",
    "chars": 9123,
    "preview": "const url = require('url');\nconst fs = require('fs');\nconst path = require('path');\nconst cld = require('cld');\nconst Wa"
  },
  {
    "path": "index.js",
    "chars": 325,
    "preview": "const Driver = require('./driver');\n\nclass Wappalyzer {\n  constructor(pageUrl, options) {\n    // eslint-disable-next-lin"
  },
  {
    "path": "npm-shrinkwrap.json",
    "chars": 35564,
    "preview": "{\n  \"name\": \"wappalyzer\",\n  \"version\": \"5.9.32\",\n  \"lockfileVersion\": 1,\n  \"requires\": true,\n  \"dependencies\": {\n    \"ab"
  },
  {
    "path": "package.json",
    "chars": 1392,
    "preview": "{\n  \"name\": \"wapalyzer\",\n  \"description\": \"Identify technology on websites\",\n  \"version\": \"5.9.35\",\n  \"author\": \"Wappaly"
  },
  {
    "path": "schema.json",
    "chars": 6801,
    "preview": "{\n  \"title\": \"Wappalyzer schema\",\n  \"definitions\": {\n    \"non-empty-non-blank-string\": {\n      \"type\": \"string\",\n      \""
  },
  {
    "path": "scripts/pull_upstream.py",
    "chars": 2191,
    "preview": "import requests\nimport zipfile\nimport io\nimport json\nfrom pathlib import Path\n\n\n# Ensure the technologies directory exis"
  },
  {
    "path": "src/_locales/ca/messages.json",
    "chars": 15647,
    "preview": "{\n  \"github\":                          { \"message\": \"Bifurcar Wappalyzer a GitHub\" },\n  \"twitter\":                      "
  },
  {
    "path": "src/_locales/de/messages.json",
    "chars": 15357,
    "preview": "{\n  \"github\":                          { \"message\": \"Forke Wappalyzer bei GitHub!\" },\n  \"twitter\":                      "
  },
  {
    "path": "src/_locales/el/messages.json",
    "chars": 15224,
    "preview": "{\n  \"github\":                          { \"message\": \"Κάνε fork το Wappalyzer στο GitHub!\" },\n  \"twitter\":               "
  },
  {
    "path": "src/_locales/en/messages.json",
    "chars": 15132,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer on GitHub!\" },\n  \"twitter\":                        "
  },
  {
    "path": "src/_locales/es/messages.json",
    "chars": 15766,
    "preview": "{\n  \"github\":                          { \"message\": \"¡Forkea Wappalyzer en GitHub!\" },\n  \"twitter\":                     "
  },
  {
    "path": "src/_locales/fa/messages.json",
    "chars": 15423,
    "preview": "{\n  \"github\":                          { \"message\": \"چنگال زدن Wappalyzer در گیت‌هاب!\" },\n  \"twitter\":                  "
  },
  {
    "path": "src/_locales/fr/messages.json",
    "chars": 15996,
    "preview": "{\n  \"github\":                          { \"message\": \"Forker Wappalyzer sur GitHub\" },\n  \"twitter\":                      "
  },
  {
    "path": "src/_locales/gl_ES/messages.json",
    "chars": 15445,
    "preview": "{\n\t\"github\":                          { \"message\": \"Bifurca o Wappalyzer no GitHub!\" },\n\t\"twitter\":                     "
  },
  {
    "path": "src/_locales/gr/messages.json",
    "chars": 15347,
    "preview": "{\n  \"github\":                          { \"message\": \"Κάνε fork το Wappalyzer στο GitHub!\" },\n  \"twitter\":               "
  },
  {
    "path": "src/_locales/id/messages.json",
    "chars": 15428,
    "preview": "{\n  \"github\":                          { \"message\": \"Salin Wappalyzer di GitHub!\" },\n  \"twitter\":                       "
  },
  {
    "path": "src/_locales/it/messages.json",
    "chars": 15386,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer su GitHub!\" },\n  \"twitter\":                        "
  },
  {
    "path": "src/_locales/ja/messages.json",
    "chars": 14150,
    "preview": "{\n  \"github\":                          { \"message\": \"GitHubでWappalyzerをフォーク!\" },\n  \"twitter\":                         { "
  },
  {
    "path": "src/_locales/kk/messages.json",
    "chars": 15940,
    "preview": "{\n  \"github\":                          { \"message\": \"GitHub сайтында Wappalyzer жобасының шанышқысын жасау!\" },\n  \"twitt"
  },
  {
    "path": "src/_locales/ko/messages.json",
    "chars": 14034,
    "preview": "{\n  \"github\":                          { \"message\": \"GitHub에서 Wappalyzer를 포크하세요!\" },\n  \"twitter\":                       "
  },
  {
    "path": "src/_locales/nl/messages.json",
    "chars": 15570,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer op GitHub!\" },\n  \"twitter\":                        "
  },
  {
    "path": "src/_locales/pl/messages.json",
    "chars": 15588,
    "preview": "{\n  \"github\":                          { \"message\": \"Sforkuj Wappalyzer na GitHub!\" },\n  \"twitter\":                     "
  },
  {
    "path": "src/_locales/pt/messages.json",
    "chars": 15501,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer no GitHub!\" },\n  \"twitter\":                        "
  },
  {
    "path": "src/_locales/pt_BR/messages.json",
    "chars": 15562,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer no GitHub!\" },\n  \"twitter\":                        "
  },
  {
    "path": "src/_locales/ro/messages.json",
    "chars": 15511,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork-uiește Wappalyzer pe GitHub!\" },\n  \"twitter\":                 "
  },
  {
    "path": "src/_locales/ru/messages.json",
    "chars": 15486,
    "preview": "{\n  \"github\":                          { \"message\": \"Форкнуть на GitHub!\" },\n  \"twitter\":                         { \"mes"
  },
  {
    "path": "src/_locales/sk/messages.json",
    "chars": 15341,
    "preview": "{\n  \"github\":                          { \"message\": \"Forknite Wappalyzer na GitHube!\" },\n  \"twitter\":                   "
  },
  {
    "path": "src/_locales/tr/messages.json",
    "chars": 15479,
    "preview": "{\n  \"github\":                          { \"message\": \"GitHub'da Wappalyzer'ı Forkla!\" },\n  \"twitter\":                    "
  },
  {
    "path": "src/_locales/uk/messages.json",
    "chars": 15390,
    "preview": "{\n  \"github\":                          { \"message\": \"Форкнути на GitHub!\" },\n  \"twitter\":                         { \"mes"
  },
  {
    "path": "src/_locales/uz/messages.json",
    "chars": 15184,
    "preview": "{\n\t\"github\":                          { \"message\": \"GitHubda Wappalyzer dan nusxa olish!\" },\n\t\"twitter\":                "
  },
  {
    "path": "src/_locales/vi/messages.json",
    "chars": 13488,
    "preview": "{\n  \"github\":                          { \"message\": \"Fork Wappalyzer trên GitHub!\" },\n  \"twitter\":                      "
  },
  {
    "path": "src/_locales/zh_CN/messages.json",
    "chars": 14341,
    "preview": "{\n  \"github\":                          { \"message\": \"在 GitHub 上复刻 Wappalyzer!\" },\n  \"twitter\":                         {"
  },
  {
    "path": "src/_locales/zh_TW/messages.json",
    "chars": 13476,
    "preview": "{\n  \"github\":                          { \"message\": \"在 GitHub 上 fork Wappalyzer!\" },\n  \"twitter\":                       "
  },
  {
    "path": "src/categories.json",
    "chars": 10233,
    "preview": "{\n  \"1\": {\n    \"groups\": [\n      3\n    ],\n    \"name\": \"CMS\",\n    \"priority\": 1\n  },\n  \"2\": {\n    \"groups\": [\n      3,\n  "
  },
  {
    "path": "src/css/styles.css",
    "chars": 18215,
    "preview": ":root {\n  --color-background: white;\n  --color-background-dark: #121212;\n  --color-background-dark-lighten: #2b2b2b;\n  -"
  },
  {
    "path": "src/groups.json",
    "chars": 661,
    "preview": "{\n  \"1\": {\n    \"name\": \"Sales\"\n  },\n  \"2\": {\n    \"name\": \"Marketing\"\n  },\n  \"3\": {\n    \"name\": \"Content\"\n  },\n  \"4\": {\n "
  },
  {
    "path": "src/html/background.html",
    "chars": 219,
    "preview": "<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<script src=\"../js/wappalyzer.js\"></script>\n\t\t<script src=\".."
  },
  {
    "path": "src/html/options.html",
    "chars": 1506,
    "preview": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initia"
  },
  {
    "path": "src/html/popup.html",
    "chars": 14681,
    "preview": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initia"
  },
  {
    "path": "src/images/icons/converted/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/js/background.js",
    "chars": 198,
    "preview": "/* globals chrome, importScripts */\n\nimportScripts(chrome.runtime.getURL('js/wappalyzer.js'))\nimportScripts(chrome.runti"
  },
  {
    "path": "src/js/content.js",
    "chars": 13098,
    "preview": "'use strict'\n/* eslint-env browser */\n/* globals chrome */\n\nfunction inject(src, id, message) {\n  return new Promise((re"
  },
  {
    "path": "src/js/dom.js",
    "chars": 1966,
    "preview": "/* eslint-env browser */\n\n;(function () {\n  try {\n    const onMessage = ({ data }) => {\n      if (!data.wappalyzer || !d"
  },
  {
    "path": "src/js/index.js",
    "chars": 26106,
    "preview": "'use strict'\n/* eslint-env browser */\n/* globals chrome, Wappalyzer, Utils */\n\nconst {\n  setTechnologies,\n  setCategorie"
  },
  {
    "path": "src/js/js.js",
    "chars": 1306,
    "preview": "/* eslint-env browser */\n\n;(function () {\n  try {\n    const onMessage = ({ data }) => {\n      if (!data.wappalyzer || !d"
  },
  {
    "path": "src/js/options.js",
    "chars": 2063,
    "preview": "'use strict'\n/* eslint-env browser */\n/* globals Utils, chrome */\n\nconst { agent, i18n, getOption, setOption } = Utils\n\n"
  },
  {
    "path": "src/js/popup.js",
    "chars": 29092,
    "preview": "'use strict'\n/* eslint-env browser */\n/* globals chrome, Utils */\n\nconst { agent, open, i18n, getOption, setOption, prom"
  },
  {
    "path": "src/js/tictactoe.js",
    "chars": 4058,
    "preview": "'use strict'\n/* eslint-env browser */\n/* eslint-disable no-labels */\n\nconst game = document.body.querySelector('.ttt-gam"
  },
  {
    "path": "src/js/utils.js",
    "chars": 2779,
    "preview": "'use strict'\n/* eslint-env browser */\n/* globals chrome */\n\n// Manifest v2 polyfill\nif (chrome.runtime.getManifest().man"
  },
  {
    "path": "src/js/wappalyzer.js",
    "chars": 17253,
    "preview": "'use strict'\n\nfunction toArray(value) {\n  return Array.isArray(value) ? value : [value]\n}\n\nconst benchmarkEnabled =\n  ty"
  },
  {
    "path": "src/manifest-safari.json",
    "chars": 1787,
    "preview": "{\n  \"name\": \"Wappalyzer\",\n  \"short_name\": \"Wappalyzer\",\n  \"author\": \"Wappalyzer\",\n  \"homepage_url\": \"https://www.wappaly"
  },
  {
    "path": "src/manifest-v2.json",
    "chars": 1806,
    "preview": "{\n  \"name\": \"Wappalyzer - Technology profiler\",\n  \"short_name\": \"Wappalyzer\",\n  \"author\": \"Wappalyzer\",\n  \"homepage_url\""
  },
  {
    "path": "src/manifest-v3.json",
    "chars": 1861,
    "preview": "{\n  \"name\": \"Wappalyzer - Technology profiler\",\n  \"short_name\": \"Wappalyzer\",\n  \"author\": \"Wappalyzer\",\n  \"homepage_url\""
  },
  {
    "path": "src/schema.json",
    "chars": 211,
    "preview": "{\n  \"type\": \"object\",\n  \"properties\": {\n    \"tracking\": {\n      \"title\": \"Tracking enabled\",\n      \"description\": \"Anony"
  },
  {
    "path": "src/technologies/_.json",
    "chars": 5944,
    "preview": "{\n  \"1C-Bitrix\": {\n    \"cats\": [\n      1,\n      6\n    ],\n    \"cookies\": {\n      \"BITRIX_SM_GUEST_ID\": \"\",\n      \"BITRIX_"
  },
  {
    "path": "src/technologies/a.json",
    "chars": 147655,
    "preview": "{\n  \"A-Frame\": {\n    \"cats\": [\n      25\n    ],\n    \"html\": \"<a-scene[^<>]*>\",\n    \"icon\": \"A-Frame.svg\",\n    \"implies\": "
  },
  {
    "path": "src/technologies/b.json",
    "chars": 75670,
    "preview": "{\n  \"B2C Europe\": {\n    \"cats\": [\n      99\n    ],\n    \"description\": \"B2C Europe offers logistic solutions for your ecom"
  },
  {
    "path": "src/technologies/c.json",
    "chars": 121211,
    "preview": "{\n  \"C\": {\n    \"cats\": [\n      27\n    ],\n    \"description\": \"C is a general-purpose, procedural computer programming lan"
  },
  {
    "path": "src/technologies/d.json",
    "chars": 55824,
    "preview": "{\n  \"D3\": {\n    \"cats\": [\n      25\n    ],\n    \"cpe\": \"cpe:2.3:a:d3.js_project:d3.js:*:*:*:*:*:*:*:*\",\n    \"description\":"
  },
  {
    "path": "src/technologies/e.json",
    "chars": 60510,
    "preview": "{\n  \"E-Com Plus\": {\n    \"cats\": [\n      108\n    ],\n    \"description\": \"E-Com Plus is an open fair-code ecommerce platfor"
  },
  {
    "path": "src/technologies/f.json",
    "chars": 65254,
    "preview": "{\n  \"F5 BigIP\": {\n    \"cats\": [\n      64\n    ],\n    \"cookies\": {\n      \"F5_HT_shrinked\": \"\",\n      \"F5_ST\": \"\",\n      \"F"
  },
  {
    "path": "src/technologies/g.json",
    "chars": 69959,
    "preview": "{\n  \"GEODIS\": {\n    \"cats\": [\n      99\n    ],\n    \"description\": \"GEODIS is a global transport and logistics company.\",\n"
  },
  {
    "path": "src/technologies/h.json",
    "chars": 48809,
    "preview": "{\n  \"H2O\": {\n    \"cats\": [\n      22\n    ],\n    \"cookies\": {\n      \"h2o_casper\": \"\"\n    },\n    \"description\": \"H2O is a f"
  },
  {
    "path": "src/technologies/i.json",
    "chars": 44686,
    "preview": "{\n  \"IBM Coremetrics\": {\n    \"cats\": [\n      10\n    ],\n    \"icon\": \"IBM.svg\",\n    \"scriptSrc\": \"cmdatatagutils\\\\.js\",\n  "
  },
  {
    "path": "src/technologies/j.json",
    "chars": 27799,
    "preview": "{\n  \"J2Store\": {\n    \"cats\": [\n      6\n    ],\n    \"cpe\": \"cpe:2.3:a:j2store:j2store:*:*:*:*:*:joomla\\\\!:*:*\",\n    \"descr"
  },
  {
    "path": "src/technologies/k.json",
    "chars": 33474,
    "preview": "{\n  \"K-Sup\": {\n    \"cats\": [\n      1\n    ],\n    \"description\": \"K-Sup is an open-source CMS/portal solution dedicated to"
  },
  {
    "path": "src/technologies/l.json",
    "chars": 54877,
    "preview": "{\n  \"LEPTON\": {\n    \"cats\": [\n      1\n    ],\n    \"cpe\": \"cpe:2.3:a:lepton-cms:lepton:*:*:*:*:*:*:*:*\",\n    \"icon\": \"LEPT"
  },
  {
    "path": "src/technologies/m.json",
    "chars": 93339,
    "preview": "{\n  \"MAAK\": {\n    \"cats\": [\n      1\n    ],\n    \"description\": \"MAAK is a Laravel based CMS developed by Mahdi Akbari.\",\n"
  },
  {
    "path": "src/technologies/n.json",
    "chars": 32747,
    "preview": "{\n  \"NACEX\": {\n    \"cats\": [\n      99\n    ],\n    \"description\": \"NACEX is an express courier company in Spain, Andorra a"
  },
  {
    "path": "src/technologies/o.json",
    "chars": 54756,
    "preview": "{\n  \"OTYS\": {\n    \"cats\": [\n      101\n    ],\n    \"description\": \"OTYS is a Dutch company that specialises in providing r"
  },
  {
    "path": "src/technologies/p.json",
    "chars": 102945,
    "preview": "{\n  \"PCRecruiter\": {\n    \"cats\": [\n      101\n    ],\n    \"description\": \"PCRecruiter is an ATS/CRM hybrid SaaS solution f"
  },
  {
    "path": "src/technologies/q.json",
    "chars": 11956,
    "preview": "{\n  \"Q4\": {\n    \"cats\": [\n      53\n    ],\n    \"description\": \"Q4 is a SaaS platform that provides communication and inte"
  },
  {
    "path": "src/technologies/r.json",
    "chars": 64938,
    "preview": "{\n  \"RBS Change\": {\n    \"cats\": [\n      1,\n      6\n    ],\n    \"html\": \"<html[^>]+xmlns:change=\",\n    \"icon\": \"RBS Change"
  },
  {
    "path": "src/technologies/s.json",
    "chars": 192093,
    "preview": "{\n  \"SALESmanago\": {\n    \"cats\": [\n      97,\n      32\n    ],\n    \"description\": \"SALESmanago is a no-code marketing auto"
  },
  {
    "path": "src/technologies/t.json",
    "chars": 95422,
    "preview": "{\n  \"T-Soft\": {\n    \"cats\": [\n      6\n    ],\n    \"html\": \"<a href=\\\"http://www\\\\.tsoft\\\\.com\\\\.tr\\\" target=\\\"_blank\\\" ti"
  },
  {
    "path": "src/technologies/u.json",
    "chars": 26674,
    "preview": "{\n  \"U-KOMI\": {\n    \"cats\": [\n      90\n    ],\n    \"description\": \"U-KOMI is a user generated content review marketing to"
  },
  {
    "path": "src/technologies/v.json",
    "chars": 36749,
    "preview": "{\n  \"VAPTCHA\": {\n    \"cats\": [\n      16\n    ],\n    \"description\": \"VAPTCHA is the abbreviation of (Variation Analysis ba"
  },
  {
    "path": "src/technologies/w.json",
    "chars": 66618,
    "preview": "{\n  \"W3 Total Cache\": {\n    \"cats\": [\n      23,\n      87\n    ],\n    \"description\": \"W3 Total Cache (W3TC) improves the S"
  },
  {
    "path": "src/technologies/x.json",
    "chars": 7694,
    "preview": "{\n  \"X-Cart\": {\n    \"cats\": [\n      6\n    ],\n    \"description\": \" X-Cart is an open source PHP shopping cart ecommerce s"
  },
  {
    "path": "src/technologies/y.json",
    "chars": 20202,
    "preview": "{\n  \"YMQ Product Options Variant Option\": {\n    \"cats\": [\n      100\n    ],\n    \"description\": \"YMQ Product Options Varia"
  },
  {
    "path": "src/technologies/z.json",
    "chars": 17572,
    "preview": "{\n  \"ZK\": {\n    \"cats\": [\n      18\n    ],\n    \"html\": \"<!-- ZK [.\\\\d\\\\s]+-->\",\n    \"icon\": \"ZK.png\",\n    \"implies\": \"Jav"
  },
  {
    "path": "wappalyzer.js",
    "chars": 16412,
    "preview": "/**\n * Wappalyzer v5\n *\n * Created by Elbert Alias <elbert@alias.io>\n *\n * License: GPLv3 http://www.gnu.org/licenses/gp"
  }
]

About this extraction

This page contains the full source code of the Lissy93/wapalyzer GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 111 files (3.9 MB), approximately 1.0M tokens, and a symbol index with 132 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!