• Seems a bit clickbaity to me. It’s a flaw in Windows/cmd.exe, not Rust. Rust is just called out because it tries to emulated proper argument passing on Windows (and didn’t get it perfectly right). All languages are affected by this but most of them just throw their hands in the air and say “you’re on your own”:

    • 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)

    It’s also extremely unlikely that you’d be running a bat script with untrusted arguments on Windows.

    • I mean, let’s be real, Rust is really called out because it causes high drama between C devs and Rust advocates, which drives engagement.

      It’s probably all kicking off in about 10 different comment sections right now

  • In February, the White House Office of the National Cyber Director (ONCD) urged technology companies to adopt memory-safe programming languages like Rust.

    My comment is somewhat unfair, but WH is not the right body to make this kind of recommendation.

    • Why not? I mean they are right. Adopting memory safe languages is a good step forward, because it would eliminate bunch of mistakes before they happen. And the White House does not recommend Rust only, but a memory-safe language, something like Rust or something different. I wish my government would do the same.

    • Who would be then, Department of Defense, NSA, CIA, FBI, Department of Homeland Security? Aren’t all those the same body (executive) as White House of the National Cyber Director? Is your problem with having White House in the name?

      • Those agencies are under the executive branch, and its been made very clear in the past that they prefer sneaking in backdoors to valid best practices.

        The NSA sabotaging the Elliptic Curve method of random number generation used in the RSA algorithm comes to mind. They would otherwise be THE experts to trust, but lets look at the others:

        FBI - Waco, Ruby Ridge, planned to assassinate Martin Luther King and so many others. CIA - promotes fascism internationally, causing all sorts of chaos in Latin America and the Middle East. Ever wonder how Komeni’s faction overthrew the Shah? The CIA decided he had gone soft.

        Germany is so trusting of the US on cyber-security measures that their government has been trying to ditch Windows for over a decade.

        TL;DR: In the US, government experts do NOT have your personal security best interests at heart. They can and will use any dirty trick possible to spy on and control both our own citizens and those of other countries. Last authories that anyone should trust.

        https://blog.cloudflare.com/how-the-nsa-may-have-put-a-backdoor-in-rsas-cryptography-a-technical-primer

  • I’ve run into bizarre behavior with windows command lines plenty of times before, but I’d never put all the pieces together and realized that:

    a) windows really does pass around unadorned monolithic strings containing the entire command line of an executed command, and

    b) there’s no parsing standard for command lines in windows

    sigh, windows