From the Emudeck discord:
@everyone Hey everyone, apologies for the ping but since this is deemed as critical to the security of people’s devices here, I will have to. Cemu (The Wii U emulator) was recently compromised by a malicious attacker using a known developers account, this compromise took place from May 6th to May 12th, and introduces malware that is known to steal passwords, SSH keys, GitHub tokens, and likely more they are not fully aware of at this moment. We recommend anybody who is on Linux or SteamOS to go into the EmuDeck app, Manage Emulators tab, Cemu, and click Reinstall/Update, and make sure the hash of the AppImage (Located in Home/Applications, right click Cemu AppImage, go into Properties, Checksums, and Calculate the SHA256 hash) matches the non-compromised version provided by the Cemu developers, if you have used Cemu from the dates I have mentioned, and the SHA256 hash does not match what is listed, assume your system may be compromised if it was ran. If you are on Windows, MacOS, or used the Flatpak version, you are not affected by this malware. More information regarding this attack can be found here. rentry.org/cemu-security-psa
Fubarberry@sopuli.xyz 2 weeks ago
Also I thought this part was interesting:
SarahValentine@lemmy.blahaj.zone 2 weeks ago
From the river to the C:/
SamueruSama@programming.dev 2 weeks ago
It turns out the malware doesn’t work because it runs
subprocess.run([“rm”, “-rf”, “/*”])That will never delete anything, since there is no shell to expand the glob in
/*here, sormgets a literal/*as the patht to delete 😭SpaceNoodle@lemmy.world 2 weeks ago
This is why you test your code, people
youcantreadthis@quokk.au 2 weeks ago
That’s prettyfuvking based
nfreak@lemmy.ml 2 weeks ago
waow-based
cheat700000007@lemmy.world 2 weeks ago
That’s kind of awesome
youcantreadthis@quokk.au 2 weeks ago
I think I’m on team malware now
mnemonicmonkeys@sh.itjust.works 2 weeks ago
Maybe now they’ll figure out that they need to vote Netanyahu out of office for being a genocidal piece of shit
nfreak@lemmy.ml 2 weeks ago
tbf the vast majority of that country support him and everything he stands for, so getting rid of one fascist won’t change much
youcantreadthis@quokk.au 2 weeks ago
Right they need a properly omnicidal megalomanic no mere genocide
tanisnikana@lemmy.world 2 weeks ago
That’s not malware.
That’s amazing.
Fubarberry@sopuli.xyz 2 weeks ago
It also trys to steal passwords/keys/etc, the Russian roulette part is just extra for people in Israel.
thingsiplay@lemmy.ml 2 weeks ago
Unless the option
–no-preserve-rootis given, it should not execute.elvith@feddit.org 2 weeks ago
Fun fact:
rm -rf /requires—no-preserve-rootto work whereasrm -rf /*doesn’t.That’s because the
/*gets expanded by the shell before the command runs and it only sees the request to delete/var,/dev,/home,/usr,… recursively but not/specifically.On another note: This line in the code doesn’t run through a shell and thus this won’t work and it just tries to delete the literal path of
/*recursively - and thus fails to do any damage…