Examples/Vulnerable_PredictableRandomSeed_1.ps1

function Get-UnsafeRandom1 {
    $rnd = New-Object System.Random
    return $rnd.Next()
}