dns.exe 异常文件修改
编辑dns.exe 异常文件修改编辑
识别 dns.exe(负责 Windows DNS 服务器服务的进程)修改了意外文件,这可能表明与远程代码执行或其他形式的利用相关的活动。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.file-*
- logs-windows.sysmon_operational-*
- endgame-*
严重程度: 高
风险评分: 73
每: 5m运行一次
从: now-9m搜索索引 (日期数学格式,另请参见 额外的回溯时间
)
每次执行的最大警报数: 100
参考:
- https://research.checkpoint.com/2020/resolving-your-way-into-domain-admin-exploiting-a-17-year-old-bug-in-windows-dns-servers/
- https://msrc-blog.microsoft.com/2020/07/14/july-2020-security-update-cve-2020-1350-vulnerability-in-windows-domain-name-system-dns-server/
- https://elastic.ac.cn/security-labs/detection-rules-for-sigred-vulnerability
标签:
- 领域:端点
- 操作系统:Windows
- 用例:威胁检测
- 战术:横向移动
- 数据源:Elastic Endgame
- 用例:漏洞
- 数据源:Elastic Defend
- 数据源:Sysmon
版本: 110
规则作者:
- Elastic
规则许可证: Elastic License v2
调查指南编辑
分类和分析
调查异常文件写入
此规则的检测警报表明在利用 CVE-2020-1350 (SigRed) 之后,DNS 服务器服务进程 (dns.exe
) 可能发生了潜在的异常/不正常文件写入。以下是一些可能的调查途径: - 在利用之后,攻击者可能会将其他文件或有效载荷写入系统,作为其他发现/利用/持久性机制。 - 应仔细检查来自 dns.exe
的任何可疑或异常文件并进行调查。
设置编辑
设置
如果在非 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
规则查询编辑
file where host.os.type == "windows" and process.name : "dns.exe" and event.type in ("creation", "deletion", "change") and not file.name : "dns.log" and not (file.extension : ("old", "temp", "bak", "dns", "arpa") and file.path : "C:\\Windows\\System32\\dns\\*")
框架: MITRE ATT&CKTM
-
战术
- 名称:横向移动
- ID:TA0008
- 参考 URL:https://attack.mitre.org/tactics/TA0008/
-
技术
- 名称:远程服务的利用
- ID:T1210
- 参考 URL:https://attack.mitre.org/techniques/T1210/