rlbox icon indicating copy to clipboard operation
rlbox copied to clipboard

RLBox sandboxing framework

Results 26 rlbox issues
Sort by recently updated
recently updated
newest added

https://github.com/PLSysSec/rlbox/blob/2ffb43846498d8dbb21a4c466922599d1d697b37/code/include/rlbox.hpp#L464-L467 This should return a tainted bool.

Wasm plugin checks the indirect function table to check type and pointer validity. NaCl plugin is a NoOp

I was trying out the "hello world" example in rlbox, and wanted to confirm that it guards against the library returning garbage. When I changed `call_cb()` in `mylib.c` to invoke...

After reading some part of the library, I noticed some minor change with ABI break. 1) `unverified_safe_because` is `template` but N is never used. Another declaration could be: `inline auto...

This is currently unsupported as there are tricky ABI issues for plugins that are not noop sandbox. Provide a helpful error message for this/add support for this

In prio, we ran into a really awkward thing to debug: ``` tainted_prio nss = sandbox.malloc_in_sandbox() ... nss->NSS_IsInitialized = sandbox.register_callback(t_NSS_IsInitialized); ``` eneded up getting unregister at the end of the...

Can we add a `copy_and_verify_string` for `unsigned char*`?