I often see people talking about the fact that they like a certain open-source application, but ‘it’s a shame it’s on Electron’; what does this mean? Is it a privacy thing or a resource thing?

  • @jokeyrhyme
    link
    -12 years ago

    You mean how like nobody ever ever pipes the output of curl into a bash with root privileges? :P

    Maybe we should ban cURL when we ban Electron?

    • AgreeableLandscape☭
      link
      fedilink
      8
      edit-2
      2 years ago

      No, this is worse. With the cURL thing, you know what you’re doing because you literally entered the command, and then you have to enter a password, and you can make your own assessment as to whether it’s a good idea. Also, assuming you’re on an HTTPS connection and trust the source (i.e. reputable software author versus shady pirate site), it’s not actually unsafe.

      Whereas with sandbox breaks in Electron, someone can’t reasonably know that a feature is vulrnable (hell it can take the people who wrote the damn thing years to realize there’s a bug). If you need to open an HTML file in VSCode, are you going to manually audit the previewer implementation? It’s much easier to check your terminal commands for insecure pipes than to check an electron app for sandbox violations.

      • @jokeyrhyme
        link
        12 years ago

        I guess a better parallel is using C/C++ to write software, where it is trivially easy to mismanaged memory in ways that cause 70% of CVEs

        If we were being consistent, we’d be trying to eliminate all software written in any language or framework where it is trivially easy to introduce security issues

        I wonder how many anti-Electron folks are also logically anti-C/C++ ?