Linux Lore
Overview
Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025
Objective
Locate McSkidy’s hidden message in his Linux home directory.
Table of Contents
Introduction
Walk Through
Lessons Learned
Resources
Introduction
TBFC's delivery drones are malfunctioning and dropping eggs instead of presents. McSkidy's last login originated from a Linux server, and investigating his account may reveal the cause. Mastering Linux search capabilities is essential for defenders, as Linux powers most servers worldwide.
Useful Commands
ls list files in a directory
ls -l list files in a directory, shown as a list
ls -a list all files in a directory including hidden files
cat display the contents of a file in the terminal
Walk Through
- Click the view site button to open the emulated linux terminal
cd /home/mcskiddyto change directory to McSkiddy's home directoryls -lato view all of McSkidy's files in a list- revealed 2 files
Lessons Learned
- Learned Linux file listing commands:
ls(list files),ls -l(detailed list view), andls -a(show hidden files) - Successfully investigated McSkidy's home directory using
ls -lato uncover hidden files and discover the flag in.secret_message
