diff options
| author | Pierre LALET <pierre.lalet@cea.fr> | 2019-02-27 20:29:44 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-05 16:52:51 +0100 |
| commit | d3a42fa5dcdb0c467586eb6b92271fa4dbeb648b (patch) | |
| tree | b5ca14f60ad2a10148990ffc30e4bad8f49c9283 /miasm/analysis/binary.py | |
| parent | 944806c506446c918eb74c17a605f5f56d4b75e0 (diff) | |
| download | focaccia-miasm-d3a42fa5dcdb0c467586eb6b92271fa4dbeb648b.tar.gz focaccia-miasm-d3a42fa5dcdb0c467586eb6b92271fa4dbeb648b.zip | |
Include elfesteem fork in miasm
Diffstat (limited to 'miasm/analysis/binary.py')
| -rw-r--r-- | miasm/analysis/binary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/analysis/binary.py b/miasm/analysis/binary.py index 82f83112..6dc095cf 100644 --- a/miasm/analysis/binary.py +++ b/miasm/analysis/binary.py @@ -131,7 +131,7 @@ class ContainerPE(Container): def parse(self, data, vm=None, **kwargs): from miasm.jitter.loader.pe import vm_load_pe, guess_arch - from elfesteem import pe_init + from miasm.elfesteem import pe_init # Parse signature if not data.startswith(b'MZ'): @@ -178,7 +178,7 @@ class ContainerELF(Container): """ from miasm.jitter.loader.elf import vm_load_elf, guess_arch, \ fill_loc_db_with_symbols - from elfesteem import elf_init + from miasm.elfesteem import elf_init # Parse signature if not data.startswith(b'\x7fELF'): |