about summary refs log tree commit diff stats
path: root/example (follow)
Commit message (Collapse)AuthorAgeFilesLines
* IDA: add a Miasm menu with shortcuts to other IDA examplesAjax2017-07-051-0/+77
|
* IDA/TypePropag: clean & fix importsAjax2017-07-051-14/+13
|
* IDA/SymbExec: clean & fix imports, export main functionAjax2017-07-051-7/+8
|
* IDA/Graph IR: clean & fix imports, export main function, add aAjax2017-07-051-70/+91
| | | | simplification option
* IDA/Depgraph: clean & fix imports, export main functionAjax2017-07-051-83/+93
|
* Example: update SymbExecCType apiFabrice Desclaux2017-07-051-9/+7
|
* Example/ctype: clean codeFabrice Desclaux2017-07-041-129/+110
|
* Example: c type propagation ida pluginFabrice Desclaux2017-06-141-0/+266
|
* Example: add ida rpyc serverFabrice Desclaux2017-06-131-0/+25
|
* Example: clean graph_ir IDAFabrice Desclaux2017-05-241-183/+59
|
* IR: avoid IRBlock attribute creationFabrice Desclaux2017-05-241-16/+19
|
* IR: Make IRBlock immutableFabrice Desclaux2017-05-242-7/+11
|
* Example: clean codeFabrice Desclaux2017-05-152-104/+98
|
* Core/Objc: improuve internal type representationFabrice Desclaux2017-05-152-26/+22
|
* Merge pull request #550 from serpilliere/add_rot_pytransCamille Mougey2017-05-101-1/+1
|\ | | | | Add rot pytrans
| * Example: fix tipoFabrice Desclaux2017-05-091-1/+1
| |
* | Use and tiny test of .as_assignblock() behaviorAjax2017-05-091-2/+3
|/
* Example: fix simplify argumentFabrice Desclaux2017-05-071-1/+1
|
* Merge pull request #537 from commial/fix/ida-examplesserpilliere2017-04-252-15/+28
|\ | | | | Fix/ida examples
| * IDA: handle generated labels in depgraphAjax2017-04-251-1/+7
| |
| * IDA: fix depgraph for immutable AssignBlockAjax2017-04-251-8/+12
| |
| * IDA: fix graph_ir for immutable AssignBlockAjax2017-04-251-6/+9
| |
* | Remove PYTHONSTARTUP in end-user scriptsAjax2017-04-249-53/+1
|/
* Let GCC be the default jitterAjax2017-04-213-6/+6
|
* Example: add irblock simplification exampleFabrice Desclaux2017-04-212-2/+30
|
* Merge pull request #518 from commial/feature/dseserpilliere2017-04-212-0/+414
|\ | | | | Feature/dse
| * Add an example illustrating DSEAjax2017-04-182-0/+414
| |
* | IRBlock: move lines in AssignBlockFabrice Desclaux2017-04-202-4/+4
|/
* Introduce Sandbox.call, for direct function callingAjax2017-04-061-0/+23
|
* MD5_arm: run from the very beginningAjax2017-04-061-3/+0
|
* Replace ExprInt[num](x) -> ExprInt(x, num)Ajax2017-03-305-11/+12
|
* analysis: Introduction of use-definition chainsCaroline Leman2017-03-294-7/+16
| | | | | | - previous dead_simp function has been moved to data_flow.py - ira class has been simplified - reach analysis code has been 'clarified'
* Example/full: fix tipoFabrice Desclaux2017-03-271-1/+1
|
* Core/asmbloc: move asmbloc to asmblockFabrice Desclaux2017-03-139-17/+17
|
* Asmbloc: rename asm_constraint to AsmConstraintFabrice Desclaux2017-03-131-2/+2
|
* Asmbloc: rename asm_label to AsmLabelFabrice Desclaux2017-03-133-7/+7
|
* All: rename vars bloc -> blockFabrice Desclaux2017-03-139-72/+72
|
* IR: rename blocs to blocksFabrice Desclaux2017-03-137-53/+53
|
* IR/Symbexec: rename symbexec to SymbolicExecutionEngineFabrice Desclaux2017-03-134-10/+10
|
* Test: add access_c/expr_c exampleFabrice Desclaux2017-02-172-0/+258
|
* Tests: add asm humanFabrice Desclaux2017-02-171-0/+41
|
* Merge pull request #494 from serpilliere/expression_reducerCamille Mougey2017-02-131-0/+93
|\ | | | | Expression: add ExprReduce
| * Expression: add ExprReduceFabrice Desclaux2017-02-131-0/+93
| |
* | Core/cpu: change ParseAst nameFabrice Desclaux2017-02-131-1/+1
|/
* Add a tracer exampleAjax2017-02-061-0/+58
|
* Example: add raw disasm to full.pyFabrice Desclaux2017-01-121-2/+9
|
* use python2 as executable name, give adequate permissionsAymeric Vincent2017-01-056-6/+6
|
* Expr: Remove exprint_fromFabrice Desclaux2016-12-233-7/+7
|
* Update IDA utils with the new APIAjax2016-11-171-3/+3
|
* ExprCompose: add new apiFabrice Desclaux2016-11-043-8/+5
| | | | | | | The ExprComposes uses directly its arguments sizes to guess the slices locations. Old api: ExprCompose([(a, 0, 32), (b, 32, 64)]) becomes: ExprCompose(a, b)