/proc Filesystem (Live Process Data)

linuxMemory & Live StateMemory Dump

Location

/proc/<pid>/ (cmdline, exe, fd/, maps, environ, net/)

Description

Virtual filesystem exposing live kernel and process state including command-line arguments, executable path symlink, open file descriptors, memory maps, environment variables, and network connection tables.

Forensic Value

/proc is essential for live triage when a memory dump is not feasible. /proc/<pid>/exe reveals the true binary path even if the process renamed itself. /proc/<pid>/cmdline shows launch arguments. /proc/<pid>/fd/ exposes deleted-but-open files that can still be recovered via cp. /proc/net/tcp provides a live network connection table with owning process inode mapping for identifying C2 connections.

Tools Required

catls -lalsoffindcp

Related Blockers