Lucene search

K
ibmIBM5A1A1EBF26CED96928290BADF7FA6016A1F50DB13D7B38466FB113AE84B39A36
HistoryOct 01, 2021 - 12:13 p.m.

Security Bulletin: Publicly disclosed vulnerability from Kernel affects IBM Netezza Host Management

2021-10-0112:13:57
www.ibm.com
13

5.5 Medium

CVSS3

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

NONE

Availability Impact

NONE

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

2.1 Low

CVSS2

Access Vector

LOCAL

Access Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:L/AC:L/Au:N/C:P/I:N/A:N

0.0005 Low

EPSS

Percentile

14.3%

Summary

Kernel is used by IBM Netezza Host Management. This bulletin provides mitigation for the reported CVE.

Vulnerability Details

CVEID:CVE-2020-8832
**DESCRIPTION:**Linux Kernel could allow a local attacker to obtain sensitive information, caused by not properly clearing data structures on context switches for certain Intel graphics processors improperly. An attacker could exploit this vulnerability to obtain sensitive information.
CVSS Base score: 4
CVSS Temporal Score: See: https://exchange.xforce.ibmcloud.com/vulnerabilities/180041 for the current score.
CVSS Vector: (CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N)

Affected Products and Versions

Affected Product(s) Version(s)
IBM Netezza Host Management All IBM Netezza Host Management Versions

Remediation/Fixes

None

Workarounds and Mitigations

Mitigation of the reported CVE-2020-8832, blocklisting kernel module** i915** to prevent it from loading automatically on PureData System for Analytics N200x and N3001 is as follows:

1. Change to user nz:
[root@nzhost1 ~]# su โ€“ nz

2. Check to see if Call Home is enabled:
[nz@nzhost1 ~]$ nzcallhome -status

If enabled, disable it:
[nz@nzhost1 ~]$ nzcallhome โ€“off

Note: Ensure that nzcallhome returns status as disabled. If there are errors in the call-Home.txt configuration file, errors are listed in the output, and call-Home is disabled.

3. Check the state of the Netezza system:
[nz@nzhost1 ~]$ nzstate

4. If the system state is online, stop the system using the command:
[nz@nzhost1 ~]$ nzstop

5. Wait for the system to stop, using the command:
[nz@nzhos1t ~]$ nzstate

System state is โ€˜Stoppedโ€™.

6. Exit from the nz session to return to user root:
[nz@nzhost1 ~]$ exit

7. Logged into the active host as root, type the following commands to stop the heartbeat processes:
[root@nzhost1 ~]# ssh ha2 /sbin/service heartbeat stop
[root@nzhost1 ~]# /sbin/service heartbeat stop

8. Run below commands as a root user to disable heartbeat from startup:
[root@nzhost1 ~]# ssh ha2 /sbin/chkconfig heartbeat off
[root@nzhost1 ~]# /sbin/chkconfig heartbeat off

9. Type the following commands to stop the DRBD processes:
[root@nzhost1 ~]# ssh ha2 /sbin/service drbd stop
[root@nzhost1 ~]# /sbin/service drbd stop

10. Run below commands as a root user to disable drbd from startup:
[root@nzhost1 ~]# ssh ha2 /sbin/chkconfig drbd off
[root@nzhost1 ~]# /sbin/chkconfig drbd off

Execute below steps using โ€œrootโ€ user on both ha1/ha2 hosts

Step 1: Check if i915 is loaded in the hosts

lsmod | grep i915

example:
[root@nzhost1 ~]# lsmod | grep i915
i915 1282724 0
drm_kms_helper 127731 1 i915
drm 355270 2 i915,drm_kms_helper
video 21686 1 i915
i2c_algo_bit 5903 2 i915,igb
i2c_core 29164 6 i915,drm_kms_helper,drm,ics932s401,igb,i2c_algo_bit
**
Note:If there is no output skipStep 2**, and proceed withStep 3

Step 2: Unload i915 module

modprobe -rv i915

example:
[root@nzhost1 ~]# modprobe -rv i915
rmmod /lib/modules/2.6.32-754.31.1.el6.x86_64/kernel/drivers/gpu/drm/i915/i915.ko
rmmod /lib/modules/2.6.32-754.31.1.el6.x86_64/kernel/drivers/gpu/drm/drm_kms_helper.ko
rmmod /lib/modules/2.6.32-754.31.1.el6.x86_64/kernel/drivers/gpu/drm/drm.ko
rmmod /lib/modules/2.6.32-754.31.1.el6.x86_64/kernel/drivers/acpi/video.ko
rmmod /lib/modules/2.6.32-754.31.1.el6.x86_64/kernel/drivers/video/output.ko

The output shows that i915, its dependent modules are unloaded in the reverse order that they are loaded, given that no processes depend on any of the modules being unloaded.

Step 3: To prevent a module from being loaded directly you add the blocklist line to a configuration file specific to the system configuration.

echo โ€œblocklist i915โ€ >> /etc/modprobe.d/local-blocklist.conf

example :
[root@nzhost1 ~]# echo โ€œblocklist i915โ€ >> /etc/modprobe.d/local-blocklist.conf
[root@nzhost1 ~]# cat /etc/modprobe.d/local-blocklist.conf | grep i915
blocklist i915

Step 4: Kernel modules can be loaded directly or loaded as a dependency from another module
To prevent installation as a dependency from another module follow below step:

