x86_64平台下的ubuntu调试Mips并连接pwntools与gdb

首先安装qemu

sudo apt update
sudo apt install qemu-user libc6-mipsel-cross qemu-user-binfmt gdb-multiarch
sudo mkdir /etc/qemu-binfmt
sudo ln -s /usr/mipsel-linux-gnu /etc/qemu-binfmt/mipsel

检查路径是否正确

>>> from pwn import *
>>> pwnlib.qemu.user_path(arch='mips')
'qemu-mipsel'
>>> pwnlib.qemu.ld_prefix(arch='mips')
'/etc/qemu-binfmt/mipsel'

之后使用pwntools

方法一:

from pwn import *
context.arch='mips'
sh=gdb.debug('./pwn')
payload='xxxxx'
sh.sendline(payload)

方法二:

#!/usr/bin/env python
#-*- coding:utf-8 -*
#import pwnlib
from pwn  import *

payload=b'\xca\xb2\xf0\x88\x0f&Z\xd3\x08L\xe1\x08qI\xa4\x16\x04\xd7
s=process(["qemu-mipsel","-g", "1234","-L","/usr/mipsel-linux-gnu/","./3348084723"])
pwnlib.qemu.user_path(arch='mips')
pwnlib.qemu.ld_prefix(arch='mips')
context.arch='mips'
context.log_level = 'debug'  
#gdb.attach(s,'''b memset''')
#raw_input()
s.recvuntil("Faster >")
s.sendline(payload)
s.interactive()


将以上脚本命名为python脚本运行:
会卡在这里等待gdb连接
x86_64平台下的ubuntu调试Mips并连接pwntools与gdb_第1张图片

这个时候另起终端输入以下命令


gdb-multiarch -nx ./3348084723 #注意要加nx,如果你安装了pwndbg然后不加直接运行的话可能在步进的时候会出错。
#然后进入gdb里面输入
set arch mips
set endian little
set sysroot /usr/mipsel-linux-gnu
target remote localhost:1234
b *0x004021d0

连接成功之后就可以进行调试:
x86_64平台下的ubuntu调试Mips并连接pwntools与gdb_第2张图片
风格是原版风格,假如有师傅知道怎么兼容pwndbg,欢迎告知。

你可能感兴趣的:(笔记,安全,CTF)