Max Mathys

Results 31 comments of Max Mathys

Please say I'm missing something

@AlexandreKilian do you store the secret inside the electron application source code?

@aguynamedben appreciate the research, @mawie81 submitted it to nodesecurity.io

I just ran into this issue – would also appreciate if this would be changed... Right now switching to an enumeration field would be the only possible fix, which only...

I would very appreciate if the localization relationships could be turned off.

Does that mean that it is possible to write new files from Wasm? I have tried using the `open` syscall in WASI for non-existing files with writing mode, but it...

We are using files to keep state between function calls when writing functions in C.

To fix this, I just replaced instances of ```golang f, err := c.fs.Open(fsOpenPath) ``` by ```golang f, err := os.OpenFile(fsOpenPath, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0644) ``` and I get a writable FS.