superlint/.automation/test/powershell/powershell_bad_1.ps1
2020-11-06 23:18:48 +01:00

13 lines
257 B
PowerShell

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