I am using ubuntu version "20.04.3 LTS (Focal Fossa)" where facing CVE-2021-43527 (NSS) vulnerability, no public network on the VM. In the link its mentioned that this vulnerability fixed in 2:3.49.1-1ubuntu1.6. Please help me how can I upgrade this version or how to resolve mentioned vulnerability from my VM.
Asked
Active
Viewed 260 times
sudo apt update
andsudo apt dist-upgrade
. That should apply all the updates. – Archisman Panigrahi Feb 02 '22 at 06:07libnss3 libnss3-dev libnss3-tools
. If the machine doesn't have access to the internet, you can download the packages (deb files) from here and install them usingsudo apt install ./packagename.deb
in the same directory as the downloaded pacakge. – mchid Feb 02 '22 at 21:00