Exetools  

Go Back   Exetools > General > Source Code

Notices

Reply
 
Thread Tools Display Modes
  #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)
  #2  
Old 06-03-2014, 01:38
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
i have tested it
and it does work

just quote out the

Code:
 idaapi.load_and_run_plugin("fentanyl.py", 0)
its my patcher plugin i wanted to autoload.

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.
Reply With Quote
The Following User Gave Reputation+1 to Storm Shadow For This Useful Post:
DMichael (06-03-2014)
  #3  
Old 08-20-2014, 05:28
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
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/
Reply With Quote
The Following 2 Users Gave Reputation+1 to Storm Shadow For This Useful Post:
Artic (08-20-2014), niculaita (08-20-2014)
  #4  
Old 08-24-2014, 19:10
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
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."
Reply With Quote
The Following 3 Users Gave Reputation+1 to Storm Shadow For This Useful Post:
ahmadmansoor (08-25-2014), computerline (08-24-2014), daqstar (08-24-2014)
  #5  
Old 08-25-2014, 13:13
leetone's Avatar
leetone leetone is offline
Family
 
Join Date: Apr 2014
Posts: 144
Rept. Given: 41
Rept. Rcvd 31 Times in 20 Posts
Thanks Given: 21
Thanks Rcvd at 50 Times in 36 Posts
leetone Reputation: 34
What does your fentanyl plugin do? That is a very curious name
Reply With Quote
  #6  
Old 08-25-2014, 13:52
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
Quote:
Originally Posted by leetone View Post
What does your fentanyl plugin do? That is a very curious name
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."
Reply With Quote
Reply

Tags
ida pro, plugins

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On


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


All times are GMT +8. The time now is 16:11.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( 1998 - 2024 )