IHU Cybersecurity Exam Notes

Source: Juni_2026_Exams/Advance_Forensics/solutions/exam-answer-template.md

📝 Exam Answer Template

Use This for Practice & Exam

Copy this template for each practice question or exam question.


Question X

Question: [Copy exact question text here]


Tool used: [Which tool? FTK Imager, Registry Explorer, MFT Explorer, DCode, LNK Analyzer, etc.]

Artifact: [What registry hive or file? SOFTWARE, SYSTEM, SAM, NTUSER.DAT, $MFT, .lnk files, etc.]

Path: [Full path to registry key or file location]

Example: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner
Example: C:\Users\[Username]\AppData\Roaming\Microsoft\Windows\Recent\
Example: HKLM\SYSTEM\CurrentControlSet\Control\Windows\ShutdownTime

Steps performed:

  1. [First step - what did you do?]
  2. [Second step]
  3. [Third step]
  4. [Fourth step]
  5. [Fifth step - continue as needed]

Evidence found: [What did you actually find? Quote values, note paths, describe findings]

Example:
RegisteredOwner = "John Doe"
ProductName = "Windows 10 Pro"
InstallDate = 1577836800 (raw value)

Conversion/Interpretation: [If needed, show conversion work]

Example for timestamps:
Raw value: 1577836800
Tool: DCode
Format: Unix timestamp
Converted: 2020-12-31 12:00:00 UTC
Local time (CET): 2020-12-31 13:00:00 CET (UTC+1)

Final answer: [Your answer to the question - be specific and concise]


Confidence: [ ] High [ ] Medium [ ] Low

Why this confidence level: [Explain your confidence - direct evidence, no interpretation needed, etc.]


Additional notes: [Any important context or limitations]

Example:
- Verified timestamp is not spoofed (created < modified)
- File still exists in MFT (not completely deleted)
- No conflicting evidence found
- Checked all user accounts, only John Doe found

Completed Example

Question: Who is the registered owner of this computer and when was Windows installed?


Tool used: Registry Explorer + DCode

Artifact: SOFTWARE hive (from HKLM)

Path:

HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\RegisteredOwner
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\InstallDate

Steps performed:

  1. Opened forensic image in FTK Imager
  2. Navigated to C:\Windows\System32\config\
  3. Right-clicked SOFTWARE file → Export → Exported to D:\Evidence\Registry\
  4. Opened Registry Explorer
  5. File → Open Registry Hive → Selected D:\Evidence\Registry\SOFTWARE
  6. Navigated to Microsoft\Windows NT\CurrentVersion
  7. Found RegisteredOwner = "John Doe"
  8. Found InstallDate = "1577836800"
  9. Opened DCode
  10. Selected Unix timestamp input format
  11. Pasted 1577836800
  12. Converted to 2020-12-31 12:00:00 UTC

Evidence found:

Registry Path: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion
Value: RegisteredOwner = "John Doe"
Value: ProductName = "Windows 10 Pro"
Value: InstallDate = 1577836800 (Unix timestamp)

Conversion/Interpretation:

Raw value: 1577836800
Tool: DCode
Format: Unix timestamp (seconds since 1970-01-01)
Converted: 2020-12-31 12:00:00 UTC
Local time (CET): 2020-12-31 13:00:00 CET (UTC+1)

Final answer: The computer is registered to John Doe and Windows was installed on December 31, 2020 at 12:00 UTC (13:00 CET). The system is running Windows 10 Pro.


Confidence: [X] High [ ] Medium [ ] Low

Why this confidence level: Direct registry values with no interpretation needed. RegisteredOwner is a simple string value. InstallDate was successfully converted using DCode. No conflicting evidence. This is basic system information stored in the primary registry location.


Additional notes:


Tips for Using This Template

Before Starting

While Working

After Finding Answer

Final Review


Common Answer Mistakes to Avoid

Mistake 1: Not citing evidence

Wrong: "The owner is John Doe"
Right: "The owner is John Doe (found in SOFTWARE hive, RegisteredOwner value)"

Mistake 2: Forgetting to convert timestamps

Wrong: "InstallDate = 1577836800"
Right: "InstallDate = 1577836800 (converted: 2020-12-31 12:00 UTC)"

Mistake 3: Wrong timezone or missing timezone

Wrong: "Shut down at 18:45"
Right: "Shut down at 18:45 UTC (20:45 CET local time)"

Mistake 4: Not explaining the tool used

Wrong: "The file was deleted"
Right: "The file was deleted (found in MFT with status flag: DELETED)"

Mistake 5: Incomplete steps

Wrong: "I checked the registry"
Right: "I exported the SYSTEM hive, opened it in Registry Explorer, navigated to CurrentControlSet\Control\Windows, and found the ShutdownTime value"

Quick Checklist

Before submitting each answer:


Last Updated: June 15, 2026