Physical memory introspection framework
Project description
memflow-py
Python support for Memflow, a physical memory introspection framework written in Rust.
Installation
- Install python package:
pip install memflow
- Install appropriate memflow components (see memflowup).
Example
from memflow import *
from ctypes import *
class COFFHeader(Structure):
_fields_ = [
("_pad0x0", c_uint8 * 6),
("sections", c_uint16),
("timestamp", c_uint32),
]
def __str__(self):
return f"{self.sections}, {self.timestamp}"
inventory = Inventory()
os = inventory.os("native")
process = os.process_from_name("CalculatorApp.exe")
module = process.module_from_name("CalculatorApp.dll")
header = process.read(module.base + 0x40, COFFHeader)
print(header)
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.1.2-cp37-abi3-win_amd64.whl
(559.5 kB
view hashes)
Close
Hashes for memflow-0.1.2-cp37-abi3-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47184e9069e7a403f3844a2b5a90c6d80718e7c0298ef70cb1c21487999edc66 |
|
MD5 | ac592cbfc28d173c114d5eb92ed94efd |
|
BLAKE2b-256 | bb7031f11252ae2fe3da714cd37a75e433603bc5184258f6e8e4f964ee77a1f1 |
Close
Hashes for memflow-0.1.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3db182b873853bbbb10867f755deb962e33f387804dbb70eb2377af62daec47 |
|
MD5 | 4e56c2ac9efcab738961605bd174916e |
|
BLAKE2b-256 | f6f043cc64231889786db485fcac9acb176b7f2eda7f91d900d90ee53259207f |
Close
Hashes for memflow-0.1.2-cp37-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4292e6d824dd9e9f23c57d4b622ac3f6b874b09bc886b059203de6f6bdeafb7 |
|
MD5 | 84111efc75afd0312cdd6258aaff7405 |
|
BLAKE2b-256 | 0811f054840e16d889f0b86e8688bfe12452d3d6d99d47cc53e20a71e0b584d6 |