#1
|
||||
|
||||
[Python][Ida Pro]Free the debuggers
I always hated that the debuggers are limited to spesific Processors in ida pro.
if anyone is willing to test to see if it works. Bring Debugger Support for all Prossesors in IDA PRO Put File In procs folder, and it should autoload. Free_The_Debuggers.py Code:
import sys import idaapi from idaapi import * import idc from idc import * class plugin_t(): ##'lets give this baby some debuggers''' idaapi.load_and_run_plugin("windbg_user.plw", 0) idaapi.load_and_run_plugin("armlinux_stub.plw", 0) idaapi.load_and_run_plugin("gdb_user.plw", 0) idaapi.load_and_run_plugin("linux_stub.plw", 0) idaapi.load_and_run_plugin("mac_stub.plw", 0) idaapi.load_and_run_plugin("win32_stub.plw", 0) idaapi.load_and_run_plugin("win32_user.plw", 0) idaapi.load_and_run_plugin("wince_stub.plw", 0) idaapi.load_and_run_plugin("bdescr.plw", 0) idaapi.load_and_run_plugin("fentanyl.py", 0) idaapi.load_and_run_plugin("epoc_user", 0) idaapi.load_and_run_plugin("deci3dbg.plw", 0) idaapi.load_and_run_plugin("deci3dbg.p64", 0) idc.LoadDebugger("gdb", 1) # ---------------------------------------------------------------------- def Plugin_ENTRY(): return plugin_t() print "Finally We Are Free At Last" https://github.com/techbliss/Free_the_Debuggers |
The Following 3 Users Gave Reputation+1 to Storm Shadow For This Useful Post: | ||
chessgod101 (06-03-2014), DMichael (06-02-2014) |
Tags |
ida pro, plugins |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
64bit debuggers for Linux | CZC | x64 OS | 5 | 12-08-2021 23:12 |
Debuggers | slambert | General Discussion | 48 | 10-31-2009 09:10 |
question about debuggers | Juca | General Discussion | 1 | 02-12-2003 22:49 |