Examples/Safe_AuthenticationBypassSpoofing_1.ps1

function Test-IpAuthSafe1 {
    param([string]$clientId)

    if($clientId -eq 'admin')
    {
        return $true
    }

    return $false
}