During a forensic examination of an NTFS drive, an investigator finds that a file 'notes.txt' has an additional data stream named 'hidden.txt' attached. Which feature of NTFS allows this?
ADS allows hiding data in separate streams attached to a file.
Why this answer
C is correct because NTFS supports Alternate Data Streams (ADS), a feature that allows multiple data streams to be associated with a single file. The 'hidden.txt' stream attached to 'notes.txt' is a classic example of ADS, which can be used to hide data or store metadata without affecting the file's primary content.
Exam trap
The trap here is that candidates confuse ADS with slack space or the MFT, thinking that any hidden data in NTFS must be in slack space or metadata, when ADS is the specific feature for named additional streams.
How to eliminate wrong answers
Option A is wrong because the USN Journal (Update Sequence Number Journal) is a log of changes to files on an NTFS volume, not a mechanism for attaching additional data streams. Option B is wrong because the Master File Table (MFT) is a database that stores metadata about files and directories, but it does not directly enable the attachment of extra data streams; ADS is a separate NTFS feature. Option D is wrong because slack space refers to unused bytes at the end of a file's allocated cluster, which can store hidden data but is not a feature for attaching named data streams like ADS.