下载了具有可疑扩展名的文件编辑

识别从本地网络外部下载的、可能被滥用于代码执行的异常文件。

规则类型:eql

规则索引:

  • logs-endpoint.events.file-*

严重程度:低

风险评分: 21

运行频率:60 分钟

搜索的索引范围:now-119m(日期数学格式,另请参阅额外回溯时间

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

参考:

标签:

  • 域:终端
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:防御规避
  • 数据源:Elastic Defend
  • 规则类型:BBR

版本: 3

规则作者:

  • Elastic

规则许可证:Elastic 许可证 v2

规则查询编辑

file where host.os.type == "windows" and event.type == "creation" and
  file.extension : (
    "appinstaller", "application", "appx", "appxbundle", "cpl", "diagcab", "diagpkg", "diagcfg", "manifest",
    "msix", "pif", "search-ms", "searchConnector-ms", "settingcontent-ms", "symlink", "theme", "themepack"
  ) and file.Ext.windows.zone_identifier > 1 and
  not
  (
    (
      file.extension : "msix" and
      file.path : (
        "?:\\Users\\*\\AppData\\Local\\Temp\\WinGet\\Microsoft.Winget.Source*",
        "?:\\Windows\\system32\\config\\systemprofile\\AppData\\Local\\Microsoft\\WinGet\\State\\defaultState\\Microsoft.PreIndexed.Package\\Microsoft.Winget.Source*"
      )
    ) or
    (
      process.name : "Teams.exe" and process.code_signature.trusted == true and
      file.extension : "msix" and
      file.path : "?:\\Users\\*\\AppData\\Roaming\\Microsoft\\Teams\\tmp\\*"
    )
  )

框架:MITRE ATT&CKTM