Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.
/ MemMapExplorer Public archive

Interactive terminal-based utility for exploring Linux process memory maps and loaded libraries via /proc/. Supports filtering, full path display, and color-coded navigation.

Notifications You must be signed in to change notification settings

frapank/MemMapExplorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MemMapExplorer Release Version

MemMapExplorer is a Linux utility for inspecting and visualizing process memory maps via the native /proc/ interface. It provides an interactive terminal-based interface to explore loaded libraries, memory segments, and mappings, with filtering and navigation capabilities.

Screenshot

Features

  • Interactive interface with keyboard navigation
  • Structured memory map visualization for processes
  • Filter loaded modules by name
  • Option to show full path or only filenames

Prerequisites

Before building or running MemMapExplorer, ensure the following dependencies are installed:

  • Linux system (Kernel 4.4 or later)
  • Ncurses library (libncurses-dev)
  • Modern C++ compiler supporting C++23

Building and Running

# Clone the repository
git clone https://github.com/ItalianG0urmet/MemMapExplorer.git
cd MemMapExplorer

# Create build directory
mkdir build && cd build

# Configure with CMake
cmake ..

# Compile the project
make

# Run the application
./dumper -p <PID> [-f <filter>] [-a]

Usage

Option Description Example
-p Specify the target PID -p 1234
-f Filter modules by substring -f "libc"
-a Show full file paths (default: filename only) -a

Keyboard navigation inside the interface:

  • ↑ / k → Scroll up
  • ↓ / j → Scroll down
  • q → Quit the interface
  • r → Reload
  • p → Toggle paths
  • / → Change filter

Testing

MemMapExplorer includes automated tests for core components (PID validation, argument parsing, and memory map processing) using GoogleTest:

# Enable tests
cmake -DENABLE_TESTS=ON ..
make
ctest

About

Interactive terminal-based utility for exploring Linux process memory maps and loaded libraries via /proc/. Supports filtering, full path display, and color-coded navigation.

Topics

Resources

Stars

Watchers

Forks