可疑启动Shell文件夹修改

编辑

识别可疑的启动Shell文件夹修改,这些修改会更改默认的启动目录,以便绕过监控Windows启动文件夹中文件创建的检测。

规则类型: eql

规则索引:

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

严重性: 高

风险评分: 73

每运行一次: 5分钟

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

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

参考资料:

标签:

  • 领域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:持久性
  • 战术:防御规避
  • 资源:调查指南
  • 数据源:Elastic Endgame
  • 数据源:Elastic Defend
  • 数据源:Sysmon
  • 数据源:Microsoft Defender for Endpoint
  • 数据源:SentinelOne

版本: 313

规则作者:

  • Elastic

规则许可证: Elastic License v2

调查指南

编辑

分类和分析

调查可疑启动Shell文件夹修改

恶意软件和攻击者使用的技术通常利用Windows注册表来存储恶意程序以实现持久性。启动Shell文件夹经常成为目标,因为它们不像普通的启动文件夹路径那样普遍,因此这种行为可能会规避现有的AV/EDR解决方案。这些程序也可能以更高的权限运行,这对于攻击者来说非常理想。

注意: 此调查指南使用了Elastic Stack 8.5.0版中引入的Osquery Markdown插件。较旧的Elastic Stack版本将在此指南中显示未呈现的Markdown。

可能的调查步骤

  • 调查未知进程的进程执行链(父进程树)。检查其可执行文件的流行程度、它们是否位于预期位置以及它们是否使用有效的数字签名进行了签名。
  • 查看与Windows注册表项关联的源进程和相关文件。
  • 验证此活动是否与计划的补丁、更新、网络管理员活动或合法软件安装无关。
  • 通过查找主机上的类似事件来评估此行为在环境中的流行程度。
  • 检查主机是否存在表明可疑活动的衍生工件
  • 使用私有沙盒分析系统分析文件。
  • 观察和收集有关沙盒和告警主题主机中以下活动的信息
  • 尝试联系外部域和地址。
  • 使用Elastic Defend网络事件通过过滤进程的process.entity_id来确定受试进程联系的域和地址。
  • 检查DNS缓存中是否存在可疑或异常条目。
  • !{osquery{"label":"Osquery - 获取DNS缓存","query":"SELECT * FROM dns_cache"}}
  • 使用Elastic Defend注册表事件检查进程树中相关进程访问、修改或创建的注册表键。
  • 检查主机服务中是否存在可疑或异常条目。
  • !{osquery{"label":"Osquery - 获取所有服务","query":"SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"}}
  • !{osquery{"label":"Osquery - 获取在用户帐户上运行的服务","query":"SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE\nNOT (user_account LIKE %LocalSystem OR user_account LIKE %LocalService OR user_account LIKE %NetworkService OR\nuser_account == null)\n"}}
  • !{osquery{"label":"Osquery - 获取带有VirusTotal链接的未签名可执行服务","query":"SELECT concat(https://www.virustotal.com/gui/file/, sha1) AS VtLink, name, description, start_type, status, pid,\nservices.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =\nauthenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != trusted\n"}}
  • 使用PowerShell Get-FileHash cmdlet检索文件的SHA-256哈希值,并在VirusTotal、Hybrid-Analysis、CISCO Talos、Any.run等资源中搜索哈希的存在性和信誉。
  • 调查可能受损的帐户。分析师可以通过搜索注册表修改后对目标主机的登录事件(例如,4624)来做到这一点。

误报分析

  • 将良性合法程序添加到Shell文件夹的可能性很高。此活动可能基于新软件安装、补丁或其他网络管理员活动。在进行进一步调查之前,应验证此活动是否为良性。

相关规则

  • 启动或运行键注册表修改 - 97fc44d3-8dae-4019-ae83-298c3015600f
  • 启动目录中的持久脚本 - f7c4dc5a-a58d-491d-9f14-9b66507121c0

响应和补救

  • 根据分类结果启动事件响应流程。
  • 隔离相关主机以防止进一步的入侵后行为。
  • 确定攻击者滥用的初始媒介,并采取措施防止通过相同媒介再次感染。
  • 如果恶意文件是通过网络钓鱼传送的
  • 阻止电子邮件发件人发送未来的电子邮件。
  • 阻止恶意网页。
  • 从邮箱中删除发件人的电子邮件。
  • 考虑改进安全意识培训项目。
  • 运行完整的反恶意软件扫描。这可能会揭示系统中留下的其他工件、持久性机制和恶意软件组件。
  • 使用事件响应数据,更新日志记录和审计策略以改善平均检测时间 (MTTD) 和平均响应时间 (MTTR)。

规则查询

编辑
registry where host.os.type == "windows" and event.type == "change" and
 registry.value : ("Common Startup", "Startup") and
 registry.path : (
     "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Common Startup",
     "HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Common Startup",
     "HKEY_USERS\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Startup",
     "HKEY_USERS\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Startup",
     "HKU\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Startup",
     "HKU\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Startup",
     "HKCU\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Startup",
     "HKCU\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Startup",
     "\\REGISTRY\\MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Common Startup",
     "\\REGISTRY\\MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Common Startup",
     "\\REGISTRY\\USER\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Startup",
     "\\REGISTRY\\USER\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Startup",
     "MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Common Startup",
     "MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Common Startup",
     "USER\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\Startup",
     "USER\\*\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\\Startup"
     ) and
  registry.data.strings != null and
  /* Normal Startup Folder Paths */
  not registry.data.strings : (
           "C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Startup",
           "%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs\\Startup",
           "%USERPROFILE%\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup",
           "C:\\Users\\*\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup"
           )

框架: MITRE ATT&CKTM