this post was submitted on 06 Jul 2024
480 points (94.4% liked)

Privacy

31128 readers
646 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] DemBoSain@midwest.social 32 points 2 months ago (11 children)

Why is Signal almost universally defended whenever another security flaw is discovered? They're not secure, they don't address security issues, and their business model is unsustainable in the long term.

But, but, if you have malware "you have bigger problems". But, but, an attacker would have to have "physical access" to exploit this. Wow, such bullshit. Do some of you people really understand what you're posting?

But, but, "windows is compromised right out of the box". Yes...and?

But, but, "Signal doesn't claim to be secure". Fuck off, yes they do.

But, but, "just use disk encryption". Just...no...WTF?

Anybody using Signal for secure messaging is misguided. Any on of your recipients could be using the desktop app and there's no way to know unless they tell you. On top of that, all messages filter through Signal's servers, adding a single-point-of-failure to everything. Take away the servers, no more Signal.

[–] Zak@lemmy.world 35 points 2 months ago (3 children)

If someone can read my Signal keys on my desktop, they can also:

  • Replace my Signal app with a maliciously modified version
  • Install a program that sends the contents of my desktop notifications (likely including Signal messages) somewhere
  • Install a keylogger
  • Run a program that captures screenshots when certain conditions are met
  • [a long list of other malware things]

Signal should change this because it would add a little friction to a certain type of attack, but a messaging app designed for ease of use and mainstream acceptance cannot provide a lot of protection against an attacker who has already gained the ability to run arbitrary code on your user account.

[–] douglasg14b@lemmy.world 18 points 2 months ago* (last edited 2 months ago) (1 children)

Not necessarily.

https://en.m.wikipedia.org/wiki/Swiss_cheese_model

If you read anything, at least read this link to self correct.


This is a common area where non-security professionals out themselves as not actually being such: The broken/fallacy reasoning about security risk management. Generally the same "Dismissive security by way of ignorance" premises.

It's fundamentally the same as "safety" (Think OSHA and CSB) The same thought processes, the same risk models, the same risk factors....etc

And similarly the same negligence towards filling in holes in your "swiss cheese model".

"Oh that can't happen because that would mean x,y,z would have to happen and those are even worse"

"Oh that's not possible because A happening means C would have to happen first, so we don't need to consider this is a risk"

....etc

The same logic you're using is the same logic that the industry has decades of evidence showing how wrong it is.

Decades of evidence indicating that you are wrong, you know infinitely less than you think you do, and you most definitely are not capable of exhaustively enumerating all influencing factors. No one is. It's beyond arrogant for anyone to think that they could 🤦🤦 🤦

Thus, most risks are considered valid risks (this doesn't necessarily mean they are all mitigatable though). Each risk is a hole in your model. And each hole is in itself at a unique risk of lining up with other holes, and developing into an actual safety or security incident.

In this case

  • signal was alerted to this over 6 years ago
  • the framework they use for the desktop app already has built-in features for this problem.
    • this is a common problem with common solutions that are industry-wide.
  • someone has already made a pull request to enable the electron safe storage API. And signal has ignored it.

Thus this is just straight up negligence on their part.

There's not really much in the way of good excuses here. We're talking about a run of the mill problem that has baked in solutions in most major frameworks including the one signal uses.

https://www.electronjs.org/docs/latest/api/safe-storage

[–] fuzzzerd@programming.dev 4 points 2 months ago (1 children)

I was just nodding along, reading your post thinking, yup, agreed. Until I saw there was a PR to fix it that signal ignored, that seems odd and there must be some mitigating circumstances on why they haven't merged it.

Otherwise that's just inexcusable.

[–] ChairmanMeow@programming.dev 7 points 2 months ago

The PR had some issues regarding files that were pushed that shouldn't have been, adding refactors that should have been in separate PRs, etc...

Though the main reason is that Signal doesn't consider this issue a part of their threat model.

[–] gomp@lemmy.ml 14 points 2 months ago* (last edited 2 months ago) (5 children)

Those are outside Signal's scope and depend entirely on your OS and your (or your sysadmin's) security practices (eg. I'm almost sure in linux you need extra privileges for those things on top of just read access to the user's home directory).

