具有异常扩展名的内存转储文件

编辑

具有异常扩展名的内存转储文件编辑

识别创建具有异常扩展名的内存转储文件,这可能表明试图将内存转储伪装成其他文件类型以绕过安全防御。

规则类型: eql

规则索引:

  • logs-endpoint.events.file-*

严重性: 低

风险评分: 21

每隔: 5 分钟运行一次

从以下时间开始搜索索引: now-9m(日期数学格式,另请参见 附加回溯时间

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

参考: 无

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:凭据访问
  • 策略:防御规避
  • 数据源:Elastic Defend
  • 规则类型:BBR

版本: 2

规则作者:

  • Elastic

规则许可: Elastic License v2

规则查询编辑

file where host.os.type == "windows" and event.type == "creation" and

  /* MDMP header */
  file.Ext.header_bytes : "4d444d50*" and
  not file.extension : ("dmp", "mdmp", "hdmp", "edmp", "full", "tdref", "cg", "tmp", "dat") and
  not
  (
    process.executable : "?:\\Program Files\\Endgame\\esensor.exe" and
    process.code_signature.trusted == true and length(file.extension) == 0
  ) and
  not
  (
    process.name : "System" and file.extension : "tmpscan"
  )

框架: MITRE ATT&CKTM