Room Link:
https://tryhackme.com/room/yara-aoc2025-q9w1e3y5u7
Official walkthrough for quick onboarding:
🔗 YouTube Link:
https://youtu.be/NAYtCSUHR8M?si=BcrBFSlC0giDQdIP

The YARA rule file is saved as TBFC:
rule TBFC_Simple
{
meta:
description = "Testing"
strings:
$var = /TBFC:[A-Za-z0-9]+/
condition:
$var
}


yara → runs the YARA scanner-r → recursively scan subdirectories-s → print matched strings and offsetsTBFC → YARA rule file/home/ubuntu → directory being scannedThis scans everything under /home/ubuntu using the TBFC YARA rule and prints exact string matches and locations.
TBFC?5
TBFC: followed by alphanumeric characters?/TBFC:[A-Za-z0-9]+/
Find me in HopSec Island