Table: urlscan_link - Query Urlscan Links using SQL
Urlscan Links is a resource in Urlscan.io service. It provides detailed information about every link that has been scanned by Urlscan.io. This includes the URL, associated page, and the status of the scan, providing critical insights into the security status of these links.
Table Usage Guide
The urlscan_link
table provides insights into the links scanned by Urlscan.io as a security analyst, you can explore the details of each scanned link through this table, including the URL, associated page, and the status of the scan. Utilize it to uncover information about the security status of these links, helping you identify potential security risks and take necessary actions.
Important Notes
- You must specify the
scan
in thewhere
clause to query this table.
Examples
List links found in the page
Explore the specific links found within a webpage. This can be particularly useful in identifying potential security risks or understanding the structure and content of a website.
select href, textfrom urlscan_linkwhere scan = '54c78f69-5294-4a17-8ae0-a71943954e09'order by href;
select href, textfrom urlscan_linkwhere scan = '54c78f69-5294-4a17-8ae0-a71943954e09'order by href;
Schema for urlscan_link
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
href | text | HREF of the link. | |
scan | text | = | ID of the scan result. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
text | text | Text of the link. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- urlscan
You can pass the configuration to the command with the --config
argument:
steampipe_export_urlscan --config '<your_config>' urlscan_link