Back to News
Advertisement
Advertisement

⚡ Community Insights

Discussion Sentiment

56% Positive

Analyzed from 739 words in the discussion.

Trending Topics

#zoom#client#paste#browser#selection#app#desktop#something#why#should

Discussion (32 Comments)Read Original on HackerNews

rmellowabout 2 hours ago
Not the first time Zoom abuses privilege.

A few years back, there was something about gaining root on MacOS via Zoom due to shady execution on their end.

They've lost my trust since then, and I'll only run it sandboxed: https://gist.github.com/cielavenir/02f322e322a2a3555dbf2b38f...

I always ask (1) why does an app require installation and (2) why would it require root?

There are valid answers for both, but realistically, all a videoconferencing app should need (apart from audio and video and maybe screen sharing) is to store a config file.

There's no legitimate use for it accessing privileged or private paths.

mcintyre1994about 1 hour ago
Out of interest why do you still use the app and not just use it in the browser? I feel much more secure having it in the browser sandbox and everything I care about works in the browser.
rmellowabout 1 hour ago
99% of the time I use the browser.

However, the video quality in the browser is worse, so depending on the use case I might have to use the app (via sandbox).

It's been years since I've had to though.

wolvoleoabout 1 hour ago
Yes Apple even blocked their app because they refused to fix it. Eventually they did and unfortunately they were allowed again.

It wasn't really root as much as an open backdoor on a TCP port as far as I recall.

mzajcabout 1 hour ago
Unrelated to Zoom, but

> I noticed it because I make heavy use of a "one-shot paste" tool which fulfills a single paste request and then terminates. Handy for filling in lots of fields of a web form – queue up pastes of several different things, then go to each form field in turn and just hit paste, bam bam bam.

This sounds very useful. Is the tool available anywhere? xclip -loops doesn't seem to do the trick, or maybe it just doesn't work that way on Wayland.

Lex-200841 minutes ago
Turns out, Wayland has wl-copy:

https://man.archlinux.org/man/wl-copy.1

(i was also interested :)

jmclnxabout 2 hours ago
Par for the course when running a proprietary application. If doing that on Linux, can you imagine what it and others do under Windows ?

As people running Linux should know, you cannot trust proprietary applications.

nomelabout 1 hour ago
I would rather have a nice popup on first attempt "this application is monitoring your clipboard, allow?", ideally with that process completely suspended while that prompt is up.

This should be behind a toggle driven by intent, rather than something allowed by default. Default stance on trust should be "don't". Open source has nothing to do with it, when a typo while installing with a package manager means you might accidentally install something else (a common attack vector).

ameliusabout 1 hour ago
I'm not surprised by news like this anymore. When will Linux distributions properly sandbox our applications?

Hell, our phones have had a better permission system for years.

ocdabout 2 hours ago
I miss ordinary conference calling being the norm. I like having a desktop IP phone.
fsfloverabout 1 hour ago
Qubes OS saved me, once again. On it, Zoom only has the access to an empty VM and no access to the clipboard.
wolvoleoabout 1 hour ago
Just not using that piece of trash that is zoom would work very well too in this case
sterlindabout 1 hour ago
What's it like using Qubes? How much friction? I wish I could use some Nix-flavored variant of the sandboxing.
nekusar39 minutes ago
I dumped it after realizing Xen does its damndest in preventing you from hiding VM attributes from Guest OSes.

Proxmox uses KVM, and is easy to configure a VM to make the guest think it's on bare metal.

In the proprietary software space, a LOT of things run badly or refuse to run, or license stupidity with a guest OS. So for me, spoofing bare metal is an essential part of running ilk like Windows and proprietary apps. And also, school remote testing garbage.

fc417fc8028 minutes ago
Doesn't that preclude paravirtualization drivers? Seems like a major tradeoff for daily driver desktop stuff.
rvzabout 4 hours ago
That's bad news. Don't use Zoom.
jrm4about 3 hours ago
That's wildly impractical advice for many.

Just use Firefox, or Chromium if you must.

Joel_Mckayabout 2 hours ago
Spinning up a conference host for a small office is fairly trivial =3

https://jitsi.org/downloads/

jonathantf2about 2 hours ago
Great, til I have a job interview and they use Zoom
bix6about 1 hour ago
Ah yes Jitsi! I have been invited to meet on Jitsi 0 times.
st_goliathabout 2 hours ago
There is no such thing as an "X11 clipboard" that something can be written to. As the poster goes on to allude, X11 has a concept of a "selection" (a primary and a secondary one).

It goes roughly like this: when you select a text in a window, the X client tells the X server "I have the selection now", when you paste in another window, the client behind the other window asks "who has the selection?" and requests the selection contents from the other client, the data is then forwarded through the server. The client that claimed ownership has to properly handle some associated requests/events for the whole thing to work.

The key point is, there is no central "clipboard" style repository like on Windows, the client that does the "copy" is responsible for the data, the client that wants to "paste" has to talk to it. If I try to copy/paste and quit the source program before the paste, the data is gone. That's why modern desktop environments usually come with a dedicated daemon that immediately reacts to selection ownership changes, grabs the data for itself and then claims the selection ownership to emulate the Windows style behavior.

If we play devils advocate, it's possible the Zoom client tries to do just that, not trusting whatever desktop environment. I don't use this software, so I'm going out on a limb here, but I'd guess that the "Zoom Desktop Client" is just another browser in disguise? It might be actually Chromium or whatever underneath that does this?