Powershell module for interacting with the urlscan.io API.
Head over to urlscan.io and get yourself an API key (https://urlscan.io/user/apikey/new/), install the module and then run Connect-UrlScanio.
Install-Module -Name PSUrlScanio -Repository PSGallerySearch for the last 2 scans for the domain github.com
Search-Urlscanio -Domain github.com -Limit 2Do the same but return the entire json response rather than basic details
Search-Urlscanio -Domain github.com -Limit 2 -RawGet results from a specific scan id (atm this just returns parsed raw json)
Get-UrlScanioScan -uuid 03ba7a78-e779-4743-ae37-2b683ee9ec74Kick off a scan on the chosen domain/URL (omitting -Raw will result in the report URL being returned)
Start-UrlScanioScan -Url google.com -Raw

