| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | append b to the opens mode ; Python on Windows makes a distinction between ↵ | w4kfu | 2018-01-16 | 1 | -3/+3 |
| | | | | | text and binary files | ||||
| * | Remove unused sandbox option | William Bruneau | 2017-12-15 | 1 | -2/+0 |
| | | |||||
| * | Let GCC be the default jitter | Ajax | 2017-04-21 | 1 | -2/+2 |
| | | |||||
| * | Introduce Sandbox.call, for direct function calling | Ajax | 2017-04-06 | 1 | -0/+71 |
| | | |||||
| * | Add command-line and enviornment-vars argument in Sandbox | Ajax | 2017-04-06 | 1 | -13/+146 |
| | | | | | | Note: lot of code is duplicated here, but due to Sandbox class hierarchy, merging them is not trivial (for now) | ||||
| * | Jitter/win: fix TIB accesses | Fabrice Desclaux | 2016-09-06 | 1 | -1/+1 |
| | | |||||
| * | Core/utils: autopep8 | Fabrice Desclaux | 2016-02-19 | 1 | -1/+1 |
| | | |||||
| * | Jitter/vm: Suppport memory comment | Fabrice Desclaux | 2016-02-19 | 1 | -3/+7 |
| | | |||||
| * | Remove unused variables | Ajax | 2016-02-04 | 1 | -2/+2 |
| | | |||||
| * | Fix dangerous-default-value | Ajax | 2016-01-30 | 1 | -1/+3 |
| | | |||||
| * | Sandbox/Win: remove unused option | Pierre LALET | 2015-12-13 | 1 | -2/+0 |
| | | |||||
| * | Sandbox/Win: fix -o/--load-hdr option | Pierre LALET | 2015-12-13 | 1 | -2/+3 |
| | | |||||
| * | Sandbox: default support hcurmodule | Fabrice Desclaux | 2015-12-04 | 1 | -2/+2 |
| | | |||||
| * | Sandbox: support additional options | Fabrice Desclaux | 2015-12-04 | 1 | -19/+21 |
| | | |||||
| * | jitter: fix dep dll | Fabrice Desclaux | 2015-12-04 | 1 | -4/+6 |
| | | |||||
| * | Sandbox: autopep | Fabrice Desclaux | 2015-12-04 | 1 | -27/+30 |
| | | |||||
| * | Loader: load PE and its dependencies | Fabrice Desclaux | 2015-12-04 | 1 | -7/+23 |
| | | |||||
| * | In interactive use, allow C-like prefixes to choose the base of integers | Aymeric Vincent | 2015-10-27 | 1 | -5/+5 |
| | | | | | | | | Use Python's int(s, 0) to allow string "s" to specify its base where addresses and offsets can be supplied. This change makes the situation homogeneous among the various examples and interactive usage. | ||||
| * | Sanbox/x86: fix default stack | Fabrice Desclaux | 2015-10-23 | 1 | -2/+2 |
| | | |||||
| * | Sandbox: add stack base manipulation | Fabrice Desclaux | 2015-10-05 | 1 | -0/+10 |
| | | |||||
| * | Add arch aarch64 | Fabrice Desclaux | 2015-08-08 | 1 | -0/+40 |
| | | |||||
| * | sandbox: refactored comments; creds to serpilliere | Tim Blazytko | 2015-07-06 | 1 | -2/+2 |
| | | |||||
| * | sandbox: added sandbox for Linux_x86_64 | Tim Blazytko | 2015-07-03 | 1 | -0/+24 |
| | | |||||
| * | Sandbox Win: add PE object to win_api_x86_32.winobjs | Pierre LALET | 2015-03-31 | 1 | -0/+2 |
| | | |||||
| * | Use wrapper `named_arguments` to log function calls | Pierre LALET | 2015-02-17 | 1 | -2/+2 |
| | | |||||
| * | PyLint: Remove unused-imports | Camille Mougey | 2015-02-16 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | miasm2/jitter/jitload.py:4: [W0611(unused-import), ] Unused import asmbloc miasm2/jitter/jitload.py:3: [W0611(unused-import), ] Unused import os miasm2/jitter/loader/elf.py:4: [W0611(unused-import), ] Unused import pe miasm2/ir/ir.py:27: [W0611(unused-import), ] Unused import DiGraph miasm2/ir/translators/z3_ir.py:6: [W0611(unused-import), ] Unused import m2_expr miasm2/core/parse_asm.py:5: [W0611(unused-import), ] Unused import struct miasm2/analysis/sandbox.py:8: [W0611(unused-import), ] Unused import libimp miasm2/analysis/sandbox.py:1: [W0611(unused-import), ] Unused import os miasm2/analysis/sandbox.py:5: [W0611(unused-import), ] Unused import win_api_x86_32 miasm2/analysis/sandbox.py:1: [W0611(unused-import), ] Unused import sys miasm2/expression/simplifications_cond.py:17: [W0611(unused-import), ] Unused import itertools miasm2/arch/arm/arch.py:5: [W0611(unused-import), ] Unused import pm miasm2/arch/x86/sem.py:23: [W0611(unused-import), ] Unused import expr_is_int_or_label miasm2/arch/mips32/arch.py:12: [W0611(unused-import), ] Unused import pm miasm2/arch/mips32/disasm.py:1: [W0611(unused-import), ] Unused import asm_constraint | ||||
| * | Sandbox: typo | Fabrice Desclaux | 2015-02-13 | 1 | -1/+1 |
| | | |||||
| * | Analysis/Sandbox: add sanbox win x86_64 | Fabrice Desclaux | 2015-02-13 | 1 | -5/+37 |
| | | |||||
| * | Merge pull request #59 from serpilliere/sandbox_quiet | Camille Mougey | 2015-02-10 | 1 | -3/+1 |
| |\ | | | | | Sandbox: quiet logs | ||||
| | * | Sandbox: quiet logs | Fabrice Desclaux | 2015-02-10 | 1 | -3/+1 |
| | | | |||||
| * | | Analysis/Sandbox: use os dependant method in custom sandboxes | Fabrice Desclaux | 2015-01-29 | 1 | -6/+16 |
| |/ | |||||
| * | Loader/PE: Update vm_load_pe_lib* APIs to take a VmMngr instance in input | Camille Mougey | 2014-12-24 | 1 | -1/+1 |
| | | |||||
| * | Analysis: Update vm_loads calls, avoid reimplemeting vm_load_pe_libs | Camille Mougey | 2014-12-20 | 1 | -16/+11 |
| | | |||||
| * | SandboxLinux: entry_point was inexistant, options.address was ignored | Camille Mougey | 2014-12-09 | 1 | -1/+3 |
| | | |||||
| * | Loader/libimp: update api | Fabrice Desclaux | 2014-12-08 | 1 | -5/+6 |
| | | |||||
| * | Sandbox: Fix debugging option | Camille Mougey | 2014-12-03 | 1 | -1/+1 |
| | | |||||
| * | Jitter: update API | Fabrice Desclaux | 2014-12-03 | 1 | -2/+5 |
| | | |||||
| * | Sandbox: log function calls by default; add -q option to disable it. | Fabrice Desclaux | 2014-11-17 | 1 | -0/+6 |
| | | |||||
| * | sandbox: missing import (tx to N.Pourcelot) | Fabrice Desclaux | 2014-10-16 | 1 | -0/+1 |
| | | |||||
| * | Sandbox: fix address as argument | Fabrice Desclaux | 2014-10-16 | 1 | -1/+1 |
| | | |||||
| * | Reg test: add arm jit little/big endian | Fabrice Desclaux | 2014-10-09 | 1 | -19/+70 |
| | | |||||
| * | Arch/jit: add endianess support jitters | Fabrice Desclaux | 2014-10-09 | 1 | -1/+1 |
| | | |||||
| * | Sandbox: add arm arch | Fabrice Desclaux | 2014-10-07 | 1 | -1/+38 |
| | | |||||
| * | Move os_dep out of the jitter module | Fabrice Desclaux | 2014-10-07 | 1 | -1/+1 |
| | | |||||
| * | Remove vm_ prefix /!\ API MODIF | Fabrice Desclaux | 2014-10-07 | 1 | -8/+8 |
| | | | | | | | | The jitter cpu/vm modules used an unecessary vm_ prefix for various api. jitter.cpu.vm_get_gpreg() => jitter.cpu.get_gpreg() jitter.vm.vm_get_mem... => jitter.vm.get_mem... | ||||
| * | Sandbox: Pass arguments to parser init | ajax | 2014-10-02 | 1 | -3/+4 |
| | | |||||
| * | Analysis: add sanbdox wrapper | Fabrice Desclaux | 2014-10-02 | 1 | -0/+304 |