You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
False Positive Results for Control aws_compliance.control.foundational_security_ssm_2. All Patches that are not applicable raises alarm.
Especially for windows instances, this result into thousands of false positives in our environment.
Steampipe version (steampipe -v)
v0.21.4
Plugin version (steampipe plugin list)
aws 0.130.0
2 All EC2 instances managed by Systems Manager should be compliant with patching requ… HIGH 2,321 / 5,266 [==========]
ALARM: i-03cdb patch KB2305420 is non-compliant. ............................... eu-central-1 123456789
Expected behavior
Instead of raising an ALARM please consider the NotApplicable as SKIP.
Please see the AWS documentation regarding this status as well here:
Not-Applicable means really: The related vulnerable software package is not even installed on that specific instance, therefore the patch is not required and skipped.
thanks in advance
Markus
The text was updated successfully, but these errors were encountered:
Describe the bug
False Positive Results for Control aws_compliance.control.foundational_security_ssm_2. All Patches that are not applicable raises alarm.
Especially for windows instances, this result into thousands of false positives in our environment.
Steampipe version (
steampipe -v
)v0.21.4
Plugin version (
steampipe plugin list
)aws 0.130.0
To reproduce
Lets check patches for an instance with AWS CLI:
aws ssm describe-instance-patches --instance-id i-03cdb --region eu-central-1
Result (stripped to KB2305420)
{
"Patches": [
{
"Title": "",
"KBId": "KB2305420",
"Classification": "",
"Severity": "",
"State": "NotApplicable",
"InstalledTime": 0.0
}
]
}
Please note the State "NotApplicable"
Now let's start the control:
steampipe check aws_compliance.control.foundational_security_ssm_2
ALARM: i-03cdb patch KB2305420 is non-compliant. ............................... eu-central-1 123456789
Expected behavior
Instead of raising an ALARM please consider the NotApplicable as SKIP.
Please see the AWS documentation regarding this status as well here:
https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-compliance-states.html
Not-Applicable means really: The related vulnerable software package is not even installed on that specific instance, therefore the patch is not required and skipped.
thanks in advance
Markus
The text was updated successfully, but these errors were encountered: