Examples/Vulnerable_Xss_2.ps1

function Show-Comment {
    param($userComment)

    $response = New-Object psobject
    $response.Write($userComment)
}