69
submitted 3 months ago* (last edited 3 months ago) by GolfNovemberUniform@lemmy.ml to c/linux@lemmy.ml

When the xz backdoor was discovered, I quickly uninstalled my Arch based setup with an infected version of the software and switched to a distro that shipped an older version (5.5 or 5.4 or something). I found an article which said that in 5.6.1-3 the backdoor was "fixed" by just not letting the malware part communicating with the vulnerable ssh related stuff and the actual malware is still there? (I didn't understand 80% of the technical terms and abbreviations in it ok?) Like it still sounds kinda dangerous to me, especially since many experts say that we don't know the other ways this malware can use (except for the ssh supply chain) yet. Is it true? Should I stick with the new distro for now or can I absolutely safely switch back and finally say that I use Arch btw again?

P. S. I do know that nothing is completely safe. Here I'm asking just about xz and libxzlk or whatever the name of that library is

EDIT: 69 upvotes. Nice

top 50 comments
sorted by: hot top controversial new old
[-] BaalInvoker@lemmy.eco.br 136 points 3 months ago

Arch wasn't affected at all, cause the backdoor trigger was only on deb and rpm distros.

However it still a good practice to update your system and leave this version behind. Anyway, Arch already updated and is no longer distributing the backdoor version, therefore 5.6.1-3 is safe

You can use Arch btw again. Actually, you never had to leave it at first

[-] pastermil@sh.itjust.works 37 points 3 months ago

To add to your point: The .deb ones are most likely safe, since it would only be on the unstable & experimental branches. Your garden variety production servers & personal computers should be fine. That is unless you're into some unusual setup like with playing around with the upcoming version, or for some reason are pulling your own xz build.

Can't speak for the .rpm tho.

[-] narc0tic_bird@lemm.ee 12 points 3 months ago

Fedora 39 and 40 (which is still in beta) uses xz 5.4. Fedora 41/rawhide (essentially the development branch) was affected it seems: https://access.redhat.com/security/cve/CVE-2024-3094. CentOS Stream and RHEL have way more outdated packages than that, so they were never vulnerable to this backdoor.

openSUSE Tumbleweed (their rolling release) was affected: https://news.opensuse.org/2024/03/29/xz-backdoor/, Enterprise or Leap were unaffected.

[-] pastermil@sh.itjust.works 3 points 3 months ago

Ah, so the .rpm is pretty much like the .deb in that it's mostly unaffected. Speaking of, I think the .deb side may have VanillaOS affected since it's based on Debian's unstable branch.

[-] r00ty@kbin.life 7 points 3 months ago

Yeah, I checked myself when this was first a thing. Debian 12 and Ubuntu 22.04 latest are on 5.4 and 5.2 respectively.

[-] pastermil@sh.itjust.works 6 points 3 months ago

Yeah, all the current LTSes should be safe. Not sure about the Ubuntu 23.10, but the next LTS (24.04) is confirmed to be affected, hence the delay.

[-] caseyweederman@lemmy.ca 5 points 3 months ago

Not quite. It wasn't confirmed to be affected, but they can't prove that the build environment itself wasn't compromised, thus the rebuild.

As a result of CVE-2024-3094 332, Canonical made the decision to remove and rebuild all binary packages that had been built for Noble Numbat after the CVE-2024-3094 332 code was committed to xz-utils (February 26th), on newly provisioned build environments. This provides us with confidence that no binary in our builds could have been affected by this emerging threat.

https://discourse.ubuntu.com/t/noble-numbat-beta-delayed-xz-liblzma-security-update/43827

And in the follow-up:

Was the vulnerable library ever in the Ubuntu 24.04 LTS (Noble Numbat) daily builds?

No.  

https://discourse.ubuntu.com/t/xz-liblzma-security-update-post-2/43801

[-] pastermil@sh.itjust.works 4 points 3 months ago

Thanks for the correction!

[-] 30p87@feddit.de 4 points 3 months ago

"Safe" is a strong word to use. It's safe from that specific backdoor, and it seems like the known backdoor was the main goal of the attackers, but we don't know if they're playing 4D-Chess and have already implemented another backdoor which they're actively using.

[-] thingsiplay@beehaw.org 4 points 3 months ago
[-] BaalInvoker@lemmy.eco.br 3 points 3 months ago

What I did there? o.O

I don't even know

[-] thingsiplay@beehaw.org 7 points 3 months ago

Oh, I thought the "You can use Arch btw again." is a play on the "I use Arch, BTW."-meme. :D It's even better, because this was not intentional I guess.

[-] BaalInvoker@lemmy.eco.br 3 points 3 months ago

Ah! Okay...

Well, it was intentionally xD

But I didn't thought it would be a funny pun hahaha

Anyway, I did it mostly because the OP also did

[-] thingsiplay@beehaw.org 3 points 3 months ago

I see. But yours was a little bit more sneaky. And I loved it.

load more comments (22 replies)
[-] ManniSturgis@lemmy.zip 42 points 3 months ago

You switched distros because of this? 😆

[-] rtxn@lemmy.world 36 points 3 months ago* (last edited 3 months ago)

TL;DR: starting with 5.6.1-2, XZ is safe on Arch. Safe as in not affected by this particular vulnerability.

Look here: https://gitlab.archlinux.org/archlinux/packaging/packages/xz/-/commit/881385757abdc39d3cfea1c3e34ec09f637424ad

And here: https://security.archlinux.org/ASA-202403-1

5.6.1-2 is where the package switched from building from the tarball (backdoored) to the upstream git repo (clean). The tarball release contained some extra build instructions (which didn't exist in the git repo) that added the backdoor during the build process. The issue arose from the downstream maintainers' assumption that the contents of the tarball and the git repo were identical.

Subsequent changes, and 5.6.1-3, were mostly administrative, like changing the git repository's URL (since the maintainer's github account was banned) and locking out Jia Tan's PGP key.

an article which said that in 5.6.1-3 the backdoor was “fixed” by just not letting the malware part communicating with the vulnerable ssh related stuff

That article is bullshit, don't believe a thing it says. Arch was not affected by the SSH vulnerability because the sshd binary did not link liblzma where the backdoor existed, so they could never communicate in a way that could be exploited by this particular vulnerability. It was not part of the fix.

[-] GolfNovemberUniform@lemmy.ml 2 points 3 months ago

5.6.1-2 is where the package switched from building from the tarball (backdoored) to the upstream git repo (clean)

This is what I was looking for. Though if 5.6.1-2 doesn't contain the backdoor, why is it listed as the last version that does contain it everywhere?

[-] rtxn@lemmy.world 6 points 3 months ago* (last edited 3 months ago)

why is it listed as the last version that does contain it everywhere?

I don't know, but the official advisory is most likely to be correct. Everything else is a game of Chinese whispers where the information becomes less reliable the more it is passed on. Maybe it's because -2 still had Jia Tan's signing key, and could have, theoretically, accepted commits signed by them.

Where is it listed as such? Can you give examples?

[-] GolfNovemberUniform@lemmy.ml 0 points 3 months ago

Hmm I looked it up and I'm either searching it wrong or it seems like the articles were edited and the stuff about 5.6.1-2 being infected is deleted. I think you're right about the keys. That could be the reason for yellow press to exaggerate the problem

[-] unreliable@discuss.tchncs.de 10 points 3 months ago

The back door was crafted to be used by a very specific encryption key. You are are vulnerable if the attackers are specifically targeting you. If you are a tangent of a nation, you should be worried:)

