diff --git a/README.md b/README.md index a6dc117..9899fa3 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,9 @@ firmware to mitigate these vulnerabilities. The check will raise a CRITICAL when the Integrated Lights-Out needs to be updated. Below you will find a list with the least version of each Integrated Lights-Out version: -- HPE Integrated Lights-Out 3 (iLO 3) firmware v1.93 or later. -- HPE Integrated Lights-Out 4 (iLO 4) firmware v2.75 or later -- HPE Integrated Lights-Out 5 (iLO 5) firmware v2.18 or later. +- HPE iLO 6 v1.56 or later +- HPE iLO 5 v3.01 or later +- HPE iLO 4 v2.82 or later **IMPORTANT:** Always read the latest HPE Security Bulletins. https://support.hpe.com/connect/s/securitybulletinlibrary diff --git a/hp/ilo/firmware_data.go b/hp/ilo/firmware_data.go index 3869650..a77edb2 100644 --- a/hp/ilo/firmware_data.go +++ b/hp/ilo/firmware_data.go @@ -12,8 +12,11 @@ const OlderModels = 8 // See mib.CpqSm2CntlrModelMap - not all models are mentioned here // // For vendor details see HPESBHF04012 https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbhf04012en_us +// HPE iLO 6 v1.56 Release Notes https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&docId=sd00003963en_us +// HPE iLO 5 v3.01 Release Notes https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&docId=sd00003959en_us +// HPE iLO 4 v2.82 Release Notes https://support.hpe.com/hpesc/public/docDisplay?docId=c03334036en_us&page=index.html var FixedVersionMap = map[string]PlatformInfo{ "pciIntegratedLightsOutRemoteInsight3": {"3", "1.93"}, - "pciIntegratedLightsOutRemoteInsight4": {"4", "2.75"}, - "pciIntegratedLightsOutRemoteInsight5": {"5", "2.18"}, + "pciIntegratedLightsOutRemoteInsight4": {"4", "2.82"}, + "pciIntegratedLightsOutRemoteInsight5": {"5", "3.01"}, }