Skip to main content

Physical memory introspection framework

Project description

memflow-py

Python support for Memflow, a physical memory introspection framework written in Rust.

Installation

  1. Install python package: pip install memflow
  2. Install appropriate memflow components (see memflowup).

Example

from memflow import *

class COFFHeader(Structure):
    _fields_ = [
        ("_pad0x0", c_byte * 6),
        ("sections", c_short),
        ("timestamp", c_uint32),
    ]

inventory = Inventory()
os = inventory.create_os("native")
process = os.process_from_name("CalculatorApp.exe")
module = process.module_by_name("CalculatorApp.dll")
header = process.read(module.base + 0x40, COFFHeader)
print(header)

Building from source

Prerequisites

Steps

  1. Fetch repository: git clone https://github.com/memflow/memflow-py
  2. Install maturin package: pip install maturin
  3. Install dev packages: pip install '.[dev]'
  4. Create virtualenv virtualenv .
  5. Active virtualenv source ./bin/activate
  6. Build wheels and install package: maturin develop
  7. Repeat step 4 when you make changes to source.
  8. Install pytest pip install pytest
  9. Test your changes: python -m pytest

For more information on building please see Maturin.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

memflow-0.2.0-cp37-abi3-win_amd64.whl (623.6 kB view hashes)

Uploaded CPython 3.7+ Windows x86-64

memflow-0.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view hashes)

Uploaded CPython 3.7+ manylinux: glibc 2.17+ x86-64

memflow-0.2.0-cp37-abi3-macosx_10_12_x86_64.whl (837.4 kB view hashes)

Uploaded CPython 3.7+ macOS 10.12+ x86-64

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