246. That's How TinyLoader Maintains Persistence

Hello everyone!

Recently I spotted another persistence technique I don't see to be used by adversaries often. I'm talking about the following technique: Change Default File Association (T1546.001).


According to this reportTinyLoader modified the following registry key to hijack how Windows handles text files:

HKEY_CLASSES_ROOT\txtfile\shell\open\command

This allows the malware to be executed every time a victim opens a .txt file.

So, we can hunt for registry modification events related to this key:

event_type: "registryvaluesetwin"

AND

reg_key_path: "txtfile\\shell\\open\\command"

See you tomorrow!

Comments

Popular posts from this blog

391. Hunting for TeamPCP's Stealer

343. Ransomware Gangs Abuse SystemSettingsAdminFlows to Evade Defenses

324. Adversaries Use HideMouse to Hide Evidence of Remote Access