steampipe plugin install urlscan

Table: urlscan_task - Query Urlscan Tasks using SQL

Urlscan Tasks in is a service that allows you to execute and manage scan tasks across your applications and infrastructure. It provides a centralized way to set up and manage tasks for various resources, including websites, web applications, and more. Urlscan Tasks helps you stay informed about the health and security of your resources and take appropriate actions when predefined conditions are met.

Table Usage Guide

The urlscan_task table provides insights into tasks within Urlscan. As a security analyst, explore task-specific details through this table, including task status, results, and associated metadata. Utilize it to uncover information about tasks, such as those related to specific URLs, the status of each task, and the verification of scan results.

Important Notes

  • You must specify the scan in the where clause to query this table.

Examples

Get task information

Explore detailed information about a specific task, such as its status, duration, and associated metadata. This is useful for tracking the progress and outcome of individual tasks, enabling efficient monitoring and management.

select
*
from
urlscan_task
where
scan = '54c78f69-5294-4a17-8ae0-a71943954e09';
select
*
from
urlscan_task
where
scan = '54c78f69-5294-4a17-8ae0-a71943954e09';

Schema for urlscan_task

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
dom_urltextDOM URL for the task.
methodtextMethod for the task, e.g. automatic.
report_urltextURL where the report is available.
scantext=ID of the scan result.
screenshot_urltextURL for a screenshot of the page.
sourcetextSource that triggered the task.
timetextTime when the task was run.
urltextURL of the task.
user_agenttextUser agent used for the task.
uuidtextUUID of the task.
visibilitytextVisibility of the task, e.g. public.

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_task