I’m note a programmer. I Don’t Understand Codes. How do I Know If An Open Source Application is not Stealing My Data Or Passwords? Google play store is scanning apps. It says it blocks spyware. Unfortunately, we know that it was not very successful. So, can we trust open source software? Can’t someone integrate their own virus just because the code is open?

  • zalack@kbin.social
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    11 months ago

    It’s worth pointing out that reproducible builds aren’t always guaranteed if software developers aren’t specifically programming with them in mind.

    imagine a program that inserts randomness during compile time for seeds. Reach build would generate a different seed even from the same source code, and would fail being diffed against the actual release.

    Or maybe the developer inserts information about the build environment for debugging such as the build time and exact OS version. This would cause verification builds to differ.

    Rust (the programing language) has had a long history of working towards reproducible builds for software written in the language, for instance.

    It’s one of those things that sounds straightforward and then pesky reality comes and fucks up your year.