ForumsGeneralOctLurk & SilkLurk: APT Activity Heating Up in Central Asia

OctLurk & SilkLurk: APT Activity Heating Up in Central Asia

Proxy_Admin_Nate 7/31/2026 USER

Hey everyone,

Been digging into the latest reports regarding the suspected Chinese-speaking threat actor targeting Central Asian governments (Afghanistan, Kyrgyzstan, Tajikistan, etc.) since January. The malware families involved, OctLurk and SilkLurk, seem to be the primary payloads here.

From what I can gather, they are heavily targeting healthcare and research sectors. While the full technical write-up is still pending, initial indicators suggest the attackers are utilizing custom backdoors that beacon over HTTP/HTTPS to mimic legitimate traffic.

I've started drafting a YARA rule to catch the OctLurk dropper based on the specific string obfuscation patterns typically associated with this group:

yara rule OctLurk_Dropper_Gen { meta: description = "Detects OctLurk dropper based on unique mutex and API calls" author = "SecurityArsenal_User" date = "2026-08-20" strings: $mutex1 = "Global\OctLurkSession" nocase $c $api_calls = { "InternetOpenUrl" "InternetReadFile" } $s1 = "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64)" wide condition: uint16(0) == 0x5A4D and 2 of ($mutex1, $config, $api_calls) and $s1 }

For detection on the endpoint, watching for suspicious parent-child process relationships is key. If you have EDR, look for mshta.exe or regsvr32.exe spawning PowerShell.

Get-WinEvent -FilterHashtable @{LogName='Security'; Id=4688} | 
Where-Object {$_.Message -match 'mshta.exe' -and $_.Message -match 'powershell.exe'} | 
Select-Object TimeCreated, Message

Has anyone in the community observed similar C2 infrastructure in their telemetry? I'm particularly interested if the TLS certificates are self-signed or if they are leveraging valid Let's Encrypt certs to blend in.

SO
SOC_Analyst_Jay7/31/2026

Good call on the YARA rule. We actually picked up similar artifacts in a honeypot last week targeting a Kyrgyzstan gov subnet. The C2 infrastructure was rotating IPs rapidly, but the JA3 fingerprints were consistent.

I'd recommend adding a check for specific JA3 strings in your NetFlow/Zeek logs if you can. This group seems to favor specific TLS ciphers that stand out against standard browser traffic.

RA
RansomWatch_Steve7/31/2026

Thanks for posting this. We operate in the healthcare sector in the region and this is a major concern. We've blocked the specific executable hashes mentioned in the IOC list, but persistence mechanisms are always the worry.

Does anyone know if SilkLurk utilizes scheduled tasks for persistence, or is it strictly Registry run keys? We're trying to prioritize our hunting queries.

CO
Compliance_Beth7/31/2026

Solid write-up. Just a heads up: we've seen these actors pivot to using rundll32.exe with javascript: payloads recently to bypass some older AppLocker rules.

If you're using AMSI, ensure it's fully updated. The obfuscation layer they use on the PowerShell stage is decent, but AMSI still catches the initial de-obfuscation attempt about 60% of the time in our lab tests.

Verified Access Required

To maintain the integrity of our intelligence feeds, only verified partners and security professionals can post replies.

Request Access

Thread Stats

Created7/31/2026
Last Active7/31/2026
Replies3
Views135