Valid XSIAM-Engineer Dumps shared by EduDump.com for Helping Passing XSIAM-Engineer Exam! EduDump.com now offer the newest XSIAM-Engineer exam dumps, the EduDump.com XSIAM-Engineer exam questions have been updated and answers have been corrected get the newest EduDump.com XSIAM-Engineer dumps with Test Engine here:
An internal audit identified a gap in detecting privilege escalation attempts using Windows built-in tools like 'seclogon.exe' (RunAs) or psexec.exe' (Sysinternals) when used by non-administrative users. These tools are legitimate but often abused. The goal is to detect Process.Name' 'seclogon.exe' or 'psexec.exe' being invoked from a standard user context, especially when followed by an attempt to execute a sensitive command on another system or elevate privileges locally. Which XQL query would effectively capture this behavior as a BIOC, minimizing false positives from legitimate IT operations?
Correct Answer: B
Option B is the most effective and precise XQL query. Option A is too broad and will generate many false positives from legitimate use of these tools by non-admin users for non-privileged tasks. Option C is too generic for psexec and misses seclogon. Option D is specific but misses other malicious uses. Option E is very broad and will generate many false positives. Option B accurately uses the 'pattern' command to look for the specific sequence: 'seclogon.exe' or 'psexec.exe' being invoked by a non-admin user (stage 1), immediately followed (within 10 seconds, and from the same host/user) by attempts to execute privilege-escalation-related commands (stage 2). The 'where stage_l -Process.Reputation != 'trusted' and stage_2.Process.Reputation != 'trusted'' further refines the detection by excluding known good executables, significantly reducing false positives while catching the intended behavior.