Updated README

main
Elbert Alias 12 years ago
parent 4744441da0
commit c330877221

@ -25,13 +25,13 @@ Example:
```javascript ```javascript
"Application Name": { "Application Name": {
"cats": [ 1 ], "cats": [ 1 ],
"headers": { "X-Powered-By": "Application Name" }, "headers": { "X-Powered-By": "Application Name" },
"url": ".+\\.application-name\\.com", "url": ".+\\.application-name\\.com",
"html": "<link[^>]application-name\\.css", "html": "<link[^>]application-name\\.css",
"meta": { "generator": "Application Name" }, "meta": { "generator": "Application Name" },
"script": "application-name\\.js", "script": "application-name\\.js",
"env": "ApplicationName", "env": "ApplicationName",
"implies": [ "PHP" ], "implies": [ "PHP" ],
"confidence": { "html": 50, "script": 50 } "confidence": { "html": 50, "script": 50 }
} }
@ -41,15 +41,15 @@ Example:
field | type | description field | type | description
-----------|--------|------------ -----------|--------|------------
cats | array | TODO cats | array | List of category IDs. See [apps.json](https://github.com/ElbertF/Wappalyzer/blob/master/share/apps.json).
headers | object | TODO confidence | object |
url | string | TODO env | string | Global JavaScript variables (e.g. `jQuery`).
html | string | TODO headers | object | HTTP Response headers (e.g. `X-Powered-By`)
meta | object | TODO html | string | Full response body.
script | string | TODO implies | array | The presence of one application can imply the presence of another, e.g. Drupal means PHP is also in use.
env | string | TODO url | string | URL of the page (e.g. `wordpress.com`).
implies | array | TODO meta | object | HTML meta tags (e.g. `generator`).
confidence | object | TODO script | string | `src` attribute of HTML script tags (e.g. `jquery.js`).
## Drivers ## Drivers