-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: sandboxを有効化 #2074
feat: sandboxを有効化 #2074
Conversation
nodeIntegration: false, | ||
contextIsolation: true, | ||
sandbox: false, // TODO: 外しても問題ないか検証して外す |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
全部デフォルトはセキュアな方になっているので削除します。
8c624f0
to
3b031b9
Compare
3b031b9
to
94924c5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!
あっすみません!! これってなにかユーザーの使い勝手に変化がある感じでしたっけ 👀 (今思いつきましたが、sudoしてるlinuxとかでは動かなくなるかもですかね) |
Co-authored-by: Hiroshiba <hihokaruta@gmail.com>
@Hiroshiba Chromiumのサンドボックス化はそれとは別に行われる気がします。 |
あ、そりゃそうか・・・!! 実際どうかわからないけど、とりあえずdevブランチでビルドしてみましょう・・・!! |
内容
プロセスのサンドボックス化を有効化してセキュリティを向上させます。
ref: https://www.electronjs.org/ja/docs/latest/tutorial/sandbox
関連 Issue
その他
preload.js
が分割されていることがそのまま動かすことができないことの原因でした。https://electron-vite.github.io/guide/preload-not-split.html
#2071 (comment) で触れて作業を開始したのですが本当に直接的に関係なかったかもしれません。
--no-sandbox
を付けてもpreload.js
が分割された状態では正常に動作しませんし、この機能を有効化してもUbuntu24.04(VirtualBox上)で--no-sandbox
を付けて起動させることができました。