superlint/.automation/test/powershell/powershell_bad_1.ps1
2020-06-19 14:18:26 -07:00

14 lines
258 B
PowerShell

#Plaintext Parameters
function BadFunction {
param(
[String]$Username = 'me',
[String]$Password = 'password'
)
$Username
$Password
$VariableThatIsNotUsedLater = '5'
try {
'Empty Catch Block'
} catch {}
}