| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Example: add raw disasm to full.py | Fabrice Desclaux | 2017-01-12 | 1 | -2/+9 |
| | | |||||
| * | use python2 as executable name, give adequate permissions | Aymeric Vincent | 2017-01-05 | 6 | -6/+6 |
| | | |||||
| * | Expr: Remove exprint_from | Fabrice Desclaux | 2016-12-23 | 3 | -7/+7 |
| | | |||||
| * | Update IDA utils with the new API | Ajax | 2016-11-17 | 1 | -3/+3 |
| | | |||||
| * | ExprCompose: add new api | Fabrice Desclaux | 2016-11-04 | 3 | -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) | ||||
| * | Symbexec: new api for emul_ir_* | Fabrice Desclaux | 2016-11-04 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | 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. | ||||
| * | Tests: add win seh test | Fabrice Desclaux | 2016-08-31 | 2 | -0/+132 |
| | | |||||
| * | Example: updt elfesteem api | Fabrice Desclaux | 2016-07-11 | 1 | -1/+1 |
| | | |||||
| * | X86/arch: fix call @imm | serpilliere | 2016-04-24 | 1 | -4/+3 |
| | | |||||
| * | Example/ida/depgraph: add basic stack unaliasing | Fabrice Desclaux | 2016-04-06 | 1 | -11/+45 |
| | | |||||
| * | Example/Depgraph: allow lower/upper register tracking | Fabrice Desclaux | 2016-03-22 | 2 | -2/+5 |
| | | |||||
| * | Introduce Container.symbol_pool, containing container symbols (if any) | Ajax | 2016-03-21 | 1 | -2/+8 |
| | | |||||
| * | Example/Depgraph: add JSON output | Fabrice Desclaux | 2016-03-21 | 1 | -8/+31 |
| | | |||||
| * | Example/dg: fix print solutions | Fabrice Desclaux | 2016-03-21 | 1 | -2/+5 |
| | | |||||
| * | Depgraph: updt api | Fabrice Desclaux | 2016-03-21 | 2 | -12/+20 |
| | | |||||
| * | Test/depgraph: use z3 to remove unsatisfiable solutions | Fabrice Desclaux | 2016-03-17 | 1 | -0/+11 |
| | | |||||
| * | Test/depgraph: autopep | Fabrice Desclaux | 2016-03-17 | 1 | -28/+29 |
| | | |||||
| * | AssignBlock | Fabrice Desclaux | 2016-02-26 | 1 | -0/+2 |
| | | |||||
| * | Graph: generic html dot code | Fabrice Desclaux | 2016-01-30 | 1 | -1/+1 |
| | | |||||
| * | Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph" | Ajax | 2016-01-26 | 1 | -2/+2 |
| | | |||||
| * | BasicBlocks: update examples with the new API | Ajax | 2016-01-26 | 8 | -28/+18 |
| | | |||||
| * | Move types -> test_types to avoid namespace collision (creds @fmonjalet) | Ajax | 2016-01-25 | 1 | -0/+0 |
| | | |||||
| * | Types: misleading comment correction in example | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | |||||
| * | Types: Type size is now a property | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | |||||
| * | MemStruct/Types: example on type manipulations | Florent Monjalet | 2016-01-18 | 1 | -1/+23 |
| | | |||||
| * | MemStruct/Types: pinned renamed to lval | Florent Monjalet | 2016-01-18 | 1 | -0/+2 |
| | | |||||
| * | MemStruct/Types: Renamed analysis.mem to core.types | Florent Monjalet | 2016-01-18 | 1 | -6/+6 |
| | | |||||
| * | MemStruct: Pinned* renamed back to Mem* | Florent Monjalet | 2016-01-18 | 1 | -11/+11 |
| | | |||||
| * | MemStruct: Global doc update | Florent Monjalet | 2016-01-18 | 1 | -16/+22 |
| | | |||||
| * | MemStruct: allow Type instance in cast | Florent Monjalet | 2016-01-18 | 1 | -3/+3 |
| | | |||||
| * | MemStruct: Str type | Florent Monjalet | 2016-01-18 | 1 | -10/+10 |
| | | |||||
| * | MemStruct: Array/PinnedArray homogeneity | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | | | | | Array access logic has moved to Array, Pinned(Sized)Array just contains the logic to interface with memory | ||||
| * | MemStruct: big refactor in process | Florent Monjalet | 2016-01-18 | 1 | -14/+15 |
| | | | | | Doc is currently incoherent, impl will also be completed | ||||
| * | MemStruct: Big refactoring, Mem* -> Pinned* | Florent Monjalet | 2016-01-18 | 1 | -24/+24 |
| | | | | | | This commit is the first phase of the Type refactor. The PinnedType class has been separated from the more specific PinnedStruct class. | ||||
| * | MemStruct example: fix memset usage | Florent Monjalet | 2016-01-18 | 1 | -4/+2 |
| | | |||||
| * | MemStruct: fix example to use Ptr to MemSizedArray rather that Array | Florent Monjalet | 2016-01-18 | 1 | -3/+3 |
| | | |||||
| * | MemStruct: Fix MemStruct __eq__ | Florent Monjalet | 2016-01-18 | 1 | -1/+1 |
| | | |||||
| * | MemStruct: minor fixes + toy example script | Florent Monjalet | 2016-01-18 | 1 | -0/+229 |
| | | |||||
| * | X86: add pushfb | Fabrice Desclaux | 2015-12-23 | 1 | -1/+0 |
| | | |||||
| * | Autopep8 | Fabrice Desclaux | 2015-12-16 | 2 | -4/+4 |
| | | |||||
| * | Update api according to Elfesteem | Fabrice Desclaux | 2015-12-16 | 2 | -3/+8 |
| | | |||||
| * | Examples: set load_hdr to True for the sandbox in unpack_upx.py | Pierre LALET | 2015-12-13 | 1 | -1/+3 |
| | | |||||
| * | IR: replace `.g` with a lazy built `.graph`, avoiding the need of `gen_graph` | Ajax | 2015-12-07 | 7 | -22/+7 |
| | | |||||
| * | IR: use expr_is_label instead of ExprIsLabel | Camille Mougey | 2015-12-07 | 1 | -1/+1 |
| | | |||||
| * | Example/Disasm: update full.py to produce both IR and IRA graphes | Camille Mougey | 2015-12-07 | 1 | -0/+3 |
| | | |||||
| * | Sandbox: support additional options | Fabrice Desclaux | 2015-12-04 | 1 | -1/+1 |
| | | |||||
| * | Example/SymbolExec: write code more arch-independent | Ajax | 2015-11-09 | 1 | -16/+14 |
| | | |||||
| * | Example/SymbolExec: enhance and comment | Ajax | 2015-11-09 | 1 | -15/+27 |
| | | |||||
| * | Example: move output .txt to .dot | Ajax | 2015-11-09 | 10 | -20/+20 |
| | | |||||
| * | Merge pull request #254 from commial/keyword-disasm-cb | serpilliere | 2015-11-09 | 1 | -0/+67 |
| |\ | | | | | Keyword disasm cb | ||||