mirror of
https://github.com/itm4n/PrivescCheck
synced 2026-06-08 14:54:28 +00:00
14 lines
400 B
PowerShell
14 lines
400 B
PowerShell
@{
|
|
Severity = @(
|
|
"Error",
|
|
"Warning",
|
|
"Information"
|
|
)
|
|
|
|
ExcludeRules = @(
|
|
"PSUseShouldProcessForStateChangingFunctions",
|
|
"PSAvoidUsingWMICmdlet", # Get-WmiObject is required for PSv2 retro-compatibility
|
|
"PSAvoidUsingBrokenHashAlgorithms" # MD5 and SHA1 required for identifying known vulnerable drivers
|
|
"PSAvoidUsingWriteHost"
|
|
)
|
|
} |