All Projects → rbspy → proc-maps

rbspy / proc-maps

Licence: other
Read virtual memory maps from another process

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to proc-maps

ProcessInjector.NET
Learning Process Injection and Hollowing techniques
Stars: ✭ 23 (-8%)
Mutual labels:  process
zenaton-node
⚡ Node.js library to run and orchestrate background jobs with Zenaton Workflow Engine
Stars: ✭ 50 (+100%)
Mutual labels:  process
Steam-Apps-Management-API
A basic Steam Application Management API and Valve Data Format (VDF) reader/writer.
Stars: ✭ 24 (-4%)
Mutual labels:  process
pidswallow
A swallower script using process hierarchy.
Stars: ✭ 40 (+60%)
Mutual labels:  process
MODIS
Download and processing framework for MODIS imagery. The package provides automated access to the global online data archives LP DAAC, LAADS and NSIDC as well as processing capabilities such as file conversion, mosaicking, subsetting and time series.
Stars: ✭ 48 (+92%)
Mutual labels:  process
pscircle
https://gitlab.com/mildlyparallel/pscircle visualizes Linux processes in a form of radial tree.
Stars: ✭ 33 (+32%)
Mutual labels:  process
bpmn-vue-activiti
基于Vue3.x + Vite + bpmn-js + element-plus + tsx 实现的Activiti流程设计器(Activiti process designer based on Vue3.x + Vite + BPMN-JS + Element-Plus + TSX implementation)
Stars: ✭ 345 (+1280%)
Mutual labels:  process
jobflow
runs stuff in parallel (like GNU parallel, but much faster and memory-efficient)
Stars: ✭ 67 (+168%)
Mutual labels:  process
fine
🧹 Gracefully shutdown Node.js application: help you handle exit signals and cleanup
Stars: ✭ 20 (-20%)
Mutual labels:  process
event-worker
A simpler way of dealing with Web Workers
Stars: ✭ 18 (-28%)
Mutual labels:  process
not-enough-standards
A modern header-only C++ library that provides platform-independent utilities.
Stars: ✭ 197 (+688%)
Mutual labels:  process
tracetree
A tool for capturing the execution of an entire process tree
Stars: ✭ 40 (+60%)
Mutual labels:  process
mackerel-plugin-linux-proc-stats
Linux processes metrics plugin for mackerel.io agent.
Stars: ✭ 13 (-48%)
Mutual labels:  process
workflower-bundle
A Symfony bundle for Workflower
Stars: ✭ 23 (-8%)
Mutual labels:  process
unshare
The low-level linux containers creation library for rust
Stars: ✭ 99 (+296%)
Mutual labels:  process
pwatch
Process watcher(pwatch)
Stars: ✭ 33 (+32%)
Mutual labels:  process
vmutils
cross platform library to manipulate and extract information of memory regions
Stars: ✭ 22 (-12%)
Mutual labels:  virtual-memory
prox
A Scala library for working with system processes
Stars: ✭ 93 (+272%)
Mutual labels:  process
jellex
TUI to filter JSON and JSON Lines data with Python syntax
Stars: ✭ 41 (+64%)
Mutual labels:  process
pyAHP
Python library to perform Analytic Hierarchy Process.
Stars: ✭ 105 (+320%)
Mutual labels:  process

proc-maps

Build Status crates.io docs.rs

This crate supports reading virtual memory maps from another process - and supports Linux, macOS, Windows, and FreeBSD operating systems.

Example:

use proc_maps::get_process_maps;

let maps = get_process_maps(pid)?;
for map in maps {
    println!("Filename {:?} Address {} Size {}", map.filename(), map.start(), map.size());
}

This code was originally developed by Julia Evans as part of the rbspy project: https://github.com/rbspy/rbspy.

Release under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].