Virtualization & Setup · 1.2

⚙️ Hypervisors: VMware & VirtualBox

Your competition platform explained⏱ ~3 min

CyberPatriot competition images are distributed as VMware files (.vmx, .vmdk). You need a hypervisor to open them. Two main options exist:

VMware Workstation Pro (Recommended for Competition)

  • Now free for personal and educational use (since May 2024, after Broadcom acquired VMware)
  • Download from vmware.com — search for 'VMware Workstation Pro download'
  • Best compatibility with official CyberPatriot image files
  • Supports snapshots, drag-and-drop, shared folders, and VM isolation

VirtualBox (Free Alternative)

  • Made by Oracle, always free and open-source
  • Can open VMware .vmdk disks (with manual setup)
  • Great for practice and learning; use VMware for actual competition images

Important VMware Files — Don't Modify These!

File ExtensionWhat It IsWhy It Matters
.vmxVM configuration file — tells VMware how much RAM, what hardware to simulateOpening this file in VMware opens the VM
.vmdkVirtual disk file — the simulated hard drive with the OS and all dataCorrupt this = VM won't boot
.nvramVM's virtual BIOS settingsStores boot order and BIOS config for the guest
.vmss / .vmsnSnapshot filesStores saved VM states — don't delete
⚠ WarningNever rename or move individual VM files while the VM is running, and never delete .vmdk files. Always move the entire VM folder together.

Checksums — Verifying Your Download

Before each CyberPatriot round, teams must verify the checksum of downloaded images. A checksum is a mathematical fingerprint of a file.

  • If the downloaded file's checksum matches what CyberPatriot published → file is intact
  • If checksums differ → the file was corrupted or tampered with during download → re-download
  • Common algorithms: SHA-256 (most common today), MD5 (older, still used for verification)
powershell
# Windows — verify SHA-256 checksum
Get-FileHash 'C:\CyberPatriot\image.ova' -Algorithm SHA256
# Linux/Mac terminal
sha256sum image.ova
💡 TipThe CyberPatriot StartEx email will list the expected SHA-256 hash. Compare it character-by-character with the hash your system generates. They must match exactly.
🧠Quick Checkfirst try = +5 XP

Which file do you open in VMware to launch a competition image?

0 XP🔥 0 days