Prep Track

Get ready for the Advent of Cyber 2025 with the "Advent of Cyber Prep Track", a series of warm-up tasks aimed to get beginners ready for this year's event.

Password Pandemonium

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objective

Create a password that passes all system checks and isn’t found in the leaked password list.


Table of Contents

Introduction
Walk Through
Resources


Introduction

You've just logged into your TBFC workstation when an alert reveals weak passwords across 73 accounts—including McSkidy's P@ssw0rd123. To gain full access, you must demonstrate strong password practices, which remain one of the simplest yet most effective defenses against cyber attacks.

Password Requirements


Walk Through

  1. Entered the TBFC website
  2. Clicked to update password
  3. Choose a secure password
    1. Pandemonium4u!
    2. A phrase substituting the words for number and adding symbols PasswordPandemonium.png

Resources

TryHackMe
Okta

The Suspicious Chocolate.exe

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objectives

Determine if chocolate.exe is safe or infected.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

A suspicious USB labeled "SOCMAS Party Playlist" containing chocolate.exe arrives on your desk. You must use a simulated VirusTotal tool to scan the file and determine if it's safe or malicious—a critical skill for identifying threats before they compromise systems.


Walk Through

  1. Click the view site button on THM
    1. This brings up a simulated virustotal website preloaded with chocolate.exe
  2. Clicking scan to scan the .exe file on virtustotal
  3. After clicking scan, the website scans the file and loads the results
    1. The website loaded results from 48 vendors
      1. Clean Vendor A
      2. Clean Vendor B
      3. Malhare Labs
      4. +45 other vendors marked this file as clean
    2. Malhare labs is classified as MalhareTorjan with `ref:ML-2025-011
  4. This file is not free from viruses. suspiciouschocolate.png

Lessons Learned

In this activity, I learned how to use VirusTotal to scan files for viruses and identify malicious threats across multiple security vendors.


Resources

TryHackMe
Virus Total

Welcome to the AttackBox!

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objective

Find and read the hidden welcome message inside your AttackBox.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

You enter TBFC's AttackBox, a secure virtual training environment designed for hands-on cybersecurity practice. Mastering the command line in this safe sandbox is your first step toward becoming a skilled defender.


Walk Through

  1. Click the view site button to load the virtual attack environment
  2. Use ls to view files
  3. Use cd to move to the challenges directory
    1. cd challenges
  4. Use ls to view files in the challenges directory
  5. Use cat to view the contentents of welcome.txt
    1. cat welcome.txt WelcometoAttackbox.png

Lessons Learned


Resources

TryHackMe

The CMD Conundrum

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objectives

Find the hidden flag file using Windows commands.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

McSkidy's workstation shows signs of tampering—suspicious files have been moved, logs wiped, and a mysterious folder named mystery_data discovered. Using the Windows Command Prompt, you must investigate the system and uncover hidden evidence that the graphical interface cannot reveal.

Useful Commands

dir equivalent to the ls command on linux
dir /a equivalent to the ls -a command on linux
type equivalent to the cat command on linux


Walk Through

  1. Click view site to open the emulated windows terminal
  2. use dir to view files and directories
    1. dir showed 1 file and 1 directory
      1. readme.txt
      2. mystery_data
        1. This is directory
    2. type readme.txt
      1. "System shows signs of tampering. Investigate the mystery_data folder"
    3. cd mystery_data to change directories
    4. dir shows `notes.txt
      1. type notes.txt
      2. "Some logs were wiped. Hidden artifacts may still remain..."
    5. dir /a to show all files including hidden ones
    6. found hidden_flag.txt
      1. type hidden_flag.txt to reveal contents
        cmdconundrum.png

Lessons Learned


Resources

