Examples/Vulnerable_PredictableRandomSeed_2.ps1

function Get-UnsafeRandom2 {
    $rnd = [System.Random]::new(4040)
    return $rnd.Next()
}