The point is, why didn't the Signal devs code it the proper way and obtain the credentials every time (interactively from the user or automatically via the OS password manager) instead of just storing them in plain text?

[–] douglasg14b@lemmy.world 6 points 2 months ago (1 children)

They're arguing a red herring. They don't understand security risk modeling, argument about signals scope let's their broken premise dig deeper. It's fundamentally flawed.

It's a risk and should be mitigated using common tools already provided by every major operating system (ie. Keychain).

[–] Liz@midwest.social 3 points 2 months ago

"Highways shouldn't have guard rails because if you hit one you've already gone off the road anyway."

[–] Zak@lemmy.world 5 points 2 months ago

You'd need write access to the user's home directory, but doing something with desktop notifications on modern Linux is as simple as

dbus-monitor "interface='org.freedesktop.Notifications'" | grep --line-buffered "member=Notify\|string" | [insert command here]

Replacing the Signal app for that user also doesn't require elevated privileges unless the home directory is mounted noexec.

load more comments (3 replies)
[–] refalo@programming.dev 3 points 2 months ago* (last edited 2 months ago)

(for Android) https://molly.im/ restores the encryption to this file and adds other useful things

[–] todd_bonzalez@lemm.ee 7 points 2 months ago

Anybody using Signal for secure messaging is misguided. Any one of your recipients could be using the desktop app and there's no way to know unless they tell you.

That's why I only communicate face-to-face inside of a soundproofed faraday cage.

If the app manages the keys, then you can't trust the app.

If the recipient manages their own keys, then you can't trust the recipient.

Encryption is fundamentally insecure. Once I encrypt something, nobody should be able to decrypt it ever again.

[–] refalo@programming.dev 6 points 2 months ago* (last edited 2 months ago) (2 children)

98% of desktop apps (at least on Windows and Linux) are already broken by design anyways. Any one app can spy on and keylog all other apps, all your home folder data, everything. And anyone can write a desktop app, so only using solutions that (currently) don't have a desktop app version, seems silly to me.

[–] explore_broaden@midwest.social 5 points 2 months ago (2 children)

I don’t think apps can read keystrokes for other apps on Wayland.

[–] possiblylinux127@lemmy.zip 2 points 2 months ago (1 children)
[–] explore_broaden@midwest.social 2 points 2 months ago

If you have root you could just update the kernel to one that lets you do whatever you want on the system, so there’s no way to stop the attacker from viewing the passwords if the app is capable of displaying them.

[–] AProfessional@lemmy.world 5 points 2 months ago (1 children)

Linux has a sandbox solution growing in popularity, flatpak.

[–] possiblylinux127@lemmy.zip 4 points 2 months ago

And Wayland. Xorg is a complete and utter mess

[–] lemmyvore@feddit.nl 4 points 2 months ago (1 children)

Now replace "signal" in your comment with "ssh" and think it over.

[–] todd_bonzalez@lemm.ee 6 points 2 months ago (1 children)

It's true, anyone using SSH for secure messaging is absolutely misguided.

[–] roguetrick@lemmy.world 4 points 2 months ago (1 children)

Ah the old Lemmy SHHwitcharoo.

[–] uis@lemm.ee 1 points 2 months ago (1 children)
[–] roguetrick@lemmy.world 2 points 2 months ago
[–] GlenRambo@jlai.lu 4 points 2 months ago (4 children)

Whats the next best alternative?

[–] Isoprenoid@programming.dev 15 points 2 months ago (2 children)
[–] GlenRambo@jlai.lu 7 points 2 months ago

I'll organise a time and place to meet in person via ... Carrier pigeon?

We're citizens raging against phones Lazlow.

