this post was submitted on 13 Jul 2024
70 points (100.0% liked)

Technology

1072 readers
897 users here now

Which posts fit here?

Anything that is at least tangentially connected to the technology, social media platforms, informational technologies and tech policy.


Rules

1. English onlyTitle and associated content has to be in English.
2. Use original linkPost URL should be the original link to the article (even if paywalled) and archived copies left in the body. It allows avoiding duplicate posts when cross-posting.
3. Respectful communicationAll communication has to be respectful of differing opinions, viewpoints, and experiences.
4. InclusivityEveryone is welcome here regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
5. Ad hominem attacksAny kind of personal attacks are expressly forbidden. If you can't argue your position without attacking a person's character, you already lost the argument.
6. Off-topic tangentsStay on topic. Keep it relevant.
7. Instance rules may applyIf something is not covered by community rules, but are against lemmy.zip instance rules, they will be enforced.


Companion communities

[email protected]
[email protected]


Icon attribution | Banner attribution

founded 9 months ago
MODERATORS
 

Two Linksys mesh routers send sensitive information to an Amazon server without any encryption, according to Belgian consumer organization Testaankoop. The practice could leave passwords, wireless network...

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 1 month ago (1 children)

That's not correct.

  1. Even if you don't read the whole thing now, you might want to check something out later, even if it's just a small thing.
  2. Being open source is a matter of transparency. If it's not OSS, it has something to hide. Often that's not too bad, but being OSS builds trust.
  3. Even if you're going to use it without thinking at all, someone else can look at the code and do something about it if it's bad code.

There is more, but it's late

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

What have you checked out or audited specifically?

In the open source projects I started and worked with, nobody really helped. In fact, one of ours was a fork of a commercial open source project. Ironically enough, if they were closed source they would have survived Longer...

DevFS was a core Linux component. And nobody wanted to maintain it, so it got depreciated before a replacement was even available (udev eventually, but it was totally unusable at the time).

Are you using openbsd? That is fully audited apparently

Everyone talks about looking at the code, but in practice, it's disappointing most people don't. I wish this wasn't true.

The best Access points on the market are not fully open source I'm fairly sure. But the best Access points have a lot of developers who ensure qa on your behalf

What matters is the resources put towards it. A lot of high end routers have full service contracts that guarantee security and support.

Just because something is open source, especially if it's embedded hardware, doesn't mean it's easy to debug and recompile.

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

You of course have some valid points, but I think they don't just apply to OSS, but software in general. Software is often unmaintained, has bugs, and nobody really cares for it, that is true for both OSS and closed source.

Being OSS is always a boon in my opinion, as it enables people to take a look at it if they want to. There is no audit-duty, people can (within the license) do whatever they want, and that is a very good thing.

I didn't really audit OSS, but that's not the only boon OSS offers. For example, I wrote a rust tool that did something similar to tee so I just went and pulled up the source code of GNU tee. No problem (besides that C code feels so messy)

Or another example: I develop a lot of rust. In rust, there are a lot of dependencies that offer very nice functionalities. I was developing a library to help make developing cli tools easier, and wanted to make a module for easily creating a repl (think bash but very dumb). There was a repl project that did some things I wanted, so it was no problem to just go and look at their source to see howbI voukd do my things.

As a result, I stay convinced that OSS is more trustworthy and more approachable for users and developers (Note that this effect is offset by gazillions of corporate money for closed source).