echo โ€œinstall i915 /bin/falseโ€ >> /etc/modprobe.d/local-blocklist.conf

example:
[root@nzhost1 ~]# echo โ€œinstall i915 /bin/falseโ€ >> /etc/modprobe.d/local-blocklist.conf
[root@nzhost1 ~]# cat /etc/modprobe.d/local-blocklist.conf | grep i915
blocklist i915
install i915 /bin/false
The install line simply causes /bin/false to be run instead of installing a module.

Step 5: Make a backup copy of your initramfs.

cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.$(date +%m-%d-%H%M%S).bak

Example:
[root@nzhost1 ~]# cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.$(date +%m-%d-%H%M%S).bak
[root@nzhost1 ~]# uname -r
2.6.32-754.31.1.el6.x86_64
[root@nzhost1 ~]# ll /boot/initramfs-2.6.32-754.31.1.el6.x86_64.img.08-11-140014.bak
-rw------- 1 root root 27590644 Aug 11 14:00 /boot/initramfs-2.6.32-754.31.1.el6.x86_64.img.08-11-140014.bak

Step 6: If the kernel module is part of the initramfs (boot configuration), rebuild your initial ramdisk image, omitting the module to be avoided

dracut --omit-drivers i915 -f

example:
[root@nzhost1 ~]# dracut --omit-drivers i915 -f
[root@nzhost1 ~]# lsinitrd /boot/initramfs-2.6.32-754.31.1.el6.x86_64.img | grep i915

Step 7: Append module_name.blocklist to the kernel cmdline. We give it an invalid parameter of blocklist and set it to 1 as a way to preclude the kernel from loading it.

sed --follow-symlinks -i โ€˜/\s*kernel /vmlinuz/s/$/ i915.blocklist=1/โ€™ /etc/grub.conf

example :
[root@nzhost1 ~]# sed -i โ€˜/\s*kernel /vmlinuz/s/$/ i915.blocklist=1/โ€™ /boot/grub/grub.conf

Step 8: Blocklist the kernel module in kdumpโ€™s configuration file.

echo โ€œblocklist i915โ€ >> /etc/kdump.conf

example:
[root@nzhost1 ~]# echo โ€œblocklist i915โ€ >> /etc/kdump.conf
[root@nzhost1 ~]# cat /etc/kdump.conf | grep i915
blocklist i915
Note: PerformStep 9if kexec-tools is installed and kdump is configured else continue withStep 10.
Perform below commands to check if kexec-tools is installed and Kdump is operational
[root@nzhost1 ~]# rpm -qa | grep kexec-tools
[root@nzhost1 ~]# service kdump status

Step 9: Restart the kdump service to pick up the changes to kdumpโ€™s initrd.

service kdump restart

example:
[root@nzhost1 ~]# service kdump restart
Stopping kdump: [ OK ]
Starting kdump: [ OK ]

Step 10: Reboot the system at a convenient time to have the changes take effect.
Make sure other host is up by pinging or logging in before rebooting

/sbin/shutdown -r now

example:
[root@nzhost1 ~]# /sbin/shutdown -r now
Make sure the first server comes up and is reachable before performing Mitigation steps on the second server.

After applying the mitigation:

1. Start the services using following:
[root@nzhost1 ~]# service heartbeat start
[root@nzhost1 ~]# ssh ha2 service heartbeat start
[root@nzhost1 ~]# service drbd start
[root@nzhost1 ~]# ssh ha2 service drbd start

2. Check the stat of the system. Type:
[root@nzhost1 ~]# crm_mon -i5

Result: When the cluster manager comes up and is ready, status appears as follows.
Make sure that nzinit has started before you proceed. (This could take a few minutes.)
Node: nps61074 (e890696b-ab7b-42c0-9e91-4c1cdacbe3f9): online
Node: nps61068 (72043b2e-9217-4666-be6f-79923aef2958): online
Resource Group: nps
drbd_exphome_device(heartbeat:drbddisk): Started nps61074
drbd_nz_device(heartbeat:drbddisk): Started nps61074
exphome_filesystem(heartbeat::ocf:Filesystem): Started nps61074
nz_filesystem (heartbeat::ocf:Filesystem): Started nps61074
fabric_ip (heartbeat::ocf:IPaddr): Started nps61074
wall_ip (heartbeat::ocf:IPaddr): Started nps61074
nzinit (lsb:nzinit): Started nps61074
fencing_route_to_ha1(stonith:apcmaster): Started nps61074
fencing_route_to_ha2(stonith:apcmaster): Started nps61068

3. From host 1 (ha1), press Ctrl+C to break out of crm_mon.

4. Turn on heartbeat and DRBD using the chkconfig:
ssh ha2 /sbin/chkconfig drbd on /sbin/chkconfig drbd on ssh ha2 /sbin/chkconfig heartbeat on /sbin/chkconfig heartbeat on

CPENameOperatorVersion
puredata system for analyticseqany

5.5 Medium

CVSS3

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

NONE

Availability Impact

NONE

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

2.1 Low

CVSS2

Access Vector

LOCAL

Access Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:L/AC:L/Au:N/C:P/I:N/A:N

0.0005 Low

EPSS

Percentile

14.3%

Related for 5A1A1EBF26CED96928290BADF7FA6016A1F50DB13D7B38466FB113AE84B39A36