Release Free The Debuggers

Storm Shadow

Administrator
Staff member
Developer
Ida Pro Expert
Elite Cracker
I hate that they have locked the debuggers to spesific mosules in ida pro.

i made a script that releases all debugger to all processors.
Put FreeThedebuggers.py in procs folder.


Python:
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)
	idc.LoadDebugger("gdb", 1) # bring this to front could be any
 
 
 
# ----------------------------------------------------------------------
def Plugin_ENTRY():
  return plugin_t()
 
print "Finally We Are Free At Last"


https://github.com/techbliss/Free_the_Debuggers/blob/master/Free_The_Debuggers.py
 
Top