Produce a custody record for a stated scenario, with no gap in the timeline
Task
Write the custody record and the incident account for a scenario you construct. This is the applied lab for the objective because every hands-on version would involve handling regulated data or prohibited content, and the first rule of the objective is to stop rather than investigate -- so the artefact is the exercise.
Steps
- Write
lab/custody/scenario.mddescribing an invented situation: what you were asked to do, what you found, and the moment the job changed from a repair into something else. - Write
lab/custody/record.csvwith headerdatetime,event,item_identifier,person,location,signaturecovering discovery, securing, storage, and at least one handover -- with no gap in the timeline. - Write
lab/custody/account.mdas your written account: what you observed, when, what you did and what you did not do. Facts only, no conclusions about who or why. - Write
lab/custody/classes.csvwith headerdata_class,example_on_this_machine,obligationcovering at least five regulated data classes. - Write
lab/custody/stop.mdlisting what you did NOT do and why -- not opening files, not copying, not deleting, not powering the machine on or off, not telling colleagues.
Verify
awk -F, 'NR>1 && NF>=6 {n++} END {print n" custody event(s)"}' lab/custody/record.csv
awk -F, 'NR>1 {print $1}' lab/custody/record.csv | sort | head -1
awk -F, 'NR>1 && $6=="" {n++} END {print n" event(s) with no signature"}' lab/custody/record.csv
awk -F, 'NR>1 && NF>=3 {n++} END {print n" data class(es)"}' lab/custody/classes.csv
grep -Ec '^[-*0-9]' lab/custody/stop.md
grep -Eic 'did not open|did not copy|did not delete|did not power' lab/custody/stop.md
Four or more custody events with no unsigned row, five data classes, and a stop list naming at least one thing deliberately not done. An unsigned event is a gap, and a gap at the beginning cannot be filled in afterwards.
Notes
The record begins with the person who finds the item, which on a support desk is frequently you. It is not started later by an investigator, and that is the part people get wrong.
This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.