[-] GolfNovemberUniform@lemmy.ml 1 points 3 months ago

Well idk what "a tangent of a nation" means but I have political opinions very different to what my nation wants me to have so it might actually be a problem for me

[-] 520@kbin.social 3 points 3 months ago

What they mean is if you are a affiliated with a national government. You might also be a target if you are very very rich.

If you're an average Joe, they probably won't burn it on you.

[-] drwho@beehaw.org 4 points 3 months ago* (last edited 3 months ago)

It's already burned by being discovered.

And, never underestimate the utility of a large botnet.

[-] ahal@lemmy.ca 1 points 3 months ago

He could be an average Joe who works in the IT department of a company a national government would be interested in.

load more comments (1 replies)
[-] Titou@feddit.de 6 points 3 months ago

When i first heard of xz backdoor, i updated my arch system and the xz-utils package to 5.6.1-3 which in the version numbers seems to be a patch, and it seems to be, so think you're safe from now

[-] PseudoSpock@lemmy.dbzer0.com 3 points 3 months ago

It's over. Nothing to see here. Move along.

[-] Quill0@lemmy.digitalfall.net 1 points 3 months ago

Do you host anything on your network to tne internet that allows anyone ssh access to your computers? More simply do you have port 22 open on your router or firewall? If you don't or said no, then don't worry about it.

[-] GolfNovemberUniform@lemmy.ml 1 points 3 months ago

ssh was installed because it's needed by one of the GNOME's components (the keyring I think). ssdh was disabled the last time I looked at it though. But my router highly unfortunately uses stock proprietary firmware because I couldn't get OpenWRT working on it. That thing can have all the ports opened lol

load more comments
view more: next ›
this post was submitted on 08 Apr 2024
69 points (90.6% liked)

Linux

45753 readers
713 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS