mirror of
https://github.com/cea-sec/miasm
synced 2026-08-17 10:26:03 -04:00
31 lines
878 B
Python
Executable file
31 lines
878 B
Python
Executable file
#! /usr/bin/env python2
|
|
#-*- coding:utf-8 -*-
|
|
from __future__ import print_function
|
|
import logging
|
|
from pdb import pm
|
|
|
|
from miasm.analysis.sandbox import Sandbox_Linux_arml
|
|
from miasm.core.locationdb import LocationDB
|
|
|
|
# Get arguments
|
|
parser = Sandbox_Linux_arml.parser(description="""Sandbox an elf binary with arm
|
|
engine (ex: jit_arm.py samples/md5_arm -a A684)""")
|
|
parser.add_argument("filename", help="ELF Filename")
|
|
parser.add_argument('-v', "--verbose", help="verbose mode", action="store_true")
|
|
options = parser.parse_args()
|
|
|
|
# Prepare the sandbox
|
|
loc_db = LocationDB()
|
|
sb = Sandbox_Linux_arml(loc_db, options.filename, options, globals())
|
|
|
|
# Handle 'verbose' option
|
|
if options.verbose is True:
|
|
logging.basicConfig(level=logging.INFO)
|
|
else:
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
if options.verbose is True:
|
|
print(sb.jitter.vm)
|
|
|
|
# Run the code
|
|
sb.run()
|