Last active
May 2, 2018 19:11
-
-
Save rviscomi/d91bbb665e4592811e051c4e180bb62b to your computer and use it in GitHub Desktop.
wappalyzer to bigquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var wappalyzer = getWappalyzer(); | |
| function run() { | |
| for (name in wappalyzer.apps) { | |
| const app = wappalyzer.apps[name]; | |
| app.name = name; | |
| app.categories = app.cats.map(c => { | |
| return wappalyzer.categories[c].name; | |
| }); | |
| app.implies = getImplications(app); | |
| app.script = trimConfidence(app.script); | |
| app.meta = app.meta && Object.entries(app.meta).map(([name, value]) => ({name, value: removeConfidence(value)})); | |
| app.html = trimConfidence(app.html); | |
| app.url = trimConfidence(app.url)[0]; | |
| app.headers = app.headers && Object.entries(app.headers).map(([name, value]) => ({name, value: removeConfidence(value)})); | |
| delete app.cats; // redundant | |
| delete app.js; // No runtime context | |
| delete app.icon; | |
| delete app.website; | |
| delete app.excludes; // maybe we should keep this? | |
| delete app.env; | |
| } | |
| // Save this output to a file, upload to Google Storage, import into BigQuery with schema auto-detected. | |
| return Object.values(wappalyzer.apps).map(JSON.stringify).join('\n'); | |
| } | |
| function getImplications(app) { | |
| if (!app || !app.implies) { | |
| return []; | |
| } | |
| if (typeof app.implies == 'string') { | |
| const implies = trimConfidence(app.implies)[0]; | |
| return getImplications(wappalyzer.apps[implies]).concat(implies); | |
| } | |
| return app.implies.reduce((implications, implies) => { | |
| return implications.concat(getImplications(wappalyzer.apps[implies]), implies) | |
| }, []); | |
| } | |
| function trimConfidence(value) { | |
| return toArray(value).map(removeConfidence); | |
| } | |
| function removeConfidence(value) { | |
| return value.split('\\;')[0]; | |
| } | |
| function toArray(value) { | |
| if (!value) return []; | |
| if (Array.isArray(value)) return value; | |
| return [value]; | |
| } | |
| function getWappalyzer() { | |
| return { | |
| "$schema": "../schema.json", | |
| "apps": { | |
| "1&1": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "1and1.svg", | |
| "implies": "PHP", | |
| "url": "/shop/catalog/browse\\?sessid=", | |
| "website": "http://1and1.com" | |
| }, | |
| "1C-Bitrix": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "BITRIX_": "" | |
| }, | |
| "headers": { | |
| "X-Powered-CMS": "^Bitrix Site Manager" | |
| }, | |
| "html": "(?:<link[^>]+components/bitrix|(?:src|href)=\"/bitrix/(?:js|templates))", | |
| "icon": "1C-Bitrix.png", | |
| "implies": "PHP", | |
| "script": "1c-bitrix", | |
| "website": "http://www.1c-bitrix.ru" | |
| }, | |
| "2z Project": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "2z Project.png", | |
| "meta": { | |
| "generator": "2z project ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://2zproject-cms.ru" | |
| }, | |
| "3dCart": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "cookies": { | |
| "3dvisit": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "3DCART" | |
| }, | |
| "icon": "3dCart.png", | |
| "script": "(?:twlh(?:track)?\\.asp|3d_upsell\\.js)", | |
| "website": "http://www.3dcart.com" | |
| }, | |
| "3DM": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<title>3ware 3DM([\\d\\.]+)?\\;version:\\1", | |
| "icon": "3DM.png", | |
| "implies": "3ware", | |
| "website": "http://www.3ware.com" | |
| }, | |
| "3ware": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "3ware\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "3ware.png", | |
| "website": "http://www.3ware.com" | |
| }, | |
| "A-Frame": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "html": "<a-scene[^<>]*>", | |
| "icon": "A-Frame.svg", | |
| "implies": "three.js", | |
| "js": { | |
| "AFRAME.version": "(.*)\\;version:\\1" | |
| }, | |
| "script": "/?([\\d.]+)?/aframe(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://aframe.io" | |
| }, | |
| "AD EBiS": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": [ | |
| "<!-- EBiS contents tag", | |
| "<!--EBiS tag", | |
| "<!-- Tag EBiS", | |
| "<!-- EBiS common tag" | |
| ], | |
| "icon": "ebis.png", | |
| "website": "http://www.ebis.ne.jp" | |
| }, | |
| "Accelerated Mobile Pages": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<html[^>]* (?:amp|⚡)", | |
| "icon": "Accelerated-Mobile-Pages.svg", | |
| "website": "https://www.ampproject.org" | |
| }, | |
| "Acquia Cloud": { | |
| "cats": [ | |
| "22" | |
| ], | |
| "headers": { | |
| "X-AH-Environment": "^\\w+$" | |
| }, | |
| "icon": "acquia-cloud.png", | |
| "implies": "Drupal\\;confidence:95", | |
| "website": "https://www.acquia.com/" | |
| }, | |
| "Amber": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Amber$" | |
| }, | |
| "icon": "amber.png", | |
| "website": "https://amberframework.org" | |
| }, | |
| "AMPcms": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "amp_js_init": "" | |
| }, | |
| "cookies": { | |
| "AMP": "" | |
| }, | |
| "headers": { | |
| "X-AMP-Version": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "AMPcms.png", | |
| "implies": "PHP", | |
| "website": "http://www.ampcms.org" | |
| }, | |
| "animate.css": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": [ | |
| "<link [^>]+(?:/([\\d.]+)/)?animate\\.(?:min\\.)?css\\;version:\\1" | |
| ], | |
| "website": "https://daneden.github.io/animate.css/" | |
| }, | |
| "AOLserver": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "AOLserver/?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "icon": "AOLserver.png", | |
| "website": "http://aolserver.com" | |
| }, | |
| "AT Internet Analyzer": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "xtsite": "", | |
| "ATInternet": "" | |
| }, | |
| "icon": "AT Internet.png", | |
| "website": "http://atinternet.com/en" | |
| }, | |
| "AT Internet XiTi": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "xt_click": "" | |
| }, | |
| "icon": "AT Internet.png", | |
| "script": "xiti\\.com/hit\\.xiti", | |
| "website": "http://atinternet.com/en" | |
| }, | |
| "ATEN": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "ATEN HTTP Server(?:\\(?V?([\\d\\.]+)\\)?)?\\;version:\\1" | |
| }, | |
| "icon": "ATEN.png", | |
| "website": "http://www.aten.com" | |
| }, | |
| "AWStats": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "AWStats.png", | |
| "implies": "Perl", | |
| "meta": { | |
| "generator": "AWStats ([\\d.]+(?: \\(build [\\d.]+\\))?)\\;version:\\1" | |
| }, | |
| "website": "http://awstats.sourceforge.net" | |
| }, | |
| "Accessible Portal": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Accessible Portal.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Accessible Portal" | |
| }, | |
| "website": "http://www.accessibleportal.com" | |
| }, | |
| "Act-On": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "ActOn": "" | |
| }, | |
| "icon": "ActOn.png", | |
| "website": "http://act-on.com" | |
| }, | |
| "AdInfinity": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "AdInfinity.png", | |
| "script": "adinfinity\\.com\\.au", | |
| "website": "http://adinfinity.com.au" | |
| }, | |
| "AdRiver": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "adriver": "" | |
| }, | |
| "html": "(?:<embed[^>]+(?:src=\"https?://mh\\d?\\.adriver\\.ru/|flashvars=\"[^\"]*(?:http:%3A//(?:ad|mh\\d?)\\.adriver\\.ru/|adriver_banner))|<(?:(?:iframe|img)[^>]+src|a[^>]+href)=\"https?://ad\\.adriver\\.ru/)", | |
| "icon": "AdRiver.png", | |
| "script": "(?:adriver\\.core\\.\\d\\.js|https?://(?:content|ad|masterh\\d)\\.adriver\\.ru/)", | |
| "website": "http://adriver.ru" | |
| }, | |
| "AdRoll": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "adroll_adv_id": "", | |
| "adroll_pix_id": "" | |
| }, | |
| "icon": "AdRoll.svg", | |
| "script": "(?:a|s)\\.adroll\\.com", | |
| "website": "http://adroll.com" | |
| }, | |
| "Adcash": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "ac_bgclick_URL": "", | |
| "ct_siteunder": "", | |
| "ct_tag": "", | |
| "ct_nSuUrl": "", | |
| "ct_nOpp": "", | |
| "SuLoaded": "", | |
| "SuUrl": "" | |
| }, | |
| "icon": "Adcash.svg", | |
| "script": "^[^\\/]*//(?:[^\\/]+\\.)?adcash\\.com/(?:script|ad)/", | |
| "url": "^https?://(?:[^\\/]+\\.)?adcash\\.com/script/pop_", | |
| "website": "http://adcash.com" | |
| }, | |
| "AddShoppers": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "AddShoppers.png", | |
| "script": "cdn\\.shop\\.pe/widget/", | |
| "website": "http://www.addshoppers.com" | |
| }, | |
| "AddThis": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "addthis": "" | |
| }, | |
| "icon": "AddThis.svg", | |
| "script": "addthis\\.com/js/", | |
| "website": "http://www.addthis.com" | |
| }, | |
| "AddToAny": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "a2apage_init": "" | |
| }, | |
| "icon": "AddToAny.png", | |
| "script": "addtoany\\.com/menu/page\\.js", | |
| "website": "http://www.addtoany.com" | |
| }, | |
| "Adminer": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "html": [ | |
| "Adminer</a> <span class=\"version\">([\\d.]+)</span>\\;version:\\1", | |
| "onclick=\"bodyClick\\(event\\);\" onload=\"verifyVersion\\('([\\d.]+)'\\);\">\\;version:\\1" | |
| ], | |
| "icon": "adminer.png", | |
| "implies": "PHP", | |
| "website": "http://www.adminer.org" | |
| }, | |
| "Adnegah": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "headers": { | |
| "X-Advertising-By": "adnegah\\.net" | |
| }, | |
| "html": "<iframe [^>]*src=\"[^\"]+adnegah\\.net", | |
| "icon": "adnegah.png", | |
| "script": "[^a-z]adnegah.*\\.js$", | |
| "website": "https://Adnegah.net" | |
| }, | |
| "Adobe ColdFusion": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "_cfEmails": "" | |
| }, | |
| "headers": { | |
| "Cookie": "CFTOKEN=" | |
| }, | |
| "html": "<!-- START headerTags\\.cfm", | |
| "icon": "Adobe ColdFusion.svg", | |
| "implies": "CFML", | |
| "script": "/cfajax/", | |
| "url": "\\.cfm(?:$|\\?)", | |
| "website": "http://adobe.com/products/coldfusion-family.html" | |
| }, | |
| "Adobe Experience Manager": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": [ | |
| "<div class=\"[^\"]*parbase", | |
| "<div[^>]+data-component-path=\"[^\"+]jcr:" | |
| ], | |
| "icon": "Adobe Experience Manager.svg", | |
| "implies": "Java", | |
| "script": "/etc/designs/", | |
| "website": "http://www.adobe.com/au/marketing-cloud/enterprise-content-management.html" | |
| }, | |
| "Adobe GoLive": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Adobe GoLive.png", | |
| "meta": { | |
| "generator": "Adobe GoLive(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://www.adobe.com/products/golive" | |
| }, | |
| "Adobe Muse": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Adobe Muse.svg", | |
| "meta": { | |
| "generator": "^Muse(?:$| ?/?(\\d[\\d.]+))\\;version:\\1" | |
| }, | |
| "website": "http://muse.adobe.com" | |
| }, | |
| "Adobe RoboHelp": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "js": { | |
| "gbWhVer": "", | |
| "gbWhLang": "", | |
| "gbWhMsg": "", | |
| "gbWhUtil": "", | |
| "gbWhProxy": "" | |
| }, | |
| "icon": "Adobe RoboHelp.svg", | |
| "meta": { | |
| "generator": "^Adobe RoboHelp(?: ([\\d]+))?\\;version:\\1" | |
| }, | |
| "script": "(?:wh(?:utils|ver|proxy|lang|topic|msg)|ehlpdhtm)\\.js", | |
| "website": "http://adobe.com/products/robohelp.html" | |
| }, | |
| "Advanced Web Stats": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": "aws\\.src = [^<]+caphyon-analytics", | |
| "icon": "Advanced Web Stats.png", | |
| "implies": "Java", | |
| "website": "http://www.advancedwebstats.com" | |
| }, | |
| "Advert Stream": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "advst_is_above_the_fold": "" | |
| }, | |
| "icon": "Advert Stream.png", | |
| "script": "(?:ad\\.advertstream\\.com|adxcore\\.com)", | |
| "website": "http://www.advertstream.com" | |
| }, | |
| "Adzerk": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "ados": "", | |
| "adosResults": "" | |
| }, | |
| "html": "<iframe [^>]*src=\"[^\"]+adzerk\\.net", | |
| "icon": "Adzerk.png", | |
| "script": "adzerk\\.net/ados\\.js", | |
| "website": "http://adzerk.com" | |
| }, | |
| "Aegea": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^E2 Aegea v(\\d+)$\\;version:\\1" | |
| }, | |
| "icon": "Aegea.png", | |
| "implies": [ | |
| "PHP", | |
| "jQuery" | |
| ], | |
| "website": "http://blogengine.ru" | |
| }, | |
| "AfterBuy": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": [ | |
| "<dd>This OnlineStore is brought to you by ViA-Online GmbH Afterbuy\\. Information and contribution at https://www\\.afterbuy\\.de</dd>" | |
| ], | |
| "icon": "after-buy.png", | |
| "script": "shop-static\\.afterbuy\\.de", | |
| "website": "http://www.afterbuy.de" | |
| }, | |
| "Afosto": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Afosto SaaS BV" | |
| }, | |
| "icon": "Afosto.svg", | |
| "website": "http://afosto.com" | |
| }, | |
| "Aircall": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "aircall.png", | |
| "script": "^https?://cdn\\.aircall\\.io/", | |
| "website": "http://aircall.io" | |
| }, | |
| "Airee": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "Airee" | |
| }, | |
| "icon": "Airee.png", | |
| "website": "http://xn--80aqc2a.xn--p1ai" | |
| }, | |
| "Akamai": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "X-Akamai-Transformed": "" | |
| }, | |
| "icon": "akamai.svg", | |
| "website": "http://akamai.com" | |
| }, | |
| "Akka HTTP": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "akka-http(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "akka-http.png", | |
| "website": "http://akka.io" | |
| }, | |
| "Algolia Realtime Search": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "js": { | |
| "AlgoliaSearch": "", | |
| "algoliasearch.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Algolia Realtime Search.svg", | |
| "website": "http://www.algolia.com" | |
| }, | |
| "Allegro RomPager": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Allegro-Software-RomPager(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Allegro RomPager.png", | |
| "website": "http://allegrosoft.com/embedded-web-server-s2" | |
| }, | |
| "AlloyUI": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "AUI": "" | |
| }, | |
| "icon": "AlloyUI.png", | |
| "implies": [ | |
| "Bootstrap", | |
| "YUI" | |
| ], | |
| "script": "^https?://cdn\\.alloyui\\.com/", | |
| "website": "http://www.alloyui.com" | |
| }, | |
| "Amaya": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Amaya.png", | |
| "meta": { | |
| "generator": "Amaya(?: V?([\\d.]+[a-z]))?\\;version:\\1" | |
| }, | |
| "website": "http://www.w3.org/Amaya" | |
| }, | |
| "Amazon Cloudfront": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "X-Amz-Cf-Id": "", | |
| "Via": "\\(CloudFront\\)$" | |
| }, | |
| "icon": "Amazon-Cloudfront.svg", | |
| "website": "http://aws.amazon.com/cloudfront/" | |
| }, | |
| "Amazon EC2": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "\\(Amazon\\)" | |
| }, | |
| "icon": "aws-ec2.svg", | |
| "website": "http://aws.amazon.com/ec2/" | |
| }, | |
| "Amazon S3": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "Server": "AmazonS3" | |
| }, | |
| "icon": "aws-s3.svg", | |
| "website": "http://aws.amazon.com/s3/" | |
| }, | |
| "Ametys": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Ametys.png", | |
| "implies": "Java", | |
| "meta": { | |
| "generator": "(?:Ametys|Anyware Technologies)" | |
| }, | |
| "script": "ametys\\.js", | |
| "website": "http://ametys.org" | |
| }, | |
| "Amiro.CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Amiro.CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Amiro" | |
| }, | |
| "website": "http://amirocms.com" | |
| }, | |
| "Angular Material": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "ngMaterial": "" | |
| }, | |
| "icon": "AngularJS.svg", | |
| "implies": "AngularJS", | |
| "script": [ | |
| "/([\\d.]+(?:\\-?rc[.\\d]*)*)/angular-material(?:\\.min)?\\.js\\;version:\\1", | |
| "angular-material.*\\.js" | |
| ], | |
| "website": "https://material.angularjs.org" | |
| }, | |
| "Angular": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "excludes": [ | |
| "AngularDart", | |
| "AngularJS" | |
| ], | |
| "html": "<[^>]+ ng-version=\"([\\d.]+)\"\\;version:\\1", | |
| "icon": "Angular.svg", | |
| "website": "https://angular.io" | |
| }, | |
| "AngularDart": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "implies": "Dart", | |
| "excludes": [ | |
| "Angular", | |
| "AngularJS" | |
| ], | |
| "icon": "AngularDart.svg", | |
| "website": "https://webdev.dartlang.org/angular/", | |
| "js": { | |
| "ngTestabilityRegistries": "" | |
| } | |
| }, | |
| "AngularJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "excludes": [ | |
| "Angular", | |
| "AngularDart" | |
| ], | |
| "js": { | |
| "angular": "", | |
| "angular.version.full": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "AngularJS.svg", | |
| "script": [ | |
| "angular(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "/([\\d.]+(?:\\-?rc[.\\d]*)*)/angular(?:\\.min)?\\.js\\;version:\\1", | |
| "angular.*\\.js" | |
| ], | |
| "website": "https://angularjs.org" | |
| }, | |
| "Apache": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "(?:Apache(?:$|/([\\d.]+)|[^/-])|(?:^|\b)HTTPD)\\;version:\\1" | |
| }, | |
| "icon": "Apache.svg", | |
| "website": "http://apache.org" | |
| }, | |
| "Apache HBase": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "html": "<style[^>]+static/hbase", | |
| "icon": "Apache HBase.png", | |
| "implies": "Java", | |
| "website": "http://hbase.apache.org" | |
| }, | |
| "Apache Hadoop": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "html": "<style[^>]+static/hadoop", | |
| "icon": "Apache Hadoop.svg", | |
| "website": "http://hadoop.apache.org" | |
| }, | |
| "Apache JSPWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": "<html[^>]* xmlns:jspwiki=", | |
| "icon": "Apache JSPWiki.png", | |
| "implies": "Apache Tomcat", | |
| "script": "jspwiki", | |
| "url": "wiki\\.jsp", | |
| "website": "http://jspwiki.org" | |
| }, | |
| "Apache Tomcat": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Apache-Coyote(/1\\.1)?$\\;version:\\1?4.1+:", | |
| "X-Powered-By": "\bTomcat\b(?:-([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Apache Tomcat.svg", | |
| "implies": "Java", | |
| "website": "http://tomcat.apache.org" | |
| }, | |
| "Apache Traffic Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "ATS/?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Apache Traffic Server.png", | |
| "website": "http://trafficserver.apache.org/" | |
| }, | |
| "Apache Wicket": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "Wicket": "" | |
| }, | |
| "icon": "Apache Wicket.svg", | |
| "implies": "Java", | |
| "website": "http://wicket.apache.org" | |
| }, | |
| "ApexPages": { | |
| "cats": [ | |
| 51 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Salesforce\\.com ApexPages" | |
| }, | |
| "icon": "ApexPages.png", | |
| "implies": "Salesforce", | |
| "website": "https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_intro.htm" | |
| }, | |
| "Apostrophe CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+data-apos-refreshable[^>]", | |
| "icon": "apostrophecms.svg", | |
| "implies": "Node.js", | |
| "website": "http://apostrophecms.org" | |
| }, | |
| "AppNexus": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "html": "<(?:iframe|img)[^>]+adnxs\\.(?:net|com)", | |
| "icon": "AppNexus.svg", | |
| "script": "adnxs\\.(?:net|com)", | |
| "website": "http://appnexus.com" | |
| }, | |
| "Arastta": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "excludes": "OpenCart", | |
| "headers": { | |
| "Arastta": "(.*)\\;version:\\1", | |
| "X-Arastta": "" | |
| }, | |
| "html": "Powered by <a [^>]*href=\"https?://(?:www\\.)?arastta\\.org[^>]+>Arastta", | |
| "icon": "Arastta.svg", | |
| "implies": "PHP", | |
| "script": "arastta\\.js", | |
| "website": "http://arastta.org" | |
| }, | |
| "Arc Forum": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "ping\\.src = node\\.href;\\s+[^>]+\\s+}\\s+</script>", | |
| "icon": "Arc Forum.png", | |
| "website": "http://arclanguage.org" | |
| }, | |
| "ArcGIS API for JavaScript": { | |
| "cats": [ | |
| 35 | |
| ], | |
| "script": [ | |
| "js\\.arcgis\\.com", | |
| "basemaps\\.arcgis\\.com" | |
| ], | |
| "icon": "arcgis_icon.png", | |
| "website": "https://developers.arcgis.com/javascript/" | |
| }, | |
| "Artifactory": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "js": { | |
| "ArtifactoryUpdates": "" | |
| }, | |
| "html": [ | |
| "<span class=\"version\">Artifactory(?: Pro)?(?: Power Pack)?(?: ([\\d.]+))?\\;version:\\1" | |
| ], | |
| "icon": "Artifactory.svg", | |
| "script": [ | |
| "wicket/resource/org\\.artifactory\\." | |
| ], | |
| "website": "http://jfrog.com/open-source/#os-arti" | |
| }, | |
| "Artifactory Web Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Artifactory(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Artifactory.svg", | |
| "implies": [ | |
| "Artifactory" | |
| ], | |
| "website": "http://jfrog.com/open-source/#os-arti" | |
| }, | |
| "ArvanCloud": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "js": { | |
| "ArvanCloud": "" | |
| }, | |
| "headers": { | |
| "AR-PoweredBy": "Arvan Cloud \\(arvancloud\\.com\\)" | |
| }, | |
| "icon": "ArvanCloud.png", | |
| "website": "http://www.ArvanCloud.com" | |
| }, | |
| "AsciiDoc": { | |
| "cats": [ | |
| 1, | |
| 20, | |
| 27 | |
| ], | |
| "js": { | |
| "asciidoc": "" | |
| }, | |
| "icon": "AsciiDoc.png", | |
| "meta": { | |
| "generator": "^AsciiDoc ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.methods.co.nz/asciidoc" | |
| }, | |
| "Asciinema": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "js": { | |
| "asciinema": "" | |
| }, | |
| "script": "asciinema\\.org/", | |
| "icon": "asciinema.png", | |
| "html": "<asciinema-player", | |
| "website": "https://asciinema.org/" | |
| }, | |
| "Atlassian Bitbucket": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "js": { | |
| "bitbucket": "" | |
| }, | |
| "icon": "Atlassian Bitbucket.svg", | |
| "implies": "Python", | |
| "html": "<li>Atlassian Bitbucket <span title=\"[a-z0-9]+\" id=\"product-version\" data-commitid=\"[a-z0-9]+\" data-system-build-number=\"[a-z0-9]+\"> v([\\d.]+)<\\;version:\\1", | |
| "meta": { | |
| "application-name": "Bitbucket" | |
| }, | |
| "website": "http://www.atlassian.com/software/bitbucket/overview/" | |
| }, | |
| "Atlassian Confluence": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "headers": { | |
| "X-Confluence-Request-Time": "" | |
| }, | |
| "html": "Powered by <a href=[^>]+atlassian\\.com/software/confluence(?:[^>]+>Atlassian Confluence</a> ([\\d.]+))?\\;version:\\1", | |
| "icon": "Atlassian Confluence.svg", | |
| "implies": "Java", | |
| "meta": { | |
| "confluence-request-time": "" | |
| }, | |
| "website": "http://www.atlassian.com/software/confluence/overview/team-collaboration-software" | |
| }, | |
| "Atlassian FishEye": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "cookies": { | |
| "FESESSIONID": "" | |
| }, | |
| "html": "<title>(?:Log in to )?FishEye (?:and Crucible )?([\\d.]+)?</title>\\;version:\\1", | |
| "icon": "Atlassian FishEye.svg", | |
| "website": "http://www.atlassian.com/software/fisheye/overview/" | |
| }, | |
| "Atlassian Jira": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "jira": "" | |
| }, | |
| "html": "Powered by\\s+<a href=[^>]+atlassian\\.com/(?:software/jira|jira-bug-tracking/)[^>]+>Atlassian\\s+JIRA(?:[^v]*v(?:ersion: )?(\\d+\\.\\d+(?:\\.\\d+)?))?\\;version:\\1", | |
| "icon": "Atlassian Jira.svg", | |
| "implies": "Java", | |
| "meta": { | |
| "ajs-version-number": "([\\d\\.]+)\\;version:\\1", | |
| "application-name": "JIRA" | |
| }, | |
| "website": "http://www.atlassian.com/software/jira/overview/" | |
| }, | |
| "Atlassian Jira Issue Collector": { | |
| "cats": [ | |
| 13, | |
| 47 | |
| ], | |
| "icon": "Atlassian Jira.svg", | |
| "script": [ | |
| "jira-issue-collector-plugin", | |
| "atlassian\\.jira\\.collector\\.plugin" | |
| ], | |
| "website": "http://www.atlassian.com/software/jira/overview/" | |
| }, | |
| "Aurelia": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": [ | |
| "<[^>]+aurelia-app=[^>]", | |
| "<[^>]+data-main=[^>]aurelia-bootstrapper", | |
| "<[^>]+au-target-id=[^>]\\d" | |
| ], | |
| "icon": "Aurelia.svg", | |
| "script": [ | |
| "aurelia(?:\\.min)?\\.js" | |
| ], | |
| "website": "http://aurelia.io" | |
| }, | |
| "Avangate": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "avng8_": "", | |
| "__avng8_": "" | |
| }, | |
| "html": "<link[^>]* href=\"^https?://edge\\.avangate\\.net/", | |
| "icon": "Avangate.svg", | |
| "script": "^https?://edge\\.avangate\\.net/", | |
| "website": "http://avangate.com" | |
| }, | |
| "Awesomplete": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "js": { | |
| "awesomplete": "" | |
| }, | |
| "html": "<link[^>]+href=\"[^>]*awesomplete(?:\\.min)?\\.css", | |
| "script": "/awesomplete\\.js(?:$|\\?)", | |
| "website": "https://leaverou.github.io/awesomplete/" | |
| }, | |
| "BEM": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<[^>]+data-bem", | |
| "icon": "BEM.png", | |
| "website": "http://en.bem.info" | |
| }, | |
| "BIGACE": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "(?:Powered by <a href=\"[^>]+BIGACE|<!--\\s+Site is running BIGACE)", | |
| "icon": "BIGACE.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "BIGACE ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://bigace.de" | |
| }, | |
| "Bablic": { | |
| "cats": [ | |
| 3, | |
| 9 | |
| ], | |
| "website": "https://www.bablic.com/", | |
| "js": { | |
| "bablic": "" | |
| }, | |
| "icon": "bablic.png" | |
| }, | |
| "Backbone.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Backbone": "", | |
| "Backbone.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Backbone.js.png", | |
| "implies": "Underscore.js", | |
| "script": "backbone.*\\.js", | |
| "website": "http://backbonejs.org" | |
| }, | |
| "Backdrop": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Backdrop": "" | |
| }, | |
| "excludes": "Drupal", | |
| "icon": "Backdrop.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Backdrop CMS(?: (\\d))?\\;version:\\1" | |
| }, | |
| "website": "http://backdropcms.org" | |
| }, | |
| "Backtory": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Backtory" | |
| }, | |
| "icon": "Backtory.svg", | |
| "website": "https://backtory.com" | |
| }, | |
| "Banshee": { | |
| "cats": [ | |
| 1, | |
| 18 | |
| ], | |
| "html": "Built upon the <a href=\"[^>]+banshee-php\\.org/\">[a-z]+</a>(?:v([\\d.]+))?\\;version:\\1", | |
| "icon": "Banshee.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Banshee PHP" | |
| }, | |
| "website": "http://www.banshee-php.org" | |
| }, | |
| "BaseHTTP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "BaseHTTP\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "BaseHTTP.png", | |
| "implies": "Python", | |
| "website": "http://docs.python.org/2/library/basehttpserver.html" | |
| }, | |
| "BigDump": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "html": "<!-- <h1>BigDump: Staggered MySQL Dump Importer ver\\. ([\\d.b]+)\\;version:\\1", | |
| "implies": [ | |
| "MySQL", | |
| "PHP" | |
| ], | |
| "website": "http://www.ozerov.de/bigdump.php" | |
| }, | |
| "Ant Design": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "implies": [ | |
| "React" | |
| ], | |
| "icon": "Ant Design.svg", | |
| "js": { | |
| "antd": "" | |
| }, | |
| "html": [ | |
| "<(?:div|button) class=\"ant-(?:btn|col|row|layout|breadcrumb|menu|pagination|steps|select|cascader|checkbox|calendar|form|input-number|input|mention|rate|radio|slider|switch|tree-select|time-picker|transfer|upload|avatar|badge|card|carousel|collapse|list|popover|tooltip|table|tabs|tag|timeline|tree|alert|modal|message|notification|progress|popconfirm|spin|anchor|back-top|divider)", | |
| "<i class=\"anticon anticon-" | |
| ], | |
| "website": "https://ant.design" | |
| }, | |
| "Sqreen": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "X-Protected-By": "^Sqreen$" | |
| }, | |
| "icon": "Sqreen.png", | |
| "website": "https://sqreen.io" | |
| }, | |
| "Bigcommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<link href=[^>]+cdn\\d+\\.bigcommerce\\.com/", | |
| "icon": "Bigcommerce.png", | |
| "script": "cdn\\d+\\.bigcommerce\\.com/", | |
| "url": "mybigcommerce\\.com", | |
| "website": "http://www.bigcommerce.com" | |
| }, | |
| "Bigware": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "bigwareCsid": "", | |
| "bigWAdminID": "" | |
| }, | |
| "html": "(?:Diese <a href=[^>]+bigware\\.de|<a href=[^>]+/main_bigware_\\d+\\.php)", | |
| "icon": "Bigware.png", | |
| "implies": "PHP", | |
| "url": "(?:\\?|&)bigWAdminID=", | |
| "website": "http://bigware.de" | |
| }, | |
| "BittAds": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "bitt": "" | |
| }, | |
| "icon": "BittAds.png", | |
| "script": "bittads\\.com/js/bitt\\.js$", | |
| "website": "http://bittads.com" | |
| }, | |
| "Bizweb": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Bizweb": "" | |
| }, | |
| "icon": "bizweb.png", | |
| "website": "https://www.bizweb.vn" | |
| }, | |
| "Blade": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "blade-([\\w.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Blade.png", | |
| "implies": "Java", | |
| "website": "https://lets-blade.com" | |
| }, | |
| "Blesta": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "blesta_sid": "" | |
| }, | |
| "icon": "Blesta.png", | |
| "website": "http://www.blesta.com" | |
| }, | |
| "Blip.tv": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "html": "<(?:param|embed|iframe)[^>]+blip\\.tv/play", | |
| "icon": "Blip.tv.png", | |
| "website": "http://blip.tv" | |
| }, | |
| "Blogger": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "Blogger.png", | |
| "meta": { | |
| "generator": "^Blogger$" | |
| }, | |
| "url": "^https?://[^/]+\\.blogspot\\.com", | |
| "website": "http://www.blogger.com" | |
| }, | |
| "Bluefish": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Bluefish.png", | |
| "meta": { | |
| "generator": "Bluefish(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://sourceforge.net/projects/bluefish" | |
| }, | |
| "Boa": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Boa\\/?([\\d\\.a-z]+)?\\;version:\\1" | |
| }, | |
| "website": "http://www.boa.org" | |
| }, | |
| "Boba.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "implies": "Google Analytics", | |
| "script": "boba(?:\\.min)?\\.js", | |
| "website": "http://boba.space150.com" | |
| }, | |
| "Bold Chat": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "BoldChat.png", | |
| "script": "^https?://vmss\\.boldchat\\.com/aid/\\d{18}/bc\\.vms4/vms\\.js", | |
| "website": "https://www.boldchat.com/" | |
| }, | |
| "Bolt": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Bolt.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Bolt" | |
| }, | |
| "website": "http://bolt.cm" | |
| }, | |
| "Bonfire": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "bf_session": "" | |
| }, | |
| "html": "Powered by <a[^>]+href=\"https?://(?:www\\.)?cibonfire\\.com[^>]*>Bonfire v([^<]+)\\;version:\\1", | |
| "icon": "Bonfire.png", | |
| "implies": "CodeIgniter", | |
| "website": "http://cibonfire.com" | |
| }, | |
| "Bootstrap Table": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<link[^>]+href=\"[^>]*bootstrap-table(?:\\.min)?\\.css", | |
| "icon": "Bootstrap Table.svg", | |
| "implies": [ | |
| "Bootstrap", | |
| "jQuery" | |
| ], | |
| "script": "bootstrap-table(?:\\.min)?\\.js", | |
| "website": "http://bootstrap-table.wenzhixin.net.cn/" | |
| }, | |
| "Bounce Exchange": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "bouncex": "" | |
| }, | |
| "html": "<script[^>]*>[^>]+\\.src\\s*=\\s*['\"](?:https?:)?//tag\\.bounceexchange\\.com/", | |
| "icon": "Bounce Exchange.svg", | |
| "script": "^https?://tag\\.bounceexchange\\.com/", | |
| "website": "http://www.bounceexchange.com" | |
| }, | |
| "Brother": { | |
| "cats": [ | |
| 40 | |
| ], | |
| "html": [ | |
| "(?:<!--|<BR>)Copyright\\(C\\) [\\d-]+ Brother Industries", | |
| "<TITLE>\n\\s*BROTHER " | |
| ], | |
| "icon": "Brother.png", | |
| "website": "http://www.brother.com" | |
| }, | |
| "BrowserCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "BrowserCMS.png", | |
| "implies": "Ruby", | |
| "meta": { | |
| "generator": "BrowserCMS ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://browsercms.org" | |
| }, | |
| "Bubble": { | |
| "cats": [ | |
| 1, | |
| 3, | |
| 18, | |
| 22 | |
| ], | |
| "js": { | |
| "appquery": "" | |
| }, | |
| "icon": "bubble.png", | |
| "implies": "Node.js", | |
| "website": "http://bubble.is" | |
| }, | |
| "BugSense": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "Bugsense": "" | |
| }, | |
| "icon": "BugSense.png", | |
| "script": "bugsense\\.js", | |
| "website": "http://bugsense.com" | |
| }, | |
| "BugSnag": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "Bugsnag": "" | |
| }, | |
| "icon": "BugSnag.png", | |
| "script": "bugsnag.*\\.js", | |
| "website": "http://bugsnag.com" | |
| }, | |
| "Bugzilla": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "html": [ | |
| "href=\"enter_bug\\.cgi\">", | |
| "<main id=\"bugzilla-body\"" | |
| ], | |
| "meta": { | |
| "generator": "Bugzilla ?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "js": { | |
| "BUGZILLA": "" | |
| }, | |
| "icon": "Bugzilla.png", | |
| "implies": "Perl", | |
| "website": "http://www.bugzilla.org" | |
| }, | |
| "Bulma": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": "<link[^>]+?href=\"[^\"]+bulma(?:\\.min)?\\.css", | |
| "icon": "Bulma.png", | |
| "website": "http://bulma.io" | |
| }, | |
| "Burning Board": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "<a href=\"[^>]+woltlab\\.com[^<]+<strong>Burning Board", | |
| "icon": "Burning Board.png", | |
| "implies": [ | |
| "PHP", | |
| "Woltlab Community Framework" | |
| ], | |
| "website": "http://www.woltlab.com" | |
| }, | |
| "Business Catalyst": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!-- BC_OBNW -->", | |
| "icon": "Business Catalyst.png", | |
| "script": "CatalystScripts", | |
| "website": "http://businesscatalyst.com" | |
| }, | |
| "BuySellAds": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "_bsa": "", | |
| "_bsap": "", | |
| "_bsaPRO": "", | |
| "_bsap_serving_callback": "" | |
| }, | |
| "html": "<script[^>]*>[^<]+?bsa\\.src\\s*=\\s*['\"](?:https?:)?\\/{2}\\w\\d\\.buysellads\\.com\\/[\\w\\d\\/]+?bsa\\.js['\"]", | |
| "icon": "BuySellAds.png", | |
| "script": "^https?://s\\d\\.buysellads\\.com/", | |
| "website": "http://buysellads.com" | |
| }, | |
| "C++": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "C++.png", | |
| "website": "http://isocpp.org" | |
| }, | |
| "CFML": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "CFML.png", | |
| "website": "http://adobe.com/products/coldfusion-family.html" | |
| }, | |
| "CKEditor": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "js": { | |
| "CKEDITOR": "", | |
| "CKEDITOR.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "CKEditor.png", | |
| "website": "http://ckeditor.com" | |
| }, | |
| "CMS Made Simple": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "CMSSESSID": "" | |
| }, | |
| "icon": "CMS Made Simple.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "CMS Made Simple" | |
| }, | |
| "website": "http://cmsmadesimple.org" | |
| }, | |
| "CMSimple": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "CMSimple( [\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://www.cmsimple.org/en" | |
| }, | |
| "CO2Stats": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": "src=[^>]+co2stats\\.com/propres\\.php", | |
| "icon": "CO2Stats.png", | |
| "website": "http://co2stats.com" | |
| }, | |
| "CPG Dragonfly": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Dragonfly CMS" | |
| }, | |
| "icon": "CPG Dragonfly.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "CPG Dragonfly" | |
| }, | |
| "website": "http://dragonflycms.org" | |
| }, | |
| "CS Cart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "fn_compare_strings": "" | |
| }, | |
| "html": [ | |
| " Powered by (?:<a href=[^>]+cs-cart\\.com|CS-Cart)", | |
| "\\.cm-noscript[^>]+</style>" | |
| ], | |
| "icon": "CS Cart.png", | |
| "implies": "PHP", | |
| "website": "http://www.cs-cart.com" | |
| }, | |
| "CacheFly": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "^CFS ", | |
| "X-CF1": "", | |
| "X-CF2": "" | |
| }, | |
| "icon": "CacheFly.png", | |
| "website": "http://www.cachefly.com" | |
| }, | |
| "Caddy": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Caddy$" | |
| }, | |
| "icon": "caddy.svg", | |
| "implies": "Go", | |
| "website": "http://caddyserver.com" | |
| }, | |
| "CakePHP": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "cakephp": "" | |
| }, | |
| "icon": "CakePHP.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "application-name": "CakePHP" | |
| }, | |
| "website": "http://cakephp.org" | |
| }, | |
| "Canon": { | |
| "cats": [ | |
| 40 | |
| ], | |
| "icon": "Canon.png", | |
| "website": "http://www.canon.com" | |
| }, | |
| "Canon HTTP Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "CANON HTTP Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Canon.png", | |
| "implies": "Canon", | |
| "website": "http://www.canon.com" | |
| }, | |
| "Captch Me": { | |
| "cats": [ | |
| 16, | |
| 36 | |
| ], | |
| "js": { | |
| "Captchme": "" | |
| }, | |
| "icon": "Captch Me.svg", | |
| "script": "^https?://api\\.captchme\\.net/", | |
| "website": "http://captchme.com" | |
| }, | |
| "Carbon Ads": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "_carbonads": "" | |
| }, | |
| "html": "<[a-z]+ [^>]*id=\"carbonads-container\"", | |
| "icon": "Carbon Ads.png", | |
| "script": "//(?:engine|srv)\\.carbonads\\.com\\/", | |
| "website": "http://carbonads.net" | |
| }, | |
| "Cargo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<link [^>]+Cargo feed", | |
| "icon": "Cargo.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "cargo_title": "" | |
| }, | |
| "script": "/cargo\\.", | |
| "website": "http://cargocollective.com" | |
| }, | |
| "Catberry.js": { | |
| "cats": [ | |
| 12, | |
| 18 | |
| ], | |
| "js": { | |
| "catberry": "", | |
| "catberry.version": "(.*)\\;version:\\1" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "Catberry" | |
| }, | |
| "icon": "Catberry.js.png", | |
| "implies": "Node.js", | |
| "website": "http://catberry.org" | |
| }, | |
| "Catwalk": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Catwalk\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Catwalk.png", | |
| "implies": "Canon", | |
| "website": "http://www.canon.com" | |
| }, | |
| "CDN77": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "server": "^CDN77-Turbo$", | |
| "Server": "^CDN77-Turbo$" | |
| }, | |
| "icon": "CDN77.png", | |
| "website": "https://www.cdn77.com" | |
| }, | |
| "CentOS": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "CentOS", | |
| "X-Powered-By": "CentOS" | |
| }, | |
| "icon": "CentOS.png", | |
| "website": "http://centos.org" | |
| }, | |
| "CenteHTTPd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "CenteHTTPd(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "CenteHTTPd.png", | |
| "website": "http://cente.jp/cente/app/HTTPdc.html" | |
| }, | |
| "Chameleon": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Chameleon.png", | |
| "implies": [ | |
| "Apache", | |
| "PHP" | |
| ], | |
| "meta": { | |
| "generator": "chameleon-cms" | |
| }, | |
| "website": "http://chameleon-system.de" | |
| }, | |
| "Chamilo": { | |
| "cats": [ | |
| 21 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Chamilo ([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "\">Chamilo ([\\d.]+)</a>\\;version:\\1", | |
| "icon": "Chamilo.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Chamilo ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.chamilo.org" | |
| }, | |
| "Chart.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Chart": "\\;confidence:50", | |
| "chart.ctx.bezierCurveTo": "" | |
| }, | |
| "icon": "Chart.js.svg", | |
| "script": [ | |
| "Chart(?:\\.bundle)?(?:\\.min)?\\.js\\;confidence:50", | |
| "chartjs\\.org/dist/([\\d.]+(?:-[^/]+)?|master|latest)/Chart.*\\.js\\;version:\\1", | |
| "cdnjs\\.cloudflare\\.com/ajax/libs/Chart\\.js/([\\d.]+(?:-[^/]+)?)/Chart.*\\.js\\;version:\\1", | |
| "cdn\\.jsdelivr\\.net/npm/chart\\.js@([\\d.]+(?:-[^/]+)?|latest)/dist/Chart.*\\.js\\;version:\\1", | |
| "cdn\\.jsdelivr\\.net/gh/chartjs/Chart\\.js@([\\d.]+(?:-[^/]+)?|latest)/dist/Chart.*\\.js\\;version:\\1" | |
| ], | |
| "website": "http://www.chartjs.org" | |
| }, | |
| "Chartbeat": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "_sf_endpt": "", | |
| "_sf_async_config": "" | |
| }, | |
| "icon": "Chartbeat.png", | |
| "script": "chartbeat\\.js", | |
| "website": "http://chartbeat.com" | |
| }, | |
| "Cherokee": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Cherokee(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Cherokee.png", | |
| "website": "http://www.cherokee-project.com" | |
| }, | |
| "CherryPy": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "CherryPy\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "CherryPy.png", | |
| "implies": "Python", | |
| "website": "http://www.cherrypy.org" | |
| }, | |
| "Chitika": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "ch_client": "", | |
| "ch_color_site_link": "" | |
| }, | |
| "icon": "Chitika.png", | |
| "script": "scripts\\.chitika\\.net/", | |
| "website": "http://chitika.com" | |
| }, | |
| "Ckan": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "Access-Control-Allow-Headers": "X-CKAN-API-KEY", | |
| "Link": "<http://ckan\\.org/>; rel=shortlink" | |
| }, | |
| "icon": "Ckan.png", | |
| "implies": [ | |
| "Python", | |
| "Solr", | |
| "Java", | |
| "PostgreSQL" | |
| ], | |
| "meta": { | |
| "generator": ".*ckan.*" | |
| }, | |
| "website": "http://ckan.org/" | |
| }, | |
| "ClickHeat": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "clickHeatServer": "" | |
| }, | |
| "icon": "ClickHeat.png", | |
| "implies": "PHP", | |
| "script": "clickheat.*\\.js", | |
| "website": "http://www.labsmedia.com/clickheat/index.html" | |
| }, | |
| "ClickTale": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "clickTaleStartEventSignal": "" | |
| }, | |
| "icon": "ClickTale.png", | |
| "website": "http://www.clicktale.com" | |
| }, | |
| "Clicky": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "clicky": "" | |
| }, | |
| "icon": "Clicky.png", | |
| "script": "static\\.getclicky\\.com", | |
| "website": "http://getclicky.com" | |
| }, | |
| "Clientexec": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "clientexec\\.[^>]*\\s?=\\s?[^>]*;", | |
| "icon": "Clientexec.png", | |
| "website": "http://www.clientexec.com" | |
| }, | |
| "Clipboard.js": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "icon": "Clipboard.js.svg", | |
| "script": "clipboard(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://clipboardjs.com/" | |
| }, | |
| "CloudCart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "cloudcart.svg", | |
| "meta": { | |
| "author": "^CloudCart LLC$" | |
| }, | |
| "script": "/cloudcart-(?:assets|storage)/", | |
| "website": "http://cloudcart.com" | |
| }, | |
| "Cloudcoins": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "CLOUDCOINS": "" | |
| }, | |
| "script": "https?://cdn\\.cloudcoins\\.co/javascript/cloudcoins\\.min\\.js", | |
| "website": "https://cloudcoins.co" | |
| }, | |
| "CloudFlare": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "js": { | |
| "CloudFlare": "" | |
| }, | |
| "headers": { | |
| "Server": "cloudflare" | |
| }, | |
| "icon": "CloudFlare.svg", | |
| "website": "http://www.cloudflare.com" | |
| }, | |
| "Cloudera": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "headers": { | |
| "Server": "cloudera" | |
| }, | |
| "icon": "Cloudera.png", | |
| "website": "http://www.cloudera.com" | |
| }, | |
| "CNV Platform": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "cnv_session": "" | |
| }, | |
| "icon": "CNV.png", | |
| "implies": "Laravel", | |
| "website": "https://cnv.vn" | |
| }, | |
| "CodeIgniter": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "exp_last_activity": "", | |
| "exp_tracker": "", | |
| "ci_session": "", | |
| "ci_csrf_token": "(.*)\\;version:\\1?2+:" | |
| }, | |
| "html": "<input[^>]+name=\"ci_csrf_token\"\\;version:2+", | |
| "icon": "CodeIgniter.png", | |
| "implies": "PHP", | |
| "website": "http://codeigniter.com" | |
| }, | |
| "CodeMirror": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "CodeMirror": "", | |
| "CodeMirror.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "CodeMirror.png", | |
| "website": "http://codemirror.net" | |
| }, | |
| "CoinHive": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "CoinHive": "" | |
| }, | |
| "script": "\\/(?:coinhive|(authedmine))(?:\\.min)?\\.js\\;version:\\1?opt-in:", | |
| "url": "https?://cnhv\\.co/", | |
| "icon": "CoinHive.svg", | |
| "website": "https://coinhive.com" | |
| }, | |
| "CoinHive Captcha": { | |
| "cats": [ | |
| 16, | |
| 56 | |
| ], | |
| "html": "(?:<div[^>]+class=\"coinhive-captcha[^>]+data-key|<div[^>]+data-key[^>]+class=\"coinhive-captcha)", | |
| "script": "https?://authedmine\\.com/(?:lib/captcha|captcha)", | |
| "icon": "CoinHive.svg", | |
| "website": "https://coinhive.com" | |
| }, | |
| "Coinimp": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "Client.Anonymous": "\\;confidence:50" | |
| }, | |
| "script": "https?://www\\.hashing\\.win/scripts/min\\.js", | |
| "icon": "coinimp.png", | |
| "website": "https://www.coinimp.com" | |
| }, | |
| "Coinlab": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "Coinlab": "" | |
| }, | |
| "script": "https?://coinlab\\.biz/lib/coinlab\\.js\\?id=", | |
| "icon": "coinlab.png", | |
| "website": "https://coinlab.biz/en" | |
| }, | |
| "Comandia": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Comandia": "" | |
| }, | |
| "html": "<link[^>]+=['\"]//cdn\\.mycomandia\\.com", | |
| "icon": "Comandia.svg", | |
| "website": "http://comandia.com" | |
| }, | |
| "Commerce Server": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "COMMERCE-SERVER-SOFTWARE": "" | |
| }, | |
| "icon": "Commerce Server.png", | |
| "implies": "Microsoft ASP.NET", | |
| "website": "http://commerceserver.net" | |
| }, | |
| "CompaqHTTPServer": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "CompaqHTTPServer\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "HP.svg", | |
| "website": "http://www.hp.com" | |
| }, | |
| "Concrete5": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "CCM_IMAGE_PATH": "" | |
| }, | |
| "icon": "Concrete5.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^concrete5 - ([\\d.]+)$\\;version:\\1" | |
| }, | |
| "script": "/concrete/js/", | |
| "website": "https://concrete5.org" | |
| }, | |
| "Connect": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Connect$" | |
| }, | |
| "icon": "Connect.png", | |
| "implies": "Node.js", | |
| "website": "http://www.senchalabs.org/connect" | |
| }, | |
| "Contao": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": [ | |
| "<!--[^>]+powered by (?:TYPOlight|Contao)[^>]*-->", | |
| "<link[^>]+(?:typolight|contao)\\.css" | |
| ], | |
| "icon": "Contao.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^Contao Open Source CMS$" | |
| }, | |
| "website": "http://contao.org" | |
| }, | |
| "Contenido": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Contenido.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Contenido ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://contenido.org/en" | |
| }, | |
| "Contens": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Contens.png", | |
| "implies": [ | |
| "Java", | |
| "CFML" | |
| ], | |
| "meta": { | |
| "generator": "Contensis CMS Version ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.contens.com/en/pub/index.cfm" | |
| }, | |
| "ContentBox": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "icon": "ContentBox.png", | |
| "implies": "Adobe ColdFusion", | |
| "meta": { | |
| "generator": "ContentBox powered by ColdBox" | |
| }, | |
| "website": "http://www.gocontentbox.org" | |
| }, | |
| "Contentful": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+(?:https?:)?//(?:assets|downloads|images|videos)\\.(?:cfassets\\.net|contentful\\.com)", | |
| "icon": "Contentful.svg", | |
| "website": "http://www.contentful.com" | |
| }, | |
| "ConversionLab": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "ConversionLab.png", | |
| "script": "conversionlab\\.trackset\\.com/track/tsend\\.js", | |
| "website": "http://www.trackset.it/conversionlab" | |
| }, | |
| "Coppermine": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "html": "<!--Coppermine Photo Gallery ([\\d.]+)\\;version:\\1", | |
| "icon": "Coppermine.png", | |
| "implies": "PHP", | |
| "website": "http://coppermine-gallery.net" | |
| }, | |
| "Cosmoshop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Cosmoshop.png", | |
| "script": "cosmoshop_functions\\.js", | |
| "website": "http://cosmoshop.de" | |
| }, | |
| "Cotonti": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Cotonti.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Cotonti" | |
| }, | |
| "website": "http://www.cotonti.com" | |
| }, | |
| "CouchDB": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "CouchDB/([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "CouchDB.png", | |
| "website": "http://couchdb.apache.org" | |
| }, | |
| "Cowboy": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Cowboy" | |
| }, | |
| "icon": "Cowboy.png", | |
| "implies": "Erlang", | |
| "website": "http://ninenines.eu" | |
| }, | |
| "CppCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^CppCMS/([\\d.]+)$\\;version:\\1" | |
| }, | |
| "icon": "CppCMS.png", | |
| "implies": "C\\+\\+", | |
| "website": "http://cppcms.com" | |
| }, | |
| "Craft CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "CraftSessionId": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "\bCraft CMS\b" | |
| }, | |
| "icon": "Craft CMS.svg", | |
| "implies": "Yii", | |
| "website": "https://craftcms.com" | |
| }, | |
| "Craft Commerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "\bCraft Commerce\b" | |
| }, | |
| "icon": "Craft CMS.svg", | |
| "implies": "Craft CMS", | |
| "website": "https://craftcommerce.com" | |
| }, | |
| "Crazy Egg": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "CE2": "" | |
| }, | |
| "icon": "Crazy Egg.png", | |
| "script": "script\\.crazyegg\\.com/pages/scripts/\\d+/\\d+\\.js", | |
| "website": "http://crazyegg.com" | |
| }, | |
| "Criteo": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "Criteo": "", | |
| "criteo_pubtag": "", | |
| "criteo_q": "" | |
| }, | |
| "icon": "Criteo.svg", | |
| "script": "//(?:cas\\.criteo\\.com|(?:[^/]\\.)?criteo\\.net)/", | |
| "website": "http://criteo.com" | |
| }, | |
| "Cross Pixel": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "cp_C4w1ldN2d9PmVrkN": "" | |
| }, | |
| "icon": "Cross Pixel.png", | |
| "script": "tag\\.crsspxl\\.com/s1\\.js", | |
| "website": "http://datadesk.crsspxl.com" | |
| }, | |
| "Crypto-Loot": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "CryptoLoot": "", | |
| "CRLT.CONFIG.ASMJS_NAME": "" | |
| }, | |
| "script": [ | |
| "^/crypto-loot\\.com/lib/", | |
| "^/webmine\\.pro/", | |
| "^/cryptoloot\\.pro/", | |
| "/crlt\\.js\\;confidence:75" | |
| ], | |
| "icon": "Crypto-Loot.png", | |
| "website": "https://crypto-loot.com/" | |
| }, | |
| "CubeCart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "(?:Powered by <a href=[^>]+cubecart\\.com|<p[^>]+>Powered by CubeCart)", | |
| "icon": "CubeCart.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "cubecart" | |
| }, | |
| "website": "http://www.cubecart.com" | |
| }, | |
| "Cufon": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "js": { | |
| "Cufon": "" | |
| }, | |
| "icon": "Cufon.png", | |
| "script": "cufon-yui\\.js", | |
| "website": "http://cufon.shoqolate.com" | |
| }, | |
| "D3": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "d3.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "D3.png", | |
| "script": "/d3(?:\\. v\\d+)?(?:\\.min)?\\.js", | |
| "website": "http://d3js.org" | |
| }, | |
| "DHTMLX": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "DHTMLX.png", | |
| "script": "dhtmlxcommon\\.js", | |
| "website": "http://dhtmlx.com" | |
| }, | |
| "DM Polopoly": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<(?:link [^>]*href|img [^>]*src)=\"/polopoly_fs/", | |
| "icon": "DM Polopoly.png", | |
| "implies": "Java", | |
| "website": "http://www.atex.com/products/dm-polopoly" | |
| }, | |
| "DNN": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "DotNetNuke": "", | |
| "dnn.apiversion": "(.*)\\;version:\\1" | |
| }, | |
| "cookies": { | |
| "DotNetNukeAnonymous": "" | |
| }, | |
| "headers": { | |
| "Cookie": "dnn_IsMobile=", | |
| "DNNOutputCache": "", | |
| "X-Compressed-By": "DotNetNuke" | |
| }, | |
| "html": [ | |
| "<!-- by DotNetNuke Corporation", | |
| "<!-- DNN Platform" | |
| ], | |
| "icon": "DNN.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "DotNetNuke" | |
| }, | |
| "script": [ | |
| "/js/dnncore\\.js", | |
| "/js/dnn\\.js" | |
| ], | |
| "website": "http://dnnsoftware.com" | |
| }, | |
| "Docusaurus": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "meta": { | |
| "generator": "^Docusaurus$" | |
| }, | |
| "icon": "docusaurus.svg", | |
| "implies": [ | |
| "React", | |
| "webpack" | |
| ], | |
| "website": "https://docusaurus.io/" | |
| }, | |
| "DTG": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": [ | |
| "<a[^>]+Site Powered by DTG" | |
| ], | |
| "icon": "DTG.png", | |
| "implies": "Mono.net", | |
| "website": "http://www.dtg.nl" | |
| }, | |
| "Dancer": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "Server": "Perl Dancer ([\\d.]+)\\;version:\\1", | |
| "X-Powered-By": "Perl Dancer ([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Dancer.png", | |
| "implies": "Perl", | |
| "website": "http://perldancer.org" | |
| }, | |
| "Danneo CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "CMS Danneo ([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Danneo CMS.png", | |
| "implies": [ | |
| "Apache", | |
| "PHP" | |
| ], | |
| "meta": { | |
| "generator": "Danneo CMS ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://danneo.com" | |
| }, | |
| "Dart": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "Dart.svg", | |
| "implies": "AngularDart", | |
| "excludes": [ | |
| "Angular", | |
| "AngularJS" | |
| ], | |
| "website": "https://www.dartlang.org", | |
| "script": [ | |
| "/(?:\\.)?(?:dart)(?:\\.js)?/", | |
| "packages/browser/dart\\.js" | |
| ], | |
| "html": "/(?:<script)[^>]+(?:type=\"application/dart\")/", | |
| "js": { | |
| "___dart__$dart_dartObject_ZxYxX_0_": "", | |
| "___dart_dispatch_record_ZxYxX_0_": "" | |
| } | |
| }, | |
| "Darwin": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Darwin", | |
| "X-Powered-By": "Darwin" | |
| }, | |
| "icon": "Apple.svg", | |
| "website": "http://opensource.apple.com" | |
| }, | |
| "DataLife Engine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "dle_root": "" | |
| }, | |
| "icon": "DataLife Engine.png", | |
| "implies": [ | |
| "PHP", | |
| "Apache" | |
| ], | |
| "meta": { | |
| "generator": "DataLife Engine" | |
| }, | |
| "website": "http://dle-news.ru" | |
| }, | |
| "DataTables": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "DataTables.png", | |
| "implies": "jQuery", | |
| "script": "dataTables.*\\.js", | |
| "website": "http://datatables.net" | |
| }, | |
| "David Webbox": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "David-WebBox/([\\d.a]+ \\(\\d+\\))\\;version:\\1" | |
| }, | |
| "icon": "David Webbox.png", | |
| "website": "http://www.tobit.com" | |
| }, | |
| "Debian": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Debian", | |
| "X-Powered-By": "(?:Debian|dotdeb|(potato|woody|sarge|etch|lenny|squeeze|wheezy|jessie|stretch|buster|sid))\\;version:\\1" | |
| }, | |
| "icon": "Debian.png", | |
| "website": "http://debian.org" | |
| }, | |
| "Decorum": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "DECORUM(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "DedeCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "DedeContainer": "" | |
| }, | |
| "icon": "DedeCMS.png", | |
| "implies": "PHP", | |
| "script": "dedeajax", | |
| "website": "http://dedecms.com" | |
| }, | |
| "deepMiner": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "deepMiner": "" | |
| }, | |
| "script": "deepMiner\\.js", | |
| "icon": "deepminer.png", | |
| "website": "https://github.com/deepwn/deepMiner" | |
| }, | |
| "Dell": { | |
| "cats": [ | |
| 40 | |
| ], | |
| "icon": "Dell.svg", | |
| "website": "http://dell.com" | |
| }, | |
| "Deployd": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "dpd": "" | |
| }, | |
| "icon": "Deployd.png", | |
| "script": "dpd\\.js", | |
| "website": "http://deployd.com" | |
| }, | |
| "DirectAdmin": { | |
| "cats": [ | |
| 9 | |
| ], | |
| "headers": { | |
| "Server": "DirectAdmin Daemon v([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "<a[^>]+>DirectAdmin</a> Web Control Panel", | |
| "icon": "DirectAdmin.png", | |
| "implies": [ | |
| "PHP", | |
| "Apache" | |
| ], | |
| "website": "http://www.directadmin.com" | |
| }, | |
| "Discourse": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "Discourse": "" | |
| }, | |
| "icon": "Discourse.png", | |
| "implies": "Ruby on Rails", | |
| "meta": { | |
| "generator": "Discourse(?: ?/?([\\d.]+\\d))?\\;version:\\1" | |
| }, | |
| "website": "http://discourse.org" | |
| }, | |
| "Discuz! X": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "discuz_uid": "", | |
| "discuzVersion": "(.*)\\;version:\\1", | |
| "DISCUZCODE": "" | |
| }, | |
| "icon": "Discuz X.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Discuz! X([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://discuz.com" | |
| }, | |
| "Disqus": { | |
| "cats": [ | |
| 15 | |
| ], | |
| "js": { | |
| "DISQUS": "", | |
| "disqus_shortname": "", | |
| "disqus_url": "" | |
| }, | |
| "html": "<div[^>]+id=\"disqus_thread\"", | |
| "icon": "Disqus.svg", | |
| "script": "disqus_url", | |
| "website": "http://disqus.com" | |
| }, | |
| "Django": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "django": "", | |
| "__admin_media_prefix__": "" | |
| }, | |
| "html": "(?:powered by <a[^>]+>Django ?([\\d.]+)?|<input[^>]*name=[\"']csrfmiddlewaretoken[\"'][^>]*>)\\;version:\\1", | |
| "icon": "Django.png", | |
| "implies": "Python", | |
| "website": "http://djangoproject.com" | |
| }, | |
| "Django CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Django CMS.png", | |
| "implies": "Django", | |
| "website": "http://django-cms.org" | |
| }, | |
| "Dojo": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "dojo": "", | |
| "dojo.version.major": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Dojo.png", | |
| "script": "([\\d.]+)/dojo/dojo(?:\\.xd)?\\.js\\;version:\\1", | |
| "website": "http://dojotoolkit.org" | |
| }, | |
| "Dokeos": { | |
| "cats": [ | |
| 21 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Dokeos" | |
| }, | |
| "html": "(?:Portal <a[^>]+>Dokeos|@import \"[^\"]+dokeos_blue)", | |
| "icon": "Dokeos.png", | |
| "implies": [ | |
| "PHP", | |
| "Xajax", | |
| "jQuery", | |
| "CKEditor" | |
| ], | |
| "meta": { | |
| "generator": "Dokeos" | |
| }, | |
| "website": "http://dokeos.com" | |
| }, | |
| "DokuWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "cookies": { | |
| "DokuWiki": "" | |
| }, | |
| "icon": "DokuWiki.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^DokuWiki( Release [\\-\\d]+)?\\;version:\\1" | |
| }, | |
| "website": "http://www.dokuwiki.org" | |
| }, | |
| "Dotclear": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Dotclear-Static-Cache": "" | |
| }, | |
| "icon": "Dotclear.png", | |
| "implies": "PHP", | |
| "website": "http://dotclear.org" | |
| }, | |
| "DoubleClick Ad Exchange (AdX)": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "DoubleClick.svg", | |
| "script": [ | |
| "googlesyndication\\.com/pagead/show_ads\\.js", | |
| "tpc\\.googlesyndication\\.com/safeframe", | |
| "googlesyndication\\.com.*abg\\.js" | |
| ], | |
| "website": "http://www.doubleclickbygoogle.com/solutions/digital-marketing/ad-exchange/" | |
| }, | |
| "DoubleClick Campaign Manager (DCM)": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "DoubleClick.svg", | |
| "script": "2mdn\\.net", | |
| "website": "http://www.doubleclickbygoogle.com/solutions/digital-marketing/campaign-manager/" | |
| }, | |
| "DoubleClick Floodlight": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "DoubleClick.svg", | |
| "script": "https?://fls\\.doubleclick\\.net", | |
| "website": "http://support.google.com/ds/answer/6029713?hl=en" | |
| }, | |
| "DoubleClick for Publishers (DFP)": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "DoubleClick.svg", | |
| "script": "googletagservices\\.com/tag/js/gpt(?:_mobile)?\\.js", | |
| "website": "http://www.google.com/dfp" | |
| }, | |
| "DovetailWRP": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<link[^>]* href=\"\\/DovetailWRP\\/", | |
| "icon": "DovetailWRP.png", | |
| "implies": "Microsoft ASP.NET", | |
| "script": "\\/DovetailWRP\\/", | |
| "website": "http://www.dovetailinternet.com" | |
| }, | |
| "Doxygen": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": "(?:<!-- Generated by Doxygen ([\\d.]+)|<link[^>]+doxygen\\.css)\\;version:\\1", | |
| "icon": "Doxygen.png", | |
| "meta": { | |
| "generator": "Doxygen ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.stack.nl/~dimitri/doxygen/" | |
| }, | |
| "DreamWeaver": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "html": "(?:<!--[^>]*(?:InstanceBeginEditable|Dreamweaver([^>]+)target|DWLayoutDefaultTable)|function MM_preloadImages\\(\\) \\{)\\;version:\\1", | |
| "icon": "DreamWeaver.png", | |
| "website": "http://www.adobe.com/products/dreamweaver" | |
| }, | |
| "Drupal": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Drupal": "" | |
| }, | |
| "headers": { | |
| "Expires": "19 Nov 1978", | |
| "X-Drupal-Cache": "", | |
| "X-Generator": "Drupal(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "html": "<(?:link|style)[^>]+sites/(?:default|all)/(?:themes|modules)/", | |
| "icon": "Drupal.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Drupal(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "script": "drupal\\.js", | |
| "website": "http://drupal.org" | |
| }, | |
| "Drupal Commerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<[^>]+(?:id=\"block[_-]commerce[_-]cart[_-]cart|class=\"commerce[_-]product[_-]field)", | |
| "icon": "Drupal Commerce.png", | |
| "implies": "Drupal", | |
| "website": "http://drupalcommerce.org" | |
| }, | |
| "Dynamicweb": { | |
| "cats": [ | |
| 1, | |
| 6, | |
| 10 | |
| ], | |
| "cookies": { | |
| "Dynamicweb": "" | |
| }, | |
| "icon": "Dynamicweb.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "Dynamicweb ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.dynamicweb.dk" | |
| }, | |
| "Dynatrace": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Dynatrace.png", | |
| "script": "dtagent.*\\.js", | |
| "website": "http://dynatrace.com" | |
| }, | |
| "E-Commerce Paraguay": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "eCommercePy.png", | |
| "script": "cdn\\.e-commerceparaguay\\.com", | |
| "website": "http://e-commerceparaguay.com" | |
| }, | |
| "E-Merchant": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "E-Merchant.png", | |
| "script": "cdn\\.e-merchant\\.com", | |
| "website": "http://e-merchant.com" | |
| }, | |
| "EC-CUBE": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "ec-cube.png", | |
| "implies": "PHP", | |
| "script": [ | |
| "eccube\\.js", | |
| "win_op\\.js" | |
| ], | |
| "website": "http://www.ec-cube.net" | |
| }, | |
| "ef.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "ef.js.svg", | |
| "js": { | |
| "ef.version": "(.*)\\;version:\\1", | |
| "efCore": "" | |
| }, | |
| "script": "/ef(?:-core)?(?:\\.min|\\.dev)?\\.js", | |
| "website": "http://ef.js.org" | |
| }, | |
| "ELOG": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<title>ELOG Logbook Selection</title>", | |
| "icon": "ELOG.png", | |
| "website": "http://midas.psi.ch/elog" | |
| }, | |
| "ELOG HTTP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "ELOG HTTP( \\d[\\-\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "ELOG.png", | |
| "implies": "ELOG", | |
| "website": "http://midas.psi.ch/elog" | |
| }, | |
| "EPages": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "epages 6" | |
| }, | |
| "html": "<div class=\"BoxContainer\">", | |
| "icon": "epages.png", | |
| "website": "http://www.epages.com/" | |
| }, | |
| "EPiServer": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "EPiTrace": "", | |
| "EPiServer": "" | |
| }, | |
| "icon": "EPiServer.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "EPiServer" | |
| }, | |
| "website": "http://episerver.com" | |
| }, | |
| "EPrints": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "EPrints": "", | |
| "EPJS_menu_template": "" | |
| }, | |
| "icon": "EPrints.png", | |
| "implies": "Perl", | |
| "meta": { | |
| "generator": "EPrints ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.eprints.org" | |
| }, | |
| "ESERV-10": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "ESERV-10(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "ESERV-10.png", | |
| "website": "http://www.violasystems.com" | |
| }, | |
| "EWS-NIC4": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "EWS-NIC4(?:\\/([\\d\\.a-z]+))?\\;version:\\1" | |
| }, | |
| "icon": "EWS-NIC4.png", | |
| "implies": "Dell", | |
| "website": "http://dell.com" | |
| }, | |
| "EdgeCast": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "^ECD\\s\\(\\S+\\)" | |
| }, | |
| "icon": "EdgeCast.png", | |
| "url": "https?://(?:[^/]+\\.)?edgecastcdn\\.net/", | |
| "website": "http://www.edgecast.com" | |
| }, | |
| "Elcodi": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Elcodi": "" | |
| }, | |
| "icon": "Elcodi.png", | |
| "implies": [ | |
| "PHP", | |
| "Symfony" | |
| ], | |
| "website": "http://elcodi.io" | |
| }, | |
| "Eleanor CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Eleanor CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Eleanor" | |
| }, | |
| "website": "http://eleanor-cms.ru" | |
| }, | |
| "Eloqua": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "elqSiteID": "", | |
| "elqLoad": "", | |
| "elqCurESite": "", | |
| "elq_global": "" | |
| }, | |
| "icon": "Oracle.png", | |
| "script": "elqCfg\\.js", | |
| "website": "http://eloqua.com" | |
| }, | |
| "EmbedThis Appweb": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Mbedthis-Appweb(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Embedthis.png", | |
| "website": "http://embedthis.com/appweb" | |
| }, | |
| "Embedthis-http": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Embedthis-http(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Embedthis.png", | |
| "website": "http://github.com/embedthis/http" | |
| }, | |
| "Ember.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Ember": "", | |
| "Ember.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Ember.js.png", | |
| "implies": "Handlebars", | |
| "website": "http://emberjs.com" | |
| }, | |
| "Enyo": { | |
| "cats": [ | |
| 12, | |
| 26 | |
| ], | |
| "js": { | |
| "enyo": "" | |
| }, | |
| "icon": "Enyo.png", | |
| "script": "enyo\\.js", | |
| "website": "http://enyojs.com" | |
| }, | |
| "Epoch": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "html": "<link[^>]+?href=\"[^\"]+epoch(?:\\.min)?\\.css", | |
| "implies": "D3", | |
| "script": "epoch(?:\\.min)?\\.js", | |
| "website": "http://fastly.github.io/epoch" | |
| }, | |
| "Epom": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "epomCustomParams": "" | |
| }, | |
| "icon": "Epom.png", | |
| "url": "^https?://(?:[^/]+\\.)?ad(?:op)?shost1\\.com/", | |
| "website": "http://epom.com" | |
| }, | |
| "Erlang": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "headers": { | |
| "Server": "Erlang( OTP/(?:[\\-\\d\\.ABR]+))?\\;version:\\1" | |
| }, | |
| "icon": "Erlang.png", | |
| "website": "http://www.erlang.org" | |
| }, | |
| "Etherpad": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "js": { | |
| "padeditbar": "", | |
| "padimpexp": "" | |
| }, | |
| "headers": { | |
| "Server": "^Etherpad" | |
| }, | |
| "icon": "etherpad.png", | |
| "implies": "Node.js", | |
| "script": [ | |
| "/ep_etherpad-lite/" | |
| ], | |
| "website": "https://etherpad.org" | |
| }, | |
| "Exagon Concept": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "Server": "Exagon Server" | |
| }, | |
| "icon": "ExagonConcept.svg", | |
| "website": "http://www.exagon-concept.com" | |
| }, | |
| "Exhibit": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Exhibit": "", | |
| "Exhibit.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Exhibit.png", | |
| "script": "exhibit.*\\.js", | |
| "website": "http://simile-widgets.org/exhibit/" | |
| }, | |
| "Express": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Express$" | |
| }, | |
| "icon": "Express.png", | |
| "implies": "Node.js", | |
| "website": "http://expressjs.com" | |
| }, | |
| "ExpressionEngine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "exp_last_activity": "", | |
| "exp_tracker": "", | |
| "exp_csrf_token": "" | |
| }, | |
| "icon": "ExpressionEngine.png", | |
| "implies": "PHP", | |
| "website": "http://expressionengine.com" | |
| }, | |
| "ExtJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Ext": "", | |
| "Ext.versions.extjs.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "ExtJS.png", | |
| "script": "ext-base\\.js", | |
| "website": "http://www.extjs.com" | |
| }, | |
| "FAST ESP": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "html": "<form[^>]+id=\"fastsearch\"", | |
| "icon": "FAST ESP.png", | |
| "website": "http://microsoft.com/enterprisesearch" | |
| }, | |
| "FAST Search for SharePoint": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "html": "<input[^>]+ name=\"ParametricSearch", | |
| "icon": "FAST Search for SharePoint.png", | |
| "implies": [ | |
| "Microsoft SharePoint", | |
| "Microsoft ASP.NET" | |
| ], | |
| "url": "Pages/SearchResults\\.aspx\\?k=", | |
| "website": "http://sharepoint.microsoft.com/en-us/product/capabilities/search/Pages/Fast-Search.aspx" | |
| }, | |
| "FWP": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<!--\\s+FwP Systems", | |
| "icon": "FWP.png", | |
| "meta": { | |
| "generator": "FWP Shop" | |
| }, | |
| "website": "http://fwpshop.org" | |
| }, | |
| "Facebook": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Facebook.svg", | |
| "script": "//connect\\.facebook\\.net/[^/]*/[a-z]*\\.js", | |
| "website": "http://facebook.com" | |
| }, | |
| "Fact Finder": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "html": "<!-- Factfinder", | |
| "icon": "Fact Finder.png", | |
| "script": "Suggest\\.ff", | |
| "url": "(?:/ViewParametricSearch|ffsuggest\\.[a-z]htm)", | |
| "website": "http://fact-finder.com" | |
| }, | |
| "FancyBox": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "FancyBox.png", | |
| "js": { | |
| "$.fancybox.version": "(.*)\\;version:\\1" | |
| }, | |
| "implies": "jQuery", | |
| "script": "jquery\\.fancybox(?:\\.pack|\\.min)?\\.js(?:\\?v=([\\d.]+))?$\\;version:\\1", | |
| "website": "http://fancyapps.com/fancybox" | |
| }, | |
| "Fastly": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Fastly-Debug-Digest": "", | |
| "Vary": "Fastly-SSL", | |
| "X-Fastly-Request-ID": "" | |
| }, | |
| "icon": "Fastly.svg", | |
| "website": "https://www.fastly.com" | |
| }, | |
| "Fat-Free Framework": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Fat-Free Framework$" | |
| }, | |
| "icon": "Fat-Free Framework.png", | |
| "implies": "PHP", | |
| "website": "http://fatfreeframework.com" | |
| }, | |
| "Fedora": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Fedora" | |
| }, | |
| "icon": "Fedora.png", | |
| "website": "http://fedoraproject.org" | |
| }, | |
| "Fingerprintjs": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Fingerprint": "(\\d)?$\\;version:\\1", | |
| "Fingerprint2": "", | |
| "Fingerprint2.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "script": "fingerprint(\\d)?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://valve.github.io/fingerprintjs2/" | |
| }, | |
| "Firebase": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "js": { | |
| "firebase.SDK_VERSION": "([\\d.]+)$\\;version:\\1" | |
| }, | |
| "icon": "Firebase.png", | |
| "script": "/(?:([\\d.]+)/)?firebase(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://firebase.com" | |
| }, | |
| "Fireblade": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "fbs" | |
| }, | |
| "icon": "Fireblade.png", | |
| "website": "http://fireblade.com" | |
| }, | |
| "FlashCom": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "FlashCom/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "Flask": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Werkzeug/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Flask.png", | |
| "implies": "Python", | |
| "website": "http://flask.pocoo.org" | |
| }, | |
| "Flat UI": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "icon": "Flat UI.png", | |
| "implies": "Bootstrap", | |
| "html": "<link[^>]* href=[^>]+flat-ui(?:\\.min)?\\.css", | |
| "website": "https://designmodo.github.io/Flat-UI/" | |
| }, | |
| "FlexCMP": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Flex-Lang": "", | |
| "X-Powered-By": "FlexCMP.+\\[v\\. ([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "<!--[^>]+FlexCMP[^>v]+v\\. ([\\d.]+)\\;version:\\1", | |
| "icon": "FlexCMP.png", | |
| "meta": { | |
| "generator": "^FlexCMP" | |
| }, | |
| "website": "http://www.flexcmp.com/cms/home" | |
| }, | |
| "FlexSlider": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "FlexSlider.png", | |
| "implies": "jQuery", | |
| "script": [ | |
| "jquery\\.flexslider(?:\\.min)?\\.js$" | |
| ], | |
| "website": "https://woocommerce.com/flexslider/" | |
| }, | |
| "Flickity": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Flickity": "" | |
| }, | |
| "script": "/flickity(?:\\.pkgd)?(?:\\.min)?\\.js", | |
| "website": "https://flickity.metafizzy.co/" | |
| }, | |
| "FluxBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "Powered by (?:<strong>)?<a href=\"[^>]+fluxbb", | |
| "icon": "FluxBB.png", | |
| "implies": "PHP", | |
| "website": "http://fluxbb.org" | |
| }, | |
| "Flyspray": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "cookies": { | |
| "flyspray_project": "" | |
| }, | |
| "html": "(?:<a[^>]+>Powered by Flyspray|<map id=\"projectsearchform)", | |
| "icon": "Flyspray.png", | |
| "implies": "PHP", | |
| "website": "http://flyspray.org" | |
| }, | |
| "Font Awesome": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "html": [ | |
| "<link[^>]* href=[^>]+font-awesome(?:\\.min)?\\.css", | |
| "<script[^>]* src=[^>]+fontawesome(?:\\.js)?" | |
| ], | |
| "icon": "Font Awesome.png", | |
| "website": "http://fontawesome.io" | |
| }, | |
| "Fork CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "ForkCMS.png", | |
| "implies": "Symfony", | |
| "meta": { | |
| "generator": "^Fork CMS$" | |
| }, | |
| "website": "http://www.fork-cms.com/" | |
| }, | |
| "Fortune3": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "(?:<link [^>]*href=\"[^\\/]*\\/\\/www\\.fortune3\\.com\\/[^\"]*siterate\\/rate\\.css|Powered by <a [^>]*href=\"[^\"]+fortune3\\.com)", | |
| "icon": "Fortune3.png", | |
| "script": "cartjs\\.php\\?(?:.*&)?s=[^&]*myfortune3cart\\.com", | |
| "website": "http://fortune3.com" | |
| }, | |
| "Foswiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "js": { | |
| "foswiki": "" | |
| }, | |
| "cookies": { | |
| "FOSWIKISTRIKEONE": "", | |
| "SFOSWIKISID": "" | |
| }, | |
| "headers": { | |
| "X-Foswikiaction": "", | |
| "X-Foswikiuri": "" | |
| }, | |
| "html": [ | |
| "<div class=\"foswiki(?:Copyright|Page|Main)\">" | |
| ], | |
| "icon": "foswiki.png", | |
| "implies": "Perl", | |
| "meta": { | |
| "foswiki.SERVERTIME": "", | |
| "foswiki.WIKINAME": "" | |
| }, | |
| "website": "http://foswiki.org" | |
| }, | |
| "FreeBSD": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "FreeBSD(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "FreeBSD.png", | |
| "website": "http://freebsd.org" | |
| }, | |
| "Freespee": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "script": "analytics\\.freespee\\.com/js/external/fs\\.(?:min\\.)?js", | |
| "icon": "Freespee.svg", | |
| "website": "https://www.freespee.com" | |
| }, | |
| "FreeTextBox": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "js": { | |
| "FTB_API": "", | |
| "FTB_AddEvent": "" | |
| }, | |
| "html": "/<!--\\s*\\*\\s*FreeTextBox v\\d+ \\(([.\\d]+)(?:(?:.|\n)+?<!--\\s*\\*\\s*License Type: (Distribution|Professional)License)?/i\\;version:\\1 \\2", | |
| "icon": "FreeTextBox.png", | |
| "implies": "Microsoft ASP.NET", | |
| "website": "http://freetextbox.com" | |
| }, | |
| "Froala Editor": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "html": "<[^>]+class=\"[^\"]*(?:fr-view|fr-box)", | |
| "icon": "Froala.svg", | |
| "implies": [ | |
| "jQuery", | |
| "Font Awesome" | |
| ], | |
| "website": "http://froala.com/wysiwyg-editor" | |
| }, | |
| "FrontPage": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "FrontPage.png", | |
| "meta": { | |
| "generator": "Microsoft FrontPage(?:\\s((?:Express )?[\\d.]+))?\\;version:\\1", | |
| "ProgId": "^FrontPage\\." | |
| }, | |
| "website": "http://office.microsoft.com/frontpage" | |
| }, | |
| "Fusion Ads": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "_fusion": "" | |
| }, | |
| "icon": "Fusion Ads.png", | |
| "script": "^[^\\/]*//[ac]dn\\.fusionads\\.net/(?:api/([\\d.]+)/)?\\;version:\\1", | |
| "website": "http://fusionads.net" | |
| }, | |
| "G-WAN": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "G-WAN" | |
| }, | |
| "icon": "G-WAN.png", | |
| "website": "http://gwan.com" | |
| }, | |
| "GX WebManager": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!--\\s+Powered by GX", | |
| "icon": "GX WebManager.png", | |
| "meta": { | |
| "generator": "GX WebManager(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://www.gxsoftware.com/en/products/web-content-management.htm" | |
| }, | |
| "Gallery": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "js": { | |
| "galleryAuthToken": "", | |
| "$.fn.gallery_valign": "" | |
| }, | |
| "html": [ | |
| "<div id=\"gsNavBar\" class=\"gcBorder1\">", | |
| "<a href=\"http://gallery\\.sourceforge\\.net\"><img[^>]+Powered by Gallery\\s*(?:(?:v|Version)\\s*([0-9.]+))?\\;version:\\1" | |
| ], | |
| "icon": "Gallery.png", | |
| "website": "http://galleryproject.org/" | |
| }, | |
| "Gambio": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "gambio": "" | |
| }, | |
| "html": "(?:<link[^>]* href=\"templates/gambio/|<a[^>]content\\.php\\?coID=\\d|<!-- gambio eof -->|<!--[\\s=]+Shopsoftware by Gambio GmbH \\(c\\))", | |
| "icon": "Gambio.png", | |
| "implies": "PHP", | |
| "script": "gm_javascript\\.js\\.php", | |
| "website": "http://gambio.de" | |
| }, | |
| "Gatsby": { | |
| "cats": [ | |
| 57, | |
| 12 | |
| ], | |
| "html": [ | |
| "<div id=\"___gatsby\">", | |
| "<style id=\"gatsby-inlined-css\">" | |
| ], | |
| "icon": "Gatsby.svg", | |
| "implies": [ | |
| "React", | |
| "webpack" | |
| ], | |
| "website": "https://www.gatsbyjs.org/" | |
| }, | |
| "Gauges": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "_gauges": "" | |
| }, | |
| "cookies": { | |
| "_gauges_": "" | |
| }, | |
| "icon": "Gauges.png", | |
| "website": "https://get.gaug.es" | |
| }, | |
| "Gazelle": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "html": [ | |
| "<!-- Extra divs, for stylesheet developers to add imagery -->", | |
| "<link rel=\"alternate\" type=\"application/rss+xml\" href=\"[^\"]+\" title=\"[^\"]+ - Gazelle Change Log\"" | |
| ], | |
| "js": { | |
| "GazURL": "" | |
| }, | |
| "website": "https://whatcd.github.io/Gazelle/" | |
| }, | |
| "Genexus": { | |
| "cats": [ | |
| 18, | |
| 19 | |
| ], | |
| "icon": "genexus.png", | |
| "website": "https://www.genexus.com", | |
| "js": { | |
| "gx.evt": "" | |
| }, | |
| "html": "<[^>]+class=\"gxp-page\"", | |
| "script": "/gxp\\.js" | |
| }, | |
| "Gentoo": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "gentoo" | |
| }, | |
| "icon": "Gentoo.png", | |
| "website": "http://www.gentoo.org" | |
| }, | |
| "Gerrit": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "js": { | |
| "gerrit_ui": "", | |
| "Gerrit": "" | |
| }, | |
| "html": [ | |
| ">Gerrit Code Review</a>\\s*\"\\s*\\(([0-9.]+)\\)\\;version:\\1", | |
| "<(?:div|style) id=\"gerrit_" | |
| ], | |
| "icon": "gerrit.svg", | |
| "implies": [ | |
| "Java", | |
| "git" | |
| ], | |
| "meta": { | |
| "title": "^Gerrit Code Review$" | |
| }, | |
| "script": "^gerrit_ui/gerrit_ui", | |
| "website": "http://www.gerritcodereview.com" | |
| }, | |
| "Get Satisfaction": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "GSFN": "" | |
| }, | |
| "icon": "Get Satisfaction.png", | |
| "website": "https://getsatisfaction.com/corp/" | |
| }, | |
| "GetSimple CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "GetSimple CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "GetSimple" | |
| }, | |
| "website": "http://get-simple.info" | |
| }, | |
| "Ghost": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Ghost-Cache-Status": "" | |
| }, | |
| "icon": "Ghost.png", | |
| "implies": "Node.js", | |
| "meta": { | |
| "generator": "Ghost(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://ghost.org" | |
| }, | |
| "GitBook": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "icon": "GitBook.png", | |
| "meta": { | |
| "generator": "GitBook(?:.([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://gitbook.io" | |
| }, | |
| "GitHub Pages": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "url": "^https?://[^/]+\\.github\\.io/", | |
| "headers": { | |
| "Server": "^GitHub\\.com$", | |
| "X-GitHub-Request-Id": "" | |
| }, | |
| "icon": "GitHub.svg", | |
| "implies": "Ruby on Rails", | |
| "website": "https://pages.github.com/" | |
| }, | |
| "GitLab": { | |
| "cats": [ | |
| 13, | |
| 47 | |
| ], | |
| "js": { | |
| "GitLab": "", | |
| "gl.dashboardOptions": "" | |
| }, | |
| "cookies": { | |
| "_gitlab_session": "" | |
| }, | |
| "html": [ | |
| "<meta content=\"https?://[^/]+/assets/gitlab_logo-", | |
| "<header class=\"navbar navbar-fixed-top navbar-gitlab with-horizontal-nav\">" | |
| ], | |
| "icon": "GitLab.svg", | |
| "implies": "Ruby on Rails", | |
| "meta": { | |
| "og:site_name": "^GitLab$" | |
| }, | |
| "website": "https://about.gitlab.com" | |
| }, | |
| "GitLab CI": { | |
| "cats": [ | |
| 44, | |
| 47 | |
| ], | |
| "icon": "GitLab CI.png", | |
| "implies": "Ruby on Rails", | |
| "meta": { | |
| "description": "GitLab Continuous Integration" | |
| }, | |
| "website": "http://about.gitlab.com/gitlab-ci" | |
| }, | |
| "Gitiles": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "html": "Powered by <a href=\"https://gerrit\\.googlesource\\.com/gitiles/\">Gitiles<", | |
| "implies": [ | |
| "Java", | |
| "git" | |
| ], | |
| "website": "http://gerrit.googlesource.com/gitiles/" | |
| }, | |
| "GlassFish": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "GlassFish(?: Server)?(?: Open Source Edition)?(?: ?/?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "GlassFish.png", | |
| "implies": [ | |
| "Java" | |
| ], | |
| "website": "http://glassfish.java.net" | |
| }, | |
| "Glyphicons": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "html": "(?:<link[^>]* href=[^>]+glyphicons(?:\\.min)?\\.css|<img[^>]* src=[^>]+glyphicons)", | |
| "icon": "Glyphicons.png", | |
| "website": "http://glyphicons.com" | |
| }, | |
| "Go": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "Go.svg", | |
| "website": "https://golang.org" | |
| }, | |
| "GoAhead": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "GoAhead" | |
| }, | |
| "icon": "GoAhead.png", | |
| "website": "http://embedthis.com/products/goahead/index.html" | |
| }, | |
| "GoStats": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "_goStatsRun": "", | |
| "_go_track_src": "", | |
| "go_msie": "" | |
| }, | |
| "icon": "GoStats.png", | |
| "website": "http://gostats.com/" | |
| }, | |
| "Gogs": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "cookies": { | |
| "i_like_gogits": "" | |
| }, | |
| "html": [ | |
| "<div class=\"ui left\">\n\\s+© \\d{4} Gogs Version: ([\\d.]+) Page:\\;version:\\1", | |
| "<button class=\"ui basic clone button\" id=\"repo-clone-ssh\" data-link=\"gogs@" | |
| ], | |
| "icon": "gogs.png", | |
| "meta": { | |
| "keywords": "go, git, self-hosted, gogs" | |
| }, | |
| "script": "js/gogs\\.js", | |
| "website": "http://gogs.io" | |
| }, | |
| "Gitea": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "cookies": { | |
| "i_like_gitea": "" | |
| }, | |
| "html": [ | |
| "<div class=\"ui left\">\n\\s+© Gitea Version: ([\\d.]+)\\;version:\\1" | |
| ], | |
| "icon": "gitea.svg", | |
| "meta": { | |
| "keywords": "^go,git,self-hosted,gitea$" | |
| }, | |
| "website": "https://gitea.io" | |
| }, | |
| "Google AdSense": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "google_ad_": "", | |
| "__google_ad_urls": "", | |
| "Goog_AdSense_": "" | |
| }, | |
| "icon": "Google AdSense.svg", | |
| "script": [ | |
| "googlesyndication\\.com/", | |
| "ad\\.ca\\.doubleclick\\.net", | |
| "2mdn\\.net", | |
| "ad\\.ca\\.doubleclick\\.net" | |
| ], | |
| "website": "https://www.google.fr/adsense/start/" | |
| }, | |
| "Google Analytics": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "gaGlobal": "", | |
| "GoogleAnalyticsObject": "" | |
| }, | |
| "cookies": { | |
| "_ga": "", | |
| "_gat": "", | |
| "__utma": "" | |
| }, | |
| "icon": "Google Analytics.svg", | |
| "script": "google-analytics\\.com\\/(?:ga|urchin|(analytics))\\.js\\;version:\\1?UA:", | |
| "website": "http://google.com/analytics" | |
| }, | |
| "Google Analytics Enhanced eCommerce": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "gaplugins.EC": "" | |
| }, | |
| "icon": "Google Analytics.svg", | |
| "script": "google-analytics\\.com\\/plugins\\/ua\\/(?:ec|ecommerce)\\.js", | |
| "implies": "Google Analytics", | |
| "website": "https://developers.google.com/analytics/devguides/collection/analyticsjs/enhanced-ecommerce" | |
| }, | |
| "Google App Engine": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Google Frontend" | |
| }, | |
| "icon": "Google App Engine.png", | |
| "website": "http://code.google.com/appengine" | |
| }, | |
| "Google Charts": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "__googleVisualizationAbstractRendererElementsCount__": "", | |
| "__gvizguard__": "" | |
| }, | |
| "icon": "Google Charts.png", | |
| "website": "http://developers.google.com/chart/" | |
| }, | |
| "Google Code Prettify": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "prettyPrint": "" | |
| }, | |
| "icon": "Google.svg", | |
| "website": "http://code.google.com/p/google-code-prettify" | |
| }, | |
| "Google Font API": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "js": { | |
| "WebFonts": "" | |
| }, | |
| "html": "<link[^>]* href=[^>]+fonts\\.(?:googleapis|google)\\.com", | |
| "icon": "Google Font API.png", | |
| "script": "googleapis\\.com/.+webfont", | |
| "website": "http://google.com/fonts" | |
| }, | |
| "Google Maps": { | |
| "cats": [ | |
| 35 | |
| ], | |
| "icon": "Google Maps.png", | |
| "script": [ | |
| "(?:maps\\.google\\.com/maps\\?file=api(?:&v=([\\d.]+))?|maps\\.google\\.com/maps/api/staticmap)\\;version:API v\\1", | |
| "//maps\\.googleapis\\.com/maps/api/js" | |
| ], | |
| "website": "http://maps.google.com" | |
| }, | |
| "Google PageSpeed": { | |
| "cats": [ | |
| 23, | |
| 33 | |
| ], | |
| "headers": { | |
| "X-Mod-Pagespeed": "([\\d.]+)\\;version:\\1", | |
| "X-Page-Speed": "(.+)\\;version:\\1" | |
| }, | |
| "icon": "Google PageSpeed.png", | |
| "website": "http://developers.google.com/speed/pagespeed/mod" | |
| }, | |
| "Google Plus": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Google Plus.svg", | |
| "script": "apis\\.google\\.com/js/[a-z]*\\.js", | |
| "website": "http://plus.google.com" | |
| }, | |
| "Google Search Appliance": { | |
| "cats": [ | |
| 22, | |
| 29 | |
| ], | |
| "headers": { | |
| "Server": "^Google\\sSearch\\sAppliance$" | |
| }, | |
| "icon": "Google Search Appliance.png", | |
| "website": "https://enterprise.google.com/search" | |
| }, | |
| "Google Sites": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Google Sites.png", | |
| "url": "^https?://sites\\.google\\.com", | |
| "website": "http://sites.google.com" | |
| }, | |
| "Google Tag Manager": { | |
| "cats": [ | |
| 42 | |
| ], | |
| "js": { | |
| "googletag": "", | |
| "google_tag_manager": "" | |
| }, | |
| "html": [ | |
| "googletagmanager\\.com/ns\\.html[^>]+></iframe>", | |
| "<!-- (?:End )?Google Tag Manager -->" | |
| ], | |
| "icon": "Google Tag Manager.png", | |
| "website": "http://www.google.com/tagmanager" | |
| }, | |
| "Google Wallet": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "icon": "Google Wallet.png", | |
| "script": [ | |
| "checkout\\.google\\.com", | |
| "wallet\\.google\\.com" | |
| ], | |
| "website": "http://wallet.google.com" | |
| }, | |
| "Google Web Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "gws" | |
| }, | |
| "icon": "Google.svg", | |
| "website": "http://en.wikipedia.org/wiki/Google_Web_Server" | |
| }, | |
| "Google Web Toolkit": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "__gwt_": "" | |
| }, | |
| "icon": "Google Web Toolkit.png", | |
| "implies": "Java", | |
| "meta": { | |
| "gwt:property": "" | |
| }, | |
| "website": "http://developers.google.com/web-toolkit" | |
| }, | |
| "Graffiti CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "graffitibot": "" | |
| }, | |
| "icon": "Graffiti CMS.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "Graffiti CMS ([^\"]+)\\;version:\\1" | |
| }, | |
| "script": "/graffiti\\.js", | |
| "website": "http://graffiticms.codeplex.com" | |
| }, | |
| "Grandstream": { | |
| "cats": [ | |
| 22, | |
| 39 | |
| ], | |
| "headers": { | |
| "Server": "Grandstream\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Grandstream.png", | |
| "website": "http://www.grandstream.com" | |
| }, | |
| "Grav": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Grav.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "GravCMS(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://getgrav.org" | |
| }, | |
| "Gravatar": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "Gravatar": "" | |
| }, | |
| "html": "<[^>]+gravatar\\.com/avatar/", | |
| "icon": "Gravatar.png", | |
| "website": "http://gravatar.com" | |
| }, | |
| "Gravity Forms": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": [ | |
| "<div class=(?:\"|')[^>]*gform_wrapper", | |
| "<div class=(?:\"|')[^>]*gform_body", | |
| "<ul [^>]*class=(?:\"|')[^>]*gform_fields", | |
| "<link [^>]*href=(?:\"|')[^>]*wp-content/plugins/gravityforms/css/" | |
| ], | |
| "script": "/wp-content/plugins/gravityforms/js/[^/]+\\.js\\?ver=([\\d.]+)$\\;version:\\1", | |
| "icon": "gravityforms.svg", | |
| "implies": "WordPress", | |
| "website": "http://gravityforms.com" | |
| }, | |
| "Gravity Insights": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "gravityInsightsParams": "" | |
| }, | |
| "icon": "Gravity Insights.png", | |
| "website": "http://insights.gravity.com" | |
| }, | |
| "Green Valley CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<img[^>]+/dsresource\\?objectid=", | |
| "icon": "Green Valley CMS.png", | |
| "implies": "Apache Tomcat", | |
| "meta": { | |
| "DC.identifier": "/content\\.jsp\\?objectid=" | |
| }, | |
| "website": "http://www.greenvalley.nl/Public/Producten/Content_Management/CMS" | |
| }, | |
| "HERE": { | |
| "cats": [ | |
| 35 | |
| ], | |
| "icon": "HERE.png", | |
| "script": "https?://js\\.cit\\.api\\.here\\.com/se/([\\d.]+)\\/\\;version:\\1", | |
| "website": "http://developer.here.com" | |
| }, | |
| "HHVM": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "HHVM/?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "icon": "HHVM.png", | |
| "implies": "PHP\\;confidence:75", | |
| "website": "http://hhvm.com" | |
| }, | |
| "HP": { | |
| "cats": [ | |
| 40 | |
| ], | |
| "icon": "HP.svg", | |
| "website": "http://hp.com" | |
| }, | |
| "HP ChaiServer": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "HP-Chai(?:Server|SOE)(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "HP.svg", | |
| "implies": "HP", | |
| "website": "http://hp.com" | |
| }, | |
| "HP Compact Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "HP_Compact_Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "HP.svg", | |
| "website": "http://hp.com" | |
| }, | |
| "HP ProCurve": { | |
| "cats": [ | |
| 37 | |
| ], | |
| "icon": "HP.svg", | |
| "website": "http://hp.com/networking" | |
| }, | |
| "HP System Management": { | |
| "cats": [ | |
| 46 | |
| ], | |
| "headers": { | |
| "Server": "HP System Management" | |
| }, | |
| "icon": "HP.svg", | |
| "website": "http://hp.com" | |
| }, | |
| "HP iLO": { | |
| "cats": [ | |
| 22, | |
| 46 | |
| ], | |
| "headers": { | |
| "Server": "HP-iLO-Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "HP.svg", | |
| "website": "http://hp.com" | |
| }, | |
| "HTTP Kit": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^http-kit" | |
| }, | |
| "implies": "Java", | |
| "website": "http://http-kit.org" | |
| }, | |
| "HTTP-Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "(?:^|[^-])\bHTTP-Server(?: ?/?V?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "HTTP/2": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "excludes": "SPDY", | |
| "headers": { | |
| "X-Firefox-Spdy": "h2" | |
| }, | |
| "icon": "http2.png", | |
| "website": "http://http2.github.io" | |
| }, | |
| "Haddock": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": "<p>Produced by <a href=\"http://www\\.haskell\\.org/haddock/\">Haddock</a> version ([0-9.]+)</p>\\;version:\\1", | |
| "script": "haddock-util\\.js", | |
| "website": "http://www.haskell.org/haddock/" | |
| }, | |
| "Hammer.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Hammer": "", | |
| "Hammer.VERSION": "(.*)\\;version:\\1", | |
| "Ha.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Hammer.js.png", | |
| "script": "hammer(?:\\.min)?\\.js", | |
| "website": "https://hammerjs.github.io" | |
| }, | |
| "Handlebars": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Handlebars": "", | |
| "Handlebars.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<[^>]*type=[^>]text\\/x-handlebars-template", | |
| "icon": "Handlebars.png", | |
| "script": "handlebars(?:\\.runtime)?(?:-v([\\d.]+?))?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "http://handlebarsjs.com" | |
| }, | |
| "Happy ICS Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Happy ICS Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "implies": "OmniTouch 8660 My Teamwork", | |
| "website": "http://example.com" | |
| }, | |
| "Haravan": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Haravan": "" | |
| }, | |
| "icon": "Haravan.png", | |
| "script": "haravan.*\\.js", | |
| "website": "https://www.haravan.com" | |
| }, | |
| "Haskell": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "Haskell.png", | |
| "website": "http://wiki.haskell.org/Haskell" | |
| }, | |
| "HeadJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "head.browser.name": "" | |
| }, | |
| "html": "<[^>]*data-headjs-load", | |
| "icon": "HeadJS.png", | |
| "script": "head\\.(?:core|load)(?:\\.min)?\\.js", | |
| "website": "http://headjs.com" | |
| }, | |
| "Heap": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "heap": "" | |
| }, | |
| "icon": "Heap.png", | |
| "script": "heap-\\d+\\.js", | |
| "website": "http://heapanalytics.com" | |
| }, | |
| "Hello Bar": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "HelloBar": "" | |
| }, | |
| "icon": "Hello Bar.png", | |
| "script": "hellobar\\.js", | |
| "website": "http://hellobar.com" | |
| }, | |
| "Hexo": { | |
| "cats": [ | |
| 57 | |
| ], | |
| "icon": "Hexo.png", | |
| "html": [ | |
| "Powered by <a href=\"https?://hexo\\.io/?\"[^>]*>Hexo</" | |
| ], | |
| "meta": { | |
| "generator": "Hexo(?: v?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "https://hexo.io" | |
| }, | |
| "Hiawatha": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Hiawatha v([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Hiawatha.png", | |
| "website": "http://hiawatha-webserver.org" | |
| }, | |
| "Highcharts": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Highcharts": "", | |
| "Highcharts.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<svg[^>]*><desc>Created with Highcharts ([\\d.]*)\\;version:\\1", | |
| "icon": "Highcharts.png", | |
| "script": "highcharts.*\\.js", | |
| "website": "https://www.highcharts.com" | |
| }, | |
| "Highlight.js": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "hljs.listLanguages": "" | |
| }, | |
| "icon": "Highlight.js.png", | |
| "script": "/(?:([\\d.])+/)?highlight(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://highlightjs.org/" | |
| }, | |
| "Highstock": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "html": "<svg[^>]*><desc>Created with Highstock ([\\d.]*)\\;version:\\1", | |
| "icon": "Highcharts.png", | |
| "script": "highstock(?:\\-|\\.)?([\\d\\.]*\\d).*\\.js\\;version:\\1", | |
| "website": "http://highcharts.com/products/highstock" | |
| }, | |
| "Hippo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+/binaries/(?:[^/]+/)*content/gallery/", | |
| "icon": "Hippo.png", | |
| "website": "http://onehippo.org" | |
| }, | |
| "Hogan.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Hogan": "" | |
| }, | |
| "icon": "Hogan.js.png", | |
| "script": [ | |
| "hogan-(?:-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "([\\d.]+)/hogan(?:\\.min)?\\.js\\;version:\\1" | |
| ], | |
| "website": "https://twitter.github.io/hogan.js/" | |
| }, | |
| "Homeland": { | |
| "cats": [ | |
| 1, | |
| 2 | |
| ], | |
| "cookies": { | |
| "_homeland_": "" | |
| }, | |
| "icon": "Homeland.png", | |
| "implies": "Ruby on Rails", | |
| "website": "https://gethomeland.com" | |
| }, | |
| "Hotaru CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "hotaru_mobile": "" | |
| }, | |
| "icon": "Hotaru CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Hotaru CMS" | |
| }, | |
| "website": "http://hotarucms.org" | |
| }, | |
| "Hotjar": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "HotLeadfactory": "", | |
| "HotleadController": "", | |
| "hj.apiUrlBase": "" | |
| }, | |
| "icon": "Hotjar.png", | |
| "script": "^//static\\.hotjar\\.com/c/hotjar-", | |
| "website": "https://www.hotjar.com" | |
| }, | |
| "HubSpot": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "_hsq": "", | |
| "hubspot": "" | |
| }, | |
| "html": "<!-- Start of Async HubSpot", | |
| "icon": "HubSpot.png", | |
| "website": "https://www.hubspot.com" | |
| }, | |
| "Hugo": { | |
| "cats": [ | |
| 57 | |
| ], | |
| "icon": "Hugo.png", | |
| "meta": { | |
| "generator": "Hugo ([\\d.]+)?\\;version:\\1" | |
| }, | |
| "html": "powered by <a [^>]*href=\"http://hugo.spf13.com", | |
| "website": "http://gohugo.io" | |
| }, | |
| "Hybris": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "_hybris": "" | |
| }, | |
| "html": "<[^>]+/(?:sys_master|hybr|_ui/(?:responsive/)?(?:desktop|common(?:/images|/img)?))/", | |
| "icon": "Hybris.png", | |
| "implies": "Java", | |
| "website": "https://hybris.com" | |
| }, | |
| "IBM Coremetrics": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "IBM.svg", | |
| "script": "cmdatatagutils\\.js", | |
| "website": "http://ibm.com/software/marketing-solutions/coremetrics" | |
| }, | |
| "IBM HTTP Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "IBM_HTTP_Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "IBM.svg", | |
| "website": "http://ibm.com/software/webservers/httpservers" | |
| }, | |
| "IBM Tivoli Storage Manager": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "TSM_HTTP(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "IBM.svg", | |
| "website": "http://ibm.com" | |
| }, | |
| "IBM WebSphere Commerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "href=\"(?:\\/|[^>]+)webapp\\/wcs\\/", | |
| "icon": "IBM.svg", | |
| "implies": "Java", | |
| "url": "/wcs/", | |
| "website": "http://ibm.com/software/genservers/commerceproductline" | |
| }, | |
| "IBM WebSphere Portal": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "IBM-Web2-Location": "", | |
| "Itx-Generated-Timestamp": "" | |
| }, | |
| "icon": "IBM.svg", | |
| "implies": "Java", | |
| "url": "/wps/", | |
| "website": "http://ibm.com/software/websphere/portal" | |
| }, | |
| "Ideasoft": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Ideasoft.png", | |
| "script": [ | |
| "\\.myideasoft\\.com/" | |
| ], | |
| "website": "https://www.ideasoft.com" | |
| }, | |
| "IIS": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "IIS(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "IIS.png", | |
| "implies": "Windows Server", | |
| "website": "http://www.iis.net" | |
| }, | |
| "Includable": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Includable-Version": "" | |
| }, | |
| "icon": "Includable.svg", | |
| "website": "http://includable.com" | |
| }, | |
| "INFOnline": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "szmvars": "", | |
| "iam_data": "" | |
| }, | |
| "icon": "INFOnline.png", | |
| "script": "^https?://(?:[^/]+\\.)?i(?:oam|v)wbox\\.de/", | |
| "website": "https://www.infonline.de" | |
| }, | |
| "IPB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "cookies": { | |
| "ipbWWLsession_id": "", | |
| "ipbWWLmodpids": "" | |
| }, | |
| "js": { | |
| "IPBoard": "", | |
| "ipb_var": "", | |
| "ipsSettings": "" | |
| }, | |
| "html": "<link[^>]+ipb_[^>]+\\.css", | |
| "icon": "IPB.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "script": "jscripts/ips_", | |
| "website": "https://invisioncommunity.com/" | |
| }, | |
| "Immutable.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Immutable": "", | |
| "Immutable.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Immutable.js.png", | |
| "script": "^immutable\\.(?:min\\.)?js$", | |
| "website": "https://facebook.github.io/immutable-js/" | |
| }, | |
| "imperia CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "meta": { | |
| "X-Imperia-Live-Info": "", | |
| "GENERATOR": "^IMPERIA ([0-9.]{2,})+$\\;version:\\1" | |
| }, | |
| "html": "<imp:live-info sysid=\"[0-9a-f-]+\"(?: node_id=\"[0-9/]*\")? *\\/>", | |
| "icon": "imperiaCMS.svg", | |
| "implies": "Perl", | |
| "url": "imperia/md/", | |
| "website": "https://www.pirobase-imperia.com/de/produkte/produktuebersicht/imperia-cms" | |
| }, | |
| "ImpressCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "ICMSSession": "", | |
| "ImpressCMS": "" | |
| }, | |
| "icon": "ImpressCMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "ImpressCMS" | |
| }, | |
| "script": "include/linkexternal\\.js", | |
| "website": "http://www.impresscms.org" | |
| }, | |
| "ImpressPages": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "ImpressPages.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "ImpressPages(?: CMS)?( [\\d.]*)\\;version:\\1" | |
| }, | |
| "website": "http://impresspages.org" | |
| }, | |
| "InProces": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!-- CSS InProces Portaal default -->", | |
| "icon": "InProces.png", | |
| "script": "brein/inproces/website/websitefuncties\\.js", | |
| "website": "http://www.brein.nl/oplossing/product/website" | |
| }, | |
| "Incapsula": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "X-CDN": "Incapsula" | |
| }, | |
| "icon": "Incapsula.png", | |
| "website": "http://www.incapsula.com" | |
| }, | |
| "Indexhibit": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<(?:link|a href) [^>]+ndxz-studio", | |
| "implies": [ | |
| "PHP", | |
| "Apache", | |
| "Exhibit" | |
| ], | |
| "meta": { | |
| "generator": "Indexhibit" | |
| }, | |
| "website": "http://www.indexhibit.org" | |
| }, | |
| "Indico": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "MAKACSESSION": "" | |
| }, | |
| "html": "Powered by\\s+(?:CERN )?<a href=\"http://(?:cdsware\\.cern\\.ch/indico/|indico-software\\.org|cern\\.ch/indico)\">(?:CDS )?Indico( [\\d\\.]+)?\\;version:\\1", | |
| "icon": "Indico.png", | |
| "website": "http://indico-software.org" | |
| }, | |
| "Indy": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Indy(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://indyproject.org" | |
| }, | |
| "InfernoJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Inferno": "", | |
| "Inferno.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "InfernoJS.png", | |
| "website": "https://infernojs.org" | |
| }, | |
| "Infusionsoft": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "html": [ | |
| "<input [^>]*name=\"infusionsoft_version\" [^>]*value=\"([^>]*)\" [^>]*\\/>\\;version:\\1", | |
| "<input [^>]*value=\"([^>]*)\" [^>]*name=\"infusionsoft_version\" [^>]*\\/>\\;version:\\1" | |
| ], | |
| "icon": "infusionsoft.svg", | |
| "website": "http://infusionsoft.com" | |
| }, | |
| "InstantCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "InstantCMS[logdate]": "" | |
| }, | |
| "icon": "InstantCMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "InstantCMS" | |
| }, | |
| "website": "http://www.instantcms.ru" | |
| }, | |
| "Intel Active Management Technology": { | |
| "cats": [ | |
| 22, | |
| 46 | |
| ], | |
| "headers": { | |
| "Server": "Intel\\(R\\) Active Management Technology(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Intel Active Management Technology.png", | |
| "website": "http://intel.com" | |
| }, | |
| "IntenseDebate": { | |
| "cats": [ | |
| 15 | |
| ], | |
| "icon": "IntenseDebate.png", | |
| "script": "intensedebate\\.com", | |
| "website": "http://intensedebate.com" | |
| }, | |
| "Intercom": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "Intercom": "" | |
| }, | |
| "icon": "Intercom.png", | |
| "script": "(?:api\\.intercom\\.io/api|static\\.intercomcdn\\.com/intercom\\.v1)", | |
| "website": "https://www.intercom.com" | |
| }, | |
| "Intershop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Intershop.png", | |
| "script": "(?:is-bin|INTERSHOP)", | |
| "website": "http://intershop.com" | |
| }, | |
| "INTI": { | |
| "cats": [ | |
| 6, | |
| 53 | |
| ], | |
| "icon": "byINTI.svg", | |
| "url": "^https?//.+\\.byinti\\.com", | |
| "website": "http://byinti.com" | |
| }, | |
| "Invenio": { | |
| "cats": [ | |
| 50 | |
| ], | |
| "cookies": { | |
| "INVENIOSESSION": "" | |
| }, | |
| "html": "(?:Powered by|System)\\s+(?:CERN )?<a (?:class=\"footer\" )?href=\"http://(?:cdsware\\.cern\\.ch(?:/invenio)?|invenio-software\\.org|cern\\.ch/invenio)(?:/)?\">(?:CDS )?Invenio</a>\\s*v?([\\d\\.]+)?\\;version:\\1", | |
| "icon": "Invenio.png", | |
| "website": "http://invenio-software.org" | |
| }, | |
| "Inwemo": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "Inwemo": "" | |
| }, | |
| "script": "https?://cdn\\.inwemo\\.com/inwemo\\.min\\.js", | |
| "icon": "inwemo.png", | |
| "website": "https://inwemo.com/" | |
| }, | |
| "Ionicons": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "html": "<link[^>]* href=[^>]+ionicons(?:\\.min)?\\.css", | |
| "icon": "Ionicons.png", | |
| "website": "http://ionicons.com" | |
| }, | |
| "ip-label": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "script": "clobs\\.js", | |
| "js": { | |
| "clobs": "" | |
| }, | |
| "icon": "iplabel.svg", | |
| "website": "http://www.ip-label.com" | |
| }, | |
| "JAlbum": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "icon": "JAlbum.png", | |
| "implies": "Java", | |
| "meta": { | |
| "generator": "JAlbum( [\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://jalbum.net/en" | |
| }, | |
| "JBoss Application Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "JBoss(?:-([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "JBoss Application Server.png", | |
| "website": "http://jboss.org/jbossas.html" | |
| }, | |
| "JBoss Web": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "excludes": "Apache Tomcat", | |
| "headers": { | |
| "X-Powered-By": "JBossWeb(?:-([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "JBoss Web.png", | |
| "implies": "JBoss Application Server", | |
| "website": "http://jboss.org/jbossweb" | |
| }, | |
| "JC-HTTPD": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "excludes": "Apache", | |
| "headers": { | |
| "Server": "JC-HTTPD(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "JC-HTTPD.png", | |
| "implies": "Canon", | |
| "website": "http://canon.com" | |
| }, | |
| "JET Enterprise": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "powered": "jet-enterprise" | |
| }, | |
| "icon": "JET Enterprise.svg", | |
| "website": "http://www.jetecommerce.com.br/" | |
| }, | |
| "JS Charts": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "JSChart": "" | |
| }, | |
| "icon": "JS Charts.png", | |
| "script": "jscharts.*\\.js", | |
| "website": "http://www.jscharts.com" | |
| }, | |
| "JTL Shop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "JTLSHOP": "" | |
| }, | |
| "html": "(?:<input[^>]+name=\"JTLSHOP|<a href=\"jtl\\.php)", | |
| "icon": "JTL Shop.png", | |
| "website": "http://www.jtl-software.de/produkte/jtl-shop3" | |
| }, | |
| "Jalios": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Jalios.png", | |
| "meta": { | |
| "generator": "Jalios" | |
| }, | |
| "website": "http://www.jalios.com" | |
| }, | |
| "Jahia DX": { | |
| "cats": [ | |
| 1, | |
| 47 | |
| ], | |
| "html": "<script id=\"staticAssetAggregatedJavascrip", | |
| "icon": "JahiaDX.svg", | |
| "website": "http://www.jahia.com/dx" | |
| }, | |
| "Java": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "cookies": { | |
| "JSESSIONID": "" | |
| }, | |
| "icon": "Java.png", | |
| "website": "http://java.com" | |
| }, | |
| "Java Servlet": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Servlet(?:.([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Java.png", | |
| "implies": "Java", | |
| "website": "http://www.oracle.com/technetwork/java/index-jsp-135475.html" | |
| }, | |
| "JavaScript Infovis Toolkit": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "$jit": "", | |
| "$jit.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "JavaScript Infovis Toolkit.png", | |
| "script": "jit(?:-yc)?\\.js", | |
| "website": "https://philogb.github.io/jit/" | |
| }, | |
| "JavaServer Faces": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "JSF(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "JavaServer Faces.png", | |
| "implies": "Java", | |
| "website": "http://javaserverfaces.java.net" | |
| }, | |
| "JavaServer Pages": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "JSP(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Java.png", | |
| "implies": "Java", | |
| "website": "http://www.oracle.com/technetwork/java/javaee/jsp/index.html" | |
| }, | |
| "Jekyll": { | |
| "cats": [ | |
| 57 | |
| ], | |
| "icon": "Jekyll.png", | |
| "html": [ | |
| "Powered by <a href=\"https?://jekyllrb\\.com\"[^>]*>Jekyll</", | |
| "<!-- Created with Jekyll Now -", | |
| "<!-- Begin Jekyll SEO tag" | |
| ], | |
| "meta": { | |
| "generator": "Jekyll (v[\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://jekyllrb.com" | |
| }, | |
| "Jenkins": { | |
| "cats": [ | |
| 44 | |
| ], | |
| "headers": { | |
| "X-Jenkins": "([\\d\\.]+)\\;version:\\1" | |
| }, | |
| "icon": "Jenkins.png", | |
| "implies": "Java", | |
| "website": "http://jenkins-ci.org" | |
| }, | |
| "Jetty": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Jetty(?:\\(([\\d\\.]*\\d+))?\\;version:\\1" | |
| }, | |
| "icon": "Jetty.png", | |
| "implies": "Java", | |
| "website": "http://www.eclipse.org/jetty" | |
| }, | |
| "Jimdo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "jimdo_Data": "", | |
| "jimdoData": "" | |
| }, | |
| "headers": { | |
| "X-Jimdo-Instance": "", | |
| "X-Jimdo-Wid": "" | |
| }, | |
| "icon": "jimdo.png", | |
| "website": "https://www.jimdo.com" | |
| }, | |
| "Jirafe": { | |
| "cats": [ | |
| 10, | |
| 32 | |
| ], | |
| "js": { | |
| "jirafe": "" | |
| }, | |
| "icon": "Jirafe.png", | |
| "script": "/jirafe\\.js", | |
| "website": "https://docs.jirafe.com" | |
| }, | |
| "Jive": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "X-JIVE-USER-ID": "", | |
| "X-JSL": "", | |
| "X-Jive-Flow-Id": "", | |
| "X-Jive-Request-Id": "", | |
| "x-jive-chrome-wrapped": "" | |
| }, | |
| "icon": "Jive.png", | |
| "website": "http://www.jivesoftware.com" | |
| }, | |
| "JobberBase": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "Jobber": "" | |
| }, | |
| "icon": "JobberBase.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Jobberbase" | |
| }, | |
| "website": "http://www.jobberbase.com" | |
| }, | |
| "Joomla": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "jcomments": "", | |
| "Joomla": "" | |
| }, | |
| "headers": { | |
| "X-Content-Encoded-By": "Joomla! ([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "(?:<div[^>]+id=\"wrapper_r\"|<(?:link|script)[^>]+(?:feed|components)/com_|<table[^>]+class=\"pill)\\;confidence:50", | |
| "icon": "Joomla.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Joomla!(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "url": "option=com_", | |
| "website": "https://www.joomla.org" | |
| }, | |
| "JSEcoin": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "jseMine": "" | |
| }, | |
| "script": "^(?:https):?//load\\.jsecoin\\.com/server/load/", | |
| "icon": "JSEcoin.png", | |
| "website": "https://jsecoin.com/" | |
| }, | |
| "K2": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "K2RatingURL": "" | |
| }, | |
| "html": "<!--(?: JoomlaWorks \"K2\"| Start K2)", | |
| "icon": "K2.png", | |
| "implies": "Joomla", | |
| "website": "https://getk2.org" | |
| }, | |
| "KISSmetrics": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "KM_COOKIE_DOMAIN": "" | |
| }, | |
| "icon": "KISSmetrics.png", | |
| "website": "https://www.kissmetrics.com" | |
| }, | |
| "KS_HTTP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "KS_HTTP\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "KS_HTTP.png", | |
| "implies": "Canon", | |
| "website": "http://www.canon.com" | |
| }, | |
| "Kajabi": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Kajabi": "" | |
| }, | |
| "cookies": { | |
| "_kjb_session": "" | |
| }, | |
| "icon": "Kajabi.svg", | |
| "website": "https://newkajabi.com" | |
| }, | |
| "Kampyle": { | |
| "cats": [ | |
| 10, | |
| 13 | |
| ], | |
| "js": { | |
| "kampyle": "", | |
| "k_track": "", | |
| "KAMPYLE_COMMON": "" | |
| }, | |
| "cookies": { | |
| "k_visit": "" | |
| }, | |
| "icon": "Kampyle.png", | |
| "script": "cf\\.kampyle\\.com/k_button\\.js", | |
| "website": "http://www.kampyle.com" | |
| }, | |
| "Kamva": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Kamva": "" | |
| }, | |
| "icon": "Kamva.svg", | |
| "meta": { | |
| "generator": "[CK]amva" | |
| }, | |
| "script": "cdn\\.mykamva\\.ir", | |
| "website": "https://kamva.ir" | |
| }, | |
| "Hinza Advanced CMS": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "icon": "hinza_advanced_cms.svg", | |
| "meta": { | |
| "generator": "hinzacms" | |
| }, | |
| "implies": "Laravel", | |
| "website": "http://hinzaco.com" | |
| }, | |
| "Kendo UI": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "kendo": "", | |
| "kendo.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<link[^>]*\\s+href=[^>]*styles/kendo\\.common(?:\\.min)?\\.css[^>]*/>", | |
| "icon": "Kendo UI.png", | |
| "implies": "jQuery", | |
| "website": "https://www.telerik.com/kendo-ui" | |
| }, | |
| "Kentico CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "CMSPreferredCulture": "" | |
| }, | |
| "icon": "Kentico CMS.png", | |
| "meta": { | |
| "generator": "Kentico CMS ([\\d.R]+ \\(build [\\d.]+\\))\\;version:\\1" | |
| }, | |
| "website": "http://www.kentico.com" | |
| }, | |
| "KeyCDN": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "^keycdn-engine$" | |
| }, | |
| "icon": "KeyCDN.png", | |
| "website": "http://www.keycdn.com" | |
| }, | |
| "Kemal": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Kemal" | |
| }, | |
| "icon": "kemalcr.png", | |
| "website": "http://kemalcr.com" | |
| }, | |
| "Kibana": { | |
| "cats": [ | |
| 29, | |
| 25 | |
| ], | |
| "headers": { | |
| "kbn-name": "kibana", | |
| "kbn-version": "^([\\d.]+)$\\;version:\\1" | |
| }, | |
| "html": "<title>Kibana</title>", | |
| "icon": "kibana.svg", | |
| "implies": "Node.js", | |
| "url": "kibana#/dashboard/", | |
| "website": "http://www.elastic.co/products/kibana" | |
| }, | |
| "KineticJS": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Kinetic": "", | |
| "Kinetic.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "KineticJS.png", | |
| "script": "kinetic(?:-v?([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://github.com/ericdrowell/KineticJS/" | |
| }, | |
| "Klarna Checkout": { | |
| "cats": [ | |
| 41, | |
| 6, | |
| 5 | |
| ], | |
| "js": { | |
| "_klarnaCheckout": "" | |
| }, | |
| "icon": "Klarna.svg", | |
| "website": "https://www.klarna.com/international/" | |
| }, | |
| "Knockout.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "ko.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Knockout.js.png", | |
| "website": "http://knockoutjs.com" | |
| }, | |
| "Koa": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^koa$" | |
| }, | |
| "icon": "Koa.png", | |
| "implies": "Node.js", | |
| "website": "http://koajs.com" | |
| }, | |
| "Koala Framework": { | |
| "cats": [ | |
| 1, | |
| 18 | |
| ], | |
| "html": "<!--[^>]+This website is powered by Koala Web Framework CMS", | |
| "icon": "Koala Framework.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^Koala Web Framework CMS" | |
| }, | |
| "website": "http://koala-framework.org" | |
| }, | |
| "KobiMaster": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Kobimaster.png", | |
| "implies": "Microsoft ASP.NET", | |
| "js": { | |
| "kmPageInfo": "", | |
| "kmGetSession": "" | |
| }, | |
| "website": "https://www.kobimaster.com.tr" | |
| }, | |
| "Koha": { | |
| "cats": [ | |
| 21 | |
| ], | |
| "meta": { | |
| "generator": "^Koha ([\\d.]+)$\\;version:\\1" | |
| }, | |
| "js": { | |
| "KOHA": "" | |
| }, | |
| "html": [ | |
| "<input name=\"koha_login_context\" value=\"intranet\" type=\"hidden\">", | |
| "<a href=\"/cgi-bin/koha/" | |
| ], | |
| "icon": "koha.png", | |
| "implies": "Perl", | |
| "website": "https://koha-community.org/" | |
| }, | |
| "Kohana": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "kohanasession": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "Kohana Framework ([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Kohana.png", | |
| "implies": "PHP", | |
| "website": "http://kohanaframework.org" | |
| }, | |
| "Koken": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "koken_referrer": "" | |
| }, | |
| "html": [ | |
| "<html lang=\"en\" class=\"k-source-essays k-lens-essays\">", | |
| "<!--\\s+KOKEN DEBUGGING" | |
| ], | |
| "icon": "Koken.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "meta": { | |
| "generator": "Koken ([\\d.]+)\\;version:\\1" | |
| }, | |
| "script": "koken(?:\\.js\\?([\\d.]+)|/storage)\\;version:\\1", | |
| "website": "http://koken.me" | |
| }, | |
| "Kolibri CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Kolibri" | |
| }, | |
| "meta": { | |
| "generator": "Kolibri" | |
| }, | |
| "website": "http://alias.io" | |
| }, | |
| "Komodo CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Komodo CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^Komodo CMS" | |
| }, | |
| "website": "http://www.komodocms.com" | |
| }, | |
| "Kontaktify": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Kontaktify.png", | |
| "script": "//(?:www\\.)?kontaktify\\.com/embed\\.js", | |
| "website": "https://www.kontaktify.com" | |
| }, | |
| "Koobi": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!--[^K>-]+Koobi ([a-z\\d.]+)\\;version:\\1", | |
| "icon": "Koobi.png", | |
| "meta": { | |
| "generator": "Koobi" | |
| }, | |
| "website": "http://dream4.de/cms" | |
| }, | |
| "Kooboo CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-KoobooCMS-Version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Kooboo CMS.png", | |
| "implies": "Microsoft ASP.NET", | |
| "script": "/Kooboo", | |
| "website": "http://kooboo.com" | |
| }, | |
| "Kotisivukone": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Kotisivukone.png", | |
| "script": "kotisivukone(?:\\.min)?\\.js", | |
| "website": "http://www.kotisivukone.fi" | |
| }, | |
| "LEPTON": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "LEPTON.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "LEPTON" | |
| }, | |
| "website": "http://www.lepton-cms.org" | |
| }, | |
| "LabVIEW": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "LabVIEW(?:/([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "LabVIEW.png", | |
| "website": "http://ni.com/labview" | |
| }, | |
| "Laravel": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "laravel_session": "" | |
| }, | |
| "icon": "Laravel.png", | |
| "implies": "PHP", | |
| "website": "http://laravel.com" | |
| }, | |
| "Laterpay": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "meta": { | |
| "laterpay:connector:callbacks:on_user_has_access": "deobfuscateText" | |
| }, | |
| "script": "https?://connectormwi\\.laterpay\\.net/([0-9.]+)[a-zA-z\\-]*/live/[\\w-]+\\.js\\;version:\\1", | |
| "icon": "laterpay.png", | |
| "website": "https://www.laterpay.net/" | |
| }, | |
| "MYPAGE Platform": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "cookies": { | |
| "botble_session": "" | |
| }, | |
| "icon": "mypage-platform.png", | |
| "implies": "Laravel", | |
| "website": "https://www.mypage.vn" | |
| }, | |
| "Lazy.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "script": "lazy(?:\\.browser)?(?:\\.min)?\\.js", | |
| "website": "http://danieltao.com/lazy.js" | |
| }, | |
| "Leaflet": { | |
| "cats": [ | |
| 35 | |
| ], | |
| "js": { | |
| "L.version": "(.*)\\;version:\\1\\;confidence:0", | |
| "L.PosAnimation": "", | |
| "L.DistanceGrid": "" | |
| }, | |
| "icon": "Leaflet.png", | |
| "script": "leaflet.*\\.js", | |
| "website": "http://leafletjs.com" | |
| }, | |
| "Less": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<link[^>]+ rel=\"stylesheet/less\"", | |
| "icon": "Less.png", | |
| "website": "http://lesscss.org" | |
| }, | |
| "Liferay": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Liferay": "" | |
| }, | |
| "headers": { | |
| "Liferay-Portal": "[a-z\\s]+([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Liferay.png", | |
| "website": "https://www.liferay.com" | |
| }, | |
| "Lift": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Lift-Version": "(.+)\\;version:\\1" | |
| }, | |
| "icon": "Lift.png", | |
| "implies": "Scala", | |
| "website": "http://liftweb.net" | |
| }, | |
| "LightMon Engine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "lm_online": "" | |
| }, | |
| "html": "<!-- Lightmon Engine Copyright Lightmon", | |
| "icon": "LightMon Engine.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "LightMon Engine" | |
| }, | |
| "website": "http://lightmon.ru" | |
| }, | |
| "Lightbox": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<link [^>]*href=\"[^\"]+lightbox(?:\\.min)?\\.css", | |
| "icon": "Lightbox.png", | |
| "script": "lightbox.*\\.js", | |
| "website": "http://lokeshdhakar.com/projects/lightbox2/" | |
| }, | |
| "Lightspeed eCom": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<!-- \\[START\\] 'blocks/head\\.rain' -->", | |
| "icon": "Lightspeed.svg", | |
| "script": "http://assets\\.webshopapp\\.com", | |
| "url": "seoshop.webshopapp.com", | |
| "website": "http://www.lightspeedhq.com/products/ecommerce/" | |
| }, | |
| "Lighty": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "lighty_version": "" | |
| }, | |
| "icon": "Lighty.png", | |
| "implies": "PHP", | |
| "website": "http://gitlab.com/lighty/framework" | |
| }, | |
| "LimeSurvey": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "generator": "LimeSurvey" | |
| }, | |
| "icon": "LimeSurvey.png", | |
| "website": "http://limesurvey.org/" | |
| }, | |
| "LinkSmart": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "_mb_site_guid": "", | |
| "LS_JSON": "", | |
| "LinkSmart": "" | |
| }, | |
| "icon": "LinkSmart.png", | |
| "script": "^https?://cdn\\.linksmart\\.com/linksmart_([\\d.]+?)(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "http://linksmart.com" | |
| }, | |
| "Linkedin": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Linkedin.svg", | |
| "script": "//platform\\.linkedin\\.com/in\\.js", | |
| "website": "http://linkedin.com" | |
| }, | |
| "List.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "List": "" | |
| }, | |
| "icon": "List.js.png", | |
| "script": "^list\\.(?:min\\.)?js$", | |
| "website": "http://listjs.com" | |
| }, | |
| "LiteSpeed": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^LiteSpeed$" | |
| }, | |
| "icon": "LiteSpeed.svg", | |
| "website": "http://litespeedtech.com" | |
| }, | |
| "Lithium": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "LITHIUM": "" | |
| }, | |
| "cookies": { | |
| "LithiumVisitor": "" | |
| }, | |
| "html": " <a [^>]+Powered by Lithium", | |
| "icon": "Lithium.png", | |
| "implies": "PHP", | |
| "website": "https://www.lithium.com" | |
| }, | |
| "LiveAgent": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "js": { | |
| "LiveAgent": "" | |
| }, | |
| "icon": "LiveAgent.png", | |
| "website": "https://www.ladesk.com" | |
| }, | |
| "LiveChat": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "LiveChat.png", | |
| "script": "cdn\\.livechatinc\\.com/.*tracking\\.js", | |
| "website": "http://livechatinc.com" | |
| }, | |
| "LiveJournal": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "LiveJournal.png", | |
| "url": "\\.livejournal\\.com", | |
| "website": "http://www.livejournal.com" | |
| }, | |
| "LivePerson": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "LivePerson.png", | |
| "script": "^https?://lptag\\.liveperson\\.net/tag/tag\\.js", | |
| "website": "https://www.liveperson.com/" | |
| }, | |
| "LiveStreet CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "LIVESTREET_SECURITY_KEY": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "LiveStreet CMS" | |
| }, | |
| "icon": "LiveStreet CMS.png", | |
| "implies": "PHP", | |
| "website": "http://livestreetcms.com" | |
| }, | |
| "Livefyre": { | |
| "cats": [ | |
| 15 | |
| ], | |
| "js": { | |
| "fyre": "", | |
| "FyreLoader": "", | |
| "LF.CommentCount": "", | |
| "L.version": "(.*)\\;confidence:0\\;version:\\1" | |
| }, | |
| "html": "<[^>]+(?:id|class)=\"livefyre", | |
| "icon": "Livefyre.png", | |
| "script": "livefyre_init\\.js", | |
| "website": "http://livefyre.com" | |
| }, | |
| "Liveinternet": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": [ | |
| "<script[^<>]*>[^]{0,128}?src\\s*=\\s*['\"]//counter\\.yadro\\.ru/hit(?:;\\S+)?\\?(?:t\\d+\\.\\d+;)?r", | |
| "<!--LiveInternet counter-->", | |
| "<!--/LiveInternet-->", | |
| "<a href=\"http://www\\.liveinternet\\.ru/click\"" | |
| ], | |
| "icon": "Liveinternet.png", | |
| "script": "/js/al/common\\.js\\?[0-9_]+", | |
| "website": "http://liveinternet.ru/rating/" | |
| }, | |
| "Lo-dash": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Lo-dash.png", | |
| "js": { | |
| "_.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "script": "lodash.*\\.js", | |
| "website": "http://www.lodash.com" | |
| }, | |
| "Locomotive": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<link[^>]*/sites/[a-z\\d]{24}/theme/stylesheets", | |
| "icon": "Locomotive.png", | |
| "implies": [ | |
| "Ruby on Rails", | |
| "MongoDB" | |
| ], | |
| "website": "http://www.locomotivecms.com" | |
| }, | |
| "Logitech Media Server": { | |
| "cats": [ | |
| 22, | |
| 38 | |
| ], | |
| "headers": { | |
| "Server": "Logitech Media Server(?: \\(([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Logitech Media Server.png", | |
| "website": "http://www.mysqueezebox.com" | |
| }, | |
| "Lotus Domino": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Lotus-Domino" | |
| }, | |
| "icon": "Lotus Domino.png", | |
| "implies": "Java", | |
| "website": "http://www-01.ibm.com/software/lotus/products/domino" | |
| }, | |
| "Lua": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "\bLua(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Lua.png", | |
| "website": "http://www.lua.org" | |
| }, | |
| "Lucene": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "Lucene.png", | |
| "implies": "Java", | |
| "website": "http://lucene.apache.org/core/" | |
| }, | |
| "Luigi’s Box": { | |
| "cats": [ | |
| 10, | |
| 29 | |
| ], | |
| "js": { | |
| "Luigis": "" | |
| }, | |
| "icon": "Luigisbox.svg", | |
| "website": "https://www.luigisbox.com" | |
| }, | |
| "M.R. Inc BoxyOS": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "icon": "M.R. Inc.png", | |
| "website": "http://mrincworld.com" | |
| }, | |
| "M.R. Inc SiteFrame": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "Powered-By": "M\\.R\\. Inc SiteFrame" | |
| }, | |
| "icon": "M.R. Inc.png", | |
| "website": "http://mrincworld.com" | |
| }, | |
| "M.R. Inc Webserver": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "M\\.R\\. Inc Webserver" | |
| }, | |
| "icon": "M.R. Inc.png", | |
| "implies": [ | |
| "M.R. Inc BoxyOS" | |
| ], | |
| "website": "http://mrincworld.com" | |
| }, | |
| "MHonArc": { | |
| "cats": [ | |
| 50 | |
| ], | |
| "html": "<!-- MHonArc v([0-9.]+) -->\\;version:\\1", | |
| "icon": "mhonarc.png", | |
| "website": "http://www.mhonarc.at" | |
| }, | |
| "MkDocs": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "meta": { | |
| "generator": "^mkdocs-([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "mkdocs.png", | |
| "website": "http://www.mkdocs.org/" | |
| }, | |
| "MOBOTIX": { | |
| "cats": [ | |
| 39 | |
| ], | |
| "icon": "MOBOTIX.png", | |
| "meta": { | |
| "author": "MOBOTIX AG\\;confidence:40", | |
| "copyright": "MOBOTIX AG\\;confidence:40", | |
| "publisher": "MOBOTIX AG\\;confidence:40" | |
| }, | |
| "url": "control/userimage\\.html\\;confidence:70", | |
| "website": "http://mobotix.com" | |
| }, | |
| "MODX": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "MODX": "", | |
| "MODX_MEDIA_PATH": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "^MODX" | |
| }, | |
| "html": [ | |
| "<a[^>]+>Powered by MODX</a>", | |
| "<(?:link|script)[^>]+assets/snippets/\\;confidence:20", | |
| "<form[^>]+id=\"ajaxSearch_form\\;confidence:20", | |
| "<input[^>]+id=\"ajaxSearch_input\\;confidence:20" | |
| ], | |
| "icon": "MODX.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "MODX[^\\d.]*([\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://modx.com" | |
| }, | |
| "MadAdsMedia": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "setMIframe": "", | |
| "setMRefURL": "" | |
| }, | |
| "icon": "MadAdsMedia.png", | |
| "script": "^https?://(?:ads-by|pixel)\\.madadsmedia\\.com/", | |
| "website": "http://madadsmedia.com" | |
| }, | |
| "Magento": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Mage": "", | |
| "VarienForm": "" | |
| }, | |
| "cookies": { | |
| "frontend": "\\;confidence:50" | |
| }, | |
| "html": [ | |
| "<script [^>]+data-requiremodule=\"mage/\\;version:2", | |
| "<script [^>]+data-requiremodule=\"Magento_\\;version:2", | |
| "<script type=\"text/x-magento-init\">" | |
| ], | |
| "icon": "Magento.png", | |
| "implies": "PHP", | |
| "script": [ | |
| "js/mage", | |
| "skin/frontend/(?:default|(enterprise))\\;version:\\1?Enterprise:Community", | |
| "static/_requirejs\\;confidence:50\\;version:2" | |
| ], | |
| "website": "https://magento.com" | |
| }, | |
| "MailChimp": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "html": [ | |
| "<form [^>]*data-mailchimp-url", | |
| "<form [^>]*id=\"mc-embedded-subscribe-form\"", | |
| "<form [^>]*name=\"mc-embedded-subscribe-form\"", | |
| "<input [^>]*id=\"mc-email\"\\;confidence:20", | |
| "<!-- Begin MailChimp Signup Form -->" | |
| ], | |
| "icon": "mailchimp.svg", | |
| "script": [ | |
| "s3\\.amazonaws\\.com/downloads\\.mailchimp\\.com/js/mc-validate\\.js", | |
| "cdn-images\\.mailchimp\\.com/[^>]*\\.css" | |
| ], | |
| "website": "http://mailchimp.com" | |
| }, | |
| "Mambo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "excludes": "Joomla", | |
| "icon": "Mambo.png", | |
| "meta": { | |
| "generator": "Mambo" | |
| }, | |
| "website": "http://mambo-foundation.org" | |
| }, | |
| "MantisBT": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "html": "<img[^>]+ alt=\"Powered by Mantis Bugtracker", | |
| "icon": "MantisBT.png", | |
| "implies": "PHP", | |
| "website": "http://www.mantisbt.org" | |
| }, | |
| "ManyContacts": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "ManyContacts.png", | |
| "script": "\\/assets\\/js\\/manycontacts\\.min\\.js", | |
| "website": "http://www.manycontacts.com" | |
| }, | |
| "Marked": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "marked": "" | |
| }, | |
| "icon": "marked.svg", | |
| "script": "/marked(?:\\.min)?\\.js", | |
| "website": "https://marked.js.org" | |
| }, | |
| "Marionette.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Marionette": "", | |
| "Marionette.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Marionette.js.svg", | |
| "implies": [ | |
| "Underscore.js", | |
| "Backbone.js" | |
| ], | |
| "script": "backbone\\.marionette.*\\.js", | |
| "website": "https://marionettejs.com" | |
| }, | |
| "Marketo": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "Munchkin": "" | |
| }, | |
| "icon": "Marketo.png", | |
| "script": "munchkin\\.marketo\\.net/munchkin\\.js", | |
| "website": "https://www.marketo.com" | |
| }, | |
| "Material Design Lite": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": "<link[^>]* href=\"[^\"]*material(?:\\.[\\w]+-[\\w]+)?(?:\\.min)?\\.css", | |
| "icon": "Material Design Lite.png", | |
| "script": "(?:/([\\d.]+))?/material(?:\\.min)?\\.js\\;version:\\1", | |
| "js": { | |
| "MaterialIconToggle": "" | |
| }, | |
| "website": "https://getmdl.io" | |
| }, | |
| "Materialize CSS": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": "<link[^>]* href=\"[^\"]*materialize(?:\\.min)?\\.css", | |
| "icon": "Materialize CSS.png", | |
| "implies": "jQuery", | |
| "script": "materialize(?:\\.min)?\\.js", | |
| "website": "http://materializecss.com" | |
| }, | |
| "MathJax": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "MathJax": "", | |
| "MathJax.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "MathJax.png", | |
| "script": "([\\d.]+)?/mathjax\\.js\\;version:\\1", | |
| "website": "https://www.mathjax.org" | |
| }, | |
| "Mattermost": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "mm_config": "", | |
| "mm_license": "", | |
| "mm_user": "", | |
| "mm_current_user_id": "" | |
| }, | |
| "html": "<noscript> To use Mattermost, please enable JavaScript\\. </noscript>", | |
| "icon": "mattermost.png", | |
| "implies": [ | |
| "Go", | |
| "React" | |
| ], | |
| "website": "https://about.mattermost.com" | |
| }, | |
| "MaxCDN": { | |
| "cats": [ | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "^NetDNA", | |
| "X-CDN-Forward": "^maxcdn$" | |
| }, | |
| "icon": "MaxCDN.png", | |
| "website": "http://www.maxcdn.com" | |
| }, | |
| "MaxSite CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "MaxSite CMS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "MaxSite CMS" | |
| }, | |
| "website": "http://max-3000.com" | |
| }, | |
| "Mean.io": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "headers": { | |
| "X-Powered-CMS": "Mean\\.io" | |
| }, | |
| "icon": "Mean.io.png", | |
| "implies": [ | |
| "MongoDB", | |
| "Express", | |
| "Angular" | |
| ], | |
| "website": "http://mean.io" | |
| }, | |
| "MediaElement.js": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "js": { | |
| "mejs": "", | |
| "mejs.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "MediaElement.js.png", | |
| "website": "http://www.mediaelementjs.com" | |
| }, | |
| "MediaTomb": { | |
| "cats": [ | |
| 38 | |
| ], | |
| "headers": { | |
| "Server": "MediaTomb(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "MediaTomb.png", | |
| "website": "http://mediatomb.cc" | |
| }, | |
| "MediaWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": "(?:<a[^>]+>Powered by MediaWiki</a>|<[^>]+id=\"t-specialpages)", | |
| "icon": "MediaWiki.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^MediaWiki ?(.+)$\\;version:\\1" | |
| }, | |
| "website": "http://www.mediawiki.org" | |
| }, | |
| "Medium": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Medium$" | |
| }, | |
| "implies": "Node.js", | |
| "icon": "Medium.svg", | |
| "script": "medium\\.com", | |
| "url": "^https?://(?:www\\.)?medium\\.com", | |
| "website": "https://medium.com" | |
| }, | |
| "Meebo": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "html": "(?:<iframe id=\"meebo-iframe\"|Meebo\\('domReady'\\))", | |
| "icon": "Meebo.png", | |
| "website": "http://www.meebo.com" | |
| }, | |
| "Melis CMS V2": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "html": "<!-- Rendered with Melis CMS V2", | |
| "icon": "meliscmsv2.png", | |
| "meta": { | |
| "powered-by": "^Melis CMS" | |
| }, | |
| "website": "http://www.melistechnology.com/" | |
| }, | |
| "Mermaid": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "mermaid": "" | |
| }, | |
| "script": "/mermaid(?:\\.min)?\\.js", | |
| "html": "<div [^>]*class=[\"']mermaid[\"']>\\;confidence:90", | |
| "website": "https://mermaidjs.github.io/" | |
| }, | |
| "Meteor": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Meteor": "", | |
| "Meteor.release": "^METEOR@([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "<link[^>]+__meteor-css__", | |
| "icon": "Meteor.png", | |
| "implies": [ | |
| "MongoDB", | |
| "Node.js" | |
| ], | |
| "website": "https://www.meteor.com" | |
| }, | |
| "Methode": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!-- Methode uuid: \"[a-f\\d]+\" ?-->", | |
| "icon": "Methode.png", | |
| "meta": { | |
| "eomportal-id": "\\d+", | |
| "eomportal-instanceid": "\\d+", | |
| "eomportal-lastUpdate": "", | |
| "eomportal-loid": "[\\d.]+", | |
| "eomportal-uuid": "[a-f\\d]+" | |
| }, | |
| "website": "https://www.eidosmedia.com/" | |
| }, | |
| "Microsoft ASP.NET": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "ASPSESSION": "", | |
| "ASP.NET_SessionId": "" | |
| }, | |
| "headers": { | |
| "X-AspNet-Version": "(.+)\\;version:\\1", | |
| "X-Powered-By": "ASP\\.NET\\;confidence:50" | |
| }, | |
| "html": "<input[^>]+name=\"__VIEWSTATE", | |
| "icon": "Microsoft ASP.NET.png", | |
| "implies": "IIS\\;confidence:50", | |
| "url": "\\.aspx(?:$|\\?)", | |
| "website": "http://www.asp.net" | |
| }, | |
| "Microsoft HTTPAPI": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Microsoft-HTTPAPI(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Microsoft.svg", | |
| "website": "http://microsoft.com" | |
| }, | |
| "Microsoft Excel": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Microsoft Excel.svg", | |
| "html": "(?:<html [^>]*xmlns:w=\"urn:schemas-microsoft-com:office:excel\"|<!--\\s*(?:START|END) OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD\\s*-->|<div [^>]*x:publishsource=\"?Excel\"?)", | |
| "meta": { | |
| "generator": "Microsoft Excel( [\\d.]+)?\\;version:\\1", | |
| "ProgId": "^Excel\\." | |
| }, | |
| "website": "https://office.microsoft.com/excel" | |
| }, | |
| "Microsoft PowerPoint": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Microsoft PowerPoint.svg", | |
| "html": "(?:<html [^>]*xmlns:w=\"urn:schemas-microsoft-com:office:powerpoint\"|<link rel=\"?Presentation-XML\"? href=\"?[^\"]+\\.xml\"?>|<o:PresentationFormat>[^<]+</o:PresentationFormat>[^!]+<o:Slides>\\d+</o:Slides>(?:[^!]+<o:Version>([\\d.]+)</o:Version>)?)\\;version:\\1", | |
| "meta": { | |
| "generator": "Microsoft PowerPoint ( [\\d.]+)?\\;version:\\1", | |
| "ProgId": "^PowerPoint\\." | |
| }, | |
| "website": "https://office.microsoft.com/powerpoint" | |
| }, | |
| "Microsoft Publisher": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Microsoft Publisher.svg", | |
| "html": "(?:<html [^>]*xmlns:w=\"urn:schemas-microsoft-com:office:publisher\"|<!--[if pub]><xml>)", | |
| "meta": { | |
| "generator": "Microsoft Publisher( [\\d.]+)?\\;version:\\1", | |
| "ProgId": "^Publisher\\." | |
| }, | |
| "website": "https://office.microsoft.com/publisher" | |
| }, | |
| "Microsoft SharePoint": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "_spBodyOnLoadCalled": "", | |
| "SPDesignerProgID": "" | |
| }, | |
| "headers": { | |
| "MicrosoftSharePointTeamServices": "(.*)\\;version:\\1", | |
| "SPRequestGuid": "", | |
| "SharePointHealthScore": "", | |
| "X-SharePointHealthScore": "" | |
| }, | |
| "icon": "Microsoft SharePoint.png", | |
| "meta": { | |
| "generator": "Microsoft SharePoint" | |
| }, | |
| "website": "https://sharepoint.microsoft.com" | |
| }, | |
| "Microsoft Word": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "Microsoft Word.svg", | |
| "html": "(?:<html [^>]*xmlns:w=\"urn:schemas-microsoft-com:office:word\"|<w:WordDocument>|<div [^>]*class=\"?WordSection1[\" >]|<style[^>]*>[^>]*@page WordSection1)", | |
| "meta": { | |
| "generator": "Microsoft Word( [\\d.]+)?\\;version:\\1", | |
| "ProgId": "^Word\\." | |
| }, | |
| "website": "https://office.microsoft.com/word" | |
| }, | |
| "Mietshop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<a href=\"https://ssl\\.mietshop\\.d", | |
| "icon": "mietshop.png", | |
| "meta": { | |
| "generator": "Mietshop" | |
| }, | |
| "website": "http://www.mietshop.de/" | |
| }, | |
| "Milligram": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": [ | |
| "<link[^>]+?href=\"[^\"]+milligram(?:\\.min)?\\.css" | |
| ], | |
| "icon": "Milligram.png", | |
| "website": "http://milligram.github.io" | |
| }, | |
| "MiniBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "<a href=\"[^\"]+minibb[^<]+</a>[^<]+\n<!--End of copyright link", | |
| "icon": "MiniBB.png", | |
| "website": "http://www.minibb.com" | |
| }, | |
| "MiniServ": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "MiniServ\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://sourceforge.net/projects/miniserv" | |
| }, | |
| "Mint": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "Mint": "" | |
| }, | |
| "icon": "Mint.png", | |
| "script": "mint/\\?js", | |
| "website": "https://haveamint.com" | |
| }, | |
| "Mixpanel": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "mixpanel": "" | |
| }, | |
| "icon": "Mixpanel.png", | |
| "script": "api\\.mixpanel\\.com/track", | |
| "website": "https://mixpanel.com" | |
| }, | |
| "Mobify": { | |
| "cats": [ | |
| 26 | |
| ], | |
| "js": { | |
| "Mobify": "" | |
| }, | |
| "icon": "Mobify.png", | |
| "script": "//cdn\\.mobify\\.com/", | |
| "website": "https://www.mobify.com" | |
| }, | |
| "Mobirise": { | |
| "cats": [ | |
| 51 | |
| ], | |
| "meta": { | |
| "generator": "^Mobirise v([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": [ | |
| "<!-- Site made with Mobirise Website Builder v([\\d.]+)\\;version:\\1" | |
| ], | |
| "icon": "mobirise.png", | |
| "website": "https://mobirise.com" | |
| }, | |
| "MochiKit": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "MochiKit": "", | |
| "MochiKit.MochiKit.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "MochiKit.png", | |
| "script": "MochiKit(?:\\.min)?\\.js", | |
| "website": "https://mochi.github.io/mochikit/" | |
| }, | |
| "MochiWeb": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "MochiWeb(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://github.com/mochi/mochiweb" | |
| }, | |
| "Modernizr": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Modernizr._version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Modernizr.svg", | |
| "script": [ | |
| "modernizr(?:-([\\d.]*[\\d]))?.*\\.js\\;version:\\1", | |
| "/([\\d.]+)/modernizr(?:\\.min)?\\.js\\;version:\\1" | |
| ], | |
| "website": "https://modernizr.com" | |
| }, | |
| "Modified": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "modified.png", | |
| "meta": { | |
| "generator": "\\(c\\) by modified eCommerce Shopsoftware ------ http://www\\.modified-shop\\.org" | |
| }, | |
| "website": "http://www.modified-shop.org/" | |
| }, | |
| "Moguta.CMS": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "html": "(?:<script|link)[^>]*(?:src=|href=)[\"'][^\"]*mg-(?:core|plugins|templates)", | |
| "icon": "Moguta.CMS.png", | |
| "implies": "PHP", | |
| "website": "http://moguta.ru" | |
| }, | |
| "MoinMoin": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "js": { | |
| "show_switch2gui": "" | |
| }, | |
| "icon": "MoinMoin.png", | |
| "implies": "Python", | |
| "script": "moin(?:_static(\\d)(\\d)(\\d)|.+)/common/js/common\\.js\\;version:\\1.\\2.\\3", | |
| "website": "https://moinmo.in" | |
| }, | |
| "Mojolicious": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "x-powered-by": "mojolicious", | |
| "server": "^mojolicious" | |
| }, | |
| "icon": "Mojolicious.png", | |
| "implies": "Perl", | |
| "website": "http://mojolicio.us" | |
| }, | |
| "Mollom": { | |
| "cats": [ | |
| 16 | |
| ], | |
| "html": "<img[^>]+\\.mollom\\.com", | |
| "icon": "Mollom.png", | |
| "script": "mollom(?:\\.min)?\\.js", | |
| "website": "http://mollom.com" | |
| }, | |
| "Moment Timezone": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Moment.js.svg", | |
| "implies": "Moment.js", | |
| "script": "moment-timezone(?:\\-data)?(?:\\.min)?\\.js", | |
| "website": "http://momentjs.com/timezone/" | |
| }, | |
| "Moment.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "moment": "", | |
| "moment.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Moment.js.svg", | |
| "script": "moment(?:\\.min)?\\.js", | |
| "website": "https://momentjs.com" | |
| }, | |
| "Mondo Media": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Mondo Media.png", | |
| "meta": { | |
| "generator": "Mondo Shop" | |
| }, | |
| "website": "http://mondo-media.de" | |
| }, | |
| "MongoDB": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "MongoDB.png", | |
| "website": "http://www.mongodb.org" | |
| }, | |
| "Mongrel": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Mongrel" | |
| }, | |
| "icon": "Mongrel.png", | |
| "implies": "Ruby", | |
| "website": "http://mongrel2.org" | |
| }, | |
| "Monkey HTTP Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Monkey/?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Monkey HTTP Server.png", | |
| "website": "http://monkey-project.com" | |
| }, | |
| "Monerominer": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "html": "<iframe[^>]+src=[\\'\"]https?://monerominer\\.rocks/miner\\.php\\?siteid=", | |
| "icon": "monerominer.png", | |
| "website": "https://monerominer.rocks/" | |
| }, | |
| "Mono": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Mono" | |
| }, | |
| "icon": "Mono.png", | |
| "website": "http://mono-project.com" | |
| }, | |
| "Mono.net": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "_monoTracker": "" | |
| }, | |
| "icon": "Mono.net.png", | |
| "implies": "Piwik", | |
| "script": "monotracker(?:\\.min)?\\.js", | |
| "website": "https://www.mono.net/en" | |
| }, | |
| "MooTools": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "MooTools": "", | |
| "MooTools.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "MooTools.png", | |
| "script": "mootools.*\\.js", | |
| "website": "https://mootools.net" | |
| }, | |
| "Moodle": { | |
| "cats": [ | |
| 21 | |
| ], | |
| "js": { | |
| "Y.Moodle": "", | |
| "M.core": "" | |
| }, | |
| "cookies": { | |
| "MoodleSession": "", | |
| "MOODLEID_": "" | |
| }, | |
| "html": "<img[^>]+moodlelogo", | |
| "icon": "Moodle.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "keywords": "^moodle" | |
| }, | |
| "website": "http://moodle.org" | |
| }, | |
| "Moon": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "moon.svg", | |
| "script": "/moon(?:\\.min)?\\.js$", | |
| "website": "http://moonjs.ga/" | |
| }, | |
| "Motion-httpd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "excludes": "Apache", | |
| "headers": { | |
| "Server": "Motion-httpd(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://lavrsen.dk/foswiki/bin/view/Motion" | |
| }, | |
| "MotoCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<link [^>]*href=\"[^>]*\\/mt-content\\/[^>]*\\.css", | |
| "icon": "MotoCMS.svg", | |
| "implies": [ | |
| "PHP", | |
| "AngularJS", | |
| "jQuery" | |
| ], | |
| "script": "/mt-includes/js/website(?:assets)?\\.(?:min)?\\.js", | |
| "website": "http://motocms.com" | |
| }, | |
| "Movable Type": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Movable Type.png", | |
| "meta": { | |
| "generator": "Movable Type" | |
| }, | |
| "website": "http://movabletype.org" | |
| }, | |
| "Moxa": { | |
| "cats": [ | |
| 37 | |
| ], | |
| "headers": { | |
| "Server": "MoxaHttp(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Moxa.png", | |
| "website": "http://moxa.com" | |
| }, | |
| "Mozard Suite": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Mozard Suite.png", | |
| "meta": { | |
| "author": "Mozard" | |
| }, | |
| "url": "/mozard/!suite", | |
| "website": "http://mozard.nl" | |
| }, | |
| "Mura CMS": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "icon": "Mura CMS.png", | |
| "implies": "Adobe ColdFusion", | |
| "meta": { | |
| "generator": "Mura CMS ([\\d]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.getmura.com" | |
| }, | |
| "Mustache": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Mustache.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Mustache.png", | |
| "script": "mustache(?:\\.min)?\\.js", | |
| "website": "https://mustache.github.io" | |
| }, | |
| "MyBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "MyBB": "" | |
| }, | |
| "html": "(?:<script [^>]+\\s+<!--\\s+lang\\.no_new_posts|<a[^>]* title=\"Powered By MyBB)", | |
| "icon": "MyBB.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "website": "https://mybb.com" | |
| }, | |
| "MyBlogLog": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "MyBlogLog.png", | |
| "script": "pub\\.mybloglog\\.com", | |
| "website": "http://www.mybloglog.com" | |
| }, | |
| "MySQL": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "MySQL.svg", | |
| "website": "http://mysql.com" | |
| }, | |
| "Mynetcap": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Mynetcap.png", | |
| "meta": { | |
| "generator": "Mynetcap" | |
| }, | |
| "website": "http://www.netcap-creation.fr" | |
| }, | |
| "NOIX": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "(?:<[^>]+(?:src|href)=[^>]*/media/noix|<!-- NOIX)", | |
| "icon": "NOIX.png", | |
| "website": "http://www.noix.com.br/tecnologias/joomla" | |
| }, | |
| "NVD3": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "nv.addGraph": "", | |
| "nv.version": "(.*)\\;confidence:0\\;version:\\1" | |
| }, | |
| "html": "<link[^>]* href=[^>]+nv\\.d3(?:\\.min)?\\.css", | |
| "icon": "NVD3.png", | |
| "implies": "D3", | |
| "script": "nv\\.d3(?:\\.min)?\\.js", | |
| "website": "http://nvd3.org" | |
| }, | |
| "Navegg": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Navegg.png", | |
| "script": "tag\\.navdmp\\.com", | |
| "website": "https://www.navegg.com/" | |
| }, | |
| "NEO - Omnichannel Commerce Platform": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "powered": "jet-neo" | |
| }, | |
| "icon": "Plataforma NEO.svg", | |
| "website": "http://www.jetecommerce.com.br/" | |
| }, | |
| "Neos CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "excludes": "TYPO3 CMS", | |
| "headers": { | |
| "X-Flow-Powered": "Neos/?(.+)?$\\;version:\\1" | |
| }, | |
| "icon": "Neos.svg", | |
| "implies": "Neos Flow", | |
| "url": "/neos/", | |
| "website": "https://neos.io" | |
| }, | |
| "Neos Flow": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "excludes": "TYPO3 CMS", | |
| "headers": { | |
| "X-Flow-Powered": "Flow/?(.+)?$\\;version:\\1" | |
| }, | |
| "icon": "Neos.svg", | |
| "implies": "PHP", | |
| "website": "https://flow.neos.io" | |
| }, | |
| "Nepso": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-CMS": "Nepso" | |
| }, | |
| "icon": "Nepso.png", | |
| "website": "http://nepso.com" | |
| }, | |
| "Netlify": { | |
| "cats": [ | |
| 22, | |
| 31 | |
| ], | |
| "headers": { | |
| "Server": "Netlify" | |
| }, | |
| "icon": "Netlify.svg", | |
| "website": "https://www.netlify.com/" | |
| }, | |
| "Netmonitor": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "netmonitor": "" | |
| }, | |
| "icon": "Netmonitor.png", | |
| "script": "netmonitor\\.fi/nmtracker\\.js", | |
| "website": "http://netmonitor.fi/en" | |
| }, | |
| "Neto": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "NETO": "" | |
| }, | |
| "icon": "Neto.svg", | |
| "script": "jquery\\.neto.*\\.js", | |
| "website": "https://www.neto.com.au" | |
| }, | |
| "Netsuite": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "NS_VER": "" | |
| }, | |
| "icon": "Netsuite.png", | |
| "website": "http://netsuite.com" | |
| }, | |
| "Nette Framework": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "Nette": "", | |
| "Nette.version": "(.*)\\;version:\\1" | |
| }, | |
| "cookies": { | |
| "nette-browser": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "^Nette Framework" | |
| }, | |
| "html": [ | |
| "<input[^>]+data-nette-rules", | |
| "<div[^>]+id=\"snippet-", | |
| "<input[^>]+id=\"frm-" | |
| ], | |
| "icon": "Nette Framework.png", | |
| "implies": "PHP", | |
| "website": "https://nette.org" | |
| }, | |
| "New Relic": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "NREUM": "", | |
| "newrelic": "" | |
| }, | |
| "icon": "New Relic.png", | |
| "website": "https://newrelic.com" | |
| }, | |
| "NextGEN Gallery": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "icon": "NextGEN Gallery.png", | |
| "html": [ | |
| "<!-- <meta name=\"NextGEN\" version=\"([\\d.]+)\" /> -->\\;version:\\1" | |
| ], | |
| "script": "/nextgen-gallery/js/", | |
| "implies": [ | |
| "WordPress" | |
| ], | |
| "website": "https://www.imagely.com/wordpress-gallery-plugin" | |
| }, | |
| "Next.js": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "x-powered-by": "^Next\\.js ?([0-9.]+)?\\;version:\\1" | |
| }, | |
| "js": { | |
| "__NEXT_DATA__": "" | |
| }, | |
| "icon": "zeit.svg", | |
| "implies": [ | |
| "React", | |
| "webpack", | |
| "Node.js" | |
| ], | |
| "website": "https://github.com/zeit/next.js" | |
| }, | |
| "Nginx": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "nginx(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Nginx.svg", | |
| "website": "http://nginx.org/en" | |
| }, | |
| "Node.js": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "node.js.png", | |
| "website": "http://nodejs.org" | |
| }, | |
| "NodeBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^NodeBB$" | |
| }, | |
| "icon": "NodeBB.png", | |
| "implies": "Node.js", | |
| "script": "^/nodebb\\.min\\.js\\?", | |
| "website": "https://nodebb.org" | |
| }, | |
| "Now": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "server": "^now$" | |
| }, | |
| "icon": "zeit.svg", | |
| "website": "https://zeit.co/now" | |
| }, | |
| "OWL Carousel": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "html": "<link [^>]*href=\"[^\"]+owl\\.carousel(?:\\.min)?\\.css", | |
| "icon": "OWL Carousel.png", | |
| "implies": "jQuery", | |
| "script": "owl\\.carousel.*\\.js", | |
| "website": "https://owlcarousel2.github.io/OwlCarousel2/" | |
| }, | |
| "OXID eShop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "oxTopMenu": "", | |
| "oxModalPopup": "", | |
| "oxLoginBox": "", | |
| "oxInputValidator": "", | |
| "oxCookieNote": "" | |
| }, | |
| "html": "<!--[^-]*OXID eShop", | |
| "icon": "OXID eShop.png", | |
| "website": "https://en.oxid-esales.com/en/home.html" | |
| }, | |
| "October CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "october_session=": "" | |
| }, | |
| "icon": "October CMS.png", | |
| "implies": "Laravel", | |
| "website": "http://octobercms.com" | |
| }, | |
| "Octopress": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "html": "Powered by <a href=\"http://octopress\\.org\">", | |
| "icon": "octopress.png", | |
| "implies": "Jekyll", | |
| "script": "/octopress\\.js", | |
| "meta": { | |
| "generator": "Octopress" | |
| }, | |
| "website": "http://octopress.org" | |
| }, | |
| "Odoo": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "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" | |
| }, | |
| "script": "/web/js/(?:web\\.assets_common/|website\\.assets_frontend/)\\;confidence:25", | |
| "website": "http://odoo.com" | |
| }, | |
| "Olark": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "Olark.png", | |
| "script": "^https?:\\/\\/static\\.olark\\.com\\/jsclient\\/loader1\\.js", | |
| "website": "https://www.olark.com/" | |
| }, | |
| "OmniTouch 8660 My Teamwork": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "icon": "OmniTouch 8660 My Teamwork.png", | |
| "website": "http://enterprise.alcatel-lucent.com" | |
| }, | |
| "OneAPM": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "BWEUM": "" | |
| }, | |
| "icon": "OneAPM.png", | |
| "website": "http://www.oneapm.com" | |
| }, | |
| "OneStat": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "OneStat_Pageview": "" | |
| }, | |
| "icon": "OneStat.png", | |
| "website": "http://www.onestat.com" | |
| }, | |
| "Open AdStream": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "OAS_AD": "" | |
| }, | |
| "icon": "Open AdStream.png", | |
| "website": "https://www.xaxis.com" | |
| }, | |
| "Open Classifieds": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Open Classifieds.png", | |
| "meta": { | |
| "author": "open-classifieds\\.com", | |
| "copyright": "Open Classifieds ?([0-9.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://open-classifieds.com" | |
| }, | |
| "Open Journal Systems": { | |
| "cats": [ | |
| 50 | |
| ], | |
| "cookies": { | |
| "OJSSID": "" | |
| }, | |
| "icon": "Open Journal Systems.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Open Journal Systems(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://pkp.sfu.ca/ojs" | |
| }, | |
| "Open Web Analytics": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "owa_baseUrl": "", | |
| "owa_cmds": "", | |
| "OWA.config.baseUrl": "" | |
| }, | |
| "html": "<!-- (?:Start|End) Open Web Analytics Tracker -->", | |
| "icon": "Open Web Analytics.png", | |
| "website": "http://www.openwebanalytics.com" | |
| }, | |
| "Open eShop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Open eShop.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "author": "open-eshop\\.com", | |
| "copyright": "Open eShop ?([0-9.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://open-eshop.com/" | |
| }, | |
| "OpenCart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "(?:index\\.php\\?route=[a-z]+/|Powered By <a href=\"[^>]+OpenCart)", | |
| "icon": "OpenCart.png", | |
| "implies": "PHP", | |
| "website": "http://www.opencart.com" | |
| }, | |
| "OpenCms": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "Server": "OpenCms" | |
| }, | |
| "html": "<link href=\"/opencms/", | |
| "icon": "OpenCms.png", | |
| "implies": "Java", | |
| "script": "opencms", | |
| "website": "http://www.opencms.org" | |
| }, | |
| "OpenGSE": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "GSE" | |
| }, | |
| "icon": "Google.svg", | |
| "implies": "Java", | |
| "website": "http://code.google.com/p/opengse" | |
| }, | |
| "OpenGrok": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "cookies": { | |
| "OpenGrok": "" | |
| }, | |
| "icon": "OpenGrok.png", | |
| "implies": "Java", | |
| "meta": { | |
| "generator": "OpenGrok(?: v?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://hub.opensolaris.org/bin/view/Project+opengrok/WebHome" | |
| }, | |
| "OpenLayers": { | |
| "cats": [ | |
| 35 | |
| ], | |
| "js": { | |
| "ol.CanvasMap": "", | |
| "OpenLayers.VERSION_NUMBER": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "OpenLayers.png", | |
| "script": "openlayers", | |
| "website": "https://openlayers.org" | |
| }, | |
| "OpenNemas": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "OpenNemas" | |
| }, | |
| "icon": "OpenNemas.png", | |
| "meta": { | |
| "generator": "OpenNemas" | |
| }, | |
| "website": "http://www.opennemas.com" | |
| }, | |
| "OpenResty": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "openresty(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "OpenResty.png", | |
| "implies": [ | |
| "Nginx", | |
| "Lua" | |
| ], | |
| "website": "http://openresty.org" | |
| }, | |
| "OpenSSL": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "OpenSSL(?:/([\\d.]+[a-z]?))?\\;version:\\1" | |
| }, | |
| "icon": "OpenSSL.png", | |
| "website": "http://openssl.org" | |
| }, | |
| "OpenText Web Solutions": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<!--[^>]+published by Open Text Web Solutions", | |
| "icon": "OpenText Web Solutions.png", | |
| "implies": "Microsoft ASP.NET", | |
| "website": "http://websolutions.opentext.com" | |
| }, | |
| "OpenUI5": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "OpenUI5.png", | |
| "js": { | |
| "sap.ui.version": "(.*)\\;version:\\1" | |
| }, | |
| "script": "sap-ui-core\\.js", | |
| "website": "http://openui5.org/" | |
| }, | |
| "Minero.cc": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "script": [ | |
| "//minero\\.cc/lib/minero(?:-miner|-hidden)?\\.min\\.js" | |
| ], | |
| "website": "http://minero.cc/" | |
| }, | |
| "Coinhave": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "script": "https?://coin-have\\.com/c/[0-9a-zA-Z]{4}\\.js", | |
| "icon": "coinhave.png", | |
| "website": "https://coin-have.com/" | |
| }, | |
| "Revslider": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "icon": "revslider.png", | |
| "html": [ | |
| "<link[^>]* href=[\\'\"][^']+revslider[/\\w-]+\\.css\\?ver=([0-9.]+)[\\'\"]\\;version:\\1" | |
| ], | |
| "script": "/revslider/[/\\w-]+/js", | |
| "implies": "WordPress", | |
| "website": "https://revolution.themepunch.com/" | |
| }, | |
| "OpenX": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "OpenX.png", | |
| "script": [ | |
| "https?://[^/]*\\.openx\\.net", | |
| "https?://[^/]*\\.servedbyopenx\\.com" | |
| ], | |
| "website": "http://openx.com" | |
| }, | |
| "Ophal": { | |
| "cats": [ | |
| 1, | |
| 11, | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Ophal(?: (.*))? \\(ophal\\.org\\)\\;version:\\1" | |
| }, | |
| "icon": "Ophal.png", | |
| "implies": "Lua", | |
| "meta": { | |
| "generator": "Ophal(?: (.*))? \\(ophal\\.org\\)\\;version:\\1" | |
| }, | |
| "script": "ophal\\.js", | |
| "website": "http://ophal.org" | |
| }, | |
| "Optimizely": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "optimizely": "" | |
| }, | |
| "icon": "Optimizely.png", | |
| "script": "optimizely\\.com.*\\.js", | |
| "website": "https://www.optimizely.com" | |
| }, | |
| "Oracle Application Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Oracle[- ]Application[- ]Server(?: Containers for J2EE)?(?:[- ](\\d[\\da-z./]+))?\\;version:\\1" | |
| }, | |
| "icon": "Oracle.png", | |
| "website": "http://www.oracle.com/technetwork/middleware/ias/overview/index.html" | |
| }, | |
| "Oracle Commerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-ATG-Version": "(?:ATGPlatform/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "html": "<[^>]+_dyncharset", | |
| "icon": "Oracle.png", | |
| "website": "http://www.oracle.com/applications/customer-experience/commerce/products/commerce-platform/index.html" | |
| }, | |
| "Oracle Commerce Cloud": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "OracleCommerceCloud-Version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<[^>]+id=\"oracle-cc\"", | |
| "icon": "Oracle.png", | |
| "website": "http://cloud.oracle.com/commerce-cloud" | |
| }, | |
| "Oracle Dynamic Monitoring Service": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "x-oracle-dms-ecid": "" | |
| }, | |
| "icon": "Oracle.png", | |
| "website": "http://oracle.com" | |
| }, | |
| "Oracle HTTP Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Oracle-HTTP-Server(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Oracle.png", | |
| "website": "http://oracle.com" | |
| }, | |
| "Oracle Recommendations On Demand": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Oracle.png", | |
| "script": "atgsvcs.+atgsvcs\\.js", | |
| "website": "http://www.oracle.com/us/products/applications/commerce/recommendations-on-demand/index.html" | |
| }, | |
| "Oracle Web Cache": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "Server": "Oracle(?:AS)?[- ]Web[- ]Cache(?:[- /]([\\da-z./]+))?\\;version:\\1" | |
| }, | |
| "icon": "Oracle.png", | |
| "website": "http://oracle.com" | |
| }, | |
| "Orchard CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Orchard CMS.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "Orchard" | |
| }, | |
| "website": "http://orchardproject.net" | |
| }, | |
| "Outbrain": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "OutbrainPermaLink": "", | |
| "OB_releaseVer": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Outbrain.png", | |
| "script": "widgets\\.outbrain\\.com/outbrain\\.js", | |
| "website": "https://www.outbrain.com" | |
| }, | |
| "Outlook Web App": { | |
| "cats": [ | |
| 30 | |
| ], | |
| "js": { | |
| "IsOwaPremiumBrowser": "" | |
| }, | |
| "html": "<link\\s[^>]*href=\"[^\"]*?([\\d.]+)/themes/resources/owafont\\.css\\;version:\\1", | |
| "icon": "Outlook.svg", | |
| "implies": "Microsoft ASP.NET", | |
| "url": "/owa/auth/log(?:on|off)\\.aspx", | |
| "website": "http://help.outlook.com" | |
| }, | |
| "PANSITE": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "PANSITE.png", | |
| "meta": { | |
| "generator": "PANSITE" | |
| }, | |
| "website": "http://panvision.de/Produkte/Content_Management/index.asp" | |
| }, | |
| "Paper.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "icon": "paperjs.png", | |
| "js": { | |
| "paper.version": "(.*)\\;version:\\1" | |
| }, | |
| "website": "http://paperjs.org/" | |
| }, | |
| "Pelican": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "implies": "Python", | |
| "icon": "pelican.png", | |
| "html": "powered by <a href=\"[^>]+getpelican\\.com", | |
| "website": "https://blog.getpelican.com/" | |
| }, | |
| "PDF.js": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "PDFJS": "", | |
| "PDFJS.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<\\/div>\\s*<!-- outerContainer -->\\s*<div\\s*id=\"printContainer\"><\\/div>", | |
| "icon": "PDF.js.svg", | |
| "url": "/web/viewer\\.html?file=[^&]\\.pdf", | |
| "website": "https://mozilla.github.io/pdf.js/" | |
| }, | |
| "PHP": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "cookies": { | |
| "PHPSESSID": "" | |
| }, | |
| "headers": { | |
| "Server": "php/?([\\d.]+)?\\;version:\\1", | |
| "X-Powered-By": "^php/?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "icon": "PHP.svg", | |
| "url": "\\.php(?:$|\\?)", | |
| "website": "http://php.net" | |
| }, | |
| "PHP-Fusion": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "Powered by <a href=\"[^>]+php-fusion", | |
| "icon": "PHP-Fusion.png", | |
| "implies": "PHP", | |
| "website": "http://www.php-fusion.co.uk" | |
| }, | |
| "PHP-Nuke": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+Powered by PHP-Nuke", | |
| "icon": "PHP-Nuke.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "PHP-Nuke" | |
| }, | |
| "website": "http://phpnuke.org" | |
| }, | |
| "Pagekit": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Pagekit.png", | |
| "meta": { | |
| "generator": "Pagekit" | |
| }, | |
| "website": "http://pagekit.com" | |
| }, | |
| "Pardot": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "piTracker": "", | |
| "piHostname": "", | |
| "piProtocol": "", | |
| "piCId": "", | |
| "piAId": "" | |
| }, | |
| "headers": { | |
| "X-Pardot-LB": "", | |
| "X-Pardot-Route": "", | |
| "X-Pardot-Rsp": "" | |
| }, | |
| "icon": "Pardot.png", | |
| "website": "https://www.pardot.com" | |
| }, | |
| "Parse.ly": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "PARSELY": "" | |
| }, | |
| "icon": "Parse.ly.png", | |
| "website": "https://www.parse.ly" | |
| }, | |
| "Paths.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "script": "paths(?:\\.min)?\\.js", | |
| "website": "https://github.com/andreaferretti/paths-js" | |
| }, | |
| "Braintree": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "js": { | |
| "Braintree": "", | |
| "Braintree.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Braintree.svg", | |
| "website": "https://www.braintreepayments.com" | |
| }, | |
| "Adyen": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "js": { | |
| "adyen.encrypt.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Adyen.svg", | |
| "website": "https://www.adyen.com" | |
| }, | |
| "PayPal": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "js": { | |
| "PAYPAL": "" | |
| }, | |
| "html": "<input[^>]+_s-xclick", | |
| "icon": "PayPal.svg", | |
| "script": "paypalobjects\\.com/js", | |
| "website": "https://paypal.com" | |
| }, | |
| "PencilBlue": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "PencilBlue" | |
| }, | |
| "icon": "PencilBlue.png", | |
| "implies": "Node.js", | |
| "website": "http://pencilblue.org" | |
| }, | |
| "Percussion": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+class=\"perc-region\"", | |
| "icon": "Percussion.png", | |
| "meta": { | |
| "generator": "(?:Percussion|Rhythmyx)" | |
| }, | |
| "website": "http://percussion.com" | |
| }, | |
| "PerfSONAR-PS": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "headers": { | |
| "User-agent": "perfSONAR-PS/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "PerfSONAR-PS.png", | |
| "website": "http://psps.perfsonar.net" | |
| }, | |
| "Perl": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "headers": { | |
| "Server": "\bPerl\b(?: ?/?v?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Perl.png", | |
| "website": "http://perl.org" | |
| }, | |
| "Phabricator": { | |
| "cats": [ | |
| 13, | |
| 47 | |
| ], | |
| "cookies": { | |
| "phsid": "" | |
| }, | |
| "html": "<[^>]+(?:class|id)=\"phabricator-", | |
| "icon": "Phabricator.png", | |
| "implies": [ | |
| "PHP" | |
| ], | |
| "script": "/phabricator/[a-f0-9]{8}/rsrc/js/phui/[a-z-]+\\.js$", | |
| "website": "http://phacility.com" | |
| }, | |
| "Phaser": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Phaser": "", | |
| "Phaser.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Phaser.png", | |
| "website": "https://phaser.io" | |
| }, | |
| "Phenomic": { | |
| "cats": [ | |
| 57 | |
| ], | |
| "html": [ | |
| "<[^>]+id=\"phenomic(?:root)?\"" | |
| ], | |
| "icon": "Phenomic.svg", | |
| "implies": [ | |
| "React" | |
| ], | |
| "script": "/phenomic\\.browser\\.[a-f0-9]+\\.js", | |
| "website": "https://phenomic.io/" | |
| }, | |
| "PHPDebugBar": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "js": { | |
| "phpdebugbar": "", | |
| "PhpDebugBar": "" | |
| }, | |
| "script": [ | |
| "debugbar.*\\.js" | |
| ], | |
| "icon": "phpdebugbar.png", | |
| "website": "http://phpdebugbar.com/" | |
| }, | |
| "PHPoole": { | |
| "cats": [ | |
| 57 | |
| ], | |
| "icon": "PHPoole.png", | |
| "meta": { | |
| "generator": "^PHPoole$" | |
| }, | |
| "website": "https://phpoole.org" | |
| }, | |
| "Phusion Passenger": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^Phusion Passenger ?([\\d.]+)?\\;version:\\1", | |
| "Server": "Phusion Passenger ([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "Phusion Passenger.png", | |
| "website": "http://phusionpassenger.com" | |
| }, | |
| "Pimcore": { | |
| "cats": [ | |
| 1, | |
| 6, | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^pimcore$" | |
| }, | |
| "icon": "pimcore.svg", | |
| "implies": "PHP", | |
| "website": "http://pimcore.org" | |
| }, | |
| "Pinterest": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Pinterest.svg", | |
| "script": "//assets\\.pinterest\\.com/js/pinit\\.js", | |
| "website": "http://pinterest.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" | |
| }, | |
| "Piwik": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "Piwik": "", | |
| "_paq": "" | |
| }, | |
| "cookies": { | |
| "PIWIK_SESSID": "" | |
| }, | |
| "icon": "Piwik.png", | |
| "meta": { | |
| "apple-itunes-app": "app-id=737216887", | |
| "generator": "Piwik - Open Source Web Analytics", | |
| "google-play-app": "app-id=org\\.piwik\\.mobile2" | |
| }, | |
| "script": "piwik\\.js|piwik\\.php", | |
| "website": "http://piwik.org" | |
| }, | |
| "Planet": { | |
| "cats": [ | |
| 49 | |
| ], | |
| "icon": "Planet.png", | |
| "meta": { | |
| "generator": "^Planet(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://planetplanet.org" | |
| }, | |
| "Play": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "PLAY_SESSION": "" | |
| }, | |
| "icon": "Play.svg", | |
| "implies": "Scala", | |
| "website": "https://www.playframework.com" | |
| }, | |
| "Plentymarkets": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Plentymarkets.png", | |
| "meta": { | |
| "generator": "plentymarkets" | |
| }, | |
| "website": "http://plentymarkets.eu" | |
| }, | |
| "Plesk": { | |
| "cats": [ | |
| 9 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "PleskLin", | |
| "X-Powered-By-Plesk": "Plesk" | |
| }, | |
| "icon": "Plesk.png", | |
| "script": "common\\.js\\?plesk", | |
| "website": "http://plesk.com" | |
| }, | |
| "Pligg": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "pligg_": "" | |
| }, | |
| "html": "<span[^>]+id=\"xvotes-0", | |
| "icon": "Pligg.png", | |
| "meta": { | |
| "generator": "Pligg" | |
| }, | |
| "website": "http://pligg.com" | |
| }, | |
| "Plone": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Plone.png", | |
| "implies": "Python", | |
| "meta": { | |
| "generator": "Plone" | |
| }, | |
| "website": "http://plone.org" | |
| }, | |
| "Plotly": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Plotly": "" | |
| }, | |
| "icon": "Plotly.png", | |
| "implies": "D3", | |
| "script": "https?://cdn\\.plot\\.ly/plotly", | |
| "website": "http://plot.ly/javascript/" | |
| }, | |
| "Plura": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<iframe src=\"[^>]+pluraserver\\.com", | |
| "icon": "Plura.png", | |
| "website": "http://www.pluraprocessing.com" | |
| }, | |
| "Po.st": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "pwidget_config": "" | |
| }, | |
| "icon": "Po.st.png", | |
| "website": "http://www.po.st/" | |
| }, | |
| "Polymer": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Polymer.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "(?:<polymer-[^>]+|<link[^>]+rel=\"import\"[^>]+/polymer\\.html\")", | |
| "icon": "Polymer.png", | |
| "script": "polymer\\.js", | |
| "website": "http://polymer-project.org" | |
| }, | |
| "Posterous": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "js": { | |
| "Posterous": "" | |
| }, | |
| "html": "<div class=\"posterous", | |
| "icon": "Posterous.png", | |
| "website": "http://posterous.com" | |
| }, | |
| "PostgreSQL": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "PostgreSQL.png", | |
| "website": "http://www.postgresql.org/" | |
| }, | |
| "Powergap": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": [ | |
| "<a[^>]+title=\"POWERGAP", | |
| "<input type=\"hidden\" name=\"shopid\"" | |
| ], | |
| "icon": "Powergap.png", | |
| "website": "http://powergap.de" | |
| }, | |
| "Prebid": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "Prebid.png", | |
| "js": { | |
| "pbjs": "", | |
| "PREBID_TIMEOUT": "" | |
| }, | |
| "script": [ | |
| "/prebid\\.js", | |
| "adnxs\\.com/[^\"]*(?:prebid|/pb\\.js)" | |
| ], | |
| "website": "http://prebid.org" | |
| }, | |
| "Prefix-Free": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "PrefixFree": "" | |
| }, | |
| "icon": "Prefix-Free.png", | |
| "script": "prefixfree\\.js", | |
| "website": "http://leaverou.github.io/prefixfree/" | |
| }, | |
| "PrestaShop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "freeProductTranslation": "\\;confidence:25", | |
| "priceDisplayMethod": "\\;confidence:25", | |
| "priceDisplayPrecision": "\\;confidence:25" | |
| }, | |
| "cookies": { | |
| "PrestaShop": "" | |
| }, | |
| "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", | |
| "meta": { | |
| "generator": "PrestaShop" | |
| }, | |
| "website": "http://www.prestashop.com" | |
| }, | |
| "Prism": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "Prism": "" | |
| }, | |
| "icon": "Prism.svg", | |
| "script": "prism\\.js", | |
| "website": "http://prismjs.com" | |
| }, | |
| "Project Wonderful": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "pw_adloader": "" | |
| }, | |
| "html": "<div[^>]+id=\"pw_adbox_", | |
| "icon": "Project Wonderful.png", | |
| "script": "^https?://(?:www\\.)?projectwonderful\\.com/(?:pwa\\.js|gen\\.php)", | |
| "website": "http://projectwonderful.com" | |
| }, | |
| "ProjectPoi": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "js": { | |
| "ProjectPoi": "" | |
| }, | |
| "script": "^(?:https):?//ppoi\\.org/lib/", | |
| "icon": "ProjectPoi.png", | |
| "website": "https://ppoi.org/" | |
| }, | |
| "Prospector": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "html": "<[^>]+data-name=['\"]prospectscript", | |
| "icon": "Prospector.png", | |
| "script": "processprospector\\.js", | |
| "website": "http://prospector.io" | |
| }, | |
| "Prototype": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Prototype.Version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Prototype.png", | |
| "script": "(?:prototype|protoaculous)(?:-([\\d.]*[\\d]))?.*\\.js\\;version:\\1", | |
| "website": "http://www.prototypejs.org" | |
| }, | |
| "Protovis": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "protovis": "" | |
| }, | |
| "script": "protovis.*\\.js", | |
| "website": "http://mbostock.github.com/protovis" | |
| }, | |
| "Proximis Omnichannel": { | |
| "cats": [ | |
| 6, | |
| 1 | |
| ], | |
| "js": { | |
| "__change": "" | |
| }, | |
| "html": "<html[^>]+data-ng-app=\"RbsChangeApp\"", | |
| "icon": "Proximis Omnichannel.png", | |
| "implies": [ | |
| "PHP", | |
| "AngularJS" | |
| ], | |
| "meta": { | |
| "generator": "Proximis Omnichannel" | |
| }, | |
| "website": "https://www.proximis.com" | |
| }, | |
| "Proximis Web to Store": { | |
| "cats": [ | |
| 5, | |
| 6 | |
| ], | |
| "icon": "Proximis Omnichannel.png", | |
| "script": "widget-commerce(?:\\.min)?\\.js", | |
| "website": "https://www.proximis.com" | |
| }, | |
| "PubMatic": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "PubMatic.png", | |
| "script": "https?://[^/]*\\.pubmatic\\.com", | |
| "website": "http://www.pubmatic.com/" | |
| }, | |
| "Public CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "PUBLICCMS_USER": "" | |
| }, | |
| "headers": { | |
| "X-Powered-PublicCMS": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Public CMS.png", | |
| "implies": "Java", | |
| "website": "http://www.publiccms.com" | |
| }, | |
| "Pure CSS": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "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" | |
| }, | |
| "Pygments": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "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 | |
| ], | |
| "headers": { | |
| "Server": "(?:^|\\s)Python(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Python.png", | |
| "website": "http://python.org" | |
| }, | |
| "Quantcast": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "quantserve": "" | |
| }, | |
| "icon": "Quantcast.png", | |
| "script": "\\.quantserve\\.com/quant\\.js", | |
| "website": "http://www.quantcast.com" | |
| }, | |
| "Question2Answer": { | |
| "cats": [ | |
| 15 | |
| ], | |
| "html": "<!-- Powered by Question2Answer", | |
| "icon": "question2answer.png", | |
| "implies": "PHP", | |
| "script": "\\./qa-content/qa-page\\.js\\?([0-9.]+)\\;version:\\1", | |
| "website": "http://www.question2answer.org" | |
| }, | |
| "Quick.CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<a href=\"[^>]+opensolution\\.org/\">CMS by", | |
| "icon": "Quick.CMS.png", | |
| "meta": { | |
| "generator": "Quick\\.CMS(?: v([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://opensolution.org" | |
| }, | |
| "Quick.Cart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<a href=\"[^>]+opensolution\\.org/\">(?:Shopping cart by|Sklep internetowy)", | |
| "icon": "Quick.Cart.png", | |
| "meta": { | |
| "generator": "Quick\\.Cart(?: v([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://opensolution.org" | |
| }, | |
| "Quill": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "js": { | |
| "Quill": "" | |
| }, | |
| "icon": "Quill.png", | |
| "website": "http://quilljs.com" | |
| }, | |
| "RAID HTTPServer": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "RAID HTTPServer(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "RBS Change": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "html": "<html[^>]+xmlns:change=", | |
| "icon": "RBS Change.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "RBS Change" | |
| }, | |
| "website": "http://www.rbschange.fr" | |
| }, | |
| "RCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "RCMS.png", | |
| "meta": { | |
| "generator": "^(?:RCMS|ReallyCMS)" | |
| }, | |
| "website": "http://www.rcms.fi" | |
| }, | |
| "RD Station": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "RDStation": "" | |
| }, | |
| "icon": "RD Station.png", | |
| "script": "d335luupugsy2\\.cloudfront\\.net/js/loader-scripts/.*-loader\\.js", | |
| "website": "http://rdstation.com.br" | |
| }, | |
| "RDoc": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": [ | |
| "<link[^>]+href=\"[^\"]*rdoc-style\\.css", | |
| "Generated by <a[^>]+href=\"https?://rdoc\\.rubyforge\\.org[^>]+>RDoc</a> ([\\d.]*\\d)\\;version:\\1" | |
| ], | |
| "icon": "RDoc.png", | |
| "implies": "Ruby", | |
| "website": "http://github.com/RDoc/RDoc" | |
| }, | |
| "RackCache": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "X-Rack-Cache": "" | |
| }, | |
| "icon": "RackCache.png", | |
| "implies": "Ruby", | |
| "website": "http://github.com/rtomayko/rack-cache" | |
| }, | |
| "RainLoop": { | |
| "cats": [ | |
| 30 | |
| ], | |
| "js": { | |
| "rainloop": "" | |
| }, | |
| "headers": { | |
| "Server": "RainLoop" | |
| }, | |
| "html": [ | |
| "<meta [^>]*(?:content=\"([^\"]+)[^>]+ id=\"rlAppVersion\"|id=\"rlAppVersion\"[^>]+ content=\"([^\"]+))\\;version:\\1?\\1:\\2", | |
| "<link[^>]* href=\"[^\"]*rainloop/v/([^/]+)\\;version:\\1" | |
| ], | |
| "icon": "RainLoop.png", | |
| "implies": "PHP", | |
| "script": "rainloop/v/([^/]+)\\;version:\\1", | |
| "website": "http://rainloop.net" | |
| }, | |
| "Rakuten DBCore": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Rakuten DBCore.png", | |
| "meta": { | |
| "generator": "Rakuten DBCore", | |
| "generator:site": "http://ecservice\\.rakuten\\.com\\.br" | |
| }, | |
| "website": "http://ecservice.rakuten.com.br" | |
| }, | |
| "Ramda": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Ramda.png", | |
| "script": "ramda.*\\.js", | |
| "website": "http://ramdajs.com" | |
| }, | |
| "Raphael": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Raphael.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Raphael.png", | |
| "script": "raphael(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "http://dmitrybaranovskiy.github.io/raphael/" | |
| }, | |
| "Rapid Logic": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Rapid Logic(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "Raspbian": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Raspbian", | |
| "X-Powered-By": "Raspbian" | |
| }, | |
| "icon": "Raspbian.svg", | |
| "website": "https://www.raspbian.org/" | |
| }, | |
| "Rayo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Rayo": "" | |
| }, | |
| "icon": "Rayo.png", | |
| "implies": [ | |
| "AngularJS", | |
| "Microsoft ASP.NET" | |
| ], | |
| "meta": { | |
| "generator": "^Rayo" | |
| }, | |
| "website": "http://www.rayo.ir" | |
| }, | |
| "Rdf": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "website": "https://www.w3.org/RDF/" | |
| }, | |
| "React": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "react.version": "(.*)\\;version:\\1", | |
| "React.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<[^>]+data-react", | |
| "icon": "React.png", | |
| "script": [ | |
| "react(?:\\-with\\-addons)?(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "/([\\d.]+)/react(?:\\.min)?\\.js\\;version:\\1", | |
| "react.*\\.js" | |
| ], | |
| "website": "http://facebook.github.io/react" | |
| }, | |
| "Red Hat": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Red Hat", | |
| "X-Powered-By": "Red Hat" | |
| }, | |
| "icon": "Red Hat.png", | |
| "website": "http://redhat.com" | |
| }, | |
| "Reddit": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "reddit": "" | |
| }, | |
| "html": "(?:<a[^>]+Powered by Reddit|powered by <a[^>]+>reddit<)", | |
| "icon": "Reddit.png", | |
| "implies": "Python", | |
| "url": "^https?://(?:www\\.)?reddit\\.com", | |
| "website": "http://code.reddit.com" | |
| }, | |
| "Redmine": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "cookies": { | |
| "_redmine_session": "" | |
| }, | |
| "html": "Powered by <a href=\"[^>]+Redmine", | |
| "icon": "Redmine.png", | |
| "implies": "Ruby on Rails", | |
| "meta": { | |
| "description": "Redmine" | |
| }, | |
| "website": "http://www.redmine.org" | |
| }, | |
| "ReDoc": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": "<redoc ", | |
| "script": "/redoc\\.(?:min\\.)?js", | |
| "js": { | |
| "Redoc.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "redoc.png", | |
| "implies": "React", | |
| "website": "https://github.com/Rebilly/ReDoc" | |
| }, | |
| "Reinvigorate": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "reinvigorate": "" | |
| }, | |
| "icon": "Reinvigorate.png", | |
| "website": "http://www.reinvigorate.net" | |
| }, | |
| "RequireJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "requirejs.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "RequireJS.png", | |
| "script": "require.*\\.js", | |
| "website": "http://requirejs.org" | |
| }, | |
| "Resin": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Resin(?:/(\\S*))?\\;version:\\1" | |
| }, | |
| "icon": "Resin.png", | |
| "implies": "Java", | |
| "website": "http://caucho.com" | |
| }, | |
| "Reveal.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Reveal.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Reveal.js.png", | |
| "implies": "Highlight.js", | |
| "script": "(?:^|/)reveal(?:\\.min)?\\.js", | |
| "website": "http://lab.hakim.se/reveal-js" | |
| }, | |
| "Revel": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "REVEL_FLASH": "", | |
| "REVEL_SESSION": "" | |
| }, | |
| "icon": "Revel.png", | |
| "implies": "Go", | |
| "website": "http://revel.github.io" | |
| }, | |
| "Rickshaw": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Rickshaw": "" | |
| }, | |
| "implies": "D3", | |
| "script": "rickshaw(?:\\.min)?\\.js", | |
| "website": "http://code.shutterstock.com/rickshaw/" | |
| }, | |
| "RightJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "RightJS": "" | |
| }, | |
| "icon": "RightJS.png", | |
| "script": "right\\.js", | |
| "website": "http://rightjs.org" | |
| }, | |
| "Riot": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "riot": "" | |
| }, | |
| "icon": "Riot.png", | |
| "script": "riot(?:\\+compiler)?(?:\\.min)?\\.js", | |
| "website": "http://muut.com/riotjs" | |
| }, | |
| "RiteCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "RiteCMS.png", | |
| "implies": [ | |
| "PHP", | |
| "SQLite\\;confidence:80" | |
| ], | |
| "meta": { | |
| "generator": "^RiteCMS(?: (.+))?\\;version:\\1" | |
| }, | |
| "website": "http://ritecms.com" | |
| }, | |
| "Roadiz CMS": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Roadiz CMS" | |
| }, | |
| "icon": "Roadiz CMS.png", | |
| "implies": [ | |
| "PHP", | |
| "Symfony" | |
| ], | |
| "meta": { | |
| "generator": "^Roadiz ([a-z0-9\\s\\.]+) - \\;version:\\1" | |
| }, | |
| "website": "http://www.roadiz.io" | |
| }, | |
| "Robin": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "_robin_getRobinJs": "", | |
| "robin_settings": "", | |
| "robin_storage_settings": "" | |
| }, | |
| "icon": "Robin.png", | |
| "website": "http://www.robinhq.com" | |
| }, | |
| "RockRMS": { | |
| "cats": [ | |
| 1, | |
| 11, | |
| 32 | |
| ], | |
| "icon": "RockRMS.svg", | |
| "implies": [ | |
| "Windows Server", | |
| "IIS", | |
| "Microsoft ASP.NET" | |
| ], | |
| "meta": { | |
| "generator": "^Rock v.*" | |
| }, | |
| "website": "http://www.rockrms.com" | |
| }, | |
| "RoundCube": { | |
| "cats": [ | |
| 30 | |
| ], | |
| "js": { | |
| "rcmail": "", | |
| "roundcube": "" | |
| }, | |
| "html": "<title>RoundCube", | |
| "icon": "RoundCube.png", | |
| "implies": "PHP", | |
| "website": "http://roundcube.net" | |
| }, | |
| "Rubicon Project": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "Rubicon Project.png", | |
| "script": "https?://[^/]*\\.rubiconproject\\.com", | |
| "website": "http://rubiconproject.com/" | |
| }, | |
| "Ruby": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "headers": { | |
| "Server": "(?:Mongrel|WEBrick|Ruby)" | |
| }, | |
| "icon": "Ruby.png", | |
| "website": "http://ruby-lang.org" | |
| }, | |
| "Ruby on Rails": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "Server": "(?:mod_rails|mod_rack|Phusion(?:\\.|_)Passenger)\\;confidence:50", | |
| "X-Powered-By": "(?:mod_rails|mod_rack|Phusion[\\._ ]Passenger)(?: \\(mod_rails/mod_rack\\))?\\;confidence:50" | |
| }, | |
| "icon": "Ruby on Rails.png", | |
| "implies": "Ruby", | |
| "meta": { | |
| "csrf-param": "^authenticity_token$\\;confidence:50" | |
| }, | |
| "script": "/assets/application-[a-z\\d]{32}/\\.js\\;confidence:50", | |
| "website": "http://rubyonrails.org" | |
| }, | |
| "Ruxit": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Ruxit.png", | |
| "script": "ruxitagentjs", | |
| "website": "http://ruxit.com" | |
| }, | |
| "RxJS": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Rx.CompositeDisposable": "", | |
| "Rx.Symbol": "" | |
| }, | |
| "icon": "RxJS.png", | |
| "script": "rx(?:\\.\\w+)?(?:\\.compat|\\.global)?(?:\\.min)?\\.js", | |
| "website": "http://reactivex.io" | |
| }, | |
| "S.Builder": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "S.Builder.png", | |
| "meta": { | |
| "generator": "S\\.Builder" | |
| }, | |
| "website": "http://www.sbuilder.ru" | |
| }, | |
| "SAP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "SAP NetWeaver Application Server" | |
| }, | |
| "icon": "SAP.png", | |
| "website": "http://sap.com" | |
| }, | |
| "SDL Tridion": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<img[^>]+_tcm\\d{2,3}-\\d{6}\\.", | |
| "icon": "SDL Tridion.png", | |
| "website": "http://www.sdl.com/products/tridion" | |
| }, | |
| "SIMsite": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "SIMsite.png", | |
| "meta": { | |
| "SIM.medium": "" | |
| }, | |
| "script": "/sim(?:site|core)/js", | |
| "website": "http://simgroep.nl/internet/portfolio-contentbeheer_41623/" | |
| }, | |
| "SMF": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "smf_": "" | |
| }, | |
| "icon": "SMF.png", | |
| "implies": "PHP", | |
| "html": "credits/?\" title=\"Simple Machines Forum\" target=\"_blank\" class=\"new_win\">SMF ([0-9.]+)</a>\\;version:\\1", | |
| "website": "http://www.simplemachines.org" | |
| }, | |
| "SOBI 2": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "(?:<!-- start of Sigsiu Online Business Index|<div[^>]* class=\"sobi2)", | |
| "icon": "SOBI 2.png", | |
| "implies": "Joomla", | |
| "website": "http://www.sigsiu.net/sobi2.html" | |
| }, | |
| "SPDY": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "excludes": "HTTP/2", | |
| "headers": { | |
| "X-Firefox-Spdy": "\\d\\.\\d" | |
| }, | |
| "icon": "SPDY.png", | |
| "website": "http://chromium.org/spdy" | |
| }, | |
| "SPIP": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Spip-Cache": "", | |
| "Composed-By": "SPIP ([\\d.]+) @\\;version:\\1" | |
| }, | |
| "icon": "SPIP.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "(?:^|\\s)SPIP(?:\\s([\\d.]+(?:\\s\\[\\d+\\])?))?\\;version:\\1" | |
| }, | |
| "website": "http://www.spip.net" | |
| }, | |
| "SQL Buddy": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "html": "(?:<title>SQL Buddy</title>|<[^>]+onclick=\"sideMainClick\\(\"home\\.php)", | |
| "icon": "SQL Buddy.png", | |
| "implies": "PHP", | |
| "website": "http://www.sqlbuddy.com" | |
| }, | |
| "SQLite": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "SQLite.png", | |
| "website": "http://www.sqlite.org" | |
| }, | |
| "SUSE": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "SUSE(?:/?\\s?-?([\\d.]+))?\\;version:\\1", | |
| "X-Powered-By": "SUSE(?:/?\\s?-?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "SUSE.png", | |
| "website": "http://suse.com" | |
| }, | |
| "SWFObject": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "SWFObject": "" | |
| }, | |
| "icon": "SWFObject.png", | |
| "script": "swfobject.*\\.js", | |
| "website": "http://github.com/swfobject/swfobject" | |
| }, | |
| "Saia PCD": { | |
| "cats": [ | |
| 45 | |
| ], | |
| "headers": { | |
| "Server": "Saia PCD(?:([/a-z\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Saia PCD.png", | |
| "website": "http://saia-pcd.com" | |
| }, | |
| "Sails.js": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "cookies": { | |
| "sails.sid": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "^Sails(?:$|[^a-z0-9])" | |
| }, | |
| "icon": "Sails.js.svg", | |
| "implies": "Express", | |
| "website": "http://sailsjs.org" | |
| }, | |
| "Salesforce": { | |
| "cats": [ | |
| 53 | |
| ], | |
| "js": { | |
| "SFDCApp": "", | |
| "SFDCCmp": "", | |
| "SFDCPage": "", | |
| "SFDCSessionVars": "" | |
| }, | |
| "cookies": { | |
| "com.salesforce": "" | |
| }, | |
| "html": "<[^>]+=\"brandQuaternaryFgrs\"", | |
| "icon": "Salesforce.svg", | |
| "website": "https://www.salesforce.com" | |
| }, | |
| "Salesforce Commerce Cloud": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "dwAnalytics": "" | |
| }, | |
| "headers": { | |
| "Server": "Demandware eCommerce Server" | |
| }, | |
| "html": "<[^>]+demandware\\.edgesuite", | |
| "script": "/demandware\\.static/", | |
| "icon": "Salesforce.svg", | |
| "website": "http://demandware.com" | |
| }, | |
| "Sarka-SPIP": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Sarka-SPIP.png", | |
| "implies": "SPIP", | |
| "meta": { | |
| "generator": "Sarka-SPIP(?:\\s([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://sarka-spip.net" | |
| }, | |
| "Sazito": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Sazito": "" | |
| }, | |
| "icon": "Sazito.svg", | |
| "meta": { | |
| "generator": "^Sazito" | |
| }, | |
| "website": "http://sazito.com" | |
| }, | |
| "Scala": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "icon": "Scala.png", | |
| "website": "http://www.scala-lang.org" | |
| }, | |
| "Scholica": { | |
| "cats": [ | |
| 21 | |
| ], | |
| "headers": { | |
| "X-Scholica-Version": "" | |
| }, | |
| "icon": "Scholica.svg", | |
| "website": "http://scholica.com" | |
| }, | |
| "Scientific Linux": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Scientific Linux", | |
| "X-Powered-By": "Scientific Linux" | |
| }, | |
| "icon": "Scientific Linux.png", | |
| "website": "http://scientificlinux.org" | |
| }, | |
| "SeamlessCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "SeamlessCMS.png", | |
| "meta": { | |
| "generator": "^Seamless\\.?CMS" | |
| }, | |
| "website": "http://www.seamlesscms.com" | |
| }, | |
| "Segment": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "analytics": "" | |
| }, | |
| "html": "<script[\\s\\S]*cdn\\.segment\\.com/analytics\\.js[\\s\\S]*script>", | |
| "icon": "Segment.png", | |
| "script": "cdn\\.segment\\.com/analytics\\.js", | |
| "website": "http://segment.com" | |
| }, | |
| "Select2": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Select2.png", | |
| "implies": "jQuery", | |
| "js": { | |
| "jQuery.fn.select2": "" | |
| }, | |
| "script": "select2(?:\\.min|\\.full)?\\.js", | |
| "website": "https://select2.org/" | |
| }, | |
| "Semantic-ui": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": [ | |
| "<link[^>]+semantic(?:\\.min)\\.css\"" | |
| ], | |
| "icon": "Semantic-ui.png", | |
| "script": "/semantic(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "https://semantic-ui.com" | |
| }, | |
| "Sencha Touch": { | |
| "cats": [ | |
| 12, | |
| 26 | |
| ], | |
| "icon": "Sencha Touch.png", | |
| "script": "sencha-touch.*\\.js", | |
| "website": "http://sencha.com/products/touch" | |
| }, | |
| "Sentinel Keys Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "SentinelKeysServer\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Sentinel.png", | |
| "website": "http://www.safenet-inc.com/software-monetization/sentinel-rms" | |
| }, | |
| "Sentinel License Monitor": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<title>Sentinel (?:Keys )?License Monitor</title>", | |
| "icon": "Sentinel.png", | |
| "website": "http://www.safenet-inc.com/software-monetization/sentinel-rms/" | |
| }, | |
| "Sentinel Protection Server": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "SentinelProtectionServer\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Sentinel.png", | |
| "website": "http://www.safenet-inc.com/software-monetization/sentinel-rms/" | |
| }, | |
| "Serendipity": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "icon": "Serendipity.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "Powered-By": "Serendipity v\\.([\\d.]+)\\;version:\\1", | |
| "generator": "Serendipity(?: v\\.([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://s9y.org" | |
| }, | |
| "Shadow": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "ShadowFramework" | |
| }, | |
| "icon": "Shadow.png", | |
| "implies": "PHP", | |
| "website": "http://shadow-technologies.co.uk" | |
| }, | |
| "Shapecss": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "Shapecss": "" | |
| }, | |
| "html": "<link[^>]* href=\"[^\"]*shapecss(?:\\.min)?\\.css", | |
| "icon": "Shapecss.svg", | |
| "script": [ | |
| "shapecss[-.]([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "/([\\d.]+)/shapecss(?:\\.min)?\\.js\\;version:\\1", | |
| "shapecss.*\\.js" | |
| ], | |
| "website": "https://shapecss.com" | |
| }, | |
| "ShareThis": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "SHARETHIS": "" | |
| }, | |
| "icon": "ShareThis.png", | |
| "script": "w\\.sharethis\\.com/", | |
| "website": "http://sharethis.com" | |
| }, | |
| "ShellInABox": { | |
| "cats": [ | |
| 46 | |
| ], | |
| "js": { | |
| "ShellInABox": "" | |
| }, | |
| "html": [ | |
| "<title>Shell In A Box</title>", | |
| "must be enabled for ShellInABox</noscript>" | |
| ], | |
| "icon": "ShellInABox.png", | |
| "website": "http://shellinabox.com" | |
| }, | |
| "ShinyStat": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "SSsdk": "" | |
| }, | |
| "html": "<img[^>]*\\s+src=['\"]?https?://www\\.shinystat\\.com/cgi-bin/shinystat\\.cgi\\?[^'\"\\s>]*['\"\\s/>]", | |
| "icon": "ShinyStat.png", | |
| "script": "^https?://codice(?:business|ssl|pro|isp)?\\.shinystat\\.com/cgi-bin/getcod\\.cgi", | |
| "website": "http://shinystat.com" | |
| }, | |
| "Shopalize": { | |
| "cats": [ | |
| 5, | |
| 10 | |
| ], | |
| "js": { | |
| "Shopalize": "" | |
| }, | |
| "icon": "Shopalize.png", | |
| "website": "http://shopalize.com" | |
| }, | |
| "Shopatron": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "shptUrl": "" | |
| }, | |
| "html": [ | |
| "<body class=\"shopatron", | |
| "<img[^>]+mediacdn\\.shopatron\\.com\\;confidence:50" | |
| ], | |
| "icon": "Shopatron.png", | |
| "meta": { | |
| "keywords": "Shopatron" | |
| }, | |
| "script": "mediacdn\\.shopatron\\.com", | |
| "website": "http://ecommerce.shopatron.com" | |
| }, | |
| "Shopcada": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Shopcada": "" | |
| }, | |
| "icon": "Shopcada.png", | |
| "website": "http://shopcada.com" | |
| }, | |
| "Shoper": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "shoper": "" | |
| }, | |
| "icon": "Shoper.svg", | |
| "website": "https://www.shoper.pl" | |
| }, | |
| "Shopery": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Shopery": "" | |
| }, | |
| "icon": "Shopery.svg", | |
| "implies": [ | |
| "PHP", | |
| "Symfony", | |
| "Elcodi" | |
| ], | |
| "website": "http://shopery.com" | |
| }, | |
| "Shopfa": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "shopfa": "" | |
| }, | |
| "meta": { | |
| "generator": "^ShopFA ([\\d.]+)$\\;version:\\1" | |
| }, | |
| "icon": "Shopfa.svg", | |
| "website": "https://shopfa.com" | |
| }, | |
| "Shopify": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "Shopify": "" | |
| }, | |
| "html": "<link[^>]+=['\"]//cdn\\.shopify\\.com", | |
| "icon": "Shopify.svg", | |
| "website": "http://shopify.com" | |
| }, | |
| "Shoptet": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "shoptet": "" | |
| }, | |
| "html": "<link [^>]*href=\"https?://cdn\\.myshoptet\\.com/", | |
| "icon": "Shoptet.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "web_author": "^Shoptet" | |
| }, | |
| "script": [ | |
| "^https?://cdn\\.myshoptet\\.com/" | |
| ], | |
| "website": "http://www.shoptet.cz" | |
| }, | |
| "Shopware": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<title>Shopware ([\\d\\.]+) [^<]+\\;version:\\1", | |
| "icon": "Shopware.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL", | |
| "jQuery" | |
| ], | |
| "meta": { | |
| "application-name": "Shopware" | |
| }, | |
| "script": [ | |
| "(?:(shopware)|/web/cache/[0-9]{10}_.+)\\.js\\;version:\\1?4:5", | |
| "/jquery\\.shopware\\.min\\.js", | |
| "/engine/Shopware/" | |
| ], | |
| "website": "http://shopware.com" | |
| }, | |
| "Silva": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "SilvaCMS" | |
| }, | |
| "icon": "Silva.png", | |
| "website": "http://silvacms.org" | |
| }, | |
| "SilverStripe": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "Powered by <a href=\"[^>]+SilverStripe", | |
| "icon": "SilverStripe.svg", | |
| "meta": { | |
| "generator": "SilverStripe" | |
| }, | |
| "website": "http://www.silverstripe.org" | |
| }, | |
| "Simplébo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-ServedBy": "simplebo" | |
| }, | |
| "icon": "Simplebo.png", | |
| "website": "https://www.simplebo.fr" | |
| }, | |
| "SimpleHTTP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "SimpleHTTP(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "Site Meter": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Site Meter.png", | |
| "script": "sitemeter\\.com/js/counter\\.js\\?site=", | |
| "website": "http://www.sitemeter.com" | |
| }, | |
| "SiteCatalyst": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "s_account": "", | |
| "s_objectID": "", | |
| "s_code": "", | |
| "s_INST": "" | |
| }, | |
| "icon": "SiteCatalyst.png", | |
| "script": "/s[_-]code.*\\.js", | |
| "website": "http://www.adobe.com/solutions/digital-marketing.html" | |
| }, | |
| "SiteEdit": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "SiteEdit.png", | |
| "meta": { | |
| "generator": "SiteEdit" | |
| }, | |
| "website": "http://www.siteedit.ru" | |
| }, | |
| "Sitecore": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "SC_ANALYTICS_GLOBAL_COOKIE": "" | |
| }, | |
| "html": "<img[^>]+src=\"[^>]*/~/media/[^>]+\\.ashx", | |
| "icon": "Sitecore.png", | |
| "website": "http://sitecore.net" | |
| }, | |
| "Sitefinity": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Sitefinity.svg", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "^Sitefinity (.+)$\\;version:\\1" | |
| }, | |
| "website": "http://www.sitefinity.com" | |
| }, | |
| "Sivuviidakko": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Sivuviidakko.png", | |
| "meta": { | |
| "generator": "Sivuviidakko" | |
| }, | |
| "website": "http://sivuviidakko.fi" | |
| }, | |
| "Sizmek": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "html": "(?:<a [^>]*href=\"[^/]*//[^/]*serving-sys\\.com/|<img [^>]*src=\"[^/]*//[^/]*serving-sys\\.com/)", | |
| "icon": "Sizmek.png", | |
| "script": "serving-sys\\.com/", | |
| "website": "http://sizmek.com" | |
| }, | |
| "Slick": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<link [^>]+(?:/([\\d.]+)/)?slick-theme\\.css\\;version:\\1", | |
| "implies": "jQuery", | |
| "script": "(?:/([\\d.]+))?/slick(?:\\.min)?\\.js\\;version:\\1", | |
| "website": "http://kenwheeler.github.io/slick" | |
| }, | |
| "Slimbox": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<link [^>]*href=\"[^/]*slimbox(?:-rtl)?\\.css", | |
| "icon": "Slimbox.png", | |
| "implies": "MooTools", | |
| "script": "slimbox\\.js", | |
| "website": "http://www.digitalia.be/software/slimbox" | |
| }, | |
| "Slimbox 2": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "html": "<link [^>]*href=\"[^/]*slimbox2(?:-rtl)?\\.css", | |
| "icon": "Slimbox 2.png", | |
| "implies": "jQuery", | |
| "script": "slimbox2\\.js", | |
| "website": "http://www.digitalia.be/software/slimbox2" | |
| }, | |
| "Smart Ad Server": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "SmartAdServer": "" | |
| }, | |
| "html": "<img[^>]+smartadserver\\.com\\/call", | |
| "icon": "Smart Ad Server.png", | |
| "website": "http://smartadserver.com" | |
| }, | |
| "SmartSite": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+/smartsite\\.(?:dws|shtml)\\?id=", | |
| "icon": "SmartSite.png", | |
| "meta": { | |
| "author": "Redacteur SmartInstant" | |
| }, | |
| "website": "http://www.seneca.nl/pub/Smartsite/Smartsite-Smartsite-iXperion" | |
| }, | |
| "Smartstore": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Smartstore.png", | |
| "script": "smjslib\\.js", | |
| "website": "http://smartstore.com" | |
| }, | |
| "Snap": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Snap/([.\\d]+)\\;version:\\1" | |
| }, | |
| "icon": "Snap.png", | |
| "implies": "Haskell", | |
| "website": "http://snapframework.com" | |
| }, | |
| "Snap.svg": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Snap.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Snap.svg.png", | |
| "script": "snap\\.svg(?:-min)?\\.js", | |
| "website": "http://snapsvg.io" | |
| }, | |
| "Snoobi": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "snoobi": "" | |
| }, | |
| "icon": "Snoobi.png", | |
| "script": "snoobi\\.com/snoop\\.php", | |
| "website": "http://www.snoobi.com" | |
| }, | |
| "SobiPro": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "SobiProUrl": "" | |
| }, | |
| "icon": "SobiPro.png", | |
| "implies": "Joomla", | |
| "website": "http://sigsiu.net/sobipro.html" | |
| }, | |
| "Socket.io": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "io.Socket": "", | |
| "io.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Socket.io.png", | |
| "implies": "Node.js", | |
| "script": "socket\\.io.*\\.js", | |
| "website": "https://socket.io" | |
| }, | |
| "Solodev": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "solodev_session": "" | |
| }, | |
| "html": "<div class=[\"']dynamicDiv[\"'] id=[\"']dd\\.\\d\\.\\d(?:\\.\\d)?[\"']>", | |
| "icon": "Solodev.png", | |
| "implies": "PHP", | |
| "website": "http://www.solodev.com" | |
| }, | |
| "Solr": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "icon": "Solr.png", | |
| "implies": "Lucene", | |
| "website": "http://lucene.apache.org/solr/" | |
| }, | |
| "Solusquare OmniCommerce Cloud": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "_solusquare": "" | |
| }, | |
| "meta": { | |
| "generator": "^Solusquare$" | |
| }, | |
| "icon": "Solusquare.png", | |
| "implies": "Adobe ColdFusion", | |
| "website": "https://www.solusquare.com" | |
| }, | |
| "Solve Media": { | |
| "cats": [ | |
| 16, | |
| 36 | |
| ], | |
| "js": { | |
| "_ACPuzzle": "", | |
| "ACPuzzle": "", | |
| "_adcopy-puzzle-image-image": "", | |
| "adcopy-puzzle-image-image": "" | |
| }, | |
| "icon": "Solve Media.png", | |
| "script": "^https?://api\\.solvemedia\\.com/", | |
| "website": "http://solvemedia.com" | |
| }, | |
| "SonarQubes": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "js": { | |
| "SonarMeasures": "", | |
| "SonarRequest": "" | |
| }, | |
| "html": [ | |
| "<link href=\"/css/sonar\\.css\\?v=([\\d.]+)\\;version:\\1", | |
| "<title>SonarQube</title>" | |
| ], | |
| "icon": "sonar.png", | |
| "implies": "Java", | |
| "meta": { | |
| "application-name": "^SonarQubes$" | |
| }, | |
| "script": "^/js/bundles/sonar\\.js?v=([\\d.]+)$\\;version:\\1", | |
| "website": "https://www.sonarqube.org/" | |
| }, | |
| "SoundManager": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "SoundManager": "", | |
| "soundManager.version": "V(.+) \\;version:\\1", | |
| "BaconPlayer": "" | |
| }, | |
| "icon": "SoundManager.png", | |
| "website": "http://www.schillmania.com/projects/soundmanager2" | |
| }, | |
| "Sparql": { | |
| "cats": [ | |
| 27 | |
| ], | |
| "website": "https://www.w3.org/TR/sparql11-overview/" | |
| }, | |
| "Sphinx": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "js": { | |
| "DOCUMENTATION_OPTIONS": "" | |
| }, | |
| "html": "Created using <a href=\"https?://sphinx-doc\\.org/\">Sphinx</a> ([.\\d+])+\\.\\;version:\\1", | |
| "icon": "Sphinx.png", | |
| "implies": "Python", | |
| "website": "http://sphinx.pocoo.org" | |
| }, | |
| "SpiderControl iniNet": { | |
| "cats": [ | |
| 45 | |
| ], | |
| "icon": "SpiderControl iniNet.png", | |
| "meta": { | |
| "generator": "iniNet SpiderControl" | |
| }, | |
| "website": "http://spidercontrol.net/ininet" | |
| }, | |
| "SpinCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "spincms_session": "" | |
| }, | |
| "icon": "SpinCMS.png", | |
| "implies": "PHP", | |
| "website": "http://www.spin.cw" | |
| }, | |
| "Splunk": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<p class=\"footer\">© [-\\d]+ Splunk Inc\\.(?: Splunk ([\\d\\.]+(?: build [\\d\\.]*\\d)?))?[^<]*</p>\\;version:\\1", | |
| "icon": "Splunk.png", | |
| "meta": { | |
| "author": "Splunk Inc\\;confidence:50" | |
| }, | |
| "website": "http://splunk.com" | |
| }, | |
| "Splunkd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Splunkd" | |
| }, | |
| "icon": "Splunk.png", | |
| "website": "http://splunk.com" | |
| }, | |
| "Spree": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "(?:<link[^>]*/assets/store/all-[a-z\\d]{32}\\.css[^>]+>|<script>\\s*Spree\\.(?:routes|translations|api_key))", | |
| "icon": "Spree.png", | |
| "implies": "Ruby on Rails", | |
| "website": "http://spreecommerce.com" | |
| }, | |
| "Squarespace": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Squarespace": "" | |
| }, | |
| "html": "<!-- This is Squarespace\\. -->", | |
| "headers": { | |
| "X-ServedBy": "squarespace" | |
| }, | |
| "icon": "Squarespace.png", | |
| "website": "http://www.squarespace.com" | |
| }, | |
| "Pagevamp": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Pagevamp": "" | |
| }, | |
| "headers": { | |
| "X-ServedBy": "pagevamp" | |
| }, | |
| "icon": "Pagevamp.png", | |
| "website": "https://www.pagevamp.com" | |
| }, | |
| "SquirrelMail": { | |
| "cats": [ | |
| 30 | |
| ], | |
| "js": { | |
| "squirrelmail_loginpage_onload": "" | |
| }, | |
| "html": "<small>SquirrelMail version ([.\\d]+)[^<]*<br \\;version:\\1", | |
| "icon": "SquirrelMail.png", | |
| "implies": "PHP", | |
| "url": "/src/webmail\\.php(?:$|\\?)", | |
| "website": "http://squirrelmail.org" | |
| }, | |
| "Squiz Matrix": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Squiz Matrix" | |
| }, | |
| "html": "<!--\\s+Running (?:MySource|Squiz) Matrix", | |
| "icon": "Squiz Matrix.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Squiz Matrix" | |
| }, | |
| "website": "http://squiz.net" | |
| }, | |
| "Stackla": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "js": { | |
| "Stackla": "" | |
| }, | |
| "icon": "Stackla.png", | |
| "script": "assetscdn\\.stackla\\.com\\/media\\/js\\/widget\\/(?:[a-zA-Z0-9.]+)?\\.js", | |
| "website": "http://stackla.com/" | |
| }, | |
| "Stackla Social Hub": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "stacklaSocialHub": "" | |
| }, | |
| "icon": "Stackla.png", | |
| "website": "http://stackla.com/" | |
| }, | |
| "Starlet": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Plack::Handler::Starlet" | |
| }, | |
| "icon": "Starlet.png", | |
| "implies": "Perl", | |
| "website": "http://metacpan.org/pod/Starlet" | |
| }, | |
| "Statcounter": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Statcounter.svg", | |
| "js": { | |
| "_statcounter": "\\;confidence:100", | |
| "sc_project": "\\;confidence:50", | |
| "sc_security": "\\;confidence:50" | |
| }, | |
| "script": "statcounter\\.com/counter/counter", | |
| "website": "http://www.statcounter.com" | |
| }, | |
| "Storeden": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Storeden" | |
| }, | |
| "icon": "storeden.svg", | |
| "website": "https://www.storeden.com" | |
| }, | |
| "Store Systems": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "Shopsystem von <a href=[^>]+store-systems\\.de\"|\\.mws_boxTop", | |
| "icon": "Store Systems.png", | |
| "website": "http://store-systems.de" | |
| }, | |
| "Storyblok": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "storyblok.png", | |
| "meta": { | |
| "generator": "storyblok" | |
| }, | |
| "website": "https://www.storyblok.com" | |
| }, | |
| "Strapdown.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "strapdown.js.png", | |
| "implies": [ | |
| "Bootstrap", | |
| "Google Code Prettify" | |
| ], | |
| "script": "strapdown\\.js", | |
| "website": "http://strapdownjs.com" | |
| }, | |
| "Strato": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<a href=\"http://www\\.strato\\.de/\" target=\"_blank\">", | |
| "icon": "strato.png", | |
| "website": "http://shop.strato.com" | |
| }, | |
| "Stripe": { | |
| "cats": [ | |
| 41 | |
| ], | |
| "js": { | |
| "Stripe.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<input[^>]+data-stripe", | |
| "icon": "Stripe.png", | |
| "script": "js\\.stripe\\.com", | |
| "website": "http://stripe.com" | |
| }, | |
| "styled-components": { | |
| "cats": [ | |
| 12, | |
| 47 | |
| ], | |
| "implies": [ | |
| "React" | |
| ], | |
| "icon": "styled-components.png", | |
| "website": "https://styled-components.com", | |
| "html": "<style[^>]*data-styled-components", | |
| "js": { | |
| "styled": "" | |
| } | |
| }, | |
| "SublimeVideo": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "js": { | |
| "sublimevideo": "" | |
| }, | |
| "icon": "SublimeVideo.png", | |
| "script": "cdn\\.sublimevideo\\.net/js/[a-z\\d]+\\.js", | |
| "website": "http://sublimevideo.net" | |
| }, | |
| "Subrion": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-CMS": "Subrion CMS" | |
| }, | |
| "icon": "Subrion.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^Subrion " | |
| }, | |
| "website": "http://subrion.com" | |
| }, | |
| "Sulu": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Generator": "Sulu/?(.+)?$\\;version:\\1" | |
| }, | |
| "icon": "Sulu.svg", | |
| "implies": "Symfony", | |
| "website": "http://sulu.io" | |
| }, | |
| "SumoMe": { | |
| "cats": [ | |
| 5, | |
| 32 | |
| ], | |
| "icon": "SumoMe.png", | |
| "script": "load\\.sumome\\.com", | |
| "website": "http://sumome.com" | |
| }, | |
| "SunOS": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "SunOS( [\\d\\.]+)?\\;version:\\1", | |
| "Servlet-engine": "SunOS( [\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Oracle.png", | |
| "website": "http://oracle.com/solaris" | |
| }, | |
| "Supersized": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "icon": "Supersized.png", | |
| "script": "supersized(?:\\.([\\d.]*[\\d]))?.*\\.js\\;version:\\1", | |
| "website": "http://buildinternet.com/project/supersized" | |
| }, | |
| "Svbtle": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "svbtle.png", | |
| "meta": { | |
| "generator": "^Svbtle\\.com$" | |
| }, | |
| "url": "^https?://[^/]+\\.svbtle\\.com", | |
| "website": "https://www.svbtle.com" | |
| }, | |
| "SweetAlert": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "swal": "" | |
| }, | |
| "html": "<link[^>]+?href=\"[^\"]+sweet-alert(?:\\.min)?\\.css", | |
| "icon": "SweetAlert.png", | |
| "script": "sweet-alert(?:\\.min)?\\.js", | |
| "website": "http://t4t5.github.io/sweetalert/" | |
| }, | |
| "SweetAlert2": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "excludes": "SweetAlert", | |
| "html": "<link[^>]+?href=\"[^\"]+sweetalert2(?:\\.min)?\\.css", | |
| "icon": "SweetAlert2.png", | |
| "script": "sweetalert2(?:\\.all)?(?:\\.min)?\\.js", | |
| "website": "https://sweetalert2.github.io/" | |
| }, | |
| "Swiftlet": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Generator": "Swiftlet", | |
| "X-Powered-By": "Swiftlet", | |
| "X-Swiftlet-Cache": "" | |
| }, | |
| "html": "Powered by <a href=\"[^>]+Swiftlet", | |
| "icon": "Swiftlet.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "Swiftlet" | |
| }, | |
| "website": "http://swiftlet.org" | |
| }, | |
| "Swiftype": { | |
| "cats": [ | |
| 29 | |
| ], | |
| "js": { | |
| "Swiftype": "" | |
| }, | |
| "icon": "swiftype.png", | |
| "script": "swiftype\\.com/embed\\.js$", | |
| "website": "http://swiftype.com" | |
| }, | |
| "Symfony": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "icon": "Symfony.png", | |
| "implies": "PHP", | |
| "website": "http://symfony.com" | |
| }, | |
| "Synology DiskStation": { | |
| "cats": [ | |
| 48 | |
| ], | |
| "html": "<noscript><div class='syno-no-script'", | |
| "icon": "Synology DiskStation.png", | |
| "meta": { | |
| "application-name": "Synology DiskStation", | |
| "description": "^DiskStation provides a full-featured network attached storage" | |
| }, | |
| "script": "webapi/entry\\.cgi\\?api=SYNO\\.(?:Core|Filestation)\\.Desktop\\.", | |
| "website": "http://synology.com" | |
| }, | |
| "SyntaxHighlighter": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "SyntaxHighlighter": "" | |
| }, | |
| "html": "<(?:script|link)[^>]*sh(?:Core|Brush|ThemeDefault)", | |
| "icon": "SyntaxHighlighter.png", | |
| "website": "http://github.com/syntaxhighlighter" | |
| }, | |
| "TWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "cookies": { | |
| "TWIKISID": "" | |
| }, | |
| "html": "<img [^>]*(?:title|alt)=\"This site is powered by the TWiki collaboration platform", | |
| "icon": "TWiki.png", | |
| "implies": "Perl", | |
| "script": "(?:TWikiJavascripts|twikilib(?:\\.min)?\\.js)", | |
| "website": "http://twiki.org" | |
| }, | |
| "TYPO3 CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<(?:script[^>]+ src|link[^>]+ href)=[^>]+typo3temp/", | |
| "icon": "TYPO3.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "TYPO3\\s+(?:CMS\\s+)?([\\d.]+)?(?:\\s+CMS)?\\;version:\\1" | |
| }, | |
| "url": "/typo3/", | |
| "website": "http://www.typo3.org" | |
| }, | |
| "Taiga": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "taigaConfig": "" | |
| }, | |
| "icon": "Taiga.png", | |
| "implies": [ | |
| "Django", | |
| "AngularJS" | |
| ], | |
| "website": "http://taiga.io" | |
| }, | |
| "Tawk.to": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "TawkTo.png", | |
| "script": "//embed\\.tawk\\.to", | |
| "website": "http://tawk.to" | |
| }, | |
| "Tealeaf": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "TeaLeaf": "" | |
| }, | |
| "icon": "Tealeaf.png", | |
| "website": "http://www.tealeaf.com" | |
| }, | |
| "Tealium": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "TEALIUMENABLED": "" | |
| }, | |
| "icon": "Tealium.png", | |
| "script": [ | |
| "^//tags\\.tiqcdn\\.com/", | |
| "/tealium/utag\\.js$" | |
| ], | |
| "website": "http://tealium.com" | |
| }, | |
| "TeamCity": { | |
| "cats": [ | |
| 44 | |
| ], | |
| "html": "<span class=\"versionTag\"><span class=\"vWord\">Version</span> ([\\d\\.]+)\\;version:\\1", | |
| "icon": "TeamCity.svg", | |
| "implies": [ | |
| "Apache Tomcat", | |
| "Java", | |
| "jQuery", | |
| "Moment.js", | |
| "Prototype", | |
| "React", | |
| "Underscore.js" | |
| ], | |
| "meta": { | |
| "application-name": "TeamCity" | |
| }, | |
| "website": "https://www.jetbrains.com/teamcity/" | |
| }, | |
| "Telescope": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "Telescope": "" | |
| }, | |
| "icon": "Telescope.png", | |
| "implies": [ | |
| "Meteor", | |
| "React" | |
| ], | |
| "website": "http://telescopeapp.org" | |
| }, | |
| "Tengine": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Tengine" | |
| }, | |
| "icon": "Tengine.png", | |
| "website": "http://tengine.taobao.org" | |
| }, | |
| "Textalk": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "meta": { | |
| "generator": "Textalk Webshop" | |
| }, | |
| "icon": "textalk.png", | |
| "website": "https://www.textalk.se" | |
| }, | |
| "Textpattern CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Textpattern CMS.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "meta": { | |
| "generator": "Textpattern" | |
| }, | |
| "website": "http://textpattern.com" | |
| }, | |
| "Thelia": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "html": "<(?:link|style|script)[^>]+/assets/frontOffice/", | |
| "icon": "Thelia.png", | |
| "implies": [ | |
| "PHP", | |
| "Symfony" | |
| ], | |
| "website": "http://thelia.net" | |
| }, | |
| "ThinkPHP": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "ThinkPHP" | |
| }, | |
| "icon": "ThinkPHP.png", | |
| "implies": "PHP", | |
| "website": "http://www.thinkphp.cn" | |
| }, | |
| "Ticimax": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Ticimax.png", | |
| "script": [ | |
| "cdn\\.ticimax\\.com/" | |
| ], | |
| "website": "https://www.ticimax.com" | |
| }, | |
| "Tictail": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<link[^>]*tictail\\.com", | |
| "icon": "tictail.png", | |
| "website": "https://tictail.com" | |
| }, | |
| "TiddlyWiki": { | |
| "cats": [ | |
| 1, | |
| 2, | |
| 4, | |
| 8 | |
| ], | |
| "js": { | |
| "tiddler": "" | |
| }, | |
| "html": "<[^>]*type=[^>]text\\/vnd\\.tiddlywiki", | |
| "icon": "TiddlyWiki.png", | |
| "meta": { | |
| "application-name": "^TiddlyWiki$", | |
| "copyright": "^TiddlyWiki created by Jeremy Ruston", | |
| "generator": "^TiddlyWiki$", | |
| "tiddlywiki-version": "(.*)\\;version:\\1" | |
| }, | |
| "website": "http://tiddlywiki.com" | |
| }, | |
| "Tiki Wiki CMS Groupware": { | |
| "cats": [ | |
| 1, | |
| 2, | |
| 8, | |
| 11, | |
| 13 | |
| ], | |
| "icon": "Tiki Wiki CMS Groupware.png", | |
| "meta": { | |
| "generator": "^Tiki" | |
| }, | |
| "script": "(?:/|_)tiki", | |
| "website": "http://tiki.org" | |
| }, | |
| "Tilda": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Tilda.svg", | |
| "html": "<link[^>]* href=[^>]+tilda(?:cdn|\\.ws|-blocks)", | |
| "script": "tilda(?:cdn|\\.ws|-blocks)", | |
| "website": "https://tilda.cc" | |
| }, | |
| "Timeplot": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Timeplot": "" | |
| }, | |
| "icon": "Timeplot.png", | |
| "script": "timeplot.*\\.js", | |
| "website": "http://www.simile-widgets.org/timeplot/" | |
| }, | |
| "TinyMCE": { | |
| "cats": [ | |
| 24 | |
| ], | |
| "script": "/tinymce(?:\\.min)?\\.js", | |
| "js": { | |
| "tinyMCE.majorVersion": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "TinyMCE.png", | |
| "website": "http://tinymce.com" | |
| }, | |
| "Titan": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "titan": "", | |
| "titanEnabled": "" | |
| }, | |
| "html": "<script[^>]+>var titan", | |
| "icon": "Titan.png", | |
| "website": "http://titan360.com" | |
| }, | |
| "TomatoCart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "AjaxShoppingCart": "" | |
| }, | |
| "icon": "TomatoCart.png", | |
| "meta": { | |
| "generator": "TomatoCart" | |
| }, | |
| "website": "http://tomatocart.com" | |
| }, | |
| "TornadoServer": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "TornadoServer(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "TornadoServer.png", | |
| "website": "http://tornadoweb.org" | |
| }, | |
| "TotalCode": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^TotalCode$" | |
| }, | |
| "icon": "TotalCode.png", | |
| "website": "http://www.totalcode.com" | |
| }, | |
| "Trac": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "html": [ | |
| "<a id=\"tracpowered", | |
| "Powered by <a href=\"[^\"]*\"><strong>Trac(?:[ /]([\\d.]+))?\\;version:\\1" | |
| ], | |
| "icon": "Trac.png", | |
| "implies": "Python", | |
| "website": "http://trac.edgewall.org" | |
| }, | |
| "TrackJs": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "TrackJs": "" | |
| }, | |
| "icon": "TrackJs.png", | |
| "script": "tracker\\.js", | |
| "website": "http://trackjs.com" | |
| }, | |
| "Transifex": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "transifex.png", | |
| "js": { | |
| "Transifex.live.lib_version": "(.+)\\;version:\\1" | |
| }, | |
| "website": "https://www.transifex.com" | |
| }, | |
| "Translucide": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "translucide.svg", | |
| "implies": [ | |
| "PHP", | |
| "jQuery" | |
| ], | |
| "script": "lucide\\.init(?:\\.min)?\\.js", | |
| "website": "http://www.translucide.net" | |
| }, | |
| "T-Soft": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Tsoft.png", | |
| "meta": { | |
| "copyright": "T-Soft E-Ticaret Sistemleri" | |
| }, | |
| "website": "http://www.tsoft.com.tr/" | |
| }, | |
| "Tumblr": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "headers": { | |
| "X-Tumblr-User": "" | |
| }, | |
| "html": "<iframe src=\"[^>]+tumblr\\.com", | |
| "icon": "Tumblr.png", | |
| "url": "^https?://(?:www\\.)?[^/]+\\.tumblr\\.com/", | |
| "website": "http://www.tumblr.com" | |
| }, | |
| "TweenMax": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "TweenMax.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "TweenMax.png", | |
| "script": "TweenMax(?:\\.min)?\\.js", | |
| "website": "http://greensock.com/tweenmax" | |
| }, | |
| "Twilight CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-CMS": "Twilight CMS" | |
| }, | |
| "icon": "Twilight CMS.png", | |
| "website": "http://www.twilightcms.com" | |
| }, | |
| "TwistPHP": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "TwistPHP" | |
| }, | |
| "icon": "TwistPHP.png", | |
| "implies": "PHP", | |
| "website": "http://twistphp.com" | |
| }, | |
| "TwistedWeb": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "TwistedWeb(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "TwistedWeb.png", | |
| "website": "http://twistedmatrix.com/trac/wiki/TwistedWeb" | |
| }, | |
| "Twitter": { | |
| "cats": [ | |
| 5 | |
| ], | |
| "icon": "Twitter.svg", | |
| "script": "//platform\\.twitter\\.com/widgets\\.js", | |
| "website": "http://twitter.com" | |
| }, | |
| "Bootstrap": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": [ | |
| "<style>/\\*!\\* Bootstrap v(\\d\\.\\d\\.\\d)\\;version:\\1", | |
| "<link[^>]+?href=[^\"]/css/([\\d.]+)/bootstrap\\.(?:min\\.)?css\\;version:\\1", | |
| "<link[^>]+?href=\"[^\"]*bootstrap(?:\\.min)?\\.css", | |
| "<div[^>]+class=\"[^\"]*glyphicon glyphicon-" | |
| ], | |
| "js": { | |
| "bootstrap.Alert.VERSION": "(.*)\\;version:\\1", | |
| "jQuery.fn.tooltip.Constructor.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Bootstrap.svg", | |
| "script": [ | |
| "twitter\\.github\\.com/bootstrap", | |
| "bootstrap(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "(?:/([\\d.]+))?(?:/js)?/bootstrap(?:\\.min)?\\.js\\;version:\\1" | |
| ], | |
| "website": "https://getbootstrap.com" | |
| }, | |
| "Twitter Emoji (Twemoji)": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "twemoji": "" | |
| }, | |
| "script": "twemoji(?:\\.min)?\\.js", | |
| "website": "http://twitter.github.io/twemoji/" | |
| }, | |
| "Twitter Flight": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "flight": "" | |
| }, | |
| "icon": "Twitter Flight.png", | |
| "implies": "jQuery", | |
| "website": "http://flightjs.github.io/" | |
| }, | |
| "Twitter typeahead.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "typeahead": "" | |
| }, | |
| "icon": "Twitter typeahead.js.png", | |
| "implies": "jQuery", | |
| "script": "(?:typeahead|bloodhound)\\.(?:jquery|bundle)?(?:\\.min)?\\.js", | |
| "website": "http://twitter.github.io/typeahead.js" | |
| }, | |
| "TypePad": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "TypePad.png", | |
| "meta": { | |
| "generator": "typepad" | |
| }, | |
| "url": "typepad\\.com", | |
| "website": "http://www.typepad.com" | |
| }, | |
| "Typecho": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "typecho.svg", | |
| "implies": "PHP", | |
| "js": { | |
| "TypechoComment": "" | |
| }, | |
| "meta": { | |
| "generator": "Typecho( [\\d.]+)?\\;version:\\1" | |
| }, | |
| "url": "/admin/login\\.php?referer=http%3A%2F%2F", | |
| "website": "http://typecho.org/" | |
| }, | |
| "Typekit": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "js": { | |
| "Typekit.config.js": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Typekit.png", | |
| "script": "use\\.typekit\\.com", | |
| "website": "http://typekit.com" | |
| }, | |
| "uCoz": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "uCoz": "" | |
| }, | |
| "icon": "uCoz.svg", | |
| "website": "https://ucoz.ru" | |
| }, | |
| "UIKit": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "icon": "UIKit.png", | |
| "html": "<[^>]+class=\"[^\"]*(?:uk-container|uk-section)", | |
| "script": "uikit.*\\.js", | |
| "website": "https://getuikit.com" | |
| }, | |
| "UNIX": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Unix" | |
| }, | |
| "icon": "UNIX.png", | |
| "website": "http://unix.org" | |
| }, | |
| "Ubercart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Ubercart.png", | |
| "implies": "Drupal", | |
| "script": "uc_cart/uc_cart_block\\.js", | |
| "website": "http://www.ubercart.org" | |
| }, | |
| "Ubuntu": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Ubuntu", | |
| "X-Powered-By": "Ubuntu" | |
| }, | |
| "icon": "Ubuntu.png", | |
| "website": "http://www.ubuntu.com/server" | |
| }, | |
| "UltraCart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "ucCatalog": "" | |
| }, | |
| "html": "<form [^>]*action=\"[^\"]*\\/cgi-bin\\/UCEditor\\?(?:[^\"]*&)?merchantId=[^\"]", | |
| "icon": "UltraCart.png", | |
| "script": "cgi-bin\\/UCJavaScript\\?(?:[^\"]*&)?merchantid=", | |
| "url": "/cgi-bin/UCEditor\\?(?:.*&)?merchantid=", | |
| "website": "http://ultracart.com" | |
| }, | |
| "Umbraco": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "UC_IMAGE_SERVICE|ITEM_INFO_SERVICE": "", | |
| "UC_ITEM_INFO_SERVICE": "", | |
| "UC_SETTINGS": "", | |
| "Umbraco": "" | |
| }, | |
| "headers": { | |
| "X-Umbraco-Version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "powered by <a href=[^>]+umbraco", | |
| "icon": "Umbraco.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "umbraco" | |
| }, | |
| "url": "/umbraco/login\\.aspx(?:$|\\?)", | |
| "website": "http://umbraco.com" | |
| }, | |
| "UMI.CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Generated-By": "UMI\\.CMS" | |
| }, | |
| "icon": "UMI.CMS.png", | |
| "implies": "PHP", | |
| "website": "https://www.umi-cms.ru" | |
| }, | |
| "Unbounce": { | |
| "cats": [ | |
| 20, | |
| 51 | |
| ], | |
| "headers": { | |
| "X-Unbounce-PageId": "" | |
| }, | |
| "icon": "Unbounce.png", | |
| "script": "ubembed\\.com", | |
| "website": "http://unbounce.com" | |
| }, | |
| "Underscore.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Underscore.js.png", | |
| "js": { | |
| "_.VERSION": "(.*)\\;version:\\1" | |
| }, | |
| "script": "underscore.*\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1", | |
| "website": "http://underscorejs.org" | |
| }, | |
| "Usabilla": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "usabilla_live": "" | |
| }, | |
| "icon": "Usabilla.svg", | |
| "website": "http://usabilla.com" | |
| }, | |
| "UserEngage": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "UserEngage": "" | |
| }, | |
| "icon": "UserEngage.png", | |
| "html": "<div[^>]+/id=\"ue_widget\"", | |
| "website": "https://userengage.com" | |
| }, | |
| "UserLike": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "UserLike.svg", | |
| "script": [ | |
| "userlike\\.min\\.js", | |
| "userlikelib\\.min\\.js" | |
| ], | |
| "website": "http://userlike.com" | |
| }, | |
| "UserRules": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "_usrp": "" | |
| }, | |
| "icon": "UserRules.png", | |
| "website": "http://www.userrules.com" | |
| }, | |
| "UserVoice": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "js": { | |
| "UserVoice": "" | |
| }, | |
| "icon": "UserVoice.png", | |
| "website": "http://uservoice.com" | |
| }, | |
| "Ushahidi": { | |
| "cats": [ | |
| 1, | |
| 35 | |
| ], | |
| "js": { | |
| "Ushahidi": "" | |
| }, | |
| "cookies": { | |
| "ushahidi": "" | |
| }, | |
| "icon": "Ushahidi.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL", | |
| "OpenLayers" | |
| ], | |
| "script": "/js/ushahidi\\.js$", | |
| "website": "http://www.ushahidi.com" | |
| }, | |
| "VIVVO": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "vivvo": "" | |
| }, | |
| "cookies": { | |
| "VivvoSessionId": "" | |
| }, | |
| "icon": "VIVVO.png", | |
| "website": "http://vivvo.net" | |
| }, | |
| "VP-ASP": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<a[^>]+>Powered By VP-ASP Shopping Cart</a>", | |
| "icon": "VP-ASP.png", | |
| "implies": "Microsoft ASP.NET", | |
| "script": "vs350\\.js", | |
| "website": "http://www.vpasp.com" | |
| }, | |
| "VTEX Enterprise": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "powered": "vtex" | |
| }, | |
| "icon": "VTEX Enterprise.png", | |
| "website": "http://vtex.com" | |
| }, | |
| "VTEX Integrated Store": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "vtex-integrated-store" | |
| }, | |
| "icon": "VTEX Integrated Store.png", | |
| "website": "http://lojaintegrada.com.br" | |
| }, | |
| "Vaadin": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "vaadin": "" | |
| }, | |
| "icon": "Vaadin.svg", | |
| "implies": "Java", | |
| "script": "vaadinBootstrap\\.js(?:\\?v=([\\d.]+))?\\;version:\\1", | |
| "website": "https://vaadin.com" | |
| }, | |
| "Vanilla": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Vanilla" | |
| }, | |
| "html": "<body id=\"(?:DiscussionsPage|vanilla)", | |
| "icon": "Vanilla.png", | |
| "implies": "PHP", | |
| "website": "http://vanillaforums.org" | |
| }, | |
| "Varnish": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "Via": "varnish(?: \\(Varnish/([\\d.]+)\\))?\\;version:\\1", | |
| "X-Varnish": "", | |
| "X-Varnish-Action": "", | |
| "X-Varnish-Age": "", | |
| "X-Varnish-Cache": "", | |
| "X-Varnish-Hostname": "" | |
| }, | |
| "icon": "Varnish.svg", | |
| "website": "http://www.varnish-cache.org" | |
| }, | |
| "Venda": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "headers": { | |
| "X-venda-hitid": "" | |
| }, | |
| "icon": "Venda.png", | |
| "website": "http://venda.com" | |
| }, | |
| "Veoxa": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "VuVeoxaContent": "" | |
| }, | |
| "html": "<img [^>]*src=\"[^\"]+tracking\\.veoxa\\.com", | |
| "icon": "Veoxa.png", | |
| "script": "tracking\\.veoxa\\.com", | |
| "website": "http://veoxa.com" | |
| }, | |
| "VideoJS": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "js": { | |
| "VideoJS": "" | |
| }, | |
| "html": "<div[^>]+class=\"video-js+\">", | |
| "icon": "VideoJS.png", | |
| "script": "zencdn\\.net/c/video\\.js", | |
| "website": "http://videojs.com" | |
| }, | |
| "Vigbo": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "_gphw_mode": "" | |
| }, | |
| "icon": "vigbo.png", | |
| "html": "<link[^>]* href=[^>]+(?:\\.vigbo\\.com|\\.gophotoweb\\.com)", | |
| "script": "(?:\\.vigbo\\.com|\\.gophotoweb\\.com)", | |
| "website": "https://vigbo.com" | |
| }, | |
| "VigLink": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "vglnk": "", | |
| "vl_cB": "", | |
| "vl_disable": "" | |
| }, | |
| "icon": "VigLink.png", | |
| "script": "(?:^[^/]*//[^/]*viglink\\.com/api/|vglnk\\.js)", | |
| "website": "http://viglink.com" | |
| }, | |
| "Vignette": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<[^>]+=\"vgn-?ext", | |
| "icon": "Vignette.png", | |
| "website": "http://www.vignette.com" | |
| }, | |
| "Vimeo": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "html": "(?:<(?:param|embed)[^>]+vimeo\\.com/moogaloop|<iframe[^>]player\\.vimeo\\.com)", | |
| "icon": "Vimeo.png", | |
| "website": "http://vimeo.com" | |
| }, | |
| "Virata EmWeb": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Virata-EmWeb(?:/(R?[\\d._]+))?\\;version:\\1" | |
| }, | |
| "implies": [ | |
| "HP" | |
| ], | |
| "website": "http://example.com" | |
| }, | |
| "VirtueMart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<div id=\"vmMainPage", | |
| "icon": "VirtueMart.png", | |
| "implies": "Joomla", | |
| "website": "http://virtuemart.net" | |
| }, | |
| "Virtuoso": { | |
| "cats": [ | |
| 34 | |
| ], | |
| "website": "https://virtuoso.openlinksw.com/", | |
| "meta": { | |
| "Keywords": "^OpenLink Virtuoso Sparql", | |
| "Copyright": "^Copyright © \\d{4} OpenLink Software" | |
| }, | |
| "url": ".*/sparql\\.*", | |
| "headers": { | |
| "Server": "Virtuoso\\/?(\\d{2}\\.\\d{2}\\.\\d{4})?\\;version:\\1" | |
| } | |
| }, | |
| "Visual WebGUI": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "VWGEventArgs": "" | |
| }, | |
| "icon": "Visual WebGUI.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "^Visual WebGUI" | |
| }, | |
| "script": "\\.js\\.wgx$", | |
| "url": "\\.wgx$", | |
| "website": "http://www.gizmox.com/products/visual-web-gui/" | |
| }, | |
| "VisualPath": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "VisualPath.png", | |
| "script": "visualpath[^/]*\\.trackset\\.it/[^/]+/track/include\\.js", | |
| "website": "http://www.trackset.com/web-analytics-software/visualpath" | |
| }, | |
| "Volusion": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "volusion": "" | |
| }, | |
| "html": "<link [^>]*href=\"[^\"]*/vspfiles/", | |
| "icon": "Volusion.png", | |
| "script": "/volusion\\.js(?:\\?([\\d.]*))?\\;version:\\1", | |
| "website": "http://volusion.com" | |
| }, | |
| "Vue.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Vue.version": "(.*)\\;version:\\1" | |
| }, | |
| "html": "<[^>]+data-v-", | |
| "icon": "Vue.js.png", | |
| "script": [ | |
| "vue(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "(?:/([\\d.]+))?/vue(?:\\.min)?\\.js\\;version:\\1" | |
| ], | |
| "website": "http://vuejs.org" | |
| }, | |
| "W3 Total Cache": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "W3 Total Cache(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "html": "<!--[^>]+W3 Total Cache", | |
| "icon": "W3 Total Cache.png", | |
| "implies": "WordPress", | |
| "website": "http://www.w3-edge.com/wordpress-plugins/w3-total-cache" | |
| }, | |
| "W3Counter": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "W3Counter.png", | |
| "script": "w3counter\\.com/tracker\\.js", | |
| "website": "http://www.w3counter.com" | |
| }, | |
| "WEBXPAY": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "WEBXPAY": "" | |
| }, | |
| "html": "Powered by <a href=\"https://www\\.webxpay\\.com\">WEBXPAY<", | |
| "icon": "WEBXPAY.png", | |
| "website": "https://webxpay.com" | |
| }, | |
| "WHMCS": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "WHMCS": "" | |
| }, | |
| "icon": "WHMCS.png", | |
| "website": "http://www.whmcs.com" | |
| }, | |
| "wpCache": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "wpCache(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "html": "<!--[^>]+wpCache", | |
| "url": "^https?://[^/]+\\.wpcache\\.co", | |
| "icon": "wpCache.png", | |
| "implies": [ | |
| "WordPress", | |
| "PHP" | |
| ], | |
| "meta": { | |
| "generator": "wpCache", | |
| "keywords": "wpCache" | |
| }, | |
| "website": "http://wpcache.co" | |
| }, | |
| "WP Rocket": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "WP Rocket(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "html": "<!--[^>]+WP Rocket", | |
| "icon": "WP Rocket.png", | |
| "implies": "WordPress", | |
| "website": "http://wp-rocket.me" | |
| }, | |
| "Warp": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Warp/(\\d+(?:\\.\\d+)+)?$\\;version:\\1" | |
| }, | |
| "icon": "Warp.png", | |
| "implies": "Haskell", | |
| "website": "http://www.stackage.org/package/warp" | |
| }, | |
| "Web Optimizer": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": "<title [^>]*lang=\"wo\">", | |
| "icon": "Web Optimizer.png", | |
| "website": "http://www.web-optimizer.us" | |
| }, | |
| "Web2py": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "web2py" | |
| }, | |
| "icon": "Web2py.png", | |
| "implies": [ | |
| "Python", | |
| "jQuery" | |
| ], | |
| "meta": { | |
| "generator": "^Web2py" | |
| }, | |
| "script": "web2py\\.js", | |
| "website": "http://web2py.com" | |
| }, | |
| "WebGUI": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "wgSession": "" | |
| }, | |
| "icon": "WebGUI.png", | |
| "implies": "Perl", | |
| "meta": { | |
| "generator": "^WebGUI ([\\d.]+)\\;version:\\1" | |
| }, | |
| "website": "http://www.webgui.org" | |
| }, | |
| "WebPublisher": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "WebPublisher.png", | |
| "meta": { | |
| "generator": "WEB\\|Publisher" | |
| }, | |
| "website": "http://scannet.dk" | |
| }, | |
| "Webix": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "webix": "" | |
| }, | |
| "icon": "Webix.png", | |
| "script": "\bwebix\\.js", | |
| "website": "http://webix.com" | |
| }, | |
| "Webs": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "Server": "Webs\\.com/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "Webs.png", | |
| "website": "http://webs.com" | |
| }, | |
| "WebsPlanet": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "WebsPlanet.png", | |
| "meta": { | |
| "generator": "WebsPlanet" | |
| }, | |
| "website": "http://websplanet.com" | |
| }, | |
| "Websale": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Websale.png", | |
| "url": "/websale7/", | |
| "website": "http://websale.de" | |
| }, | |
| "WebSite X5": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "meta": { | |
| "generator": "Incomedia WebSite X5 (\\w+ [\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "WebSite X5.png", | |
| "website": "http://websitex5.com" | |
| }, | |
| "WebsiteBaker": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "WebsiteBaker.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "meta": { | |
| "generator": "WebsiteBaker" | |
| }, | |
| "website": "http://websitebaker2.org/en/home.php" | |
| }, | |
| "Webtrekk": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "webtrekk": "" | |
| }, | |
| "icon": "Webtrekk.png", | |
| "website": "http://www.webtrekk.com" | |
| }, | |
| "Webtrends": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "WTOptimize": "", | |
| "WebTrends": "" | |
| }, | |
| "html": "<img[^>]+id=\"DCSIMG\"[^>]+webtrends", | |
| "icon": "Webtrends.png", | |
| "website": "http://worldwide.webtrends.com" | |
| }, | |
| "Weebly": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "Weebly.png", | |
| "script": "cdn\\d+\\.editmysite\\.com", | |
| "website": "http://www.weebly.com" | |
| }, | |
| "Wikinggruppen": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": [ | |
| "<!-- WIKINGGRUPPEN" | |
| ], | |
| "icon": "wikinggruppen.png", | |
| "website": "https://wikinggruppen.se/" | |
| }, | |
| "Wikispaces": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": [ | |
| "<script[^>]*>[^<]*session_url:\\s*'https://session\\.wikispaces\\.com/", | |
| "<\\w+[^>]*\\s+class=\"[^\"]*WikispacesContent\\s+WikispacesBs3[^\"]*\"" | |
| ], | |
| "icon": "Wikispaces.png", | |
| "website": "http://www.wikispaces.com" | |
| }, | |
| "WikkaWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": "Powered by <a href=\"[^>]+WikkaWiki", | |
| "icon": "WikkaWiki.png", | |
| "meta": { | |
| "generator": "WikkaWiki" | |
| }, | |
| "website": "http://wikkawiki.org" | |
| }, | |
| "Windows CE": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "\bWinCE\b" | |
| }, | |
| "icon": "Microsoft.svg", | |
| "website": "http://microsoft.com" | |
| }, | |
| "Windows Server": { | |
| "cats": [ | |
| 28 | |
| ], | |
| "headers": { | |
| "Server": "Win32|Win64" | |
| }, | |
| "icon": "Microsoft.svg", | |
| "website": "http://microsoft.com/windowsserver" | |
| }, | |
| "Wink": { | |
| "cats": [ | |
| 26, | |
| 12 | |
| ], | |
| "js": { | |
| "wink.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "Wink.png", | |
| "script": "(?:_base/js/base|wink).*\\.js", | |
| "website": "http://winktoolkit.org" | |
| }, | |
| "Winstone Servlet Container": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Winstone Servlet (?:Container|Engine) v?([\\d.]+)?\\;version:\\1", | |
| "X-Powered-By": "Winstone(?:.([\\d.]+))?\\;version:\\1" | |
| }, | |
| "website": "http://winstone.sourceforge.net" | |
| }, | |
| "Wix": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "wixEvents": "", | |
| "wixData": "", | |
| "wixErrors": "" | |
| }, | |
| "cookies": { | |
| "Domain": "\\.wix\\.com" | |
| }, | |
| "headers": { | |
| "X-Wix-Renderer-Server": "", | |
| "X-Wix-Request-Id": "", | |
| "X-Wix-Server-Artifact-Id": "" | |
| }, | |
| "icon": "Wix.png", | |
| "script": "static\\.wixstatic\\.com", | |
| "website": "http://wix.com" | |
| }, | |
| "Wolf CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "(?:<a href=\"[^>]+wolfcms\\.org[^>]+>Wolf CMS(?:</a>)? inside|Thank you for using <a[^>]+>Wolf CMS)", | |
| "icon": "Wolf CMS.png", | |
| "implies": "PHP", | |
| "website": "http://www.wolfcms.org" | |
| }, | |
| "Woltlab Community Framework": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": "var WCF_PATH[^>]+", | |
| "icon": "Woltlab Community Framework.png", | |
| "implies": "PHP", | |
| "script": "WCF\\..*\\.js", | |
| "website": "http://www.woltlab.com" | |
| }, | |
| "WooCommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "woocommerce_params": "" | |
| }, | |
| "html": [ | |
| "<!-- WooCommerce", | |
| "<link rel='[^']+' id='woocommerce-(?:layout|smallscreen|general)-css' href='https?://[^/]+/wp-content/plugins/woocommerce/assets/css/woocommerce(?:-layout|-smallscreen)?\\.css?ver=([\\d.]+)'\\;version:\\1" | |
| ], | |
| "icon": "WooCommerce.png", | |
| "implies": "WordPress", | |
| "meta": { | |
| "generator": "WooCommerce ([\\d.]+)\\;version:\\1" | |
| }, | |
| "script": "/woocommerce(?:\\.min)?\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1", | |
| "website": "http://www.woothemes.com/woocommerce" | |
| }, | |
| "Woopra": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "icon": "Woopra.png", | |
| "script": "static\\.woopra\\.com", | |
| "website": "http://www.woopra.com" | |
| }, | |
| "WordPress": { | |
| "cats": [ | |
| 1, | |
| 11 | |
| ], | |
| "js": { | |
| "wp_username": "" | |
| }, | |
| "html": [ | |
| "<link rel=[\"']stylesheet[\"'] [^>]+wp-(?:content|includes)", | |
| "<link[^>]+s\\d+\\.wp\\.com" | |
| ], | |
| "icon": "WordPress.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "WordPress( [\\d.]+)?\\;version:\\1" | |
| }, | |
| "script": "/wp-includes/", | |
| "website": "http://wordpress.org" | |
| }, | |
| "WordPress Super Cache": { | |
| "cats": [ | |
| 23 | |
| ], | |
| "headers": { | |
| "WP-Super-Cache": "" | |
| }, | |
| "html": "<!--[^>]+WP-Super-Cache", | |
| "icon": "wp_super_cache.png", | |
| "implies": "WordPress", | |
| "website": "http://z9.io/wp-super-cache/" | |
| }, | |
| "Wowza Media Server": { | |
| "cats": [ | |
| 38 | |
| ], | |
| "html": "<title>Wowza Media Server \\d+ ((?:\\w+ Edition )?\\d+\\.[\\d\\.]+(?: build\\d+)?)?\\;version:\\1", | |
| "icon": "Wowza Media Server.png", | |
| "website": "http://www.wowza.com" | |
| }, | |
| "X-Cart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "xcart_web_dir": "", | |
| "xliteConfig": "" | |
| }, | |
| "cookies": { | |
| "xid": "[a-z\\d]{32}(?:;|$)" | |
| }, | |
| "html": [ | |
| "Powered by X-Cart(?: (\\d+))? <a[^>]+href=\"http://www\\.x-cart\\.com/\"[^>]*>\\;version:\\1", | |
| "<a[^>]+href=\"[^\"]*(?:\\?|&)xcart_form_id=[a-z\\d]{32}(?:&|$)" | |
| ], | |
| "icon": "X-Cart.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "X-Cart(?: (\\d+))?\\;version:\\1" | |
| }, | |
| "script": "/skin/common_files/modules/Product_Options/func\\.js", | |
| "website": "http://x-cart.com" | |
| }, | |
| "XAMPP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "html": "<title>XAMPP(?: Version ([\\d\\.]+))?</title>\\;version:\\1", | |
| "icon": "XAMPP.png", | |
| "implies": [ | |
| "Apache", | |
| "MySQL", | |
| "PHP", | |
| "Perl" | |
| ], | |
| "meta": { | |
| "author": "Kai Oswald Seidler\\;confidence:10" | |
| }, | |
| "website": "http://www.apachefriends.org/en/xampp.html" | |
| }, | |
| "XMB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "<!-- Powered by XMB", | |
| "icon": "XMB.png", | |
| "website": "http://www.xmbforum.com" | |
| }, | |
| "XOOPS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "xoops": "" | |
| }, | |
| "icon": "XOOPS.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "XOOPS" | |
| }, | |
| "website": "http://xoops.org" | |
| }, | |
| "XRegExp": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "XRegExp.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "XRegExp.png", | |
| "script": [ | |
| "xregexp(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "/([\\d.]+)/xregexp(?:\\.min)?\\.js\\;version:\\1", | |
| "xregexp.*\\.js" | |
| ], | |
| "website": "http://xregexp.com" | |
| }, | |
| "Xajax": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "Xajax.png", | |
| "script": "xajax_core.*\\.js", | |
| "website": "http://xajax-project.org" | |
| }, | |
| "Xanario": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Xanario.png", | |
| "meta": { | |
| "generator": "xanario shopsoftware" | |
| }, | |
| "website": "http://xanario.de" | |
| }, | |
| "XenForo": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "(?:jQuery\\.extend\\(true, XenForo|Forum software by XenForo™|<!--XF:branding|<html[^>]+id=\"XenForo\")", | |
| "icon": "XenForo.png", | |
| "website": "http://xenforo.com" | |
| }, | |
| "Xeora": { | |
| "cats": [ | |
| 18, | |
| 22, | |
| 27 | |
| ], | |
| "html": "<input type=\"hidden\" name=\"_sys_bind_\\d+\" id=\"_sys_bind_\\d+\" />", | |
| "headers": { | |
| "Server": "XeoraEngine", | |
| "X-Powered-By": "XeoraCube" | |
| }, | |
| "icon": "xeora.png", | |
| "script": "/_bi_sps_v.+\\.js", | |
| "website": "http://www.xeora.org" | |
| }, | |
| "Xitami": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Xitami(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Xitami.png", | |
| "website": "http://xitami.com" | |
| }, | |
| "Xonic": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": [ | |
| "Powered by <a href=\"http://www\\.xonic-solutions\\.de/index\\.php\" target=\"_blank\">xonic-solutions Shopsoftware</a>" | |
| ], | |
| "icon": "xonic.png", | |
| "meta": { | |
| "keywords": "xonic-solutions" | |
| }, | |
| "script": "core/jslib/jquery\\.xonic\\.js\\.php", | |
| "website": "http://www.xonic-solutions.de" | |
| }, | |
| "XpressEngine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "XpressEngine.png", | |
| "meta": { | |
| "generator": "XpressEngine" | |
| }, | |
| "website": "http://www.xpressengine.com/" | |
| }, | |
| "YUI": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "YAHOO.VERSION": "(.*)\\;version:\\1", | |
| "YUI.version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "YUI.png", | |
| "script": "(?:/yui/|yui\\.yahooapis\\.com)", | |
| "website": "http://yuilibrary.com" | |
| }, | |
| "YUI Doc": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": "(?:<html[^>]* yuilibrary\\.com/rdf/[\\d.]+/yui\\.rdf|<body[^>]+class=\"yui3-skin-sam)", | |
| "icon": "yahoo.png", | |
| "website": "http://developer.yahoo.com/yui/yuidoc" | |
| }, | |
| "YaBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "html": "Powered by <a href=\"[^>]+yabbforum", | |
| "icon": "YaBB.png", | |
| "website": "http://www.yabbforum.com" | |
| }, | |
| "Yahoo Advertising": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "adxinserthtml": "" | |
| }, | |
| "html": [ | |
| "<iframe[^>]+adserver\\.yahoo\\.com", | |
| "<img[^>]+clicks\\.beap\\.bc\\.yahoo\\.com" | |
| ], | |
| "icon": "yahoo.png", | |
| "script": "adinterax\\.com", | |
| "website": "http://advertising.yahoo.com" | |
| }, | |
| "Yahoo! Ecommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "YStore": "" | |
| }, | |
| "headers": { | |
| "X-XRDS-Location": "/ystore/" | |
| }, | |
| "html": "<link[^>]+store\\.yahoo\\.net", | |
| "icon": "yahoo.png", | |
| "website": "http://smallbusiness.yahoo.com/ecommerce" | |
| }, | |
| "Yahoo! Web Analytics": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "YWA": "" | |
| }, | |
| "icon": "yahoo.png", | |
| "script": "d\\.yimg\\.com/mi/ywa\\.js", | |
| "website": "http://web.analytics.yahoo.com" | |
| }, | |
| "Yandex.Direct": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "yandex_partner_id": "", | |
| "yandex_ad_format": "" | |
| }, | |
| "html": "<yatag class=\"ya-partner__ads\">", | |
| "icon": "Yandex.Direct.png", | |
| "script": "https?://an\\.yandex\\.ru/", | |
| "website": "http://partner.yandex.com" | |
| }, | |
| "Yandex.Metrika": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "yandex_metrika": "" | |
| }, | |
| "icon": "Yandex.Metrika.png", | |
| "script": [ | |
| "mc\\.yandex\\.ru\\/metrika\\/watch\\.js", | |
| "cdn\\.jsdelivr\\.net\\/npm\\/yandex-metrica-watch\\/watch\\.js" | |
| ], | |
| "website": "http://metrika.yandex.com" | |
| }, | |
| "Yaws": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "Yaws(?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Yaws.png", | |
| "implies": [ | |
| "Erlang" | |
| ], | |
| "website": "http://yaws.hyber.org" | |
| }, | |
| "Yieldlab": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "Yieldlab.png", | |
| "script": "^https?://(?:[^/]+\\.)?yieldlab\\.net/", | |
| "website": "http://yieldlab.de" | |
| }, | |
| "Yii": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "yii": "" | |
| }, | |
| "html": [ | |
| "Powered by <a href=\"http://www\\.yiiframework\\.com/\" rel=\"external\">Yii Framework</a>", | |
| "<input type=\"hidden\" value=\"[a-zA-Z0-9]{40}\" name=\"YII_CSRF_TOKEN\" \\/>", | |
| "<!\\[CDATA\\[YII-BLOCK-(?:HEAD|BODY-BEGIN|BODY-END)\\]" | |
| ], | |
| "script": "yii.*\\.js", | |
| "icon": "Yii.png", | |
| "implies": [ | |
| "PHP" | |
| ], | |
| "website": "http://yiiframework.com" | |
| }, | |
| "Yoast SEO": { | |
| "cats": [ | |
| 54 | |
| ], | |
| "html": [ | |
| "<!-- This site is optimized with the Yoast SEO plugin v([\\d.]+) -\\;version:\\1" | |
| ], | |
| "icon": "Yoast SEO.png", | |
| "implies": "WordPress", | |
| "website": "http://yoast.com" | |
| }, | |
| "YouTrack": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "html": [ | |
| "no-title=\"YouTrack\">", | |
| "data-reactid=\"[^\"]+\">youTrack ([0-9.]+)<\\;version:\\1", | |
| "type=\"application/opensearchdescription\\+xml\" title=\"YouTrack\"/>" | |
| ], | |
| "icon": "YouTrack.png", | |
| "website": "http://www.jetbrains.com/youtrack/" | |
| }, | |
| "YouTube": { | |
| "cats": [ | |
| 14 | |
| ], | |
| "html": "<(?:param|embed|iframe)[^>]+youtube(?:-nocookie)?\\.com/(?:v|embed)", | |
| "icon": "YouTube.png", | |
| "website": "http://www.youtube.com" | |
| }, | |
| "ZK": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "html": "<!-- ZK [\\.\\d\\s]+-->", | |
| "icon": "ZK.png", | |
| "implies": "Java", | |
| "script": "zkau/", | |
| "website": "http://zkoss.org" | |
| }, | |
| "ZURB Foundation": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "js": { | |
| "Foundation.version": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": [ | |
| "<link[^>]+foundation[^>\"]+css", | |
| "<div [^>]*class=\"[^\"]*(?:small|medium|large)-\\d{1,2} columns" | |
| ], | |
| "icon": "ZURB Foundation.png", | |
| "website": "http://foundation.zurb.com" | |
| }, | |
| "Zabbix": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "zbxCallPostScripts": "" | |
| }, | |
| "html": "<body[^>]+zbxCallPostScripts", | |
| "icon": "Zabbix.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "Author": "ZABBIX SIA\\;confidence:70" | |
| }, | |
| "url": "\\/zabbix\\/\\;confidence:30", | |
| "website": "http://zabbix.com" | |
| }, | |
| "Zanox": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "js": { | |
| "zanox": "" | |
| }, | |
| "html": "<img [^>]*src=\"[^\"]+ad\\.zanox\\.com", | |
| "icon": "Zanox.png", | |
| "script": "zanox\\.com/scripts/zanox\\.js$", | |
| "website": "http://zanox.com" | |
| }, | |
| "Zen Cart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Zen Cart.png", | |
| "meta": { | |
| "generator": "Zen Cart" | |
| }, | |
| "website": "http://www.zen-cart.com" | |
| }, | |
| "Zend": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "cookies": { | |
| "ZENDSERVERSESSID": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "Zend(?:Server)?(?:[\\s/]?([0-9.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Zend.png", | |
| "website": "http://zend.com" | |
| }, | |
| "Zendesk Chat": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "icon": "Zendesk Chat.png", | |
| "script": "v2\\.zopim\\.com", | |
| "website": "http://zopim.com" | |
| }, | |
| "Zenfolio": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "icon": "Zenfolio.png", | |
| "js": { | |
| "Zenfolio": "" | |
| }, | |
| "website": "https://zenfolio.com" | |
| }, | |
| "Zepto": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Zepto": "" | |
| }, | |
| "icon": "Zepto.png", | |
| "script": "zepto.*\\.js", | |
| "website": "http://zeptojs.com" | |
| }, | |
| "Zeuscart": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<form name=\"product\" method=\"post\" action=\"[^\"]+\\?do=addtocart&prodid=\\d+\"(?!<\\/form>.)+<input type=\"hidden\" name=\"addtocart\" value=\"\\d+\">", | |
| "icon": "Zeuscart.png", | |
| "implies": "PHP", | |
| "url": "\\?do=prodetail&action=show&prodid=\\d+", | |
| "website": "http://zeuscart.com" | |
| }, | |
| "Zinnia": { | |
| "cats": [ | |
| 11 | |
| ], | |
| "icon": "Zinnia.png", | |
| "implies": "Django", | |
| "meta": { | |
| "generator": "Zinnia" | |
| }, | |
| "website": "http://django-blog-zinnia.com" | |
| }, | |
| "Zope": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "^Zope/" | |
| }, | |
| "icon": "Zope.png", | |
| "website": "http://zope.org" | |
| }, | |
| "a-blog cms": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "a-blog cms.svg", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "a-blog cms" | |
| }, | |
| "website": "http://www.a-blogcms.jp" | |
| }, | |
| "actionhero.js": { | |
| "cats": [ | |
| 1, | |
| 18, | |
| 22 | |
| ], | |
| "js": { | |
| "actionheroClient": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "actionhero API" | |
| }, | |
| "icon": "actionhero.js.png", | |
| "implies": "Node.js", | |
| "script": "actionheroClient\\.js", | |
| "website": "http://www.actionherojs.com" | |
| }, | |
| "amCharts": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "AmCharts": "" | |
| }, | |
| "icon": "amCharts.png", | |
| "script": "amcharts.*\\.js", | |
| "website": "http://amcharts.com" | |
| }, | |
| "basket.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "basket.isValidItem": "" | |
| }, | |
| "icon": "basket.js.png", | |
| "script": "basket.*\\.js\\;confidence:10", | |
| "website": "https://addyosmani.github.io/basket.js/" | |
| }, | |
| "cPanel": { | |
| "cats": [ | |
| 9 | |
| ], | |
| "headers": { | |
| "Server": "cpsrvd/([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "<!-- cPanel", | |
| "icon": "cPanel.png", | |
| "website": "http://www.cpanel.net" | |
| }, | |
| "cgit": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": [ | |
| "<[^>]+id='cgit'", | |
| "generated by <a href='http://git\\.zx2c4\\.com/cgit/about/'>cgit v([\\d.a-z-]+)</a>\\;version:\\1" | |
| ], | |
| "icon": "cgit.png", | |
| "implies": "git", | |
| "meta": { | |
| "generator": "^cgit v([\\d.a-z-]+)$\\;version:\\1" | |
| }, | |
| "website": "http://git.zx2c4.com/cgit" | |
| }, | |
| "comScore": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "COMSCORE": "", | |
| "_COMSCORE": "" | |
| }, | |
| "html": "<iframe[^>]* (?:id=\"comscore\"|scr=[^>]+comscore)|\\.scorecardresearch\\.com/beacon\\.js|COMSCORE\\.beacon", | |
| "icon": "comScore.png", | |
| "script": "\\.scorecardresearch\\.com/beacon\\.js|COMSCORE\\.beacon", | |
| "website": "http://comscore.com" | |
| }, | |
| "debut": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "debut\\/?([\\d\\.]+)?\\;version:\\1" | |
| }, | |
| "icon": "debut.png", | |
| "implies": "Brother", | |
| "website": "http://www.brother.com" | |
| }, | |
| "dwhttpd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "dwhttpd\\/?([\\d\\.a-z]+)?\\;version:\\1" | |
| }, | |
| "website": "http://example.com" | |
| }, | |
| "e107": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "cookies": { | |
| "e107_tz": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "e107" | |
| }, | |
| "icon": "e107.png", | |
| "implies": "PHP", | |
| "script": "[^a-z\\d]e107\\.js", | |
| "website": "http://e107.org" | |
| }, | |
| "eDevice SmartStack": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "eDevice SmartStack(?: ?/?([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "eDevice SmartStack.png", | |
| "website": "http://edevice.com" | |
| }, | |
| "eHTTP": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "\beHTTP(?: v?([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "implies": "HP ProCurve", | |
| "website": "http://example.com" | |
| }, | |
| "eSyndiCat": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "esyndicat": "" | |
| }, | |
| "headers": { | |
| "X-Drectory-Script": "^eSyndiCat" | |
| }, | |
| "icon": "eSyndiCat.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^eSyndiCat " | |
| }, | |
| "website": "http://esyndicat.com" | |
| }, | |
| "eZ Publish": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "cookies": { | |
| "eZSESSID": "" | |
| }, | |
| "headers": { | |
| "X-Powered-By": "^eZ Publish" | |
| }, | |
| "icon": "eZ Publish.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "eZ Publish" | |
| }, | |
| "website": "http://ez.no" | |
| }, | |
| "enduro.js": { | |
| "cats": [ | |
| 1, | |
| 18, | |
| 47 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^enduro\\.js$" | |
| }, | |
| "icon": "enduro.js.svg", | |
| "implies": "Node.js", | |
| "website": "http://endurojs.com" | |
| }, | |
| "git": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "icon": "git.svg", | |
| "meta": { | |
| "generator": "\bgit/([\\d.]+\\d)\\;version:\\1" | |
| }, | |
| "website": "http://git-scm.com" | |
| }, | |
| "gitlist": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "html": "<p>Powered by <a[^>]+>GitList ([\\d.]+)\\;version:\\1", | |
| "implies": [ | |
| "PHP", | |
| "git" | |
| ], | |
| "website": "http://gitlist.org" | |
| }, | |
| "gitweb": { | |
| "cats": [ | |
| 47 | |
| ], | |
| "html": "<!-- git web interface version ([\\d.]+)?\\;version:\\1", | |
| "icon": "git.svg", | |
| "implies": [ | |
| "Perl", | |
| "git" | |
| ], | |
| "meta": { | |
| "generator": "gitweb(?:/([\\d.]+\\d))?\\;version:\\1" | |
| }, | |
| "script": "static/gitweb\\.js$", | |
| "website": "http://git-scm.com" | |
| }, | |
| "govCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "govCMS.svg", | |
| "implies": [ | |
| "Drupal" | |
| ], | |
| "meta": { | |
| "generator": "Drupal ([\\d]+) \\(http:\\/\\/drupal\\.org\\) \\+ govCMS\\;version:\\1" | |
| }, | |
| "website": "https://www.govcms.gov.au" | |
| }, | |
| "gunicorn": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "gunicorn(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "gunicorn.png", | |
| "implies": "Python", | |
| "website": "http://gunicorn.org" | |
| }, | |
| "hapi.js": { | |
| "cats": [ | |
| 18, | |
| 22 | |
| ], | |
| "cookies": { | |
| "Fe26.2**": "\\;confidence:50" | |
| }, | |
| "icon": "hapi.js.png", | |
| "implies": "Node.js", | |
| "website": "http://hapijs.com" | |
| }, | |
| "iCongo": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "icon": "Hybris.png", | |
| "implies": "Adobe ColdFusion", | |
| "meta": { | |
| "iCongo": "" | |
| }, | |
| "website": "http://hybris.com/icongo" | |
| }, | |
| "iPresta": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "excludes": "PrestaShop", | |
| "icon": "iPresta.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "designer": "iPresta" | |
| }, | |
| "website": "http://ipresta.ir" | |
| }, | |
| "iWeb": { | |
| "cats": [ | |
| 20 | |
| ], | |
| "icon": "iWeb.png", | |
| "meta": { | |
| "generator": "^iWeb( [\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://apple.com/ilife/iweb" | |
| }, | |
| "ikiwiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": [ | |
| "<link rel=\"alternate\" type=\"application/x-wiki\" title=\"Edit this page\" href=\"[^\"]*/ikiwiki\\.cgi", | |
| "<a href=\"/(?:cgi-bin/)?ikiwiki\\.cgi\\?do=" | |
| ], | |
| "icon": "ikiwiki.png", | |
| "website": "http://ikiwiki.info" | |
| }, | |
| "io4 CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "io4 CMS.png", | |
| "meta": { | |
| "generator": "GO[ |]+CMS Enterprise" | |
| }, | |
| "website": "http://notenbomer.nl/Producten/Content_management/io4_|_cms" | |
| }, | |
| "Jetshop": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "js": { | |
| "JetshopData": "" | |
| }, | |
| "html": "<(?:div|aside) id=\"jetshop-branding\">", | |
| "icon": "Jetshop.png", | |
| "website": "http://jetshop.se" | |
| }, | |
| "jQTouch": { | |
| "cats": [ | |
| 26 | |
| ], | |
| "js": { | |
| "jQT": "" | |
| }, | |
| "icon": "jQTouch.png", | |
| "script": "jqtouch.*\\.js", | |
| "website": "http://jqtouch.com" | |
| }, | |
| "jQuery": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "jQuery.svg", | |
| "script": [ | |
| "jquery(?:\\-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "/([\\d.]+)/jquery(?:\\.min)?\\.js\\;version:\\1", | |
| "jquery.*\\.js(?:\\?ver(?:sion)?=([\\d.]+))?\\;version:\\1" | |
| ], | |
| "website": "https://jquery.com" | |
| }, | |
| "jQuery Migrate": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "jQuery.migrateVersion": "([\\d.]+)\\;version:\\1" | |
| }, | |
| "icon": "jQuery.svg", | |
| "implies": "jQuery", | |
| "script": "jquery[.-]migrate(?:-([\\d.]))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1?\\1:\\2", | |
| "website": "https://github.com/jquery/jquery-migrate" | |
| }, | |
| "jQuery Mobile": { | |
| "cats": [ | |
| 26 | |
| ], | |
| "icon": "jQuery Mobile.svg", | |
| "implies": "jQuery", | |
| "js": { | |
| "jQuery.mobile.version": "(.*)\\;version:\\1" | |
| }, | |
| "script": "jquery[.-]mobile(?:-([\\d.]))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1?\\1:\\2", | |
| "website": "https://jquerymobile.com" | |
| }, | |
| "jQuery Sparklines": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "implies": "jQuery", | |
| "script": "jquery\\.sparkline.*\\.js", | |
| "website": "http://omnipotent.net/jquery.sparkline/" | |
| }, | |
| "jQuery UI": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "icon": "jQuery UI.svg", | |
| "implies": "jQuery", | |
| "js": { | |
| "jQuery.ui.version": "(.*)\\;version:\\1" | |
| }, | |
| "script": [ | |
| "jquery-ui(?:-|\\.)([\\d.]*\\d)[^/]*\\.js\\;version:\\1", | |
| "([\\d.]+)/jquery-ui(?:\\.min)?\\.js\\;version:\\1", | |
| "jquery-ui.*\\.js" | |
| ], | |
| "website": "http://jqueryui.com" | |
| }, | |
| "jqPlot": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "icon": "jqPlot.png", | |
| "implies": "jQuery", | |
| "script": "jqplot.*\\.js", | |
| "website": "http://www.jqplot.com" | |
| }, | |
| "libwww-perl-daemon": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "libwww-perl-daemon(?:/([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "libwww-perl-daemon.png", | |
| "implies": "Perl", | |
| "website": "http://metacpan.org/pod/HTTP::Daemon" | |
| }, | |
| "lighttpd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "lighttpd(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "lighttpd.png", | |
| "website": "http://www.lighttpd.net" | |
| }, | |
| "LiveHelp": { | |
| "cats": [ | |
| 52, | |
| 53 | |
| ], | |
| "script": "^https?://server\\.livehelp\\.it/widgetjs/[0-9]{5}/[0-9]{1,3}\\.js", | |
| "icon": "LiveHelp.png", | |
| "website": "http://www.livehelp.it" | |
| }, | |
| "math.js": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "mathjs": "" | |
| }, | |
| "icon": "math.js.png", | |
| "script": "math(?:\\.min)?\\.js", | |
| "website": "http://mathjs.org" | |
| }, | |
| "mini_httpd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "mini_httpd(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "mini_httpd.png", | |
| "website": "http://acme.com/software/mini_httpd" | |
| }, | |
| "mod_auth_pam": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_auth_pam(?:/([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Apache.svg", | |
| "implies": "Apache", | |
| "website": "http://pam.sourceforge.net/mod_auth_pam" | |
| }, | |
| "mod_dav": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "\b(?:mod_)?DAV\b(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Apache.svg", | |
| "implies": "Apache", | |
| "website": "http://webdav.org/mod_dav" | |
| }, | |
| "mod_fastcgi": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_fastcgi(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Apache.svg", | |
| "implies": "Apache", | |
| "website": "http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html" | |
| }, | |
| "mod_jk": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_jk(?:/([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Apache.svg", | |
| "implies": [ | |
| "Apache Tomcat", | |
| "Apache" | |
| ], | |
| "website": "http://tomcat.apache.org/tomcat-3.3-doc/mod_jk-howto.html" | |
| }, | |
| "mod_perl": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_perl(?:/([\\d\\.]+))?\\;version:\\1" | |
| }, | |
| "icon": "mod_perl.png", | |
| "implies": [ | |
| "Perl", | |
| "Apache" | |
| ], | |
| "website": "http://perl.apache.org" | |
| }, | |
| "mod_python": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_python(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "mod_python.png", | |
| "implies": [ | |
| "Python", | |
| "Apache" | |
| ], | |
| "website": "http://www.modpython.org" | |
| }, | |
| "mod_rack": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_rack(?:/([\\d.]+))?\\;version:\\1", | |
| "X-Powered-By": "mod_rack(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Phusion Passenger.png", | |
| "implies": [ | |
| "Ruby on Rails\\;confidence:50", | |
| "Apache" | |
| ], | |
| "website": "http://phusionpassenger.com" | |
| }, | |
| "mod_rails": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_rails(?:/([\\d.]+))?\\;version:\\1", | |
| "X-Powered-By": "mod_rails(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "Phusion Passenger.png", | |
| "implies": [ | |
| "Ruby on Rails\\;confidence:50", | |
| "Apache" | |
| ], | |
| "website": "http://phusionpassenger.com" | |
| }, | |
| "mod_ssl": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_ssl(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "mod_ssl.png", | |
| "implies": "Apache", | |
| "website": "http://modssl.org" | |
| }, | |
| "mod_wsgi": { | |
| "cats": [ | |
| 33 | |
| ], | |
| "headers": { | |
| "Server": "mod_wsgi(?:/([\\d.]+))?\\;version:\\1", | |
| "X-Powered-By": "mod_wsgi(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "mod_wsgi.png", | |
| "implies": [ | |
| "Python\\;confidence:50", | |
| "Apache" | |
| ], | |
| "website": "http://code.google.com/p/modwsgi" | |
| }, | |
| "nopCommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "Nop.customer": "" | |
| }, | |
| "html": "(?:<!--Powered by nopCommerce|Powered by: <a[^>]+nopcommerce)", | |
| "icon": "nopCommerce.png", | |
| "implies": "Microsoft ASP.NET", | |
| "meta": { | |
| "generator": "^nopCommerce$" | |
| }, | |
| "website": "http://www.nopcommerce.com" | |
| }, | |
| "openEngine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "openEngine.png", | |
| "meta": { | |
| "openEngine": "" | |
| }, | |
| "website": "http://openengine.de/html/pages/de/" | |
| }, | |
| "osCSS": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<body onload=\"window\\.defaultStatus='oscss templates';\"", | |
| "icon": "osCSS.png", | |
| "website": "http://www.oscss.org" | |
| }, | |
| "osCommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "cookies": { | |
| "osCsid": "" | |
| }, | |
| "html": "(?:<a[^>]*(?:\\?|&)osCsid|Powered by (?:<[^>]+>)?osCommerce</a>|<[^>]+class=\"[^>]*infoBoxHeading)", | |
| "icon": "osCommerce.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "website": "http://www.oscommerce.com" | |
| }, | |
| "osTicket": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "cookies": { | |
| "OSTSESSID": "" | |
| }, | |
| "icon": "osTicket.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "website": "http://osticket.com" | |
| }, | |
| "otrs": { | |
| "cats": [ | |
| 13 | |
| ], | |
| "html": "<!--\\s+OTRS: Copyright \\d+-\\d+, OTRS AG", | |
| "script": "^/otrs-web/js/", | |
| "icon": "otrs.png", | |
| "implies": "perl", | |
| "website": "https://www.otrs.com" | |
| }, | |
| "ownCloud": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "html": "<a href=\"https://owncloud\\.com\" target=\"_blank\">ownCloud Inc\\.</a><br/>Your Cloud, Your Data, Your Way!", | |
| "icon": "ownCloud.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "apple-itunes-app": "app-id=543672169" | |
| }, | |
| "website": "http://owncloud.org" | |
| }, | |
| "particles.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "particlesJS": "" | |
| }, | |
| "script": "/particles(?:\\.min)?\\.js", | |
| "html": "<div id=\"particles\\-js\">", | |
| "website": "https://vincentgarreau.com/particles.js/" | |
| }, | |
| "papaya CMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "<link[^>]*/papaya-themes/", | |
| "icon": "papaya CMS.png", | |
| "implies": "PHP", | |
| "website": "http://papaya-cms.com" | |
| }, | |
| "phpAlbum": { | |
| "cats": [ | |
| 7 | |
| ], | |
| "html": "<!--phpalbum ([.\\d\\s]+)-->\\;version:\\1", | |
| "icon": "phpAlbum.png", | |
| "implies": "PHP", | |
| "website": "http://phpalbum.net" | |
| }, | |
| "phpBB": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "style_cookie_settings": "", | |
| "phpbb": "" | |
| }, | |
| "cookies": { | |
| "phpbb": "" | |
| }, | |
| "html": "(?:Powered by <a[^>]+phpbb|<a[^>]+phpbb[^>]+class=\\.copyright|\tphpBB style name|<[^>]+styles/(?:sub|pro)silver/theme|<img[^>]+i_icon_mini|<table class=\"forumline)", | |
| "icon": "phpBB.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "copyright": "phpBB Group" | |
| }, | |
| "website": "http://phpbb.com" | |
| }, | |
| "phpCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "js": { | |
| "phpcms": "" | |
| }, | |
| "icon": "phpCMS.png", | |
| "implies": "PHP", | |
| "website": "http://phpcms.de" | |
| }, | |
| "phpDocumentor": { | |
| "cats": [ | |
| 4 | |
| ], | |
| "html": "<!-- Generated by phpDocumentor", | |
| "icon": "phpDocumentor.png", | |
| "implies": "PHP", | |
| "website": "http://www.phpdoc.org" | |
| }, | |
| "phpMyAdmin": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "js": { | |
| "pma_absolute_uri": "" | |
| }, | |
| "html": "(?: \\| phpMyAdmin ([\\d.]+)<\\/title>|PMA_sendHeaderLocation\\(|<link [^>]*href=\"[^\"]*phpmyadmin\\.css\\.php)\\;version:\\1", | |
| "icon": "phpMyAdmin.png", | |
| "implies": [ | |
| "PHP", | |
| "MySQL" | |
| ], | |
| "website": "http://www.phpmyadmin.net" | |
| }, | |
| "phpPgAdmin": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "html": "(?:<title>phpPgAdmin</title>|<span class=\"appname\">phpPgAdmin)", | |
| "icon": "phpPgAdmin.png", | |
| "implies": "PHP", | |
| "website": "http://phppgadmin.sourceforge.net" | |
| }, | |
| "phpSQLiteCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "phpSQLiteCMS.png", | |
| "implies": [ | |
| "PHP", | |
| "SQLite" | |
| ], | |
| "meta": { | |
| "generator": "^phpSQLiteCMS(?: (.+))?$\\;version:\\1" | |
| }, | |
| "website": "http://phpsqlitecms.net" | |
| }, | |
| "phpliteadmin": { | |
| "cats": [ | |
| 3 | |
| ], | |
| "html": [ | |
| "<span id='logo'>phpLiteAdmin</span> <span id='version'>v([0-9.]+)<\\;version:\\1", | |
| "<!-- Copyright [0-9]+ phpLiteAdmin (?:http://www\\.phpliteadmin\\.org/) -->", | |
| "Powered by <a href='http://www\\.phpliteadmin\\.org/'" | |
| ], | |
| "icon": "phpliteadmin.png", | |
| "implies": [ | |
| "PHP", | |
| "SQLite" | |
| ], | |
| "website": "http://www.phpliteadmin.org/" | |
| }, | |
| "phpwind": { | |
| "cats": [ | |
| 1, | |
| 2 | |
| ], | |
| "html": "Powered by <a href=\"[^\"]+phpwind\\.net", | |
| "icon": "phpwind.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "^phpwind" | |
| }, | |
| "website": "http://www.phpwind.net" | |
| }, | |
| "prettyPhoto": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "pp_alreadyInitialized": "", | |
| "pp_descriptions": "", | |
| "pp_images": "", | |
| "pp_titles": "" | |
| }, | |
| "html": "(?:<link [^>]*href=\"[^\"]*prettyPhoto(?:\\.min)?\\.css|<a [^>]*rel=\"prettyPhoto)", | |
| "icon": "prettyPhoto.png", | |
| "implies": "jQuery", | |
| "script": "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", | |
| "website": "http://punbb.informer.com" | |
| }, | |
| "reCAPTCHA": { | |
| "cats": [ | |
| 16 | |
| ], | |
| "js": { | |
| "Recaptcha": "" | |
| }, | |
| "html": "(?:<div[^>]+id=\"recaptcha_image|<link[^>]+recaptcha|document\\.getElementById\\('recaptcha')", | |
| "icon": "reCAPTCHA.png", | |
| "script": "(?:api-secure\\.recaptcha\\.net|recaptcha_ajax\\.js)", | |
| "website": "https://www.google.com/recaptcha/" | |
| }, | |
| "sIFR": { | |
| "cats": [ | |
| 17 | |
| ], | |
| "icon": "sIFR.png", | |
| "script": "sifr\\.js", | |
| "website": "http://www.mikeindustries.com/blog/sifr" | |
| }, | |
| "sNews": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "sNews.png", | |
| "meta": { | |
| "generator": "sNews" | |
| }, | |
| "website": "http://snewscms.com" | |
| }, | |
| "script.aculo.us": { | |
| "cats": [ | |
| 12 | |
| ], | |
| "js": { | |
| "Scriptaculous.Version": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "script.aculo.us.png", | |
| "script": "/(?:scriptaculous|protoaculous)(?:\\.js|/)", | |
| "website": "http://script.aculo.us" | |
| }, | |
| "shine.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "Shine": "" | |
| }, | |
| "script": "shine(?:\\.min)?\\.js", | |
| "website": "http://bigspaceship.github.io/shine.js/" | |
| }, | |
| "swift.engine": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "swift\\.engine" | |
| }, | |
| "icon": "swift.engine.png", | |
| "website": "http://mittec.ru/default" | |
| }, | |
| "three.js": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "THREE.REVISION": "(.*)\\;version:\\1" | |
| }, | |
| "icon": "three.js.png", | |
| "script": "three(?:\\.min)?\\.js", | |
| "website": "http://threejs.org" | |
| }, | |
| "thttpd": { | |
| "cats": [ | |
| 22 | |
| ], | |
| "headers": { | |
| "Server": "\bthttpd(?:/([\\d.]+))?\\;version:\\1" | |
| }, | |
| "icon": "thttpd.png", | |
| "website": "http://acme.com/software/thttpd" | |
| }, | |
| "total.js": { | |
| "cats": [ | |
| 18 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "^total\\.js" | |
| }, | |
| "icon": "total.js.png", | |
| "implies": "Node.js", | |
| "website": "http://totaljs.com" | |
| }, | |
| "uCore": { | |
| "cats": [ | |
| 1, | |
| 18 | |
| ], | |
| "cookies": { | |
| "ucore": "" | |
| }, | |
| "icon": "uCore.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "uCore PHP Framework" | |
| }, | |
| "website": "http://ucore.io" | |
| }, | |
| "uKnowva": { | |
| "cats": [ | |
| 1, | |
| 2, | |
| 18, | |
| 50 | |
| ], | |
| "headers": { | |
| "X-Content-Encoded-By": "uKnowva ([\\d.]+)\\;version:\\1" | |
| }, | |
| "html": "<a[^>]+>Powered by uKnowva</a>", | |
| "icon": "uKnowva.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "uKnowva (?: ([\\d.]+))?\\;version:\\1" | |
| }, | |
| "script": "/media/conv/js/jquery\\.js", | |
| "website": "http://uknowva.com" | |
| }, | |
| "Pars Elecom Portal": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "headers": { | |
| "X-Powered-By": "Pars Elecom Portal" | |
| }, | |
| "icon": "parselecom.png", | |
| "meta": { | |
| "copyright": "Pars Elecom Portal" | |
| }, | |
| "implies": [ | |
| "Microsoft ASP.NET", | |
| "IIS", | |
| "Windows Server" | |
| ], | |
| "website": "http://parselecom.net" | |
| }, | |
| "vBulletin": { | |
| "cats": [ | |
| 2 | |
| ], | |
| "js": { | |
| "vBulletin": "" | |
| }, | |
| "icon": "vBulletin.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "generator": "vBulletin ?([\\d.]+)?\\;version:\\1" | |
| }, | |
| "website": "http://www.vbulletin.com" | |
| }, | |
| "vibecommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "excludes": "PrestaShop", | |
| "icon": "vibecommerce.png", | |
| "implies": "PHP", | |
| "meta": { | |
| "designer": "vibecommerce", | |
| "generator": "vibecommerce" | |
| }, | |
| "website": "http://vibecommerce.com.br" | |
| }, | |
| "viennaCMS": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "html": "powered by <a href=\"[^>]+viennacms", | |
| "website": "http://www.viennacms.nl" | |
| }, | |
| "webEdition": { | |
| "cats": [ | |
| 1 | |
| ], | |
| "icon": "webEdition.png", | |
| "meta": { | |
| "DC.title": "webEdition", | |
| "generator": "webEdition" | |
| }, | |
| "website": "http://webedition.de/en" | |
| }, | |
| "Webmine": { | |
| "cats": [ | |
| 56 | |
| ], | |
| "html": "<iframe[^>]+src=[\\'\"]https://webmine\\.cz/miner\\?key=", | |
| "icon": "webmine.png", | |
| "website": "https://webmine.cz/" | |
| }, | |
| "webpack": { | |
| "cats": [ | |
| 19 | |
| ], | |
| "js": { | |
| "webpackJsonp": "" | |
| }, | |
| "icon": "webpack.svg", | |
| "website": "http://webpack.github.io" | |
| }, | |
| "xCharts": { | |
| "cats": [ | |
| 25 | |
| ], | |
| "js": { | |
| "xChart": "" | |
| }, | |
| "html": "<link[^>]* href=\"[^\"]*xcharts(?:\\.min)?\\.css", | |
| "implies": "D3", | |
| "script": "xcharts\\.js", | |
| "website": "http://tenxer.github.io/xcharts/" | |
| }, | |
| "xtCommerce": { | |
| "cats": [ | |
| 6 | |
| ], | |
| "html": "<div class=\"copyright\">[^<]+<a[^>]+>xt:Commerce", | |
| "icon": "xtCommerce.png", | |
| "meta": { | |
| "generator": "xt:Commerce" | |
| }, | |
| "website": "http://www.xt-commerce.com" | |
| }, | |
| "Raychat": { | |
| "cats": [ | |
| 52 | |
| ], | |
| "js": { | |
| "Raychat": "" | |
| }, | |
| "icon": "raychat.png", | |
| "script": "app\\.raychat\\.io/scripts/js", | |
| "website": "https://raychat.io" | |
| }, | |
| "Mautic": { | |
| "cats": [ | |
| 32 | |
| ], | |
| "js": { | |
| "MauticTrackingObject": "" | |
| }, | |
| "icon": "mautic.svg", | |
| "script": "[^a-z]mtc.*\\.js", | |
| "website": "https://www.mautic.org/" | |
| }, | |
| "Anetwork": { | |
| "cats": [ | |
| 36 | |
| ], | |
| "icon": "Anetwork.png", | |
| "script": "static-cdn\\.anetwork\\.ir/", | |
| "website": "https://www.anetwork.ir" | |
| }, | |
| "Akaunting": { | |
| "cats": [ | |
| 55 | |
| ], | |
| "html": [ | |
| "<link[^>]+akaunting-green\\.css", | |
| "Powered By Akaunting: <a [^>]*href=\"https?://(?:www\\.)?akaunting\\.com[^>]+>" | |
| ], | |
| "headers": { | |
| "X-Akaunting": "^Free Accounting Software$" | |
| }, | |
| "implies": "Laravel", | |
| "icon": "akaunting.svg", | |
| "website": "https://akaunting.com" | |
| }, | |
| "Freshmarketer": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "script": "cdn\\.freshmarketer\\.com", | |
| "icon": "freshmarketer.png", | |
| "website": "https://www.freshworks.com/marketing-automation/conversion-rate-optimization/" | |
| }, | |
| "GoSquared": { | |
| "cats": [ | |
| 10, | |
| 52, | |
| 53 | |
| ], | |
| "js": { | |
| "_gs": "\\;confidence:30" | |
| }, | |
| "icon": "gosquared.png", | |
| "website": "https://www.gosquared.com/" | |
| }, | |
| "Amplitude": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "script": [ | |
| "cdn\\.amplitude\\.com" | |
| ], | |
| "icon": "amplitude.png", | |
| "website": "https://amplitude.com/" | |
| }, | |
| "Inspectlet": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": [ | |
| "<!-- (?:Begin|End) Inspectlet Embed Code -->" | |
| ], | |
| "script": [ | |
| "cdn\\.inspectlet\\.com" | |
| ], | |
| "js": { | |
| "__insp": "", | |
| "__inspld": "" | |
| }, | |
| "icon": "inspectlet.png", | |
| "website": "https://www.inspectlet.com/" | |
| }, | |
| "Mouse Flow": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "js": { | |
| "_mfq": "" | |
| }, | |
| "script": [ | |
| "cdn\\.mouseflow\\.com" | |
| ], | |
| "icon": "mouseflow.png", | |
| "website": "https://mouseflow.com/" | |
| }, | |
| "Visual Website Optimizer": { | |
| "cats": [ | |
| 10 | |
| ], | |
| "html": [ | |
| "<!-- (?:Start|End) Visual Website Optimizer A?Synchronous Code -->" | |
| ], | |
| "script": [ | |
| "dev\\.visualwebsiteoptimizer\\.com" | |
| ], | |
| "js": { | |
| "VWO": "", | |
| "__vwo": "" | |
| }, | |
| "icon": "vwo.svg", | |
| "website": "https://vwo.com/" | |
| }, | |
| "XWiki": { | |
| "cats": [ | |
| 8 | |
| ], | |
| "html": [ | |
| "<html[^>]data-xwiki-[^>]>" | |
| ], | |
| "meta": { | |
| "wiki": "xwiki" | |
| }, | |
| "implies": "Java\\;confidence:99", | |
| "excludes": "MediaWiki", | |
| "website": "http://www.xwiki.org", | |
| "icon": "xwiki.png" | |
| }, | |
| "Woosa": { | |
| "cats": [ | |
| 1, | |
| 6 | |
| ], | |
| "excludes": [ | |
| "WordPress", | |
| "WooCommerce" | |
| ], | |
| "meta": { | |
| "generator": "^Woosa$" | |
| }, | |
| "icon": "Woosa.png", | |
| "website": "https://woosa.nl" | |
| } | |
| }, | |
| "categories": { | |
| "1": { | |
| "name": "CMS", | |
| "priority": 1 | |
| }, | |
| "2": { | |
| "name": "Message Boards", | |
| "priority": 1 | |
| }, | |
| "3": { | |
| "name": "Database Managers", | |
| "priority": 2 | |
| }, | |
| "4": { | |
| "name": "Documentation Tools", | |
| "priority": 2 | |
| }, | |
| "5": { | |
| "name": "Widgets", | |
| "priority": 9 | |
| }, | |
| "6": { | |
| "name": "Ecommerce", | |
| "priority": 1 | |
| }, | |
| "7": { | |
| "name": "Photo Galleries", | |
| "priority": 1 | |
| }, | |
| "8": { | |
| "name": "Wikis", | |
| "priority": 1 | |
| }, | |
| "9": { | |
| "name": "Hosting Panels", | |
| "priority": 1 | |
| }, | |
| "10": { | |
| "name": "Analytics", | |
| "priority": 9 | |
| }, | |
| "11": { | |
| "name": "Blogs", | |
| "priority": 1 | |
| }, | |
| "12": { | |
| "name": "JavaScript Frameworks", | |
| "priority": 5 | |
| }, | |
| "13": { | |
| "name": "Issue Trackers", | |
| "priority": 2 | |
| }, | |
| "14": { | |
| "name": "Video Players", | |
| "priority": 7 | |
| }, | |
| "15": { | |
| "name": "Comment Systems", | |
| "priority": 9 | |
| }, | |
| "16": { | |
| "name": "Captchas", | |
| "priority": 9 | |
| }, | |
| "17": { | |
| "name": "Font Scripts", | |
| "priority": 9 | |
| }, | |
| "18": { | |
| "name": "Web Frameworks", | |
| "priority": 4 | |
| }, | |
| "19": { | |
| "name": "Miscellaneous", | |
| "priority": 9 | |
| }, | |
| "20": { | |
| "name": "Editors", | |
| "priority": 4 | |
| }, | |
| "21": { | |
| "name": "LMS", | |
| "priority": 1 | |
| }, | |
| "22": { | |
| "name": "Web Servers", | |
| "priority": 7 | |
| }, | |
| "23": { | |
| "name": "Cache Tools", | |
| "priority": 9 | |
| }, | |
| "24": { | |
| "name": "Rich Text Editors", | |
| "priority": 5 | |
| }, | |
| "25": { | |
| "name": "JavaScript Graphics", | |
| "priority": 3 | |
| }, | |
| "26": { | |
| "name": "Mobile Frameworks", | |
| "priority": 3 | |
| }, | |
| "27": { | |
| "name": "Programming Languages", | |
| "priority": 4 | |
| }, | |
| "28": { | |
| "name": "Operating Systems", | |
| "priority": 5 | |
| }, | |
| "29": { | |
| "name": "Search Engines", | |
| "priority": 4 | |
| }, | |
| "30": { | |
| "name": "Web Mail", | |
| "priority": 2 | |
| }, | |
| "31": { | |
| "name": "CDN", | |
| "priority": 9 | |
| }, | |
| "32": { | |
| "name": "Marketing Automation", | |
| "priority": 9 | |
| }, | |
| "33": { | |
| "name": "Web Server Extensions", | |
| "priority": 7 | |
| }, | |
| "34": { | |
| "name": "Databases", | |
| "priority": 5 | |
| }, | |
| "35": { | |
| "name": "Maps", | |
| "priority": 9 | |
| }, | |
| "36": { | |
| "name": "Advertising Networks", | |
| "priority": 9 | |
| }, | |
| "37": { | |
| "name": "Network Devices", | |
| "priority": 9 | |
| }, | |
| "38": { | |
| "name": "Media Servers", | |
| "priority": 1 | |
| }, | |
| "39": { | |
| "name": "Webcams", | |
| "priority": 9 | |
| }, | |
| "40": { | |
| "name": "Printers", | |
| "priority": 9 | |
| }, | |
| "41": { | |
| "name": "Payment Processors", | |
| "priority": 8 | |
| }, | |
| "42": { | |
| "name": "Tag Managers", | |
| "priority": 9 | |
| }, | |
| "43": { | |
| "name": "Paywalls", | |
| "priority": 9 | |
| }, | |
| "44": { | |
| "name": "Build CI Systems", | |
| "priority": 4 | |
| }, | |
| "45": { | |
| "name": "Control Systems", | |
| "priority": 8 | |
| }, | |
| "46": { | |
| "name": "Remote Access", | |
| "priority": 8 | |
| }, | |
| "47": { | |
| "name": "Dev Tools", | |
| "priority": 3 | |
| }, | |
| "48": { | |
| "name": "Network Storage", | |
| "priority": 9 | |
| }, | |
| "49": { | |
| "name": "Feed Readers", | |
| "priority": 1 | |
| }, | |
| "50": { | |
| "name": "Document Management Systems", | |
| "priority": 1 | |
| }, | |
| "51": { | |
| "name": "Landing Page Builders", | |
| "priority": 2 | |
| }, | |
| "52": { | |
| "name": "Live Chat", | |
| "priority": 9 | |
| }, | |
| "53": { | |
| "name": "CRM", | |
| "priority": 7 | |
| }, | |
| "54": { | |
| "name": "SEO", | |
| "priority": 7 | |
| }, | |
| "55": { | |
| "name": "Accounting", | |
| "priority": 1 | |
| }, | |
| "56": { | |
| "name": "Cryptominer", | |
| "priority": 8 | |
| }, | |
| "57": { | |
| "name": "Static Site Generator", | |
| "priority": 1 | |
| } | |
| } | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment