diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-04 12:22:16 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-05 16:52:51 +0100 |
| commit | 26c1075723a02984da6d3bc7423c5c0c43082dc3 (patch) | |
| tree | b67e7b072439f84109bd39dad8ed7f3f135224f8 /example/jitter | |
| parent | bb675f5cb34a482c964249656d539e67718bd8dc (diff) | |
| download | miasm-26c1075723a02984da6d3bc7423c5c0c43082dc3.tar.gz miasm-26c1075723a02984da6d3bc7423c5c0c43082dc3.zip | |
Rename elfesteem loader
Diffstat (limited to '')
| -rwxr-xr-x | example/jitter/arm_sc.py | 2 | ||||
| -rw-r--r-- | example/jitter/run_with_linuxenv.py | 2 | ||||
| -rw-r--r-- | example/jitter/unpack_upx.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/example/jitter/arm_sc.py b/example/jitter/arm_sc.py index ddadbf29..9ff770ff 100755 --- a/example/jitter/arm_sc.py +++ b/example/jitter/arm_sc.py @@ -3,7 +3,7 @@ from miasm.core.utils import int_to_byte from miasm.analysis.sandbox import Sandbox_Linux_armb_str from miasm.analysis.sandbox import Sandbox_Linux_arml_str -from miasm.elfesteem.strpatchwork import StrPatchwork +from miasm.loader.strpatchwork import StrPatchwork from pdb import pm diff --git a/example/jitter/run_with_linuxenv.py b/example/jitter/run_with_linuxenv.py index 0237cc94..f981d2dd 100644 --- a/example/jitter/run_with_linuxenv.py +++ b/example/jitter/run_with_linuxenv.py @@ -2,7 +2,7 @@ from argparse import ArgumentParser import logging import re -from miasm.elfesteem import elf as elf_csts +from miasm.loader import elf as elf_csts from miasm.os_dep.linux import environment, syscall from miasm.analysis.machine import Machine diff --git a/example/jitter/unpack_upx.py b/example/jitter/unpack_upx.py index 05d28b16..3b8125f4 100644 --- a/example/jitter/unpack_upx.py +++ b/example/jitter/unpack_upx.py @@ -2,7 +2,7 @@ from __future__ import print_function import os import logging from pdb import pm -from miasm.elfesteem import pe +from miasm.loader import pe from miasm.analysis.sandbox import Sandbox_Win_x86_32 # User defined methods |