| ▲ | simonw 5 hours ago |
| I'm unreasonably excited about WASI. WASI is the thing which takes WebAssembly from a tool for running stuff in a browser to a tool that can run entire portable sandboxed applications on a computer - with controlled filesystem and network access. I don't ever want to run untrusted code from the internet outside of a sandbox ever again. If WASI lives up to its full potential I won't have to - we'll have a robust, cross-platform sandboxing solution for running real applications. |
|
| ▲ | Panzerschrek 4 hours ago | parent | next [-] |
| > I don't ever want to run untrusted code from the internet outside of a sandbox ever again WASM is great, but I think it's a wrong approach for sandboxing problem. It's technically possible to sandbox native applications (compiled into target machine code) using OS-builtin mechanisms, but it's not done for compatibility reasons, because this is the way things were done last 50 years or so. |
| |
| ▲ | tancop 3 hours ago | parent | next [-] | | sandboxing native apps just gives you security. with wasm you also get a single portable binary that can run on x86 windows, arm64 linux and in your browser with zero modification. you dont need to write platform specific code or use third party frameworks. | | |
| ▲ | Panzerschrek 3 hours ago | parent | next [-] | | > you dont need to write platform specific code You don't need to write platform-specific code if you use some cross-platform framework. For simple programs it may be enough to use only the standard library of your language of choice. > single portable binary that can run on x86 windows, arm64 linux and in your browser with zero modification It has little value. Compiling a separate binary for each OS isn't that hard, since only a handful of architectures and operating systems are actually in use. Using an abstract cross-platform binary (like WASM) in the other hand adds extra performance costs and other user-side overhead, which isn't strictly necessary. | |
| ▲ | pjmlp 2 hours ago | parent | prev [-] | | No you don't, because WASM is only compute, and you need exactly runtime specific code and third party frameworks for everything else as imported functions. |
| |
| ▲ | rvz 3 hours ago | parent | prev [-] | | Exactly. It is entirely a misconception to believe that WASM is this silver bullet on sandboxing and it is not that great security-wise I’m afraid. It is only now being inspected by researchers and attackers who have found sandbox escapes [0] (chrome 0day), out-of-bounds [1] / use-after-free [2] and many other [3] flaws [4] in WebAssembly which I also agree that it is not enough for sandboxing at all. [0] https://nvd.nist.gov/vuln/detail/CVE-2026-11645 [1] https://bugzilla.mozilla.org/show_bug.cgi?id=2009901 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=2013741 [3] https://www.miggo.io/vulnerability-database/cve/CVE-2026-269... [4] https://github.com/bytecodealliance/wasm-micro-runtime/secur... | | |
| ▲ | dns_snek an hour ago | parent | next [-] | | There's no reason to believe that [0] has anything to do with WASM, [1] and [2] are runtime implementation bugs, [3] is a vulnerability in a "weak" sandboxing library VM2 - it has nothing to do with WASM as such, and [4] is another implementation bug in an experimental WASI feature of that specific runtime which is gated behind a build flag. ------ [Re: 3] https://github.com/patriksimek/vm2 > vm2 attempts to sandbox untrusted JavaScript code within the same Node.js process as your application. It does this through a complex network of Proxies that intercept and mediate every interaction between the sandbox and the host environment. > JavaScript is an extraordinarily dynamic language. Objects can be accessed through prototype chains, constructors can be reached via error objects, symbols provide protocol hooks, and async execution creates timing windows. The sheer number of ways to traverse from one object to another in JavaScript makes building an airtight in-process sandbox extremely difficult. [Re: 4] https://github.com/search?q=repo%3Abytecodealliance%2Fwasm-m... | |
| ▲ | 30 minutes ago | parent | prev | next [-] | | [deleted] | |
| ▲ | hobofan 3 hours ago | parent | prev [-] | | Those are not flaws in WASM itself, but in different WASM runtimes. | | |
|
|
|
| ▲ | DanielHB 2 hours ago | parent | prev | next [-] |
| Use cases I am more excited about: 1) Replace webhooks in web apps with wasm binaries provided by the customer, but that run in the web app servers. 2) Safer plugin system for professional software (plugins for photoshop, plugins for IDEs, etc) 3) Safer mod system for games and server-side mods that run on the game-maker server. |
| |
| ▲ | bzzzt 2 hours ago | parent | next [-] | | We had that in the 90's with Java. Why would this approach succeed today? | | |
| ▲ | simonw an hour ago | parent [-] | | Why wouldn't it? It's a different technology stack, developed with the benefit of decades of additional experience running hostile code on the web. | | |
| ▲ | pjmlp 25 minutes ago | parent [-] | | You mean like the CLR? Kind of strange that such experience still allows for WASM to be the target of C and C++ compilers, and there is no bounds checking support inside linear memory regions. |
|
| |
| ▲ | crabmusket 2 hours ago | parent | prev | next [-] | | Check out https://extism.org, it is built for those kinds of use cases. However I think WASI and components could enhance it. | | |
| ▲ | DanielHB 12 minutes ago | parent [-] | | sorry I meant "most excited about", WASI and components should be useful for the usecases I mentioned too. For example a SaaS services that accepts WASM plugins could provide a WASI that lets the plugin write to a object-store filesystem (like AWS S3) provided by the SaaS owner. |
| |
| ▲ | tuananh 2 hours ago | parent | prev [-] | | i had this same vision when i created hyper-mcp with modular plugin system via WASM plugins. Too bad, the community moves on from MCP to CLI with coding agent https://github.com/hyper-mcp-rs/hyper-mcp |
|
|
| ▲ | yjftsjthsd-h 3 hours ago | parent | prev | next [-] |
| Hey, this is also my interest. I was just looking into whether it was possible to e.g. build an archive extractor that runs like a normal program but does the actual extraction completely in wasm. Unfortunately, AFAICT it's possible but requires custom code; you can't (yet, I hope) just compile unzip/libarchive/whatever with CC=wasicompiler and get a sandboxed binary. But we're getting close. |
| |
| ▲ | nl 2 hours ago | parent | next [-] | | What do you mean? You absolutely can run compression in WASM. For example here is Gzip in WASM: https://github.com/ColinTimBarndt/wasm-gzip | |
| ▲ | fc417fc802 an hour ago | parent | prev [-] | | You should be able to do exactly that though? Why do you think you can't? You will of course need to include a lot of support code to provide the relevant syscalls and otherwise emulate the environment that the code expects. But there are plenty of examples of that at this point. |
|
|
| ▲ | grayrest 2 hours ago | parent | prev | next [-] |
| The thing that interests me the most is that execution is deterministic. If the inputs to a WASM module are logged you get durable execution and rr style reverse debugging as part of the package. |
|
| ▲ | samiv an hour ago | parent | prev | next [-] |
| Sorry but how exactly does the sandboxing help? You download and run an app that you expect to be useful and that you need. The app needs permission to access your data. If you want to use the application what choice do you have except to grant it access? Point being you wouldn't run untrusted code in the first place and for "trusted code" you end up accepting it's access requirements anyway. So logically I'd think that the malware would just get piggy bagged into actual non-obvious utility apps and nothing is gained. Second problem is that the security model hoops make for terrible APIs and user experiences. Just look at the current filesystem browser APIs. It must be mentally challenging to design APIs to Be usable and the nerf them for security purposes to make them "not too usable". Finally one must note that at least right now the webasm ecosystem is rather immature and the de-facto only tool (emscripten) is an amateur hour hobby project. So it's going to take some decades still before the tooling is really getting there. |
|
| ▲ | pistoriusp an hour ago | parent | prev | next [-] |
| Why not just run a vm? |
| |
|
| ▲ | emadda 2 hours ago | parent | prev | next [-] |
| I like the technical design of WASM, but I feel that better OS sandboxes for regular native code will be the common approach to running untrusted code. As soon as you compile to WASM you no longer have the C FFI and the ability to call the OS systems interfaces for files, network and others. It is extra work to move something to WASM vs just compiling it and running it in a sandbox. |
|
| ▲ | wyager 3 hours ago | parent | prev [-] |
| I'm curious if people have a good story for why WASI will succeed where Java failed |
| |
| ▲ | simonw 3 hours ago | parent | next [-] | | My main one is that WASI has benefitted from an additional 31 years of accumulated industry-wide experience compared to when Java was first released. | | |
| ▲ | pjmlp 24 minutes ago | parent [-] | | So where has the experience gone in the support of C and C++ for WASM? |
| |
| ▲ | Panzerschrek 3 hours ago | parent | prev | next [-] | | Programs written in Java require installation of a middleware called Java runtime. It adds extra friction for end-users. And even if one has Java runtime installed, a newer version may be necessary for a recently-published application. With WASM it may be the same, unless al major OS vendors integrate a WASM runtime so that it doesn't need to be installed separately. | | |
| ▲ | tpm 8 minutes ago | parent | next [-] | | > It adds extra friction for end-users It doesn't have to, the program can bundle its own jre as its often the case, and then you also don't have to worry about jre compatibility. Downside is then you have many jres installed and of course you can't trust their sandboxing. | |
| ▲ | pjmlp 2 hours ago | parent | prev | next [-] | | It is exactly the same for WASM outside of the browser, and Java has Android as counter part to built in runtime. | | | |
| ▲ | bzzzt 2 hours ago | parent | prev [-] | | > Programs written in Java require installation of a middleware called Java runtime.
It's possible to link or embed a Java runtime in an existing application. |
| |
| ▲ | fla 3 hours ago | parent | prev [-] | | My main one is: distribution & access. If major browsers implement the WASI runtime then using and distributing a WASI app will be way simpler than the Java equivalent ever was. |
|