Created
May 11, 2018 20:46
-
-
Save kamirbarron/feaf2907e53baf1e3e867101a41e3d5b to your computer and use it in GitHub Desktop.
PowerShell snippet for submitting to urlscan.io - By Nicholas Gipson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
$Invoke = Invoke-WebRequest -Headers @{"API-Key" = "$apikey"} -Method Post ` -Body "{`"url`":`"$url`"}" -Uri https://urlscan.io/api/v1/scan/ ` -ContentType application/json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment