Examples/Vulnerable_OpenRedirect_1.ps1

function Redirect-Unsafe {
    param($redirectUrl)

    $response = New-Object psobject
    $response.Redirect($redirectUrl)
}