通过浏览器调试进行潜在的 Cookie 窃取
编辑通过浏览器调试进行潜在的 Cookie 窃取编辑
识别执行带有调试进程参数的基于 Chromium 的浏览器,这可能表明企图窃取身份验证 Cookie。攻击者可能会窃取 Web 应用程序或服务会话 Cookie,并使用它们作为经过身份验证的用户访问 Web 应用程序或互联网服务,而无需凭据。
规则类型: eql
规则索引:
- auditbeat-*
- winlogbeat-*
- logs-endpoint.events.*
- logs-windows.*
严重性: 中等
风险评分: 47
每隔运行: 5 分钟
从以下时间开始搜索索引: now-9m(日期数学格式,另请参见 附加回溯时间
)
每次执行的最大警报数: 33
参考:
- https://github.com/defaultnamehere/cookie_crimes
- https://embracethered.com/blog/posts/2020/cookie-crimes-on-mirosoft-edge/
- https://github.com/rapid7/metasploit-framework/blob/master/documentation/modules/post/multi/gather/chrome_cookies.md
- https://posts.specterops.io/hands-in-the-cookie-jar-dumping-cookies-with-chromiums-remote-debugger-port-34c4f468844e
标签:
- 域:端点
- 操作系统:Linux
- 操作系统:Windows
- 操作系统:macOS
- 用例:威胁检测
- 策略:凭据访问
- 数据源: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 in ("start", "process_started", "info") and process.name in ( "Microsoft Edge", "chrome.exe", "Google Chrome", "google-chrome-stable", "google-chrome-beta", "google-chrome", "msedge.exe") and process.args : ("--remote-debugging-port=*", "--remote-debugging-targets=*", "--remote-debugging-pipe=*") and process.args : "--user-data-dir=*" and not process.args:"--remote-debugging-port=0"
框架:MITRE ATT&CKTM
-
策略
- 名称:凭据访问
- ID:TA0006
- 参考 URL:https://attack.mitre.org/tactics/TA0006/
-
技术
- 名称:窃取 Web 会话 Cookie
- ID:T1539
- 参考 URL:https://attack.mitre.org/techniques/T1539/