A security team suspects a data breach via an external attacker. The incident response plan requires preservation of evidence for legal proceedings. Which order of volatility should the first responder follow?
Trap 1: Capture disk image, then memory, then network connections.
This order violates the order of volatility by starting with disk, which is persistent, before capturing memory and active network connections. Memory holds live attacker artifacts—such as decrypted data, process memory, and injected code—that vanish immediately on power loss, while network sessions can terminate before a disk image completes. Additionally, running an acquisition tool on the live system while prioritizing disk can alter volatile evidence. Therefore, disk imaging must come after memory and network state are secured.
Trap 2: Record network connections, capture disk image, then memory.
This order incorrectly captures network connections before memory, but more critically it saves memory for last. Memory is the most volatile category and must be acquired first; active TCP/UDP connections are also volatile, but they can be re-identified from memory and later from packet captures, whereas the contents of RAM cannot be recovered after a reboot. Placing disk imaging before memory means the RAM image, which could contain the attacker's active tooling, encryption keys, or staged exfiltration data, is lost. The correct sequence is memory, then network state, then disk, not the reverse.
Trap 3: Collect backups first, then disk image, then memory.
This order is wrong on two counts: backups are the least volatile evidence and should be collected last, and memory is the most volatile and must be captured first. Collecting backups first adds significant time and I/O overhead, during which RAM and active sessions may be lost, and any pre-existing backups are unaffected by the incident timeline—so they pose no preservation urgency. Moreover, performing a disk image before memory means that the most volatile evidence is gone, making this sequence ineffective for capturing an ongoing breach.
- A
Capture disk image, then memory, then network connections.
Why wrong: This order violates the order of volatility by starting with disk, which is persistent, before capturing memory and active network connections. Memory holds live attacker artifacts—such as decrypted data, process memory, and injected code—that vanish immediately on power loss, while network sessions can terminate before a disk image completes. Additionally, running an acquisition tool on the live system while prioritizing disk can alter volatile evidence. Therefore, disk imaging must come after memory and network state are secured.
- B
Record network connections, capture disk image, then memory.
Why wrong: This order incorrectly captures network connections before memory, but more critically it saves memory for last. Memory is the most volatile category and must be acquired first; active TCP/UDP connections are also volatile, but they can be re-identified from memory and later from packet captures, whereas the contents of RAM cannot be recovered after a reboot. Placing disk imaging before memory means the RAM image, which could contain the attacker's active tooling, encryption keys, or staged exfiltration data, is lost. The correct sequence is memory, then network state, then disk, not the reverse.
- C
Capture memory, record network connections, acquire disk image, then collect backups.
This is the correct order of volatility: memory first because RAM contains live evidence like decryption keys, running processes, and transient malware that disappears on shutdown; network connections second because they show active command-and-control sessions and can vanish with session teardown; disk image third because persistence preserves it for later analysis; and backups last because they are the least volatile and can be obtained at any time. This sequence maximizes evidence preservation and aligns with RFC 3227 and NIST forensic guidelines, while also supporting a defensible chain of custody.
- D
Collect backups first, then disk image, then memory.
Why wrong: This order is wrong on two counts: backups are the least volatile evidence and should be collected last, and memory is the most volatile and must be captured first. Collecting backups first adds significant time and I/O overhead, during which RAM and active sessions may be lost, and any pre-existing backups are unaffected by the incident timeline—so they pose no preservation urgency. Moreover, performing a disk image before memory means that the most volatile evidence is gone, making this sequence ineffective for capturing an ongoing breach.