对于linux kernel这块的pwn大体跟用户状态差不多,出题人一般都是自己编写了一个驱动模块,由内核进行加载该模块,在用户态可以打开该设备,采用ioctl来与驱动进行交互,若能成功pwn掉该驱动实现提权,那就能以root身份读取flag。
exp一般都是c语言写的,需要编译为静态再上传至远程靶机运行,提升权限后即可查看远程flag。
去官网下载一份kernel内核源码, 这里就采用2.6.32版本。我采用docker 下的ubuntu16.04进行编译内核, 编译内核前需要拥有特定的版本的make和gcc, g++
获取不同版本的内核:
sudo apt install gcc-4.7 g++-4.7
sudo ln -s /usr/bin/gcc-4.7 /usr/bin/gcc
sudo ln -s /usr/bin/g++-4.7 /usr/bin/g++
sudo apt-get install build-essential libncurses5-dev
mkdir kernel
cd kernel
wget https://mirrors.edge.kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.tar.gz
tar xzvf linux-2.6.32.tar.gz
wget https://mirrors.tuna.tsinghua.edu.cn/gnu/make/make-3.80.tar.gz
tar -xvf make-3.80.tar.gz
cd make-3.80/
./configure
make
../make-3.80/make menuconfig
进入 kernel hacking,勾选 Kernel debugging,Compile-time checks and compiler options–>Compile the kernel with debug info,Compile the kernel with frame pointers 和 KGDB
../make-3.80/make bzImage
fatal error: linux/compiler-gcc5.h: No such file or directory
解决:
拷贝一个自己目录下的compiler-gcc4.h到compiler-gcc5.h
implicit declaration of function 'tty_port_users'
解决:
将所提示的该函数extern关键字去掉
编译成功之后提示如下:
Root device is (0, 78)
Setup is 13688 bytes (padded to 13824 bytes).
System is 3961 kB
CRC e70b803a
Kernel: arch/x86/boot/bzImage is ready (#1)
vmlinux 在源码根目录下,bzImage 在arch/x86/boot/下
wget https://busybox.net/downloads/busybox-1.27.2.tar.bz2
tar -jxvf busybox-1.27.2.tar.bz2
cd busybox-1.27.2
make menuconfig
勾选 Busybox Settings -> Build Options -> Build Busybox as a static binary
make
make install
编译完成后源码目录下会有一个_install 文件夹
cd _install
mkdir -pv {bin,sbin,etc,proc,sys,usr/{bin,sbin}}
mkdir etc/init.d
touch etc/init.d/init
编辑 etc/inittab 文件,加入以下内容(这一步可以省略)
::sysinit:/etc/init.d/rcS
::askfirst:/bin/ash
::ctrlaltdel:/sbin/reboot
::shutdown:/sbin/swapoff -a
::shutdown:/bin/umount -a -r
::restart:/sbin/init
编辑 etc/init.d/rcS 文件,加入以下内容
#!/bin/sh
mount -t proc none /proc
mount -t sys none /sys
/bin/mount -n -t sysfs none /sys
/bin/mount -t ramfs none /dev
/sbin/mdev -s
接着就可以打包成 rootfs.cpio
chmod +x ./etc/init.d/rcS
find . | cpio -o --format=newc > ../rootfs.cpio
apt install qemu
得到这三个vmlinux,bzImage,rootfs.cpio 文件后,可以利用 qemu 运行起来,启动脚本 boot
#!/bin/sh
qemu-system-x86_64 \
-initrd rootfs.cpio \
-kernel bzImage \
-nographic \
-append "console=ttyS0 root=/dev/ram rdinit=/sbin/init" \
-m 64M \
-monitor /dev/null \
启动成功如下
Please press Enter to activate this console. [ 3.379764] async/1 used greatest stack depth: 5064 bytes left
/bin/ash: can't access tty; job control turned off
/ # ls
bin etc proc sbin usr
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
int hello_write(struct file *file, const char *buf, unsigned long len) {
printk("You write something.");
return len;
}
static int __init hello_init(void) {
printk(KERN_ALERT "hello driver init!\n");
create_proc_entry("hello", 0666, 0)->write_proc = hello_write;
return 0;
}
static void __exit hello_exit(void) {
printk(KERN_ALERT "hello driver exit\n");
}
module_init(hello_init);
module_exit(hello_exit);
保存为hello.c
注意, Makefile中 obj-m 中的名字要与保存c代码的文件名相同
obj-m := hello.o
KERNELDR := /home/kernel/linux-2.6.32
PWD := $(shell pwd)
modules:
$(MAKE) -C $(KERNELDR) M=$(PWD) modules
modules_install:
$(MAKE) -C $(KERNELDR) M=$(PWD) modules_install
clean:
$(MAKE) -C $(KERNELDR) M=$(PWD) clean
make 出来后得到.ko 文件
命名为call.c
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
int main() {
int fd = open("/proc/hello", O_WRONLY);
write(fd, "I0gan", 5);
return 0;
}
gcc --static call.c -o call
将hello.ko与call两个文件复制到busybox下的_install目录下重新打包得到rootfs.cpio, 把该文件复制到启动目录下, 重新运行./boot
insmod hello.ko
输出如下
[ 75.062554] hello: module license 'unspecified' taints kernel.
[ 75.063843] Disabling lock debugging due to kernel taint
[ 75.074570] hello driver init!
/ # ./call
[ 79.011811] You write something./
上面打印了You write somthing说明已经打开了我们的驱动, 那么到这基本上已经差不多了 ^_^
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。