• thingsiplay@beehaw.org
      link
      fedilink
      arrow-up
      24
      ·
      6 months ago

      But it got a 10/10 on the scoring system by Github.

      The issue isn’t actually too much related to the Rust core language itself, but rather how they handle scripts on Windows platform. So if you don’t have a Windows program that runs Batch scripts, then it doesn’t matter to you. I wonder how common it is to run Batch scripts in Rust?

      • TehPers@beehaw.org
        link
        fedilink
        English
        arrow-up
        8
        ·
        6 months ago

        if you don’t have a Windows program that runs Batch scripts with untrusted arguments

        This only matters when running the scripts with user inputs passed as arguments to the command, which I can’t imagine being remotely common at all.

      • tatterdemalion@programming.dev
        link
        fedilink
        arrow-up
        6
        arrow-down
        1
        ·
        6 months ago

        I don’t think my company uses batch scripts anywhere, but if they did, it would probably be in the app installer for Windows or something.

    • Sekoia@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      16
      arrow-down
      2
      ·
      6 months ago

      Also, the reason this is a CVE is because Rust itself guarantees that calling commands doesn’t evaluate shell stuff (but this breaks that guarantee). As far as I know C/C++ makes no such guarantee whatsoever.