about summary refs log tree commit diff stats
path: root/example/ida/symbol_exec.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed symbexec example to work for newer IDA (7.6)Elias Bachaalany2021-11-291-1/+1
|
* Rename ira => LifterModelCallFabrice Desclaux2020-12-241-3/+3
|
* Fix ida examplesFabrice Desclaux2020-10-301-3/+5
|
* IDAPython 7.4 portingnofiv2020-04-161-4/+4
|
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-4/+4
|
* Support python2/python3Fabrice Desclaux2019-03-051-8/+15
|
* Expresion: use ExprAssign instead of ExprAffFabrice Desclaux2018-10-011-2/+2
| | | | | | ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss)
* IR: gen ircfg from ir_archFabrice Desclaux2018-07-051-3/+2
|
* symbol_pool -> loc_dbAjax2018-07-031-6/+6
|
* Example/ida: use addr to guess archFabrice Desclaux2018-06-191-2/+3
| | | | | Some arch like ARM depends on address in order to determine which attributes have to be used during analysis
* Allow symbolic execution of one instruction in IDAWilliam Bruneau2018-06-191-1/+6
|
* Core: replace AsmLabel by LocKeyFabrice Desclaux2018-06-091-7/+16
|
* Symbexec: use hashtable for mem symbolsFabrice Desclaux2018-03-151-11/+3
|
* Ida/Example: fix symbexec pluginFabrice Desclaux2018-01-091-10/+77
|
* Asmblock: rename blocFabrice Desclaux2017-07-071-1/+1
|
* IR: rename add_blocFabrice Desclaux2017-07-071-1/+1
|
* IDA/SymbExec: clean & fix imports, export main functionAjax2017-07-051-7/+8
|
* All: rename vars bloc -> blockFabrice Desclaux2017-03-131-3/+3
|
* IR/Symbexec: rename symbexec to SymbolicExecutionEngineFabrice Desclaux2017-03-131-2/+2
|
* Symbexec: new api for emul_ir_*Fabrice Desclaux2016-11-041-1/+1
| | | | | | | | | | | | | | Replacement: emul_ir_bloc(self, myir, addr, step=False) by: emul_ir_block(self, addr, step=False) and: emul_ir_blocs(self, myir, addr, lbl_stop=None, step=False) by: emul_ir_blocks(self, addr, lbl_stop=None, step=False) The 'myir' was already given in the symbolexec creation.
* Example/IDA: Reorganize importsCamille Mougey2015-02-111-1/+0
|
* VariableIdentifier: Less hacky way to identify sub vars, add a prefix featureCamille Mougey2015-02-101-1/+2
|
* Example/IDA: Move `translatorForm` to `utils`Camille Mougey2015-02-091-58/+2
|
* IDA/Example: Offer all available translators instead of MiasmCamille Mougey2015-02-091-10/+45
|
* Example/IDA: Add the translation in Miasm for symbolc_execCamille Mougey2015-02-091-0/+35
|
* Example/IDA: Add a new example showing symbolic exec with var expansionCamille Mougey2015-02-091-0/+110