基于 Grep 的虚拟机指纹识别

编辑

攻击者可能会尝试获取有关操作系统和硬件的详细信息。此规则识别非 root 用户用来发现虚拟机硬件的常用位置。Pupy RAT 和其他恶意软件都曾使用此技术。

规则类型: eql

规则索引:

  • auditbeat-*
  • logs-endpoint.events.*

严重性: 中等

风险评分: 47

每隔: 5 分钟

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

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

参考:

标签:

  • 领域:端点
  • 操作系统:macOS
  • 操作系统:Linux
  • 用例:威胁检测
  • 策略:发现
  • 数据源:Elastic Defend

版本: 105

规则作者:

  • Elastic

规则许可证: Elastic License v2

设置

编辑

设置

如果在非 elastic-agent 索引(例如 beats)上启用 EQL 规则且版本 <8.2,则事件将不会定义 event.ingested,并且直到 8.2 版本才添加 EQL 规则的默认回退。因此,为了使此规则有效,用户需要添加自定义摄取管道以将 event.ingested 填充到 @timestamp。有关添加自定义摄取管道的更多详细信息,请参考 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html

规则查询

编辑
process where event.type == "start" and
 process.name in ("grep", "egrep") and user.id != "0" and
 process.args : ("parallels*", "vmware*", "virtualbox*") and process.args : "Manufacturer*" and
 not process.parent.executable in ("/Applications/Docker.app/Contents/MacOS/Docker", "/usr/libexec/kcare/virt-what")

框架: MITRE ATT&CKTM