nerdexam
EC-Council

312-49 · Question #662

A Linux system is undergoing investigation. In which directory should the investigators look for its current state data if the system is in powered on state?

The correct answer is B. /proc. /proc is a pseudo-filesystem (procfs) in Linux that exists only in RAM and is dynamically populated by the kernel. It exposes real-time system state: running processes (/proc/[PID]/), open file descriptors, network connections (/proc/net/), memory usage (/proc/meminfo), CPU…

Submitted by mike_84· Apr 18, 2026Computer Forensics Investigation Process

Question

A Linux system is undergoing investigation. In which directory should the investigators look for its current state data if the system is in powered on state?

Options

  • A/auth
  • B/proc
  • C/var/log/debug
  • D/var/spool/cron/

How the community answered

(60 responses)
  • A
    2% (1)
  • B
    92% (55)
  • C
    3% (2)
  • D
    3% (2)

Explanation

/proc is a pseudo-filesystem (procfs) in Linux that exists only in RAM and is dynamically populated by the kernel. It exposes real-time system state: running processes (/proc/[PID]/), open file descriptors, network connections (/proc/net/), memory usage (/proc/meminfo), CPU info, and more. Since it is volatile and only exists while the system is running, investigators must collect from /proc before powering off. /var/log/debug contains logged debug messages, /var/spool/cron/ contains scheduled cron jobs, and /auth is not a standard Linux directory.

Topics

#Linux Forensics#Live Forensics#Filesystem#System State

Community Discussion

No community discussion yet for this question.

Full 312-49 Practice