Debugging 使用Python自动连接到远程GDB服务器

Debugging 使用Python自动连接到远程GDB服务器,debugging,gdb,reverse-engineering,ida,Debugging,Gdb,Reverse Engineering,Ida,我想自动化连接到远程调试服务器的过程 以下代码适用于远程win32调试器: from ida_dbg import * set_remote_debugger(addr, port) load_debugger('win32', True) attach_process(pid, -1) 然而,我发现没有办法对GDB执行同样的操作,因为load_debugger('GDB',True)导致IDA崩溃,错误为“找不到IP/PC寄存器” 谢谢

我想自动化连接到远程调试服务器的过程

以下代码适用于远程win32调试器:

from ida_dbg import *

set_remote_debugger(addr, port)
load_debugger('win32', True)
attach_process(pid, -1)
然而,我发现没有办法对GDB执行同样的操作,因为load_debugger('GDB',True)导致IDA崩溃,错误为“找不到IP/PC寄存器”

谢谢