Skip to main content

A lightweight Android native library emulation framework for executing the pure algorithm.

Project description

Infernum

build PyPI PyPI - Python Version GitHub license

Infernum is a lightweight Android native library emulation framework based on Unicorn. It is mainly used to execute the pure algorithm, so it will not provide JNI or file system support. It supports arch ARM and ARM64.

Requirements

  • Python 3.7+
  • Unicorn 2.0.0+

Installation

$ pip install infernum

Examples

Load modules and call functions.

from infernum import Infernum
from infernum.const import ARCH_ARM64

# Initialize emulator
emulator = Infernum(ARCH_ARM64)

# Load modules
emulator.load_module("lib64/libz.so")

# Construct arguments
data = b"infernum"

a1 = 0
a2 = emulator.create_buffer(len(data))
a3 = len(data)

emulator.write_bytes(a2, data)

# Call function
result = emulator.call_symbol("crc32", a1, a2, a3)

emulator.logger.info(hex(result))

Trace instructions.

from infernum import Infernum
from infernum.const import ARCH_ARM64

# Trace all instructions.
emulator = Infernum(ARCH_ARM64, trace_inst=True)

# Trace instructions in this module.
emulator.load_module("lib64/libz.so", trace_inst=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

infernum-0.1.0.tar.gz (11.9 kB view hashes)

Uploaded Source

Built Distribution

infernum-0.1.0-py3-none-any.whl (12.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page