Examples/Vulnerable_Ssrf_2.ps1

param(
    [string]$endpoint
)

$target = "http://$endpoint/api"
Invoke-RestMethod -Uri $target | Out-Null