IHU Cybersecurity Exam Notes

Source: Juni_2026_Exams/Advance_Forensics/notes/00-focus-points.md

Focus Points - Source-Backed Priorities

Evidence Base

This priority list is based on:

The 2025 practical exam used a Windows VM and one executable, C:\Temp\sample.exe. Students had to provide screenshots for every answer.

Tier 1: Must Master

Spend about 60 percent of preparation time here.

Static PE triage

Be able to:

Primary tools:

Dynamic behavior with ProcMon

Be able to:

The 2025 exam specifically asked which files were created in C:\Temp and which thread IDs appeared.

API tracing and process injection

Master the purpose and sequence of:

  1. Target discovery/opening:

CreateToolhelp32Snapshot, Process32First/Next, OpenProcess, or process creation in a suspended state.

  1. Remote memory allocation/protection:

VirtualAllocEx, VirtualAlloc, VirtualProtect, NtAllocateVirtualMemory, or section-mapping APIs.

  1. Payload/path writing or mapping:

WriteProcessMemory, NtCreateSection, NtMapViewOfSection, NtUnmapViewOfSection.

  1. Execution:

CreateRemoteThread, NtCreateThreadEx, QueueUserAPC, SetThreadContext, ResumeThread, or related thread APIs.

Primary tools:

Do not memorize only one β€œcorrect” API chain. The lecture and 2025 answer use multiple injection variants.

Evidence reporting

Every answer should contain:

Spend about 30 percent of preparation time here.

Hashing and file identification

PE and memory structure

Persistence

Network behavior

Tier 3: Learn After the Practical Workflow

Spend about 10 percent of preparation time here:

These topics matter, but the verified 2025 exam rewarded practical tool use, API interpretation, and screenshots.

Tool Mastery Test

You are ready when you can perform this from a clean VM snapshot:

  1. Hash a sample and identify its type.
  2. Inspect it in CFF Explorer and DiE.
  3. justify whether it is packed using at least two indicators.
  4. Start ProcMon, clear events, configure useful filters, and execute safely.
  5. List created/deleted files with full paths.
  6. Run APIMiner and locate injection-related APIs and parameters.
  7. Use Process Hacker/ProcMon to identify target processes, PIDs, and TIDs.
  8. Produce a short PDF answer with readable screenshots.
  1. Lab isolation and snapshots.
  2. Hashes and file type.
  3. PE headers, sections, imports, strings, and resources.
  4. Packing and entropy.
  5. ProcMon filtering and Process Hacker.
  6. APIMiner/API Monitor.
  7. Process injection stages and API families.
  8. Persistence.
  9. FakeNet and Wireshark.
  10. Timed reconstruction of the 2025 exam.

See: