@@ -145,24 +145,24 @@ Find the JSON schema at [`schema.json`](https://github.com/enthec/webappanalyzer
145145
146146### Patterns
147147
148- | Field | Type | Description | Regex | Example |
149- | --------------------------| ---------------------| -----------------------------------------------------------------------------------------------| -------| -------------------------------------|
150- | ** cookies** | ` {string:string} ` | Cookies | true | ` {"cookie_name": "Cookie value"} ` |
151- | ** dom** | [ DOM] ( #DOM ) | [ Query selectors] ( https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll ) | false | ` ["img[src*='example']"] ` |
152- | ** dns** | ` {string:[]string} ` | DNS records | true | ` {"MX": ["example\\.com"]} ` |
153- | ** js** | ` {string:string} ` | JavaScript properties | true | ` {"jQuery.fn.jquery": ""} ` |
154- | ** headers** | ` {string:string} ` | HTTP response headers | true | ` {"X-Powered-By": "^WordPress$"} ` |
155- | ** text** | ` []string ` | Matches plain text | true | ` ["\bexample\b"] ` |
156- | ** css** | ` []string ` | CSS rules | true | ` ["\\.example-class"] ` |
157- | ** probe** | ` {string:string} ` | Request a URL to test for its existence or match text content | false | ` {"/path": "Example text"} ` |
158- | ** robots** | ` []string ` | Robots.txt contents | false | ` ["Disallow: /unique-path/"] ` |
159- | ** url** | ` []string ` | Full URL of the page | true | ` ["^https?//.+\\.wordpress\\.com"] ` |
160- | ** xhr** | ` []string ` | Hostnames of XHR requests | true | ` ["cdn\\.netlify\\.com"] ` |
161- | ** meta** | ` {string:string} ` | HTML meta tags | true | ` {"generator": "^WordPress$"} ` |
162- | ** scriptSrc** | ` []string ` | URLs of JavaScript files | true | ` ["jquery\\.js"] ` |
163- | ** scripts** | ` []string ` | JavaScript source code | true | ` ["<a [^>]*href=\"index.html"] ` |
164- | ~~ ** html** ~~ (deprecated) | ` []string ` | HTML source code | true | ` {"generator": "^WordPress$"} ` |
165- | ** certIssuer** | ` string ` | SSL certificate issuer | false | ` "Let's Encrypt" ` |
148+ | Field | Type | Description | Regex | Example |
149+ | --------------------------| ---------------------| -----------------------------------------------------------------------------------------------| -------| ------------------------------------------------- |
150+ | ** cookies** | ` {string:string} ` | Cookies | true | ` {"cookie_name": "Cookie value"} ` |
151+ | ** dom** | [ DOM] ( #DOM ) | [ Query selectors] ( https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll ) | false | ` ["img[src*='example']"] ` |
152+ | ** dns** | ` {string:[]string} ` | DNS records | true | ` {"MX": ["example\\.com"]} ` |
153+ | ** js** | ` {string:string} ` | JavaScript properties | true | ` {"jQuery.fn.jquery": ""} ` |
154+ | ** headers** | ` {string:string} ` | HTTP response headers | true | ` {"X-Powered-By": "^WordPress$"} ` |
155+ | ** text** | ` []string ` | Matches plain text | true | ` ["\bexample\b"] ` |
156+ | ** css** | ` []string ` | CSS rules | true | ` ["\\.example-class"] ` |
157+ | ** probe** | ` {string:string} ` | Request a URL to test for its existence or match text content | false | ` {"/path": "Example text"} ` |
158+ | ** robots** | ` []string ` | Robots.txt contents | false | ` ["Disallow: /unique-path/"] ` |
159+ | ** url** | ` []string ` | Full URL of the page | true | ` ["^https?//.+\\.wordpress\\.com"] ` |
160+ | ** xhr** | ` []string ` | Hostnames of XHR requests | true | ` ["cdn\\.netlify\\.com"] ` |
161+ | ** meta** | ` {string:string} ` | HTML meta tags | true | ` {"generator": "^WordPress$"} ` |
162+ | ** scriptSrc** | ` []string ` | URLs of JavaScript files | true | ` ["jquery\\.js"] ` |
163+ | ** scripts** | ` []string ` | JavaScript source code | true | ` ["function webpackJsonpCallback\\(data\\) {"] ` |
164+ | ~~ ** html** ~~ (deprecated) | ` []string ` | HTML source code | true | ` ["<a [^>]*href=\"index.html"] ` |
165+ | ** certIssuer** | ` string ` | SSL certificate issuer | false | ` "Let's Encrypt" ` |
166166
167167## Patterns
168168
0 commit comments