Skip to content

Commit 14ab30c

Browse files
authored
Update DoNotUseInvokeExpression.ql
1 parent c43b682 commit 14ab30c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

powershell/ql/src/queries/security/cwe-078/DoNotUseInvokeExpression.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
* @problem.severity error
66
* @security-severity 9.8
77
* @precision high
8-
* @id powershell/do-not-use-invoke-expression
8+
* @id powershell/microsoft-public/do-not-use-invoke-expression
99
* @tags security
1010
*/
1111
import powershell
1212
import semmle.code.powershell.dataflow.DataFlow
1313

1414
from CmdCall call
1515
where call.getName() = "Invoke-Expression"
16-
select call, "Do not use Invoke-Expression. It is a command injection risk."
16+
select call, "Do not use Invoke-Expression. It is a command injection risk."

0 commit comments

Comments
 (0)