[–] SendMePhotos@lemmy.world 6 points 2 months ago (1 children)

With a helicopter over you, loud music next to you, and a dude mowing next to you.

[–] nikaro@jlai.lu 6 points 2 months ago

And no smartphone in your pocket, of course.

[–] refalo@programming.dev 7 points 2 months ago

That depends on your threat model. What are you worried about?

[–] ruse8145@lemmy.sdf.org 4 points 2 months ago* (last edited 2 months ago) (3 children)

Matrix or xmpp, bonus points with a personal server

Thanks to interest of late, the conversations and gajim apps have come a long way in recent years, and matrix has made good strides too with element-x

[–] GlenRambo@jlai.lu 4 points 2 months ago (1 children)

I'd tried matix but without a high level of technical experience it was pretty difficult to setup. I got as far as docker, that needed ansible, that wouldn't compile. I also recall there was services I could pay for, but then I'd rely on them to provide the security/servers.

Matrix doesn't seem for the majority of people taking a first step away from big tech.

[–] toastal@lemmy.ml 3 points 2 months ago

Snikket is meant to be super simple to self-host. Ejabberd has a web GUI that can make configuration easier.

[–] refalo@programming.dev 2 points 2 months ago* (last edited 2 months ago) (1 children)

I would only ever suggest matrix if you're running a private self-hosted instance that is NOT federated, which you can do even easier with Signal anyways.

[–] ruse8145@lemmy.sdf.org 2 points 2 months ago (1 children)
[–] refalo@programming.dev 3 points 2 months ago* (last edited 2 months ago) (2 children)
[–] ruse8145@lemmy.sdf.org 1 points 2 months ago

Interesting, thanks for the links I'll take a look

[–] uis@lemm.ee 1 points 2 months ago

Looked into anarc blog. What there wss said about Matrix can be said about SMTP and probably XMPP. To do GDPR you need to know every server you have sent message to. And compared to IRC defaults(forward and remove) anything will look like GDPR nightmare. GDPR was not designed for federated(like matrix and activitypub) communications and especially wasn't designed for peer-to-peer communications.

[–] uis@lemm.ee 1 points 2 months ago

bonus points with a personal server

Only with appservices. Doesn't make sense otherwise.

[–] refalo@programming.dev 3 points 2 months ago* (last edited 2 months ago) (1 children)
[–] ivn@jlai.lu 2 points 2 months ago (1 children)

I can find the desktop client, am I missing something?

[–] refalo@programming.dev 4 points 2 months ago* (last edited 2 months ago)

You're right, there isn't one, my apologies; I edited the comment.

You could use some kind of encrypted container on the desktop though, or maybe run it as a separate user that has an encrypted home folder. The problem is you need to define a threat model first. Depending on what you're afraid of, any particular "solution" could either be way overkill, or never enough.

[–] possiblylinux127@lemmy.zip 3 points 2 months ago* (last edited 2 months ago)

I hope you are joking

[–] dessalines@lemmy.ml 2 points 2 months ago

Basically for the same reason people often defend apple: the user interface is shiny, and they claim to be privacy oriented.

Signal is a centralized US hosted service, that alone should be enough to disqualify it, outside of our many other criticisms.

[–] uis@lemm.ee 0 points 2 months ago (3 children)

But, but, "just use disk encryption". Just...no...WTF?

So not encrypting keys is bad, but actually encrypting them is bad too? Ok.

Any on of your recipients could be using the desktop app and there's no way to know unless they tell you.

Another applefan? How it THIS supposed to be in scope of E2EE? Moreover, how having a way to know if recepient is using desktop app is not opposite of privacy?

On top of that, all messages filter through Signal's servers, adding a single-point-of-failure to everything. Take away the servers, no more Signal.

Indeed. This is why I use Matrix. Also, fuck showing phone numbers to everyone(I heard they did something about it) and registration with phone numbers.

load more comments (3 replies)
load more comments (3 replies)