NCAE Mapping Hub
Overview Scoreboard Data Roles Exercised Checklists Lessons Skill Drills Practice Terminal Progress
published priority 8 10 min. 30 XP.

The addict_with_a_pen.data Trick. A Free-Points Exercise

At the 2026-03-14 regional, ZERO teams scored any SMB Read uptime. The reason: the scoring engine looks for a file called `addict_with_a_pen.data` on the `files` share, and the competition image doesn't ship with it. Creating an empty file with the right permissions takes 30 seconds and exceeds the field.

Objectives

Quick reference

CommandPurpose
testparm -s | awk '/^\\[files\\]/,/^\\[/' | awk '/path = /{print $3; exit}' Find the share path
touch <path>/addict_with_a_pen.data Create the file
chmod 644 <path>/addict_with_a_pen.data World-readable
chown nobody:nogroup <path>/addict_with_a_pen.data Samba-compatible owner
smbclient //localhost/files -U keons -c 'ls addict_with_a_pen.data' Verify visibility

Common pitfalls

Skill drills

  1. 1. What command creates an empty file instantly?
    touch
  2. 2. Octal mode for world-readable file, no write?
    644
  3. 3. What Samba tool shows you the parsed smb.conf?
    testparm

NCAE scoreboard patterns this lesson prevents