-
Notifications
You must be signed in to change notification settings - Fork 0
Architecture
Alexander Dennhoven edited this page Apr 18, 2026
·
2 revisions
- Main Process (
src/main/main.js) - Preload Bridge (
src/main/preload.js) - Renderer UI (
src/renderer/app.html,src/renderer/app.js)
- The app has a clear separation between UI and system operations.
- Diagnostics actions are routed through controlled interfaces.
- Direct system-level execution from the UI is restricted.
- The renderer runs with limited privileges.
- The preload bridge exposes only a minimal API.
- Isolation reduces the attack surface in desktop runtime contexts.
- The UI requests data through
window.aegisbridge. - The preload bridge forwards the request via IPC.
- The main process gathers data and responds.
- The UI updates status and diagnostics output.
AegisBridge OS Guard Wiki · Maintained by project contributors.