Examples/Vulnerable_ExternallyControlledFormatString_2.ps1

function Apply-UnsafeFormat2 {
    param($line, $arg)

    $fmt = $line
    $fmt -f $arg
}