异常进程加载压缩 DLL

编辑

识别压缩 DLL 的映像加载。攻击者通常会在准备数据泄露之前压缩和加密数据。

规则类型: eql

规则索引:

  • logs-endpoint.events.library-*

严重性: 低

风险评分: 21

每隔: 60 分钟

搜索索引自: now-119m (日期数学格式,另请参见 额外回溯时间)

每次执行的最大告警数: 100

参考: 无

标签:

  • 领域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:收集
  • 数据源:Elastic Defend
  • 规则类型:BBR

版本: 3

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
library where host.os.type == "windows" and event.action == "load" and
  dll.name : ("System.IO.Compression.FileSystem.ni.dll", "System.IO.Compression.ni.dll") and
  not
  (
    (
      process.executable : (
        "?:\\Program Files\\*",
        "?:\\Program Files (x86)\\*",
        "?:\\Windows\\Microsoft.NET\\Framework*\\mscorsvw.exe",
        "?:\\Windows\\System32\\sdiagnhost.exe",
        "?:\\Windows\\System32\\inetsrv\\w3wp.exe",
        "?:\\Windows\\SysWOW64\\inetsrv\\w3wp.exe",
        "?:\\ProgramData\\Microsoft\\Windows Defender Advanced Threat Protection\\DataCollection\\*\\OpenHandleCollector.exe"
      ) and process.code_signature.trusted == true
    ) or
    (
      process.name : "NuGet.exe" and process.code_signature.trusted == true and user.id : ("S-1-5-18", "S-1-5-20")
    )
  )

框架: MITRE ATT&CKTM