Update openssl and OMI in ubuntu 16.04

·

1 min read

Install Openssl

The openssh has been updated by using apt-get update on Ubuntu 16.04 We have to install from the source code

wget https://www.openssl.org/source/openssl-1.1.0.tar.gz
apt install build-essential checkinstall zlib1g-dev libtemplate-perl make gcc
tar xvf openssl-1.1.0.tar.gz
cd openssl-1.1.0
./config
make
sudo make test
sudo make install
ldconfig
/usr/local/bin/openssl version

Install OMI

Open Management Infrastructure (OMI) is an open-source Web-Based Enterprise Management (WBEM) implementation for managing Linux and UNIX systems.

Several Azure Virtual Machine (VM) management extensions use this framework to orchestrate configuration management and log collection on Linux VMs.

The remote code execution vulnerability only impacts customers using a Linux management solution (on-premises SCOM or Azure Automation State Configuration or Azure Desired State Configuration extension) that enables remote OMI management.

Requiring openssl version from 1.1.0

wget https://github.com/microsoft/omi/releases/download/v1.6.10-2/omi-1.6.10-2.ssl_110.ulinux.x64.deb
sudo dpkg -i ./omi-1.6.10-2.ssl_110.ulinux.x64.deb
/opt/omi/bin/omiserver -v

References

installing-openssl-on-ubuntu-16-04-18-04