从异常目录执行进程
编辑从异常目录执行进程编辑
识别从可疑的默认 Windows 目录执行的进程。攻击者有时会使用此方法将恶意软件隐藏在受信任的路径中。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.process-*
- logs-windows.*
- endgame-*
- logs-system.security*
严重程度: 中等
风险评分: 47
每: 5m
从: now-9m (日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大警报数: 100
参考: 无
标签:
- 领域:端点
- 操作系统:Windows
- 用例:威胁检测
- 战术:防御规避
- 数据源:Elastic Endgame
- 数据源:Elastic Defend
版本: 110
规则作者:
- Elastic
规则许可证: Elastic License v2
调查指南编辑
分类和分析
调查从异常目录执行进程
此规则识别从可疑的默认 Windows 目录执行的进程。攻击者可能会滥用此技术,通过将恶意软件植入受信任的路径,使安全分析师难以识别其活动是恶意行为,还是利用可能适用于这些路径的例外情况。
注意: 此调查指南使用 Elastic Stack 版本 8.5.0 中引入的 Osquery Markdown 插件。较旧的 Elastic Stack 版本将在本指南中显示未渲染的 Markdown。
可能的调查步骤
- 调查未知进程的进程执行链(父进程树),检查其可执行文件以了解其流行程度、位置和有效数字签名。
- 调查主题进程的任何异常行为,例如网络连接、注册表或文件修改,以及任何生成的子进程。
- 检查参数和工作目录,以确定程序的来源或其正在执行的任务的性质。
- 调查过去 48 小时内与用户/主机相关的其他警报。
- 检查主机以了解警报时间范围内的可疑或异常行为。
- 通过查看主机之间的类似事件,评估此行为在环境中是否普遍存在。
- 检查主机以了解指示可疑活动的衍生工件
- 使用私有的沙箱分析系统分析进程可执行文件。
- 观察并收集有关沙箱和警报主题主机中以下活动的信息
- 尝试联系外部域和地址。
- 使用 Elastic Defend 网络事件通过 process'
process.entity_id
筛选,确定主题进程联系的域和地址。 - 检查 DNS 缓存是否有可疑或异常条目。
- !{osquery{"label":"Osquery - Retrieve DNS Cache","query":"SELECT * FROM dns_cache"}}
- 使用 Elastic Defend 注册表事件检查进程树中相关进程访问、修改或创建的注册表项。
- 检查主机服务是否有可疑或异常条目。
- !{osquery{"label":"Osquery - Retrieve All Services","query":"SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"}}
- !{osquery{"label":"Osquery - Retrieve Services Running on User Accounts","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 - Retrieve Service Unsigned Executables with Virustotal Link","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 等资源中搜索哈希是否存在及其信誉。
误报分析
- 如果此活动在您的环境中是预期的且很吵闹,请考虑添加例外 - 最好是结合使用可执行文件和签名条件。
相关规则
- 不寻常的 Windows 路径活动 - 445a342e-03fb-42d0-8656-0367eb2dead5
- 从不寻常的目录执行 - 命令行 - cff92c41-2225-4763-b4ce-6f71e5bda5e6
响应和补救
- 根据分类结果启动事件响应流程。
- 隔离相关主机以防止进一步的入侵后行为。
- 如果分类识别出恶意软件,请搜索环境以查找其他受感染的主机。
- 实施临时网络规则、程序和分段以遏制恶意软件。
- 停止可疑进程。
- 立即阻止识别的入侵指标 (IoC)。
- 检查受影响的系统,以查找攻击者用来重新感染系统的其他恶意软件后门,例如反向 shell、反向代理或投放程序。
- 删除并阻止分类过程中识别出的恶意工件。
- 运行完整的反恶意软件扫描。这可能会揭示系统中留下的其他工件、持久性机制和恶意软件组件。
- 调查攻击者入侵或使用的系统上的凭据泄露,以确保识别出所有受损帐户。重置这些帐户以及其他可能受损凭据(例如电子邮件、业务系统和 Web 服务)的密码。
- 确定攻击者滥用的初始载体,并采取措施防止通过相同载体重新感染。
- 使用事件响应数据更新日志记录和审核策略,以提高平均检测时间 (MTTD) 和平均响应时间 (MTTR)。
设置编辑
设置
如果在非 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
规则查询编辑
process where host.os.type == "windows" and event.type == "start" and /* add suspicious execution paths here */ process.executable : ( "?:\\PerfLogs\\*.exe", "?:\\Users\\Public\\*.exe", "?:\\Windows\\Tasks\\*.exe", "?:\\Intel\\*.exe", "?:\\AMD\\Temp\\*.exe", "?:\\Windows\\AppReadiness\\*.exe", "?:\\Windows\\ServiceState\\*.exe", "?:\\Windows\\security\\*.exe", "?:\\Windows\\IdentityCRL\\*.exe", "?:\\Windows\\Branding\\*.exe", "?:\\Windows\\csc\\*.exe", "?:\\Windows\\DigitalLocker\\*.exe", "?:\\Windows\\en-US\\*.exe", "?:\\Windows\\wlansvc\\*.exe", "?:\\Windows\\Prefetch\\*.exe", "?:\\Windows\\Fonts\\*.exe", "?:\\Windows\\diagnostics\\*.exe", "?:\\Windows\\TAPI\\*.exe", "?:\\Windows\\INF\\*.exe", "?:\\Windows\\System32\\Speech\\*.exe", "?:\\windows\\tracing\\*.exe", "?:\\windows\\IME\\*.exe", "?:\\Windows\\Performance\\*.exe", "?:\\windows\\intel\\*.exe", "?:\\windows\\ms\\*.exe", "?:\\Windows\\dot3svc\\*.exe", "?:\\Windows\\panther\\*.exe", "?:\\Windows\\RemotePackages\\*.exe", "?:\\Windows\\OCR\\*.exe", "?:\\Windows\\appcompat\\*.exe", "?:\\Windows\\apppatch\\*.exe", "?:\\Windows\\addins\\*.exe", "?:\\Windows\\Setup\\*.exe", "?:\\Windows\\Help\\*.exe", "?:\\Windows\\SKB\\*.exe", "?:\\Windows\\Vss\\*.exe", "?:\\Windows\\Web\\*.exe", "?:\\Windows\\servicing\\*.exe", "?:\\Windows\\CbsTemp\\*.exe", "?:\\Windows\\Logs\\*.exe", "?:\\Windows\\WaaS\\*.exe", "?:\\Windows\\ShellExperiences\\*.exe", "?:\\Windows\\ShellComponents\\*.exe", "?:\\Windows\\PLA\\*.exe", "?:\\Windows\\Migration\\*.exe", "?:\\Windows\\debug\\*.exe", "?:\\Windows\\Cursors\\*.exe", "?:\\Windows\\Containers\\*.exe", "?:\\Windows\\Boot\\*.exe", "?:\\Windows\\bcastdvr\\*.exe", "?:\\Windows\\assembly\\*.exe", "?:\\Windows\\TextInput\\*.exe", "?:\\Windows\\security\\*.exe", "?:\\Windows\\schemas\\*.exe", "?:\\Windows\\SchCache\\*.exe", "?:\\Windows\\Resources\\*.exe", "?:\\Windows\\rescache\\*.exe", "?:\\Windows\\Provisioning\\*.exe", "?:\\Windows\\PrintDialog\\*.exe", "?:\\Windows\\PolicyDefinitions\\*.exe", "?:\\Windows\\media\\*.exe", "?:\\Windows\\Globalization\\*.exe", "?:\\Windows\\L2Schemas\\*.exe", "?:\\Windows\\LiveKernelReports\\*.exe", "?:\\Windows\\ModemLogs\\*.exe", "?:\\Windows\\ImmersiveControlPanel\\*.exe" ) and not process.name : ( "SpeechUXWiz.exe", "SystemSettings.exe", "TrustedInstaller.exe", "PrintDialog.exe", "MpSigStub.exe", "LMS.exe", "mpam-*.exe" ) and not process.executable : ("?:\\Intel\\Wireless\\WUSetupLauncher.exe", "?:\\Intel\\Wireless\\Setup.exe", "?:\\Intel\\Move Mouse.exe", "?:\\windows\\Panther\\DiagTrackRunner.exe", "?:\\Windows\\servicing\\GC64\\tzupd.exe", "?:\\Users\\Public\\res\\RemoteLite.exe", "?:\\Users\\Public\\IBM\\ClientSolutions\\*.exe", "?:\\Users\\Public\\Documents\\syspin.exe", "?:\\Users\\Public\\res\\FileWatcher.exe") /* uncomment once in winlogbeat */ /* and not (process.code_signature.subject_name == "Microsoft Corporation" and process.code_signature.trusted == true) */
框架: MITRE ATT&CKTM
-
战术
- 名称:防御规避
- ID:TA0005
- 参考网址:https://attack.mitre.org/tactics/TA0005/
-
技术
- 名称:伪装
- ID:T1036
- 参考网址:https://attack.mitre.org/techniques/T1036/
-
子技术
- 名称:匹配合法名称或位置
- ID:T1036.005
- 参考网址:https://attack.mitre.org/techniques/T1036/005/