electron-hardener
A Rust library and command line tool to harden Electron binaries against runtime behavior modifications.
This provides a way to harden Electron applications against a specific class of runtime behavior modification. Specifically, if an unprivileged process can't write to the application's binary file or process address space, it should not be able to change what an app does at runtime.
The library provides two sets of functionality:
- An interface to view and modify the status of fuses in an application, similar to the official fuses package.
- A fast and configurable alternative implementation of the electron-evil-feature-patcher tool created by Dimitri Witkowski. All patches it can perform are also exposed in this crate. See its README for more details on how it works.
Usage
Library
The library exposes a simple and configurable interface:
use ;
let mut app = from_bytes?;
app.set_fuse_status?;
app.patch_option?;
Check out the command line tool's source or the example to see more ways to use it.
Command line tool
The command line tool exposes the same functionality and interface as electron-evil-feature-patcher:
Install
Library
In your project's Cargo.toml file:
= "0.1
Command line tool
Make sure you have a Rust compiler installed and then run
Electron compatibility
electron-harder tracks the latest stable version of Electron. Functionality is currently tested on a minimum version of Electron 13. Older versions may partially work but this is not guaranteed.
MSRV
The Minimum Supported Rust Version is currently 1.46.0. This will be bumped to the latest stable version of Rust when needed.
Credits
Made with ❤️ by the 1Password team, with full credits to Dimitri Witkowski for taking the time and effort to discover the command line flags that can be disabled, and finally creating the original tool which served as inspiration for this project.