For inquiries, check out the About page.

Deals expire left & right - Be sure to grab one on time!
Buy from my links, I get a commission. We both win. You dig?
Shopping King of Real Tangible Deals! Shop Smarter, Cheaper, Better
As an Amazon/eBay/AliExpress Associate, I earn from qualifying purchases

Tuesday, April 2, 2024

Linux distros - xz-utils backdoor - Patch Now!

 The xz-utils package, starting from versions 5.6.0 to 5.6.1, was found to contain a backdoor (CVE-2024-3094). This backdoor could potentially allow a malicious actor to compromise sshd authentication, granting unauthorized access to the entire system remotely.

With a library this widely used, the severity of this vulnerability poses a threat to the entire Linux ecosystem. Luckily, this issue was caught quickly so the impact was significantly less than it could have been. It has already been patched in Debian, and therefore, Kali Linux.

check which version of xz-utils version installed:
xz --version
# or
apt-cache policy liblzma5
# or
dpkg-query -l '*xz*'
# or
dpkg-query -l | grep xz

# To update to the latest safe version:
sudo apt update && sudo apt install -y --only-upgrade liblzma5
# or if not already installed:
sudo apt-get install xz-utils 

source1

source2