SOC Incident Report: Investigation of a Volt Typhoon-Inspired Intrusion
A Complete Write-Up Demonstrating Real SOC Investigation Methodology
In this investigation, I analyze a phishing email scenario from the TryHackMe First Shift CTF room. This task focuses on identifying phishing indicators, analyzing malicious attachments, and mapping attacker behavior to the MITRE ATT&CK framework.
Here I demonstrate a structured SOC analyst workflow — covering email header analysis, payload inspection, threat intelligence enrichment, and adversary attribution. This reflects how security analysts conduct phishing investigations in a real-world Security Operations Center (SOC).
This article continues from Task 3 (Probably Just Fine), shifting the focus from general threat analysis to phishing detection and investigation.
Your SOC inbox receives a suspicious email reported by an employee.
The email claims to be from an online bookstore and includes:
You suspect phishing.
Analyze the email and determine:
Process:
I opened the .eml file in a text editor to review the raw email headers. Within the authentication results, I identified dmarc=none.

Insights:
DMARC (Domain-based Message Authentication, Reporting & Conformance) helps receiving servers validate whether an email is authorized by the sender’s domain. A value of none indicates that no enforcement policy is applied, meaning failed authentication checks do not result in rejection or quarantine.
This significantly increases the likelihood of phishing emails bypassing secure email gateways.
Answer: DMARC=none
Process:
By comparing sender and recipient domains, I noticed a subtle variation in spelling (e.g., kinglord vs kingford), indicating a deceptive lookalike domain.

Insights:
This is a classic typosquatting technique, where attackers register domains visually similar to legitimate ones. This exploits human oversight and increases trust, especially in phishing campaigns targeting non-technical users.
Answer: Typosquatting
Process:
Using the MITRE ATT\&CK knowledge base, I mapped typosquatting to Acquire Infrastructure: Domains (T1583.001).

Insights:
This technique highlights how adversaries establish infrastructure (such as deceptive domains) to support phishing and other attack vectors. Recognizing this mapping is critical for threat intelligence correlation and detection engineering.
Answer: T1583.001
Process:
Inspecting the raw email content revealed the attachment used a double extension to masquerade as a legitimate PDF.

Insights:
Double extensions are commonly used to deceive users (e.g., invoice.pdf.html). The real file type—HTML—enables execution in a browser, often redirecting victims to credential harvesting pages.
Answer: .html
Process:
I reviewed the email analysis report and followed the VirusTotal reference link. The MD5 hash was embedded within the URL.

Please look at the bottom of this image to see the reference link
Insights:
Hash values uniquely identify files and are essential for threat intelligence sharing, detection rules, and correlation across platforms.
Answer: 442f2965cb6e9147da7908bb4eb73a72
Process:
I extracted the Base64-encoded attachment content and decoded it using CyberChef. Within the decoded HTML, I identified obfuscated variables.
By:
I reconstructed the hidden phishing URL from the xanthium variable:


Insights:
This demonstrates layered obfuscation:
Such techniques are designed to evade static detection and delay analyst understanding.
Answer: http://lіi2600urar9700utlu-13cwe32432300u.cod600u
Process:
I mapped the obfuscation behavior to Obfuscated Files or Information (T1027) in MITRE ATT\&CK.

Insights:
Obfuscation is widely used to bypass detection systems and hinder reverse engineering, making it a critical behavior for analysts to recognize.
Answer: T1027
Process:
Using the same decoding process as Q6, I analyzed the egassem variable:

Insights:
While not operationally relevant, such embedded messages are sometimes used by threat actors as signatures, humor, or psychological markers.
Answer: I love to phish books from libraries ^^
Process:
I reviewed the decoded HTML from the email attachment and identified JavaScript responsible for string manipulation taking the previously discovered variables xanthium and egassem.

Insights:
This line performs string reversal, a simple but effective obfuscation technique used to reconstruct hidden values at runtime.
Note: Even though both lines perform the same kind of operation, theoretically, the first line (from var src) should be the one suitable for this answer, since it is (as asked) the one that specifically decodes the URL redirect (stored in xanthium). But for the platform, the next occurrence seemed to be the right answer.
Answer: var mes = reversed.split(“”).reverse().join(“”);
Process:
I extracted and executed the attachment in a controlled environment and monitored network activity via browser developer tools.



Insights:
The domain uses Punycode encoding (xn — ), often leveraged in phishing to mimic legitimate domains using Unicode characters (IDN homograph attacks).
Answer: http://xn--librarytlu-13cwe32432-kwr.com:8082
Process:
Using threat intelligence tooling, I pivoted on the identified domain and retrieved adversary attribution data.

Insights:
Silent Librarian is known for targeting academic institutions and leveraging phishing campaigns for credential theft.
| Answer: Cobalt Dickens | Silent Librarian |
Process:
I reviewed the threat actor Silent Librarian profile in MITRE ATT&CK.

Insights:
This aligns with known campaigns targeting universities and research organizations to exfiltrate intellectual property.
Answer: Research and proprietary data
This investigation demonstrates several core SOC analyst competencies:
These are directly applicable to real-world Tier 1 / Tier 2 SOC roles.
This task highlights how seemingly simple phishing emails can contain multiple layers of deception — from domain impersonation to heavily obfuscated payloads. By applying a structured analytical approach, I was able to uncover attacker techniques, trace infrastructure, and map behaviors to established threat frameworks.
Developing this methodology is essential for detecting and responding to modern phishing campaigns in operational environments.