TryHackMe
List of Windows Commands

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

  1. Click the view site button to open the emulated linux terminal
  2. cd /home/mcskiddy to change directory to McSkiddy's home directory
  3. ls -la to view all of McSkidy's files in a list
  4. revealed 2 files
    1. readme.txt
      1. "Delivery drones are glitching. Check hidden files for clues.
    2. .secret_message `
      1. Hidden messages, secret files -- McSkiddy sure knows his way around Linux.
      2. FLAG linuxlore.png

Lessons Learned


Resources

TryHackMe
Linux Command Cheat Sheet

The Leak in the List

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objective

Check if McSkidy’s email has appeared in a breach.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

Rumors circulate that TBFC's data has been leaked, causing emails to bounce and staff to panic. McSkidy suspects his account may have been compromised in the breach. Defenders use tools like Have I Been Pwned to identify compromised accounts early, preventing attacks from spreading further.


Walk Through

  1. Click the view site button to launch the simulated Have I Been Pwned website
  2. Enter McSkiddy's email mcskidy@tbfc.com to see if it has been compromised
  3. The email has been found in a breach
    1. hopsec.io compromised on 2025-01-16 LeakList.png

Lessons Learned


Resources

TryHackMe
HaveIBeenPwned

WiFi Woes in Wareville

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objectives

Log into the router and secure it with a strong new password.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

TBFC's delivery drones loop endlessly over Wareville Square after someone accessed the company router using default credentials. Securing WiFi with strong, non-default passwords is critical—default credentials are equivalent to leaving the front gate wide open to attackers.

Password Minimum Requirements


Walk Through

  1. Click view site to open the simulate router login page
  2. The default credentials are admin:admin
  3. Entered a new password for the portal administation based on best practices and minimum requirements
    1. Chose boogeyman4U! WoesWareville.png

Lessons Learned


Resources

TryHackMe
Password Best Practices

The App Trap

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objective

Find and remove the malicious connected app.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

McSkidy's social media account has been compromised and is posting suspicious messages about "EASTMAS." A malicious third-party application may be responsible for the unauthorized access. Learning to review and manage app permissions is essential for preventing data leaks and unauthorized account access.


Walk Through

  1. Click view site to launch the simulated enviroment
  2. There are 3 applications in the enviroment with the following permissions
    1. Weather Elf
      1. Location
      2. Network Access
      3. Notifications
    2. Gift Tracker
      1. Contacts
      2. Network Access
      3. Storage
    3. Eastmas Scheduler
      1. Calendar
      2. Notifications
      3. Passwordvault
  3. Weather Elf and Gift tracker have appropriate apps for their use case. Eastmas Schedular has no reason to have access to Password Vault
  4. Revoked access to password vault apptrap.png

Lessons Learned


Resources

TryHackMe
App Permission

The Chatbot Confession

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objective

Identify which chatbot messages contain sensitive information.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

TBFC's AI assistant, FestiveBot, designed to help compose cheerful emails, has begun leaking sensitive information including internal URLs and passwords. While AI tools are powerful productivity aids, defenders must understand how to prevent them from inadvertently disclosing confidential data.


Walk Through

  1. Click view site to load the session with the chat bot
  2. Several of the messages from the chat bot contain confidential information
    1. "Reminder: staging admin lives at https://internal.tbfc.local/admin for content approvals."
    2. "Email credentials as requested: user festive.ops and password SnowGlobe#2025."
    3. "Service token: sk-live-1a2b3c4d5e6f7g8h for the mail API. Use it sparingly." chatbotconfession.png

Lessons Learned


Resources

TryHackMe
AI ChatBot Security

The Bunny’s Browser Trail

Overview


Room URL: https://tryhackme.com/room/adventofcyberpreptrack
Difficulty: Easy
Category: Prep
Date Completed: 12/1/2025

Objectives

Find the unusual User Agent in the HTTP log.


Table of Contents

Introduction
Walk Through
Lessons Learned
Resources


Introduction

SOCMAS web servers are experiencing unusual traffic spikes, with one suspicious log entry revealing an unfamiliar User Agent: "BunnyOS/1.0 (HopSecBot)". Analyzing User Agent strings is critical for defenders to identify automated attacks and unauthorized visitors within network logs.

Define User Agent

A client application used by an end user, typically for a network protocol such as HTTP or FTP.


Walk Through

  1. Click view site to open the http web log entries
  2. Several different user agents accessed this site
    1. Chrome on Windows
    2. Safari on MacOS
    3. Firefox on Linux
    4. Edge on Windows
    5. BunnyOS (HopSecBot)
    6. Safari on IoS
  3. Based on this the abnormal agent is BunnyOS and they accessed /admin/panel according to the log.
    browsertrail.png

Lessons Learned


Resources

TryHackMe
Different User Agents