Examples/Vulnerable_ExternallyControlledFormatString_1.ps1

function Apply-UnsafeFormat {
    param($format, $value)

    [string]::Format($format, $value)
}