FE01 - 100pts
Briefing
Download the file and find a way to get the flag. Contents: fe01.ost
Challenge Files:
Solution
We can run
file fe01.ost
to determine thatfe01.ost
is a Microsoft Outlook email folder.Searching online for a program that can read this identifies
pffexport
, which can be installed withsudo apt install pff-tools
.We can extract the content with
pffexport fe01.ost
andcd
intofe01.ost.export
.Run
find . -type d -empty -delete
infe01.ost.export
to delete all empty directories.Searching the folder for
flag
shows thatRoot - Mailbox/IPM_SUBTREE/Inbox/Message00018/Attachments
has a ZIP file called1_flag.zip
(as an attachment to theMessage00018
email) that is password protected.Looking around some more reveals that the calendar contains the key.
Root - Mailbox/IPM_SUBTREE/Calendar/Appointment00001/Appointment.txt
has the namec]5p@S7K/z}Z!Q - 11am meeting with Chris
soc]5p@S7K/z}Z!Q
is the password.Extracting the
1_flag.zip
withc]5p@S7K/z}Z!Q
as the password shows an imageflag.jpg
with the flag in it.
Flag
pst_i'm_in_here!
Last updated