this post was submitted on 20 Mar 2024
76 points (100.0% liked)

KDE

6319 readers
1 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org/, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 2 years ago
MODERATORS
 

Or is it just buggy?

all 34 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 1 year ago (1 children)

This is why we need sandboxing. Right now the Linux desktop is still lacking in terms of security

[–] [email protected] 4 points 1 year ago (3 children)

@possiblylinux127 @wisha And how would sandboxing a malicious script inside a theme that is supposed to change the look of your desktop work? They installed and ran something that rm'd their home directory. I'm honestly curious how you'd solve this.

[–] [email protected] 9 points 1 year ago (2 children)

A more locked-down theming API could help. For example Firefox themes are always 100% safe to install. That said, Firefox themes are almost useless (they’re more like color schemes lol), and no one wants to lose KDE’s powerful customizability so 🤷🤷

[–] [email protected] 4 points 1 year ago (1 children)

What do you mean? I have Firefox themes that change the whole look of the browser, using userchrome.css.

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)

That's obviously not what OP was referring to when mentioning "Firefox themes".

[–] [email protected] 1 points 1 year ago

Maybe, I was showing that there were better ways to theme Firefox though

[–] [email protected] 4 points 1 year ago

Perhaps having different categories with different limitations would work well. Using the firefox example, prioritize the use of WebExtensions, but keep XUL/XPCOM with appropriate warnings.

[–] [email protected] 3 points 1 year ago (1 children)

If it ran in a sandbox it would just wipe its own files instead of the system. Under no circumstances should a plugin from some random guy online be running with such high privileges

[–] [email protected] 0 points 1 year ago (1 children)

@possiblylinux127 I was asking how you’d run something that modded the whole UI … sandboxed.

[–] [email protected] 1 points 1 year ago

You would need to expose some sort of hook that allows modifications

[–] [email protected] 1 points 1 year ago

SELinux? Apparmor? (Serious question, I don't know if there might be features that render those two inadequate)

[–] [email protected] 12 points 1 year ago

Great time to mention tools like testdisk that can easily recover data that has been recently deleted on common filesystems.

[–] [email protected] 8 points 1 year ago

Not malicious. Just buggy -- a downright nasty bug, but a bug.

[–] [email protected] 3 points 1 year ago (2 children)

I thought wayland was supposed to improve security. Were the past 18 years a lie?

[–] [email protected] 13 points 1 year ago

Uhm, Wayland improves security but its just one component. Will a bash script work the same on Wayland as on XOrg? Yes.

[–] [email protected] 7 points 1 year ago

You must have heard that old chestnut about how "the weakest security link in the security chain is the user" by now. There is nothing any technology can do if the user decides to install insecure stuff. Even before today, the KDE Store prominently displayed warnings about being careful with the content.

[–] [email protected] 3 points 1 year ago (1 children)

Extensions need to follow standards, and be installed as non-executable files in defined categories.

Everything else has to be removed or behind a huge warning.

[–] [email protected] 6 points 1 year ago (2 children)

That is not possible. widgets and Global themes have to be able to execute code to work.

By the way: the code was not malicious, just badly written.

[–] [email protected] 1 points 1 year ago (2 children)

Why do global themes need to do that? Arent they just color and image files, maybe audio?

It doesnt really matter if the code was malicious or not, this should not be possible.

Another example of how damn insecure linux is. Just because its not the snap store, we dont have tons of malicious addons on pling.

[–] [email protected] 10 points 1 year ago

@Pantherina @Bro666

That is regular themes.

_Global_ themes also modify the desktop's behavior and hence contain code to do that.

[–] [email protected] 3 points 1 year ago (1 children)

Reading the comments, looks like bad/old code mixed with a big update rather than anything malicious. I even ran into themes that killed my KDE last night. Had to purge the configs themes to get it working. Damn glad I didn't wipe my entire setup.

[–] [email protected] 6 points 1 year ago

Correct. The theme creator missed a variable that is not part of the Plasma environment anymore, and instead of running

rm -Rf [something]

it run

rm -Rf

😬