{"id":19901463,"url":"https://github.com/lissy93/wapalyzer","last_synced_at":"2025-04-04T15:06:53.090Z","repository":{"id":190409503,"uuid":"682549962","full_name":"Lissy93/wapalyzer","owner":"Lissy93","description":"🌐 Identify the technologies powering any website. This is a fork of the now deleted Wappalyzer project by @AliasIO and community.","archived":false,"fork":false,"pushed_at":"2024-02-21T15:49:40.000Z","size":74167,"stargazers_count":203,"open_issues_count":1,"forks_count":35,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-04-14T08:14:09.738Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lissy93.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["Lissy93","AliasIO"]}},"created_at":"2023-08-24T12:14:52.000Z","updated_at":"2024-06-22T19:42:54.354Z","dependencies_parsed_at":"2024-06-22T19:42:42.420Z","dependency_job_id":"1dd515c1-7370-4f3a-ad83-9448289ab9f0","html_url":"https://github.com/Lissy93/wapalyzer","commit_stats":null,"previous_names":["lissy93/wapalyzer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lissy93%2Fwapalyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lissy93%2Fwapalyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lissy93%2Fwapalyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lissy93%2Fwapalyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lissy93","download_url":"https://codeload.github.com/Lissy93/wapalyzer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247198443,"owners_count":20900079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T20:15:05.480Z","updated_at":"2025-04-04T15:06:53.064Z","avatar_url":"https://github.com/Lissy93.png","language":"JavaScript","funding_links":["https://github.com/sponsors/Lissy93","https://github.com/sponsors/AliasIO"],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003eWapalyzer\u003c/h1\u003e\n\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://i.ibb.co/DRQSqXp/wapalyzer.png\" width=\"96\" /\u003e\u003cbr /\u003e\n\u003cb\u003e\u003ci\u003eIdentify the technologies powering any website\u003c/i\u003e\u003c/b\u003e\n\u003cbr /\u003e\n\u003c/p\u003e\n\n---\n\n\u003e 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).\n\u003e \u003cbr /\u003e\n\u003e The original author maintains a hosted instanced, availible at [wappalyzer.com](https://www.wappalyzer.com/).\n\n## Prerequisites\n\n-   [Git](https://git-scm.com)\n-   [Node.js](https://nodejs.org) version 14 or higher\n-   [Yarn](https://yarnpkg.com)\n\n## Quick start\n\n```sh\ngit clone https://github.com/lissy93/wapalyzer.git\ncd wappalyzer\nyarn install\nyarn run link\n```\n\n## Usage\n\n### Command line\n\n```sh\nnode src/drivers/npm/cli.js https://example.com\n```\n\n### Chrome extension\n\n* Go to `about:extensions`\n* Enable 'Developer mode'\n* Click 'Load unpacked'\n* Select `src/drivers/webextension`\n\n### Firefox extension\n\n* Go to `about:debugging#/runtime/this-firefox`\n* Click 'Load Temporary Add-on'\n* Select `src/drivers/webextension/manifest.json`\n\n## Specification\n\nA 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.\n\nPatterns (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.\n\n#### Example\n\n```json\n\"Example\": {\n  \"description\": \"A short description of the technology.\",\n  \"cats\": [\n    \"1\"\n  ],\n  \"cookies\": {\n    \"cookie_name\": \"Example\"\n  },\n  \"dom\": {\n    \"#example-id\": {\n      \"exists\": \"\",\n      \"attributes\": {\n        \"class\": \"example-class\"\n      },\n      \"properties\": {\n        \"example-property\": \"\"\n      },\n      \"text\": \"Example text content\"\n    }\n  },\n  \"dns\": {\n    \"MX\": [\n      \"example\\\\.com\"\n    ]\n  },\n  \"js\": {\n    \"Example.method\": \"\"\n  },\n  \"excludes\": \"Example\",\n  \"headers\": {\n    \"X-Powered-By\": \"Example\"\n  },\n  \"html\": \"\u003clink[^\u003e]example\\\\.css\",\n  \"text\": \"\\bexample\\b\",\n  \"css\": \"\\\\.example-class\",\n  \"robots\": \"Disallow: /unique-path/\",\n  \"implies\": \"PHP\\\\;confidence:50\",\n  \"requires\": \"WordPress\",\n  \"requiresCategory\": \"Ecommerce\",\n  \"meta\": {\n    \"generator\": \"(?:Example|Another Example)\"\n  },\n  \"probe\": {\n    \"/path\": \"\"\n  },\n  \"scriptSrc\": \"example-([0-9.]+)\\\\.js\\\\;confidence:50\\\\;version:\\\\1\",\n  \"scripts\": \"function webpackJsonpCallback\\\\(data\\\\) {\",\n  \"url\": \"example\\\\.com\",\n  \"xhr\": \"example\\\\.com\",\n  \"oss\": true,\n  \"saas\": true,\n  \"pricing\": [\"mid\", \"freemium\", \"recurring\"],\n  \"website\": \"https://example.com\",\n}\n```\n\n## JSON fields\n\nFind the JSON schema at [`schema.json`](https://github.com/lissy93/wapalyzer/blob/master/schema.json).\n\n### Required properties\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eField\u003c/th\u003e\n      \u003cth\u003eType\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ecats\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eArray\u003c/td\u003e\n      \u003ctd\u003e\n        One or more category IDs.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e[1, 6]\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ewebsite\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString\u003c/td\u003e\n      \u003ctd\u003eURL of the application's website.\u003c/td\u003e\n      \u003ctd\u003e\n        \u003ccode\u003e\"https://example.com\"\u003c/code\u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n### Optional properties\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eField\u003c/th\u003e\n      \u003cth\u003eType\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003edescription\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString\u003c/td\u003e\n      \u003ctd\u003e\n        A short description of the technology in British English (max.\n        250 characters). Write in a neutral, factual tone; not like an\n        ad.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"A short description.\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eicon\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString\u003c/td\u003e\n      \u003ctd\u003eApplication icon filename.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"WordPress.svg\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ecpe\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString\u003c/td\u003e\n      \u003ctd\u003e\n        \u003ca href=\"https://nvd.nist.gov/products/cpe\" target=\"_blank\"\u003eCPE\u003c/a\u003e\n        is a structured naming scheme for technologies. To check if a CPE is valid and exists (using v2.3), use the \u003ca href=\"https://nvd.nist.gov/products/cpe/search\" target=\"_blank\"\u003esearch\u003c/a\u003e).\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"cpe:2.3:a:apache:http_server\u003c/code\u003e\u003cbr /\u003e\u003ccode\u003e:*:*:*:*:*:*:*:*\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003esaas\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eBoolean\u003c/td\u003e\n      \u003ctd\u003e\n        The technology is offered as a Software-as-a-Service (SaaS), i.e. hosted or cloud-based.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003etrue\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eoss\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eBoolean\u003c/td\u003e\n      \u003ctd\u003e\n        The technology has an open-source license.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003etrue\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003epricing\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eArray\u003c/td\u003e\n      \u003ctd\u003e\nCost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only.\n\nOne of:\n\u003cul\u003e\n  \u003cli\u003e\u003ccode\u003elow\u003c/code\u003eLess than US $100 / mo\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003emid\u003c/code\u003eBetween US $100 - $1,000 / mo\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ehigh\u003c/code\u003eMore than US $1,000 / mo\u003c/li\u003e\n\u003c/ul\u003e\n\nPlus any of:\n\u003cul\u003e\n  \u003cli\u003e\u003ccode\u003efreemium\u003c/code\u003e Free plan available\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003eonetime\u003c/code\u003e One-time payments accepted\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003erecurring\u003c/code\u003e Subscriptions available\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003epoa\u003c/code\u003e Price on asking\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003epayg\u003c/code\u003e Pay as you go (e.g. commissions or usage-based fees)\u003c/li\u003e\n\u003c/ul\u003e\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e[\"low\", \"freemium\"]\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n### Implies, requires and excludes (optional)\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eField\u003c/th\u003e\n      \u003cth\u003eType\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eimplies\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        The presence of one application can imply the presence of\n        another, e.g. WordPress means PHP is also in use.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"PHP\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003erequires\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"WordPress\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003erequiresCategory\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        Similar to requires; detection only runs if a technology in the required category has been identified.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"Ecommerce\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eexcludes\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        Opposite of implies. The presence of one application can exclude\n        the presence of another.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"Apache\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n### Patterns (optional)\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eField\u003c/th\u003e\n      \u003cth\u003eType\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ecookies\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003eCookies.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e{ \"cookie_name\": \"Cookie value\" }\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003edom\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array | Object\u003c/td\u003e\n      \u003ctd\u003e\n        Uses a\n        \u003ca\n          href=\"https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll\"\n          target=\"_blank\"\n          noopener\n          \u003equery selector\u003c/a\n        \u003e\n        to inspect element properties, attributes and text content.\n      \u003c/td\u003e\n      \u003ctd\u003e\n        \u003ccode\n          \u003e{ \"#example-id\": { \"property\": { \"example-prop\": \"\" } }\n          }\u003c/code\n        \u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003edns\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003e\n        DNS records: supports MX, TXT, SOA and NS (NPM driver only).\n      \u003c/td\u003e\n      \u003ctd\u003e\n        \u003ccode\u003e{ \"MX\": \"example\\\\.com\" }\u003c/code\u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ejs\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003e\n        JavaScript properties (case sensitive). Avoid short property\n        names to prevent matching minified code.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e{ \"jQuery.fn.jquery\": \"\" }\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eheaders\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003eHTTP response headers.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e{ \"X-Powered-By\": \"^WordPress$\" }\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ehtml\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        HTML source code. Patterns must include an HTML opening tag to\n        avoid matching plain text. For performance reasons, avoid\n        \u003ccode\u003ehtml\u003c/code\u003e where possible and use\n        \u003ccode\u003edom\u003c/code\u003e instead.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"\u0026lt;a [^\u0026gt;]*href=\\\"index.html\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003etext\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        Matches plain text. Should only be used in very specific cases where other methods can't be used.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\\bexample\\b\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003ecss\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        CSS rules. Unavailable when a website enforces a same-origin\n        policy. For performance reasons, only a portion of the available\n        CSS rules are used to find matches.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"\\\\.example-class\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eprobe\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003e\n        Request a URL to test for its existence or match text content (NPM driver only).\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e{ \"/path\": \"Example text\" }\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003erobots\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        Robots.txt contents.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"Disallow: /unique-path/\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eurl\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003eFull URL of the page.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"^https?//.+\\\\.wordpress\\\\.com\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003exhr\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003eHostnames of XHR requests.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"cdn\\\\.netlify\\\\.com\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003emeta\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eObject\u003c/td\u003e\n      \u003ctd\u003eHTML meta tags, e.g. generator.\u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e{ \"generator\": \"^WordPress$\" }\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003escriptSrc\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        URLs of JavaScript files included on the page.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"jquery\\\\.js\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003escripts\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eString | Array\u003c/td\u003e\n      \u003ctd\u003e\n        JavaScript source code. Inspects inline and external scripts. For performance reasons, avoid\n        \u003ccode\u003escripts\u003c/code\u003e where possible and use\n        \u003ccode\u003ejs\u003c/code\u003e instead.\n      \u003c/td\u003e\n      \u003ctd\u003e\u003ccode\u003e\"function webpackJsonpCallback\\\\(data\\\\) {\"\u003c/code\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n## Patterns\n\nPatterns are essentially JavaScript regular expressions written as strings, but with some additions.\n\n### Quirks and pitfalls\n\n-   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 (`/`).\n-   Flags are not supported. Regular expressions are treated as case-insensitive.\n-   Capture groups (`()`) are used for version detection. In other cases, use non-capturing groups (`(?:)`).\n-   Use start and end of string anchors (`^` and `$`) where possible for optimal performance.\n-   Short or generic patterns can cause applications to be identified incorrectly. Try to find unique strings to match.\n\n### Tags\n\nTags (a non-standard syntax) can be appended to patterns (and implies and excludes, separated by `\\\\;`) to store additional information.\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eTag\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003econfidence\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Indicates a less reliable pattern that may cause false\n        positives. The aim is to achieve a combined confidence of 100%.\n        Defaults to 100% if not specified.\n      \u003c/td\u003e\n      \u003ctd\u003e\n        \u003ccode\u003e\"js\": { \"Mage\": \"\\\\;confidence:50\" }\u003c/code\u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003eversion\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Gets the version number from a pattern match using a special\n        syntax.\n      \u003c/td\u003e\n      \u003ctd\u003e\n        \u003ccode\u003e\"scriptSrc\": \"jquery-([0-9.]+)\\.js\\\\;version:\\\\1\"\u003c/code\u003e\n      \u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n### Version syntax\n\nApplication version information can be obtained from a pattern using a capture group. A condition can be evaluated using the ternary operator (`?:`).\n\n\u003ctable\u003e\n  \u003cthead\u003e\n    \u003ctr\u003e\n      \u003cth\u003eExample\u003c/th\u003e\n      \u003cth\u003eDescription\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003e\\\\1\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003eReturns the first match.\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003e\\\\1?a:\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Returns a if the first match contains a value, nothing\n        otherwise.\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003e\\\\1?a:b\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Returns a if the first match contains a value, b otherwise.\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003e\\\\1?:b\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Returns nothing if the first match contains a value, b\n        otherwise.\n      \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd\u003e\u003ccode\u003efoo\\\\1\u003c/code\u003e\u003c/td\u003e\n      \u003ctd\u003e\n        Returns foo with the first match appended.\n      \u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flissy93%2Fwapalyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flissy93%2Fwapalyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flissy93%2Fwapalyzer/lists"}