Skip to main content

crawled_urls

Creates, updates, deletes, gets or lists a crawled_urls resource.

Overview

Namecrawled_urls
TypeResource
Idgoogle.websecurityscanner.crawled_urls

Fields

NameDatatypeDescription
bodystringOutput only. The body of the request that was used to visit the URL.
httpMethodstringOutput only. The http method of the request that was used to visit the URL, in uppercase.
urlstringOutput only. The URL that was crawled.

Methods

NameAccessible byRequired ParamsDescription
listSELECTprojectsId, scanConfigsId, scanRunsIdList CrawledUrls under a given ScanRun.

SELECT examples

List CrawledUrls under a given ScanRun.

SELECT
body,
httpMethod,
url
FROM google.websecurityscanner.crawled_urls
WHERE projectsId = '{{ projectsId }}'
AND scanConfigsId = '{{ scanConfigsId }}'
AND scanRunsId = '{{ scanRunsId }}';