浏览器扩展安装

编辑

识别浏览器扩展的安装。恶意浏览器扩展可以通过伪装成合法扩展的应用商店下载、社会工程学或已入侵系统的攻击者来安装。

规则类型: eql

规则索引:

  • logs-endpoint.events.file-*
  • logs-m365_defender.event-*
  • logs-sentinel_one_cloud_funnel.*
  • logs-windows.sysmon_operational-*
  • winlogbeat-*
  • endgame-*

严重性: 低

风险评分: 21

每隔: 5 分钟

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

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

参考: 无

标签:

  • 领域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:持久性
  • 数据源:Elastic Defend
  • 数据源:Elastic Endgame
  • 数据源:SentinelOne
  • 数据源:Sysmon
  • 数据源:Microsoft Defender for Endpoint

版本: 202

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
file where host.os.type == "windows" and event.type : "creation" and
(
  /* Firefox-Based Browsers */
  (
    file.name : "*.xpi" and
    file.path : "?:\\Users\\*\\AppData\\Roaming\\*\\Profiles\\*\\Extensions\\*.xpi" and
    not
    (
      process.name : "firefox.exe" and
      file.name : ("langpack-*@firefox.mozilla.org.xpi", "*@dictionaries.addons.mozilla.org.xpi")
    )
  ) or
  /* Chromium-Based Browsers */
  (
    file.name : "*.crx" and
    file.path : "?:\\Users\\*\\AppData\\Local\\*\\*\\User Data\\Webstore Downloads\\*"
  )
)

框架: MITRE ATT&CKTM