# Iniciar servidor local
python3 -m http.server 8080
# Acceder desde navegador vulnerable
# http://localhost:8080/index.html
🔧 エクスプロイトのフェーズ
フェーズ 説明
1 メモリの準備 (ArrayBuffers、オブジェクト)
2 JIT コンパイルのトレーニング
3 メモリリークのための OOB 読み取り
4 メモリ破壊のための OOB 書き込み
5 RCE のための型混淆
🛡️ 緩和策
Chrome をバージョン 149.0.7827.103 以降に更新してください。
bash
# Windows
chrome://settings/help
# Linux
sudo apt update && sudo apt upgrade chromium-browser
# macOS
# Actualizar desde Chrome menu > About Google Chrome
📚 参照
NVD - CVE-2026-11645
Chrome Release
CISA KEV
Chromium Issue 506689381
text
---
## 📝 分析の概要
| フェーズ | 関連コード | 目的 |
|------|------------------|-----------|
| **1** | `victimBuffer = new ArrayBuffer(0x100)` | メモリのセットアップ |
| **2** | `function vulnerableFunction(arr, idx, val)` | 脆弱な関数 |
| **3** | ループ `for (let i = 0; i < 10000; i++)` | JIT のトレーニング |
| **4** | `%OptimizeFunctionOnNextCall` | 最適化の強制 |
| **5** | `oobIndex = 5 + attempt` | OOB のトリガー |
| **6** | `vulnerableFunction(oobArray, writeIndex, targetValue)` | OOB 書き込み |
| **7** | `confusingFunction(buffer1, buffer2, 0x80)` | 型の混乱 |
| **8** | `typeCorruption(uintArray, 19, 0xdeadbeef)` | メモリ破壊 |
**特定のフェーズについてさらに詳しく説明したり、PoC のコンポーネントを追加で生成したりする必要がありますか?**