• @[email protected]
    link
    fedilink
    English
    70
    edit-2
    1 month ago

    Once again this is not a Rust vulnerability.

    This is a Windows vulnerability and Rust is simply the first set of tools to implement a workaround - since Microsoft can’t do it without breaking backwards compatibility.

    Somehow the narrative has turned into negative PR for Rust when in fact they are handling this vulnerability better than anyone else in the industry.

    • @[email protected]
      link
      fedilink
      English
      201 month ago

      “The Rust standard library did not properly escape arguments when invoking batch files (with the bat and cmd extensions) on Windows using the Command API,”

      If the issue is caused by rust not escaping arguments, and fixed by rust properly escaping arguments, how is it not a rust issue?

      • @[email protected]
        link
        fedilink
        English
        28
        edit-2
        1 month ago

        Because Rust is not the only language that made this faulty assumption. It is an issue that affects Rust’s stdlib, just like it is an issue that affects Python’s stdlib and other libraries. In fact this was first reported as a vulnerability to yt-dlp (where it was actually exploitable) and then discovered it applied to many other libraries (where the exploitability is highly dependent on how the feature is used).

        Rust here is only used as clickbait because of its aim to be “safe”, but its position is no different from other languages.

        If you read the article from the researcher that discovered the vulnerability you’ll see they never call out Rust in particular, only as part of a list of languages that are affected. https://flatt.tech/research/posts/batbadbut-you-cant-securely-execute-commands-on-windows/

      • @[email protected]
        link
        fedilink
        English
        121 month ago

        If the issue exists in the standard library of every language that provides this capability and Rust’s standard library is the first to fix it, how is it a Rust issue?

        It would be more accurate to say that it’s an issue in almost every language EXCEPT Rust at this point.

        The only reason it isn’t being called a C or C++ issue is because their standard libraries don’t even attempt to offer this capability. But you can bet that all sorts of C/C++ libraries that do offer this, like Qt, will also be having this issue.

        • @[email protected]
          link
          fedilink
          English
          3
          edit-2
          1 month ago

          Rust has an API they provide which allows for calling batch files. This API has a flaw. The rust team acknowledged, and fixed the flaw.

          If you provide an API it should be safe to use. If you don’t provide an API (C/C++) then its up to the programmer to implement it themselves. If that implementation has an issue in how it parses command line args, you would fault the developer of the parsing functionality for not escaping correctly. Thus the developers of the rust api which handles parsing command line arguments has a fault in its implementation.

          ed. quick additional example. SQL injection can still be written today; if you just take arbitrary user input and execute it on a db, you open yourself up to exploitation. DB engines provide ways to parameterise queries to prevent this.

          If the parameterisation routine allowed for sql injection exploits because it didn’t handle the inputs correctly, who would be at fault?

          https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-24576

          The `Command::arg` and `Command::args` APIs state in their documentation that the arguments will be passed to the spawned process as-is, regardless of the content of the arguments, and will not be evaluated by a shell. This means it should be safe to pass untrusted input as an argument.

          It goes onto discuss how this is more complex to do in windows, but the rust team chose to implement this, and as a consequence this implementation has an issue.

          That forces the standard library to implement custom escaping for arguments passed to batch files. Unfortunately it was reported that our escaping logic was not thorough enough, and it was possible to pass malicious arguments that would result in arbitrary shell execution.

          • @[email protected]
            link
            fedilink
            English
            6
            edit-2
            1 month ago

            The entire problem with cmd.exe was not known and so obviously not documented when the Rust standard library developers were implementing the API, and the same goes for the standard library developers of every other language. Rust was among the first to fix this problem in their API, with many other languages opting to just document the issues instead of actually protecting users from it.

            To take all this information and distill it down to trumpeting “Rust has a CVSS level 10 security vulnerability!!” without context is stupidity at best and maliciously disingenuous at worst.

            Nitpicking whether the statement can be construed as true within a certain framing just demonstrates malicious intent when the reality is that users of Go, Python, and Java, whose standard libraries have taken a position of Won’t Fix, are in a FAR more dangerous position than Rust users who are actually in the safest position of anyone in any language ecosystem besides perhaps Haskell.

      • @[email protected]
        link
        fedilink
        English
        121 month ago

        If the issue is caused by rust not escaping arguments

        That Windows API is terrible. There isn’t a way to have the escaping done for you. Further, there is not an API where you do not need to do the escaping. There is no documentation on what kind of escaping is needed.

        It’s not a Rust problem.

        • @[email protected]
          link
          fedilink
          English
          41 month ago

          The Windows API is the direct access to OS functions. If you’re using the API it’s your responsibility to do it securely and protect your users.

        • @[email protected]
          link
          fedilink
          English
          2
          edit-2
          1 month ago

          That’s 100% a rust problem. Trusting another system to sanitize your input is about the dumbest thing I’ve ever heard. Windows being shitty isn’t an excuse for the language being shitty as well.

          • @[email protected]
            link
            fedilink
            English
            51 month ago

            Except it’s actually an “Every language and library that provides this feature” problem because literally no one was aware that this sanitization problem even existed, and Rust is among the first to actually fix it.

      • kbin_space_program
        link
        fedilink
        7
        edit-2
        1 month ago

        Because when it’s a rust issue, clearly something else is at fault.

        Frankly I’m more concerned about Java’s wont fix

      • @[email protected]
        link
        fedilink
        English
        61 month ago

        If windows does not document features of their API that would require escaping, how is it a Rust issue they had no way of knowing escaping is necessary? Its Windows whose API is not following the documented behavior/has undocumented behavior.

    • lazynooblet
      link
      fedilink
      English
      111 month ago

      Both the article and the CVE description point to how Rust handles escaping for CMD arguments. If it’s not a Rust issue then can you explain?

      • @[email protected]
        link
        fedilink
        English
        101 month ago

        Because this is the status of the bug across the standard libraries of various languages, per this article and others:

        • Erlang (documentation update)
        • Go (documentation update)
        • Haskell (patch available)
        • Java (won’t fix)
        • Node.js (patch will be available)
        • PHP (patch will be available)
        • Python (documentation update)
        • Ruby (documentation update)

        Notably C and C++ are missing from this list because their standard libraries don’t even offer this capability. Half of these standard libraries are responding to the issue by just warning you about it in the function documentation. Rust is one of the few that actually prevents the attack from happening.

        The original BatBadBut bug report used JavaScript to illustrate the vulnerability.

      • @[email protected]
        link
        fedilink
        English
        91 month ago

        I explained it elsewhere, but basically: an API that needs undocumented escaping doesn’t immediately make you think that the API has huge issues?

        • @[email protected]
          link
          fedilink
          English
          21 month ago

          WinAPIs are rife with weirdness like this that has stuck around for backward compatibility reasons. The day MS finally kills win32 will be the day Windows’ security improves tenfold.

      • @[email protected]
        link
        fedilink
        English
        01 month ago

        If you read it more attentively, no, it does say that.

        I dislike all the “rewrite it in Rust to be secure” bros, but not such a case here.

  • @[email protected]
    link
    fedilink
    English
    91 month ago

    Jeez, I love Rust as much as the next guy, but people in this thread are getting weirdly defensive about it.

    Yeah, so some standard libraries don’t offer that particular feature, what’s the point? They also don’t “offer” that vulnerability then. I can’t even twist my mind around to see what kind of argument this is supposed to be.

    Yes, the Windows API is a cesspool in many places, and yes, other standard libraries might still be affected by a similar issue, but Rust’s stdlib also fucked it up. If you offer an interface, it’s your responsibility to ensure it does what you claim, not matter how batshit insane the underlying 3rd party implementation might be. If you can’t do that, I’d actually prefer if you didn’t offer said interface. In any case, they handled the issue, and now it’s hopefully fixed. That’s fine, commendable job.

    I agree the headline could have been worded differently, but we can still use Rust, it’s still a great language, great goals etc., why try so hard to make it look like there wasn’t an issue?

    You are not your standard library, you have not been defiled. You can still open that bedside drawer and put on your little purity ring every morning if that’s your thing, we won’t judge you, just don’t be all weird about it.

    • @[email protected]
      link
      fedilink
      English
      191 month ago

      You could not have worded that more condescendingly. The issue here is that Rust is singled out for no more apparent reason than making for a clickbaity headline. The underlying Windows API function requires undocumented escaping to prevent this exploit, Microsoft won’t fix that because it breaks compatibility, pretty much every programming language with a standard library that provides access to it is affected - Java won’t even fix it, others have updated their documentation. Rust is the first to actually implement a fix for a vulnerability that’s ultimately caused by Windows and gets called out for it for some reason. Of course people are going to get defensive about it. As they do every time a stupid headline gets published.

      • @[email protected]
        link
        fedilink
        English
        101 month ago

        You are right, I was kind of a dick about it. I even realized that, deleted the most offensive lines twice and then still sent it.

        On top of having a bad day in general, I encountered countless similar responses in other places, some of which were so borderline in(s)ane and over the top that I was… let’s just say taken aback.

        As I said, the headline could have been better, whole article honestly, same goes for the reaction of the Rust community though.

        As for my own replies, I’ll probably follow my gut feeling next time when having second thoughts about posting.