Section 3: Memory Forensics

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:50 PM on 6/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

Why is memory forensics essential?

It recovers volatile evidence that never touches the disk, such as injected code, decrypted data, network connections, and credentials.

2
New cards

What is a key sign of code injection to look for in memory?

A memory section with Execute-Read-Write (RWX) permissions that is not backed by a legitimate file on disk.

3
New cards

What is process hollowing?

Starting a legitimate process in a suspended state and replacing its memory with malicious code before resuming it.

4
New cards

What is a rootkit?

Malware designed to hide its presence and maintain control by subverting core OS functions at a low level.

5
New cards

What is DKOM (Direct Kernel Object Manipulation)?

A rootkit technique that hides artifacts (like processes) by unlinking them from the kernel's internal lists.

6
New cards

What is the difference between pslist and psscan in Volatility?

pslist reads the standard linked list of processes; psscan searches memory byte-by-byte for unlinked/hidden process structures.

7
New cards

What Volatility plugin is best for finding hidden processes using cross-view analysis?

psxview.

8
New cards

What does the Volatility 'malfind' plugin do?

It scans for signs of code injection by finding suspicious memory regions, such as those with RWX permissions.

9
New cards

What is hiberfil.sys?

A hibernation file that can contain compressed RAM data, serving as an alternative source for memory forensics.

10
New cards

Why must memory be captured from a running system?

Because RAM contents are volatile and disappear entirely upon shutdown.

11
New cards