ニューヨークの金融機関で発生した標的型フィッシング攻撃のフォローアップ調査において、フォレンジックアナリストは侵害されたエンドポイントのイベントログファイル形式の生データを解析し、タイムラインを検証します。シャットダウン前後に書き込み遅延が発生したかどうかを確認するため、イベントごとのタイムスタンプとファイルレベルのステータスフラグを区別する必要があります。この形式で、比較に必要なイベントごとのタイムスタンプを提供するコンポーネントはどれでしょうか?
正解:A
The correct answer is A because per-event timestamps are stored within the EVENTLOGRECORD structure, not in the file header. Microsoft's EVENTLOGRECORD definition includes fields such as TimeGenerated and TimeWritten, which provide the event-level timing needed to compare when an event occurred versus when it was written to the log. That is exactly what the question is asking for. By contrast, ELF_LOGFILE_HEADER and flags such as ELF_LOGFILE_HEADER_WRAP describe overall file-level state and logging conditions, not timestamps for individual event entries. CHFI v11 covers event log file format, EVENTLOGRECORD structure, and ELF_LOGFILE_HEADER structure, so this distinction is directly within scope. In a timeline validation scenario, analysts must separate the metadata that describes the health or status of the whole log file from the record fields that describe each event. Since the investigators need event-by-event timestamps to evaluate possible late writes around shutdown, the only correct component among the options is the EVENTLOGRECORD structure.