#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) |
#2
|
||||
|
||||
i have tested it
and it does work just quote out the Code:
idaapi.load_and_run_plugin("fentanyl.py", 0) One asked me why is this usefull? Well im normally deal with PPU PowerPC files with embedded SPU files. alot like exe and dll's. ida dont give the option to select any debuggers at all when selecting SPU prossesor, but gives it when using PPC. I recon there is a reason they left that out in SPU, (IBM) but anyway. I can now select and use gdbserver to connect via WMware and debug. So its more a help to bring them to the front, and then others can write there own stuff to connect to therye spesific targets. |
The Following User Gave Reputation+1 to Storm Shadow For This Useful Post: | ||
DMichael (06-03-2014) |
#3
|
||||
|
||||
New version working flawless on all versions.
https://github.com/techbliss/Free_the_Debuggers Put the py in the plugin folder. Also example why you would want it. Debugger extension i made http://techbliss.org/threads/spu-debugger-ida-pro-integratet-anergistic-support.499/ |
#4
|
||||
|
||||
added suport for x64 debuggers version of ida
https://github.com/techbliss/Free_the_Debuggers
__________________
The devil whispered in my ear, "you're not strong enough to withstand the storm." Today I whispered in the devils ear, "I am the storm." |
The Following 3 Users Gave Reputation+1 to Storm Shadow For This Useful Post: | ||
#5
|
||||
|
||||
What does your fentanyl plugin do? That is a very curious name
|
#6
|
||||
|
||||
The fenatyl plugin is a patcher that i didnt made, i have since removed the extra plugins, so its intirelly debuggers now.
You can check the latest version on github.
__________________
The devil whispered in my ear, "you're not strong enough to withstand the storm." Today I whispered in the devils ear, "I am the storm." |
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 |