Skip to content

Instantly share code, notes, and snippets.

@Sy3Omda
Created June 8, 2021 13:07
Show Gist options
  • Save Sy3Omda/0fee6957cf36184abb52533e73a18602 to your computer and use it in GitHub Desktop.
Save Sy3Omda/0fee6957cf36184abb52533e73a18602 to your computer and use it in GitHub Desktop.
curl list of urls in powershell via burp as proxy
foreach($line in [System.IO.File]::ReadLines("D:\1.txt")) {iwr -Uri $line -Method GET -Proxy http://127.0.0.1:8080 | Out-Null}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment