Question Q-8702 An organization wants to integrate ServiceNow Security Operations with their…
2 comments · last active Jun 3, 2026
By Marcus Chen · Updated May 25, 2026
| Questions | 25 |
| Passing Score | 75% |
| Format | 100% Multiple Choice |
| Sessions Logged | 763 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized25 questions
Log in to post a comment, reply, or expand a question.
On create: parallel IH actions VirusTotal/Shodan/AbuseIPDB per observable — store enrichment on incident. Hourly batch (opt D) is too slow.
Manual analyst lookups (opt A) = 15-30 min per incident vs seconds in flow.
Playbook governance: Update Sets DEV→TEST→PROD + Git review. Ad-hoc prod edits (opt C) break SOC automation.
Validate playbooks with simulated incidents in TEST before promote.
Phishing investigation: Observables + contextual search across SIEM/EDR/email gateway in the workbench — not manual tool hopping (opt C).
Master incident spawns related SIRs per affected user from hunt results.
TAXII/STIX into Threat Intelligence tables → auto-match observables on SIR. Firewall blocklist alone (opt C) doesn't enrich investigations.
Paste IOCs in work notes (opt A) = no automated correlation on create.
MITRE tactic/technique fields on SIR + PA heatmap — not generic incident category report (opt C).
Purple team uses gaps where techniques have zero incidents — detection coverage story.
Ransomware: SIR + SOAR playbook + Integration Hub EDR isolate. Email endpoint team (opt A) is too slow for containment SLAs.
Timeline on sn_si.incident captures every automated action — exam loves "what gets logged".
Risk score = CVSS + CMDB criticality + threat intel (exploit in wild). CVSS-only sort (opt C) ignores asset context.
Critical CVE on air-gapped lab vs medium on internet DB — second one wins prioritization.
Credential stuffing → Integration Hub AD spoke: disable user + force password change from SIR playbook. Change request (opt C) is wrong process.
Help desk email (opt A) = 30+ min delay; active compromise needs seconds-minutes.
200 servers same CVE → Vulnerability Group + one Remediation Task. 200 separate tasks (opt A) is anti-pattern at scale.
Group closes when all members remediated — SLA on the group not each row.
Control gaps → IRM/Configuration Compliance, not SIR as primary (opt A). SIR is reactive; controls are proactive.
Failed compliance test can spawn VR task — ties SecOps to VR questions on same exam.
Catalog listing of the 5 preview questions for this quiz.
A security compliance officer needs to demonstrate to auditors that all Critical Security Incidents from the past year were investigated within the required 1-hour SLA and contained within 24 hours. What is the BEST way to export this evidence from ServiceNow?
Audit evidence from ServiceNow SIR: (1) Report on sn_si.incident filtered by: severity = Critical AND closed within the past 12 months; (2) Fields: Incident Number, Short Description, Created, Acknowledged (time), Contained/Resolved (time), SLA Met (Yes/No), MTTD, MTTR, Assigned Analyst; (3) Scheduled Report configured to run monthly and email to compliance officer; (4) For annual audit: export to PDF (formatted for formal submission) or CSV (for auditor's own analysis); (5) SLA records (sn_task_sla) provide immutable, system-generated evidence of compliance that can't be manually manipulated; (6) Audit trail confirms data integrity. Manual compilation (option C) is not reliable — system-generated reports with timestamps are more defensible in audits.
A security operations team needs to ensure that when a high-severity Security Incident remains unacknowledged for more than 30 minutes, it escalates to the on-call security manager automatically. What configuration achieves this?
Security Incident SLA with escalation: (1) SLA Definition on sn_si.incident: Condition = severity IN (High, Critical), Start = Created, Pause = (when acknowledged), Target = 30 minutes; (2) SLA Breach Action: when SLA breaches, trigger a notification; (3) Notification recipients: On-Call Security Manager from On-Call Management (using the on-call schedule to identify the currently on-call person by time/day); (4) Notification includes: incident severity, title, assigned group, link, and time unacknowledged; (5) Escalation chain: 30 min → Security Manager, 1 hour → Security Director. On-call management integration ensures the right person is paged regardless of who is on duty. Separate PagerDuty (option D) adds tool complexity when the same capability exists natively in ServiceNow.
A Security Incident is being investigated and the analyst needs to preserve digital evidence from an affected system before it's wiped and rebuilt. What SecOps Evidence Management configuration supports this?
Forensic evidence management in SIR: (1) Evidence collection task in the playbook triggers automated collection: Endpoint Detection & Response (EDR) API captures memory and process dumps; Cloud trail logs are collected via API; SIEM log exports are retrieved for the affected timeframe; (2) Evidence stored as attachments or linked artifact records on the Security Incident with: collection timestamp, source system, analyst who collected, chain of custody notes; (3) Hash values (SHA-256) computed and stored — any tampering invalidates the hash, protecting evidence integrity; (4) Retention policy — evidence is held for the duration of the investigation and legal hold period; (5) eDiscovery integration (Purview) if litigation hold is required. Personal notes (option A) and local storage (option C) break chain of custody and are inadmissible in legal proceedings or regulatory investigations.
A Security Operations team wants to implement automated threat hunting capabilities where specific queries run automatically against log data when a new Threat Intelligence IOC is imported, and results are surfaced as potential Security Incidents. What configuration is needed?
Automated threat hunting with IOC correlation: (1) Trigger: New Threat Intelligence Observable created with confidence = High AND type = Malicious; (2) Flow Designer action: for each newly imported IOC, call the Splunk Spoke "Run Saved Search" or "Run Ad-hoc Query" action with a hunting query (e.g., `index=firewall dest_ip=<new_ioc_ip> earliest=-30d`); (3) If results returned: create Security Incident with "Potential IOC Match" category, attach query results as evidence, set initial severity based on IOC confidence and asset criticality; (4) Analyst reviews auto-created incidents for investigation; (5) False positive tracking improves IOC quality. Waiting for SIEM alerts (option D) only catches FUTURE events; threat hunting retroactively searches historical logs for evidence of past compromise by newly identified IOCs.
During a Security Incident investigation, an analyst determines that a user account was compromised via credential stuffing. They need to immediately disable the account in Active Directory and force a password reset. What is the CORRECT SecOps implementation for this automated response action?
SOAR automation for account compromise response: (1) Integration Hub Active Directory Spoke provides pre-built actions: "Disable User Account," "Reset Password," "Force Password Change"; (2) These actions can be called from: Security Incident playbook steps (automated workflow), or Security Incident Action Buttons (one-click analyst response); (3) The action's result (success/failure) is logged in the Security Incident timeline; (4) The compromised username and AD path are taken from the Security Incident's linked User record; (5) Optional: simultaneously trigger an email to the user explaining the security action. IT help desk email (option A) introduces 30-minute to several-hour delay — unacceptable for active credential compromise. Change requests (option C) add ITSM overhead and approval cycles inappropriate for active incident response.
Splunk notable → REST to SIR ingestion (add-on or adaptive response). CSV daily import (opt A) is a joke for SOC.
Field map: src_ip → observable, rule_name → alert. Push beats ServiceNow polling Splunk.