- C 98.2%
- C++ 1.1%
- Python 0.6%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .github/workflows | ||
| .vscode | ||
| docs | ||
| libs/sqlite | ||
| src | ||
| tools | ||
| .gitattributes | ||
| .gitignore | ||
| CHANGELOG.md | ||
| LICENSE | ||
| make.bat | ||
| README.md | ||
ChromElevator (Chrome App-Bound Encryption Decryption)
🚀 Overview
A post-exploitation tool demonstrating a complete, in-memory bypass of Chromium's App-Bound Encryption (ABE). Made by xaitax, support xaitax's ko-fi if you enjoyed this project. This fork compiles the elevator as a DLL instead of an EXE. Check xaitax's original README for more information about how this works.
🔧 Build Instructions
Build Options:
make.bat build_target_dll- builds chromelevator.dll
Automated Builds with GitHub Actions
This project uses GitHub Actions to automatically build the injector executable (chromelevator.dll) for x64 architecture.
Release Package Contents:
chromelevator_x64.dll
📦 Supported & Tested Versions
| Browser | Tested Version (x64 & ARM64) |
|---|---|
| Google Chrome | 144.0.7559.133 |
| Google Chrome Beta | 145.0.7632.18 |
| Brave | 1.86.148 (144.1.86.148) |
| Microsoft Edge | 145.0.3800.36 |
| Avast Secure Browser | 143.0.33371.147 |
Note: Chrome/Brave/Edge 144+ use the new
IElevator2COM interface. This tool automatically usesIElevator2when available and falls back toIElevatorfor older versions. Avast Secure Browser uses a customIElevatorChromeinterface with an extended vtable (12 methods, DecryptData at offset 104).
🔍 Feature Support Matrix
This matrix outlines the extraction capabilities for each supported browser.
| Feature | Google Chrome | Microsoft Edge | Brave | Avast Secure Browser |
|---|---|---|---|---|
| Cookies | ✅ ABE | ✅ ABE | ✅ ABE | ✅ ABE |
| Passwords | ✅ ABE | ✅ ABE | ✅ ABE | ✅ ABE |
| Payment Methods | ✅ ABE | ✅ ABE | ✅ ABE | ✅ ABE |
| IBANs | ✅ ABE | ❌ N/A | ✅ ABE | ✅ ABE |
| Auth Tokens | ❌ N/A | ❌ N/A | ❌ N/A |
🔬 Technical Workflow
Check xaitax's original README for more information about how this works.