Mission 57

Redaction notes

Write a safe note that marks sensitive data as redacted.

Text and logs
7 minutes Core Lesson 57 of 360
echogrepcat
Lesson 57 of 360 0/360 lessons 0/17 missions Text and logs · 7 minutes
0%
Continue View profile
Ops lab terminal Training lab
New learnerrank 0XP 0%complete
learner@clairos:/home/learner $ Unix ops lab: type a command, press Enter
Instructions 7 minutes

Click any instruction for the command details, the why, and the common mistake to avoid.

Write redacted note

Run echo token=redacted > lab-redaction.txt.

echo token=redacted > lab-redaction.txt
Search redacted

Run grep redacted lab-redaction.txt.

grep redacted lab-redaction.txt
Read redacted note

Run cat lab-redaction.txt.

cat lab-redaction.txt
Lesson support

What to notice while you play.

Objective

Practice writing notes with redacted values.

Hint

Write token=redacted, then search it.

Why it matters

Good notes preserve facts without spreading secrets.

Common mistakes
  • Copying tokens into notes.
  • Forgetting to verify what you wrote.
Reference

Commands in this lesson.

echo <text>

Print text or write lab notes with >.

cat <file>

Print text file contents.

grep [-i] <text> <file>

Find literal text inside a file.