Andrej L
Andrej L
I believe the fix is the same as for [this issue](https://github.com/fireship-io/223-electron-screen-recorder/issues/33); the warning is unrelated to the button not working.
You need to add `enableRemoteModule: true` to `createWindow()`: ```js const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true, enableRemoteModule: true } }); ```
How acceptable would it be for pwntools to have a `one_gadget` function in the `ELF` class that simply uses `subprocess` to call the Ruby [`one_gadget`](https://github.com/david942j/one_gadget)? An error would have to...