Last 7 days
-
r267
(IDAPython 1.3.0 / IDA Pro 5.6
(For older versions please us...) committed by elias.bachaalany
- IDAPython 1.3.0 / IDA Pro 5.6
(For older versions please use the 1.2.90 branch)
IDAPython 1.3.0 / IDA Pro 5.6
(For older versions please use the 1.2.90 branch)
-
Last 30 days
-
-
issue 43
(Rerunning script from the recent script box (Alt-7) does not...) commented on by cbwhiz
-
-
issue 42
(Modules imported from scripts will not reload when script is...) commented on by cbwhiz
-
-
issue 42
(Modules imported from scripts will not reload when script is...) commented on by cbwhiz
-
-
issue 43
(Rerunning script from the recent script box (Alt-7) does not...) reported by cbwhiz
-
-
issue 42
(Modules imported from scripts will not reload when script is...) commented on by cbwhiz
-
-
issue 42
(Modules imported from scripts will not reload when script is...) reported by cbwhiz
-
Older
-
-
-
r265
(idc.py: RefreshDebuggerMemory() was broken) committed by elias.bachaalany
- idc.py: RefreshDebuggerMemory() was broken
idc.py: RefreshDebuggerMemory() was broken
-
-
issue 40
(Idapython 64bit linux build issue: LONG_BIT definition appea...) changed by gergely.erdelyi
-
Status:
WontFix
Owner:
gergely.erdelyi
Status:
WontFix
Owner:
gergely.erdelyi
-
issue 40
(Idapython 64bit linux build issue: LONG_BIT definition appea...) commented on by samshepperd
-
-
issue 40
(Idapython 64bit linux build issue: LONG_BIT definition appea...) commented on by samshepperd
-
-
issue 40
(Idapython 64bit linux build issue: LONG_BIT definition appea...) reported by samshepperd
-
-
r264
(bytes.i: wrapped nextthat/prevthat()) committed by elias.bachaalany
- bytes.i: wrapped nextthat/prevthat()
bytes.i: wrapped nextthat/prevthat()
-
r263
(idapython: it is possible to load IdaPython at an early stag...) committed by elias.bachaalany
- idapython: it is possible to load IdaPython at an early stage and keep it loaded as long as IDA is
running.
(One needs to pass the "--early-load" switch to build.py)
idapython: it is possible to load IdaPython at an early stage and keep it loaded as long as IDA is
running.
(One needs to pass the "--early-load" switch to build.py)
-
r262
(added from_cobject method to both loader_input_t and qfile_t...) committed by elias.bachaalany
- added from_cobject method to both loader_input_t and qfile_t python classes
added from_cobject method to both loader_input_t and qfile_t python classes
-
r261
(diskio.i: wrapped enumerate_files and enumerate_system_files) committed by elias.bachaalany
- diskio.i: wrapped enumerate_files and enumerate_system_files
diskio.i: wrapped enumerate_files and enumerate_system_files
-
-
r259
(diskio.i: wrapped linput_t* related functions into loader_in...) committed by elias.bachaalany
- diskio.i: wrapped linput_t* related functions into loader_input_t python class
diskio.i: wrapped linput_t* related functions into loader_input_t python class
-
r258
(wrapped qfile related functions in a qfile_t class) committed by elias.bachaalany
- wrapped qfile related functions in a qfile_t class
wrapped qfile related functions in a qfile_t class
-
-
r256
(ida.i: fixed %ignore so we ignore functions from the idainfo...) committed by elias.bachaalany
- ida.i: fixed %ignore so we ignore functions from the idainfo class
ida.i: fixed %ignore so we ignore functions from the idainfo class
-
r255
(build.py: slightly modified the build.py script so that it c...) committed by elias.bachaalany
- build.py: slightly modified the build.py script so that it can be imported and used from other build
scripts
build.py: slightly modified the build.py script so that it can be imported and used from other build
scripts
-
r254
(idautils.py: added procregs to identify registers and modifi...) committed by elias.bachaalany
- idautils.py: added procregs to identify registers and modified DecodeInstruction().
It is now possible to identify the registers of a decoded instruction with:
cmd = DecodeInstruction(here())
if cmd[0].is_reg(proc_regs.eax): print "EAX is used"
or something like:
if cmd[1].is_reg(proc_regs.al): print "al is used"
idautils.py: added procregs to identify registers and modified DecodeInstruction().
It is now possible to identify the registers of a decoded instruction with:
cmd = DecodeInstruction(here())
if cmd[0].is_reg(proc_regs.eax): print "EAX is used"
or something like:
if cmd[1].is_reg(proc_regs.al): print "al is used"
-
r253
(idc.py: Whitespace and indentation fixes
) committed by gergely.erdelyi
- idc.py: Whitespace and indentation fixes
idc.py: Whitespace and indentation fixes
-
r252
(idc.py: Fixed RunTo() and GetExceptionQty()
) committed by gergely.erdelyi
- idc.py: Fixed RunTo() and GetExceptionQty()
idc.py: Fixed RunTo() and GetExceptionQty()
-
r251
(has_key() is slowly getting deprecated. Might make sense to ...) committed by gergely.erdelyi
- has_key() is slowly getting deprecated. Might make sense to stop using it.
has_key() is slowly getting deprecated. Might make sense to stop using it.
-
r250
(idautils.py: Rearranged function order to be more logical
) committed by gergely.erdelyi
- idautils.py: Rearranged function order to be more logical
idautils.py: Rearranged function order to be more logical
-
r249
(idautils.py: Classes are all newskool. Fixed a pylint warnin...) committed by gergely.erdelyi
- idautils.py: Classes are all newskool. Fixed a pylint warning.
idautils.py: Classes are all newskool. Fixed a pylint warning.
-
r248
(idautils.py: Small whitespace and indentation fixes
) committed by gergely.erdelyi
- idautils.py: Small whitespace and indentation fixes
idautils.py: Small whitespace and indentation fixes
-
r247
(idautils.py: Added missing self
) committed by gergely.erdelyi
- idautils.py: Added missing self
idautils.py: Added missing self
-
r246
(build.py: now build.py will use the "IDA" environment variab...) committed by elias.bachaalany
- build.py: now build.py will use the "IDA" environment variable (if it exists) to tell where the SDK
is.
(for example if IDA=$HOME/idasdk, then build will use $IDA/include and $IDA/libXXXXX)
build.py: now build.py will use the "IDA" environment variable (if it exists) to tell where the SDK
is.
(for example if IDA=$HOME/idasdk, then build will use $IDA/include and $IDA/libXXXXX)
-
r245
(idapython was not compiling since r239 (it was using an unpu...) committed by elias.bachaalany
- idapython was not compiling since r239 (it was using an unpublished API)
idapython was not compiling since r239 (it was using an unpublished API)
-
r244
(idautils.py: Added Threads() iterator to enum threads) committed by elias.bachaalany
- idautils.py: Added Threads() iterator to enum threads
idautils.py: Added Threads() iterator to enum threads
-
r243
(kernwin.i: added code markers to choose2 wrapper code (for e...) committed by elias.bachaalany
- kernwin.i: added code markers to choose2 wrapper code (for easier maintenance)
kernwin.i: added code markers to choose2 wrapper code (for easier maintenance)
-
r242
(dbg.i/idd.i: wrapped some functions from the dbg/debugger_t ...) committed by elias.bachaalany
- dbg.i/idd.i: wrapped some functions from the dbg/debugger_t class: get_manual_regions/dbg_get_memory
_info/dbg_get_registers/dbg_get_thread_sreg_base/dbg_read_memory/dbg_write_memory/dbg_can_query
dbg.i/idd.i: wrapped some functions from the dbg/debugger_t class: get_manual_regions/dbg_get_memory
_info/dbg_get_registers/dbg_get_thread_sreg_base/dbg_read_memory/dbg_write_memory/dbg_can_query
-
r241
(graph.i: fixed a small bug with gettext / background color
-...) committed by elias.bachaalany
- graph.i: fixed a small bug with gettext / background color
- removed some whitespaces
- added some code markers
graph.i: fixed a small bug with gettext / background color
- removed some whitespaces
- added some code markers
-
r240
(graph.i: added graph support (works only with the GUI versio...) committed by elias.bachaalany
- graph.i: added graph support (works only with the GUI version)
graph.i: added graph support (works only with the GUI version)
-
-
r238
(kernwin.i: fixed a reference leak) committed by elias.bachaalany
- kernwin.i: fixed a reference leak
kernwin.i: fixed a reference leak
-
r237
(idautils.py: GetDataList() was not working with 64bit addres...) committed by elias.bachaalany
- idautils.py: GetDataList() was not working with 64bit addresses
idautils.py: GetDataList() was not working with 64bit addresses
-
r236
(idautils.py: added qword support for GetDataList()) committed by elias.bachaalany
- idautils.py: added qword support for GetDataList()
idautils.py: added qword support for GetDataList()
-
r235
(typeinf.i: fixed %rename directive for load_til_header()) committed by elias.bachaalany
- typeinf.i: fixed %rename directive for load_til_header()
typeinf.i: fixed %rename directive for load_til_header()
-
r234
(kernwin.i: added add_menu_item to ignore list (it was being ...) committed by elias.bachaalany
- kernwin.i: added add_menu_item to ignore list (it was being wrapped twice (as overloaded function))
kernwin.i: added add_menu_item to ignore list (it was being wrapped twice (as overloaded function))
-
r233
(idp.i: added AssembleLine() which is similar to assemble() b...) committed by elias.bachaalany
- idp.i: added AssembleLine() which is similar to assemble() but assembles into a buffer instead
idautils.py: added Assemble() utility function
idp.i: added AssembleLine() which is similar to assemble() but assembles into a buffer instead
idautils.py: added Assemble() utility function
-
r232
(- added NearestName class) committed by elias.bachaalany
- - added NearestName class
- added NearestName class
|