Week 02 concept image
Image resource included with the original Week 02 material.
Evidence classification, evidential value, digital evidence examples, concept mapping, and acquisition thinking.
Weekly focus
Learning outcomes
Teaching assets
Image resource included with the original Week 02 material.
In this activity, students create a concept map individually, in pairs, or in groups to show the relationships between different types of evidence and their significance in legal investigations. Evidence can be classified by its form and by its evidential value. In digital forensics, investigators usually combine multiple types of evidence to build a strong and reliable case.
Physical evidence refers to tangible items that can be seen or touched.
Examples:
Significance: It helps connect a person, place, or object to an incident.
Real evidence is the actual object involved in the event. It is often a type of physical evidence.
Examples:
Significance: It represents the original item directly linked to the case.
Documentary evidence includes written or recorded documents used as proof. It may exist in paper or electronic form.
Examples:
Significance: It helps prove communication, ownership, transactions, intent, or agreements.
Digital evidence is any information stored, transmitted, or created in digital form that can be used in an investigation.
Examples:
Significance: This is the most important category in digital forensics because modern crimes often leave a digital trace. Digital evidence can reveal actions, timelines, identities, communication, and system activity.
Direct evidence proves a fact without needing much inference.
Examples:
Significance: It is highly valuable because it directly supports the fact being investigated.
Indirect evidence, also called circumstantial evidence, does not directly prove a fact but points to it through reasoning.
Examples:
Significance: It helps investigators build the overall story of the case by connecting facts and patterns.
In digital forensics, digital evidence is usually the most important because it directly relates to devices, systems, networks, and online activity. However, its value becomes even stronger when supported by other evidence such as:
The most important category in digital forensics is digital evidence, but the strongest investigations combine multiple evidence types together.
A company reports that confidential files were stolen from its office.
Investigators collect the following:
| Evidence Type | Item |
|---|---|
| Physical evidence | A damaged office door |
| Real evidence | The employee's laptop |
| Documentary evidence | An email warning about suspicious activity |
| Digital evidence | Login logs, CCTV footage, and file access records |
| Direct evidence | CCTV showing an employee entering the office at midnight |
| Indirect evidence | Browser history showing searches on how to copy files without detection |
Conclusion: This case shows that different evidence types work together. The CCTV provides direct evidence, the logs and search history provide indirect evidence, the laptop is real evidence, and the email is documentary evidence. The digital evidence is especially important because it helps reconstruct what happened, when it happened, and who may have been involved.
mindmap
root((Evidence))
By Form
Physical Evidence
Tangible objects
Fingerprints
Blood
Weapon
Damaged device
Real Evidence
Actual object involved
Laptop
Mobile phone
USB drive
Hard drive
Documentary Evidence
Written or recorded proof
Contracts
Receipts
Emails
Reports
Digital Evidence
Electronic data
Chats
CCTV
Photos
GPS data
Logs
Metadata
By Evidential Value
Direct Evidence
Proves fact directly
CCTV showing theft
Confession recording
Email admitting fraud
Indirect Evidence
Suggests fact by inference
Login records
Search history
GPS location
Call logs
flowchart TD
A[Evidence] --> B[Evidence by Form]
A --> C[Evidence by Evidential Value]
B --> D[Physical Evidence]
B --> E[Real Evidence]
B --> F[Documentary Evidence]
B --> G[Digital Evidence]
D --> D1[Fingerprints]
D --> D2[Blood]
D --> D3[Damaged Device]
E --> E1[Laptop]
E --> E2[Phone]
E --> E3[USB Drive]
F --> F1[Contracts]
F --> F2[Receipts]
F --> F3[Emails]
F --> F4[Reports]
G --> G1[Chats]
G --> G2[CCTV]
G --> G3[GPS Data]
G --> G4[Logs]
G --> G5[Metadata]
C --> H[Direct Evidence]
C --> I[Indirect Evidence]
H --> H1[Video of Theft]
H --> H2[Confession Recording]
H --> H3[Email Admission]
I --> I1[Search History]
I --> I2[Login Records]
I --> I3[Location History]
Evidence in legal and digital investigations can be organised by form and by evidential value. In digital forensics, digital evidence is the most important type because it captures electronic activity and system traces. However, the strongest legal cases are built by combining digital, documentary, physical, real, direct, and indirect evidence together.
Classify each item as the most appropriate evidence type.
| # | Item | Answer | Reason |
|---|---|---|---|
| 1 | CCTV shows student entering office | Direct evidence | It directly shows the action. |
| 2 | Actual USB drive containing the exam paper | Real evidence | It is the actual object involved. Also digital evidence, but real evidence is the best answer. |
| 3 | Printed copy of exam paper | Documentary evidence | It is a document used as proof. |
| 4 | System log shows account access | Digital evidence | Electronically stored system data. May also support indirect evidence. |
| 5 | Email saying "I got the exam paper" | Direct evidence | A direct admission. Also digital and documentary, but direct evidence is the strongest classification. |
| 6 | Fingerprints on filing cabinet | Physical evidence | A tangible trace collected from the scene. |
| 7 | Browser history about password-protected files | Indirect evidence | Suggests involvement but does not directly prove the theft. |
| 8 | Student's laptop used to copy the file | Real evidence | The actual object used in the incident. |
| 9 | Handwritten note saying "Print two copies before morning" | Documentary evidence | Written evidence. |
| 10 | Phone location data near the office | Indirect evidence | Places the student near the scene but does not directly show the act. |
Digital data acquisition is the process of collecting data from a digital device in a way that preserves evidence.
The main goals are:
In digital forensics, acquisition is often the first and most critical stage, because poor acquisition can damage or invalidate later analysis.
Physical acquisition means collecting a bit-by-bit copy of the entire storage medium.
This includes:
What it captures:
Why it is useful:
Limitations:
Logical acquisition means copying the files and folders visible through the operating system or file system.
What it captures:
Usually not included:
Why it is useful:
Limitations:
File-system acquisition sits between logical and physical acquisition. It collects file system structures plus files, without always capturing every raw disk sector.
What it typically includes:
Why it is useful:
| Level | What Is Captured | Best For |
|---|---|---|
| Physical | Entire raw disk, all sectors | Full forensic analysis, deleted file recovery |
| File-system | File system structures + metadata | More than logical; less than raw |
| Logical | Visible files and folders only | Speed, live systems, cloud |
Copies every readable bit or sector from the source device to an image file.
Common formats: RAW/DD, E01, AFF, AFF4
Benefits:
The source drive is copied into one or more forensic image files.
Example:
laptop SSD → evidence.E01
Common because image files are easier to store, hash, verify, and analyse.
The source is copied directly to another physical disk.
Example:
suspect drive → forensic target drive
Useful for quick operational duplication, but image files are generally preferred in forensics.
Only selected areas are collected — e.g., used sectors only, specific partitions, or user directories.
Useful when storage is very large, time is limited, or triage is needed.
Imaging while the system is still powered on.
Needed when:
Risk: the system is changing while you collect from it.
| Format | Pros | Cons |
|---|---|---|
| RAW / DD | Simple, widely supported, exact sector copy | No compression, no metadata container, large size |
| E01 | Compression, segmentation, metadata fields, checksums | Proprietary origins (though widely supported) |
| AFF / AFF4 | Metadata support, compression, extensible | Less universally supported |
dd / dcfldd / dc3ddStage 1 — Preparation
└─ Identify device, obtain legal authority, prepare tools, label evidence
Stage 2 — Preservation
└─ Isolate device, use write blocker, document state
Stage 3 — Documentation
└─ Photograph device, note screen state, record serial numbers
Stage 4 — Acquisition
└─ Physical / logical / file-system / live capture
└─ Memory capture if system is running
Stage 5 — Verification
└─ Hash source and image (MD5 / SHA1 / SHA256)
└─ Confirm hash match to prove integrity
Stage 6 — Storage
└─ Secure evidence, maintain chain of custody
Stage 7 — Analysis
└─ Parse artefacts, recover deleted data, build timeline
A write blocker is a hardware or software mechanism that allows reading from a device but prevents any writes to the source.
Why it matters: Without write blocking, simply attaching a drive to a normal computer may alter last-accessed timestamps, system metadata, logs, and hidden system files.
| Type | Notes |
|---|---|
| Hardware write blocker | Physical device between evidence drive and examiner machine — most trusted |
| Software write blocker | Software-based protection — less trusted in court settings |
| Cloning | Imaging | |
|---|---|---|
| Result | A second physical drive | One or more forensic image files (.E01, .dd) |
| Used for | Operational duplication, working copies | Forensic preservation, case documentation |
| Verification | Harder | Easy — hash and compare |
| Storage | Requires another physical disk | Stored as files |
In forensics, imaging is generally preferred because it is easier to preserve, hash, and document.
Chain of custody is the documented history of how evidence was handled.
It answers:
Why it matters: If chain of custody is weak, the defence may argue that evidence was altered, tampered with, or is not from the original source.
Typical chain-of-custody record includes:
Think of it as the legal tracking log for evidence.
A live system is a computer or device that is still powered on and running when examined.
Some evidence exists only while the machine is running:
Powering off causes this volatile evidence to disappear permanently.
Collect data in this approximate order (most volatile first):
Live acquisition is powerful but must be carefully documented.
Capturing the contents of RAM can reveal:
Tools: WinPMEM, DumpIt, Magnet RAM Capture, Belkasoft RAM Capturer, LiME (Linux)
Analysis tools: Volatility, Rekall
| Static Forensics | Live Forensics | |
|---|---|---|
| When | After shutdown, from image | While system is running |
| Benefits | Controlled, repeatable, lower risk of altering evidence | Captures volatile data; essential for encrypted systems |
| Drawbacks | Loses volatile evidence | Changes the system; requires careful documentation |
Recovering data using structures the file system already maintains, such as:
The forensic tool reads the file system's own records to find file names, deleted entries, timestamps, cluster locations, and permissions.
Best when:
| Method | How It Works | Best When |
|---|---|---|
| Physical recovery | From raw disk image | Full analysis needed |
| File-system recovery | Uses file system structures and metadata | FS is mostly intact |
| File carving | Scans raw bytes for file signatures (e.g. %PDF, JPEG header) |
No metadata remains |
File carving ignores the file system entirely. Recovered files may lose their original name, folder path, and timestamps. Fragmented files may recover poorly.
Encryption changes the acquisition strategy significantly.
| Device State | Situation |
|---|---|
| Powered off | You may get only encrypted raw data — largely unusable without the key |
| Powered on and unlocked | Live acquisition can access decrypted volumes, memory-resident keys, and open files |
This is a key reason why investigators sometimes avoid immediate shutdown.
| Method | Advantages | Disadvantages |
|---|---|---|
| Physical | Most complete; supports deleted data recovery; best for deep analysis | Slower; larger; sometimes impossible on modern or live systems |
| Logical | Fast; simple; practical for live and cloud systems | Misses deleted and raw artefacts |
| File-system | Richer than logical; often practical where physical is difficult | Not full raw disk coverage |
| Live | Captures volatile data; essential for encrypted systems | Alters the system; requires careful documentation |
Scenario: Investigators seize a Windows laptop.
If powered off:
If powered on and logged in:
The decision depends on encryption status, volatility risk, legal scope, and incident-response urgency.
Preserve first. Analyse second.
Digital acquisition techniques are used to collect evidence from devices in a forensically sound way. Physical acquisition captures the entire storage medium bit by bit, including deleted data and unallocated space. Logical acquisition captures only files and folders visible through the operating system. File-system acquisition captures the file system's structures and metadata, giving more detail than logical but less than full raw imaging.
Imaging creates forensic copies in formats such as RAW or E01, while cloning copies one disk directly to another. Chain of custody is the documentation proving who handled evidence and when. In live systems, investigators may collect RAM, running processes, and decrypted data without shutting down, but this must be done carefully because it changes the system.
The overall goal is always to preserve integrity, collect relevant evidence, and support reliable analysis.