特权本地组成员枚举
编辑特权本地组成员枚举编辑
识别异常进程枚举内置 Windows 特权本地组(如管理员或远程桌面用户)成员的实例。
规则类型:new_terms
规则索引:
- winlogbeat-*
- logs-system.*
- logs-windows.*
严重性:中等
风险评分: 47
运行间隔:5 分钟
搜索的索引范围:now-9m(日期数学格式,另请参阅其他回溯时间
)
每次执行的最大警报数: 100
参考:无
标签:
- 域:端点
- 操作系统:Windows
- 用例:威胁检测
- 策略:发现
- 资源:调查指南
版本: 311
规则作者:
- Elastic
规则许可证:Elastic 许可证 v2
调查指南编辑
分类和分析
调查特权本地组成员枚举
成功入侵环境后,攻击者可能会尝试获取态势感知,以计划下一步行动。这可以通过运行命令来枚举网络资源、用户、连接、文件和已安装的安全软件来实现。
此规则查找可疑进程对特权本地组成员的枚举,并排除已知的合法实用程序和已安装程序。攻击者可以利用这些信息来确定攻击的下一步行动,例如映射凭据泄露的目标和其他后期利用活动。
注意:本调查指南使用 Elastic Stack 版本 8.5.0 中引入的Osquery Markdown 插件。旧版 Elastic Stack 将在本指南中显示未渲染的 Markdown。
可能的调查步骤
- 识别事件中涉及的进程、主机和用户。
- 调查未知进程的进程执行链(父进程树)。检查其可执行文件的流行程度、它们是否位于预期位置,以及它们是否使用有效的数字签名进行签名。
- 调查过去 48 小时内与用户/主机相关的其他警报。
- 调查任何异常的帐户行为,例如命令执行、文件创建或修改以及网络连接。
- 检查主机是否存在指示可疑活动的衍生制品
- 使用私有沙盒分析系统分析进程可执行文件。
- 观察并收集有关沙盒和警报主题主机中以下活动的信息
- 尝试联系外部域和地址。
- 使用 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)来执行此操作。
误报分析
- 如果发现活动是孤立发生的,则并非天生就是恶意的。只要分析师未识别出与用户或主机相关的可疑活动,此类警报即可解除。
- 如果由于预期活动导致此规则在您的环境中产生大量噪音,请考虑添加例外 - 最好在用户和命令行条件的组合下添加。
响应和修复
- 根据分类结果启动事件响应流程。
- 隔离受影响的主机,以防止进一步的入侵后行为。
- 调查攻击者入侵或使用的系统上的凭据泄露情况,以确保识别所有遭到入侵的帐户。重置这些帐户和其他可能遭到入侵的凭据(例如电子邮件、业务系统和 Web 服务)的密码。
- 运行完整的反恶意软件扫描。这可能会揭示系统中留下的其他工件、持久性机制和恶意软件组件。
- 确定攻击者滥用的初始入侵点,并采取措施防止通过同一入侵点再次感染。
- 使用事件响应数据,更新日志记录和审计策略,以缩短平均检测时间 (MTTD) 和平均响应时间 (MTTR)。
设置编辑
设置
必须配置“审核安全组管理”审计策略(成功)。使用高级审核配置实现日志记录策略的步骤
Computer Configuration > Policies > Windows Settings > Security Settings > Advanced Audit Policies Configuration > Audit Policies > Account Management > Audit Security Group Management (Success)
Microsoft 在 Windows 10 和 Windows Server 2016 或更高版本的操作系统上引入了此检测规则中使用的事件。
如果在非 elastic-agent 索引(例如 beats)上为 <8.2 版本启用 EQL 规则,则事件不会定义event.ingested
,并且在 8.2 版本之前不会添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义摄取管道以将event.ingested
填充到 @timestamp。有关添加自定义摄取管道的更多详细信息,请参阅 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html
规则查询编辑
host.os.type:windows and event.category:iam and event.action:user-member-enumerated and ( group.name:(*Admin* or "RemoteDesktopUsers") or winlog.event_data.TargetSid:("S-1-5-32-544" or "S-1-5-32-555") ) and not ( winlog.event_data.SubjectUserName: *$ or winlog.event_data.SubjectUserSid: ("S-1-5-19" or "S-1-5-20") or winlog.event_data.CallerProcessName:("-" or C\:\\Windows\\System32\\VSSVC.exe or C\:\\Windows\\System32\\SearchIndexer.exe or C\:\\Windows\\System32\\CompatTelRunner.exe or C\:\\Windows\\System32\\oobe\\msoobe.exe or C\:\\Windows\\System32\\net1.exe or C\:\\Windows\\System32\\svchost.exe or C\:\\Windows\\System32\\Netplwiz.exe or C\:\\Windows\\System32\\msiexec.exe or C\:\\Windows\\System32\\CloudExperienceHostBroker.exe or C\:\\Windows\\System32\\RuntimeBroker.exe or C\:\\Windows\\System32\\wbem\\WmiPrvSE.exe or C\:\\Windows\\System32\\SrTasks.exe or C\:\\Windows\\System32\\diskshadow.exe or C\:\\Windows\\System32\\dfsrs.exe or C\:\\Windows\\System32\\vssadmin.exe or C\:\\Windows\\System32\\dllhost.exe or C\:\\Windows\\System32\\mmc.exe or C\:\\Windows\\System32\\SettingSyncHost.exe or C\:\\Windows\\System32\\inetsrv\\w3wp.exe or C\:\\Windows\\System32\\wsmprovhost.exe or C\:\\Windows\\System32\\mstsc.exe or C\:\\Windows\\System32\\esentutl.exe or C\:\\Windows\\System32\\RecoveryDrive.exe or C\:\\Windows\\System32\\SystemPropertiesComputerName.exe or C\:\\Windows\\SysWOW64\\msiexec.exe or C\:\\Windows\\ImmersiveControlPanel\\SystemSettings.exe or C\:\\Windows\\Temp\\rubrik_vmware*\\snaptool.exe or C\:\\Windows\\VeeamVssSupport\\VeeamGuestHelper.exe or C\:\\WindowsAzure\\*WaAppAgent.exe or C\:\\$WINDOWS.~BT\\Sources\\*.exe ) )
框架:MITRE ATT&CKTM
-
策略
- 名称:发现
- ID:TA0007
- 参考 URL:https://attack.mitre.org/tactics/TA0007/
-
技术
- 名称:权限组发现
- ID:T1069
- 参考 URL:https://attack.mitre.org/techniques/T1069/
-
子技术
- 名称:本地组
- ID:T1069.001
- 参考 URL:https://attack.mitre.org/techniques/T1069/001/