目录
  1. 1. 前言
    1. 1.1. included software
    2. 1.2. included glibc
      1. 1.2.1. How to run in custom libc version?
  2. 2. 18.04 skysider/pwndocker 安装
  3. 3. 使用姿势
skysider/pwndocker 正确使用姿势

前言

现在pwn题是越来越高版本的libc,一场比赛ubuntu16.04,ubuntu18.04切来切去的十分难受。
极力推荐这个pwndocker,使用这个pwndocker就不用来回的切虚拟机,利用patchelf 或者process(["/path/to/ld.so", "./test"], env={"LD_PRELOAD":"/path/to/libc.so.6"})指定libc版本运行。

这个docker已经集成pwn常用工具以及各个版本libc。

included software

  • pwntools —— CTF framework and exploit development library
  • pwndbg —— a GDB plug-in that makes debugging with GDB suck less, with a focus on features needed by low-level software developers, hardware hackers, reverse-engineers and exploit developers
  • pwngdb —— gdb for pwn
  • ROPgadget —— facilitate ROP exploitation tool
  • roputils —— A Return-oriented Programming toolkit
  • one_gadget —— A searching one-gadget of execve(‘/bin/sh’, NULL, NULL) tool for amd64 and i386
  • angr —— A platform-agnostic binary analysis framework
  • radare2 —— A rewrite from scratch of radare in order to provide a set of libraries and tools to work with binary files
  • seccomp-tools —— Provide powerful tools for seccomp analysis
  • linux_server[64] —— IDA 7.0 debug server for linux
  • tmux —— a terminal multiplexer
  • ltrace —— trace library function call
  • strace —— trace system call

included glibc

Default compiled glibc path is /glibc.

  • 2.19 —— ubuntu 12.04 default libc version
  • 2.23 —— ubuntu 16.04 default libc version
  • 2.24 —— introduce vtable check in file struct
  • 2.27 —— pwndocker default glibc version
  • 2.28~2.31 —— latest libc versions

How to run in custom libc version?

1
2
3
cp /glibc/2.27/64/lib/ld-2.27.so /tmp/ld-2.27.so
patchelf --set-interpreter /tmp/ld-2.27.so ./test
LD_PRELOAD=./libc.so.6 ./test

or

1
2
from pwn import *
p = process(["/path/to/ld.so", "./test"], env={"LD_PRELOAD":"/path/to/libc.so.6"})

具体参考 https://github.com/skysider/pwndocker

18.04 skysider/pwndocker 安装

docker hub 可以直接pull

1
docker pull skysider/pwndocker

但是pull的太慢了,我已经把他传到了阿里云上,用下面这条命令即可

1
docker pull registry.cn-hangzhou.aliyuncs.com/pwndocker/pwndocker-nocbtm:1.0

pull完之后重命名一下

1
docker tag registry.cn-hangzhou.aliyuncs.com/pwndocker/pwndocker-nocbtm:1.0 skysider/pwndocker

使用姿势

建议用官方的使用姿势,用如下命令run起来

1
2
3
4
5
6
7
8
docker run -d \
--rm \
-h ${ctf_name} \
--name ${ctf_name} \
-v $(pwd)/${ctf_name}:/ctf/work \
-p 23946:23946 \
--cap-add=SYS_PTRACE \
skysider/pwndocker

其中有两个重要的参数
-v $(pwd)/${ctf_name}:/ctf/work 是将当前目录下的文件映射到 docker /ctf/work目录下
这样你在物理机修改文件,docker里面也会发生变化,就不用再docker cp了

–cap-add=SYS_PTRACE 这个参数也是要一定加的,不然docker里面没法用gdb调试。

可以把上述命令放到 pwndocker_run.sh里面 方便下次使用

然后调试脚本时,要先进去tmux ,python脚本里面指定终端为 tmux

1
context.terminal = ['tmux', 'sp', '-h']

就可以 gdb.attach(p)了 如下图

文章作者: nocbtm
文章链接: https://nocbtm.github.io/2020/02/24/skysider-pwndocker-正确使用姿势/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 nocbtm's Blog
打赏
  • 微信
  • 支付宝