Skip to content

Commit 0544ee8

Browse files
committed
[Radar] Address hyperlint issues
1 parent 4103cef commit 0544ee8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/radar/investigate/url-scanner.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ While the scan is in progress, the HTTP status code will be `404`, once it's fin
7777
The response will include, among others, the following top properties:
7878

7979
* `task` - Information on the scan submission.
80-
* `page` - Information pertaining to the primary response (e.g. ip address, ASN, server and page redirect history).
80+
* `page` - Information pertaining to the primary response, for example IP address, ASN, server and page redirect history.
8181
* `data.requests` - Request chains involved in the page load.
8282
* `data.cookies` - Cookies set by the page.
8383
* `data.globals` - Non-standard JavaScript global variables.
8484
* `data.console` - Console logs.
8585
* `data.performance` - Timings as given by the [`PerformanceNavigationTiming`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming) interface.
86-
* `meta` - Meta processors output including detected technologies, domain and url categories, rank, geoip information and others.
86+
* `meta` - Meta processors output including detected technologies, domain and URL categories, rank, geoip information and others.
8787
* `lists.ips` - IPs contacted.
8888
* `lists.asns` - AS Numbers contacted.
8989
* `lists.domains` - Hostnames contacted, including `dns` record information.
@@ -94,7 +94,7 @@ The response will include, among others, the following top properties:
9494
Some examples of more specific properties include:
9595

9696
* `task.uuid` - ID of the scan.
97-
* `task.url` - Submitted url of the scan. May differ from final url (`page.url`) if there HTTP redirects.
97+
* `task.url` - Submitted URL of the scan. May differ from final URL (`page.url`) if there are HTTP redirects.
9898
* `task.success` - Whether scan was successful or not. Scans can fail for various reasons, including DNS errors.
9999
* `task.status` - Current scan status, for example, `Queued`, `InProgress`, or `Finished`.
100100
* `meta.processors.domainCategories` - Cloudflare categories of the main hostname contacted.
@@ -134,8 +134,8 @@ curl "https://api.cloudflare.com/client/v4/accounts/{account_id}/urlscanner/v2/s
134134

135135
Some other example queries:
136136

137-
- `task.url:"https://google.com" OR task.url:"https://www.google.com"` - search for scans whose submitted url was either `google.com` or `www.google.com`. URLs *must* be enclosed in quotes.
138-
- `page.url:"https://google.com" AND NOT task.url:"https://google.com"` - search for scans to `google.com` whose submitted url was not `google.com` (ie. sites that redirected to google.com)
137+
- `task.url:"https://google.com" OR task.url:"https://www.google.com"` - search for scans whose submitted URL was either `google.com` or `www.google.com`. URLs *must* be enclosed in quotes.
138+
- `page.url:"https://google.com" AND NOT task.url:"https://google.com"` - search for scans to `google.com` whose submitted url was not `google.com` (that is, sites that redirected to google.com)
139139
- `page.domain:microsoft AND verdicts.malicious:true AND NOT page.domain:microsoft.com`: malicious scans whose hostname starts with "microsoft". Would match domains like "microsoft.phish.com"
140140
- `apikey:me AND date:[2024-01 TO 2024-10]`: my scans from 2024 January to 2024 October.
141141
- `page.domain:(blogspot OR www.blogspot)`: Searches for scans whose main domain starts with `blogspot` or with `www.blogspot`

0 commit comments

Comments
 (0)