this post was submitted on 29 Apr 2026
221 points (100.0% liked)

Linux

64958 readers
384 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 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] BlackEco@lemmy.blackeco.com 85 points 1 day ago* (last edited 1 day ago) (4 children)

The Python script to check if you are vulnerable is extremely suspicious and hard to decipher.

[–] rabber@lemmy.ca 46 points 1 day ago (1 children)

I agree. This seems fishy to me. I am concerned about compressed code in a public disclosure like this. Also it seems like all the documentation was written by AI.

[–] hendrik@palaver.p3x.de 42 points 1 day ago

The entire page is an advertisement for an AI tool that helped uncover it. Guess that's the demonstration on how it augments a report.

[–] treadful@lemmy.zip 36 points 1 day ago (2 children)

Very quick cursory review: The python script appears to decompress what might be an ELF from those compressed bytes. Then it opens a cryptography socket (AF_ALG) with the kernel and sends that whole thing.

So the exploit is in the binary data and would likely take some skilled Linux engineers to decompile it and figure out the exploit.

I'm not entirely sure why they would obfuscate it. Maybe they think it helps with responsible disclosure so people can't make something more useful than the PoC?

[–] sun_is_ra@sh.itjust.works 41 points 1 day ago* (last edited 1 day ago)

I can at least tell you what it does because I tested it:

It override your /usr/bin/su so that it now let you run as root with no password.

My guess is that the payload is an su command that was modified to run without requiring password but it's also possible - though unlikely - that it just patch your existing su.

either way if you will run the script, you need to backup your existing su command first.

Correction: The script doesn't permanently modify the su file instead it modifies a cached copy of the file in memory. restarting your device or doing echo 3 > /proc/sys/vm/drop_caches to flush the cache restore the su file to its original state

[–] Aatube@piefed.social 7 points 1 day ago

I'm not sure how much of it is obfuscation and how much of it is golfing. Ze golfed it so ze could make the pretty valid "just 732 bytes python script" claim.

The compression could very well be just a way to write a binary in Python plaintext. ChatGPT claims it just attempts to sudo, run /bin/sh if that succeeds, and exit if that fails.

[–] sun_is_ra@sh.itjust.works 5 points 1 day ago

Here it is after improving readability a little

https://pastebin.com/iW8BRrdX