View Single Post
  #1  
Old 06-02-2014, 04:45
Storm Shadow's Avatar
Storm Shadow Storm Shadow is offline
Family
 
Join Date: Jun 2014
Posts: 281
Rept. Given: 186
Rept. Rcvd 191 Times in 78 Posts
Thanks Given: 138
Thanks Rcvd at 245 Times in 97 Posts
Storm Shadow Reputation: 100-199 Storm Shadow Reputation: 100-199
Lightbulb [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
Reply With Quote
The Following 3 Users Gave Reputation+1 to Storm Shadow For This Useful Post:
chessgod101 (06-03-2014), DMichael (06-02-2014)