View Full Fortinet NSE6_FSR-7.3 Exam Dumps and Practice Test Dumps
Question 341.
A FortiSOAR playbook receives an alert containing a user email address. The workflow must obtain department and manager information before assigning the incident. What should it do?
- Use the appropriate integration to enrich the user information before assignment.
2. Assign the incident randomly.
3. Delete the email address.
4. Create a new dashboard for the user.
Correct Answer: 1
Explanation:
User enrichment allows a playbook to add organizational context before making routing or response decisions. The workflow can use the email address as input to an appropriate identity or directory integration and retrieve information such as department, manager, or other relevant attributes. That context can then support assignment or escalation logic. Random assignment ignores useful evidence, while deleting the identifier prevents enrichment. A dashboard can display information but does not retrieve identity context from the external source.
Question 342.
A connector operation returns an HTTP 401 response from an external service. What should the administrator investigate first?
- Incident severity mapping
2. Authentication credentials or authentication configuration
3. Dashboard widget placement
4. Record ownership
Correct Answer: 2
Explanation:
An HTTP 401 response generally indicates that the request has not been successfully authenticated. The administrator should review the connector’s credentials, tokens, authentication method, and related configuration. Credentials may have expired, been rotated, or become invalid. Authorization for a specific action is a separate issue and is commonly investigated when authentication succeeds but access is denied. Dashboard placement, severity mapping, and record ownership do not normally cause an HTTP 401 response from an external API.
Question 343.
A playbook must extract the first malicious file hash from an array of analysis results. What must the workflow understand?
- Physical disk geometry
2. Dashboard refresh rates
3. The returned array structure and the fields within each object
4. User interface colors
Correct Answer: 3
Explanation:
When connector output contains an array, the workflow must understand how the array is structured and where the required fields exist inside each object. The playbook can then iterate or otherwise evaluate the entries, identify the first result satisfying the malicious criterion, and retrieve its hash. Incorrect assumptions about the data structure can produce null values or wrong mappings. Physical disk geometry, dashboard refresh rates, and interface colors have no effect on parsing structured connector output.
Question 344.
A playbook receives an endpoint identifier from an untrusted alert source before attempting isolation. What is the safest approach?
- Isolate the endpoint immediately without verification.
2. Give the source administrative privileges.
3. Suppress all validation errors.
4. Validate the target against trusted endpoint context before performing isolation.
Correct Answer: 4
Explanation:
High-impact response should not rely blindly on an identifier received from an untrusted source. The workflow should verify the endpoint using trusted inventory or endpoint-management information and confirm that the identifier maps to the intended asset. Additional protected-asset checks or approval controls may also be appropriate. Immediate isolation without validation can affect an unrelated system if the source data is incorrect or manipulated. Target validation therefore provides an important safeguard before disruptive automated actions.
Question 345.
Why is it useful to maintain task due dates during incident response?
- They help track whether required human activities are completed within expected timeframes.
2. They increase API throughput.
3. They replace connector authentication.
4. They increase physical memory.
Correct Answer: 1
Explanation:
Task due dates help teams manage time-sensitive investigation and response activities. They provide a clear expectation for when assigned work should be completed and can support reminders, escalation, workload management, and operational measurement. This is particularly useful when playbooks include human tasks that must occur before later actions can proceed. Due dates do not affect API throughput, connector authentication, or server hardware. Their value lies in improving coordination and visibility around human responsibilities within the incident-response process.
Question 346.
A FortiSOAR integration account currently has administrator privileges, but its workflows only retrieve threat-intelligence information. What should be done?
- Add more administrative permissions.
2. Reduce the account to the minimum permissions required for the retrieval operations.
3. Share the account with all analysts.
4. Disable authentication.
Correct Answer: 2
Explanation:
An account used only for information retrieval generally does not require broad administrative privileges. Applying least privilege reduces the potential impact of credential compromise and limits what an incorrectly configured workflow can do. Administrators should determine the permissions required by the actual connector operations and remove unnecessary access where possible. Sharing the account or disabling authentication would weaken security. Service-account privileges should remain aligned with the specific integration functions they are intended to perform.
Question 347.
A workflow receives 100 observables but should enrich only those that have not already been processed. What design is appropriate?
- Enrich every observable repeatedly.
2. Delete all existing enrichment records.
3. Iterate through the collection and use a condition to skip already processed items.
4. Create 100 separate dashboards.
Correct Answer: 3
Explanation:
Iteration combined with conditional logic allows the workflow to examine each observable and determine whether enrichment has already been completed. Items meeting the processed criterion can be skipped, while new items continue through the enrichment operation. This reduces duplicate API requests, unnecessary processing, and possible rate-limit consumption. Deleting previous results removes useful context, while dashboards do not control collection processing. This pattern provides efficient handling of large collections when only a subset requires additional action.
Question 348.
A playbook updates a record in an external ticketing system. The request times out, so FortiSOAR cannot tell whether the update was applied. What should the workflow do before retrying?
- Assume the update failed and repeat it indefinitely.
2. Delete the external ticket.
3. Close the incident.
4. Verify the external state when possible and use duplicate-safe retry logic.
Correct Answer: 4
Explanation:
A timeout does not always mean the external service failed to process the request. The service may have completed the update but failed to return a response before the timeout. Retrying blindly can therefore repeat an action unnecessarily. When possible, the workflow should query the external state or use identifiers and idempotent logic to determine whether the update already occurred. Controlled retry behavior helps prevent duplicate comments, tickets, or changes while still allowing temporary communication failures to be recovered safely.
Question 349.
Which FortiSOAR capability is useful for presenting recurring operational metrics to SOC stakeholders?
- Scheduled reports or appropriate dashboards
2. Connector passwords
3. API secrets
4. Physical routing tables
Correct Answer: 1
Explanation:
Reports and dashboards can present summarized operational information such as incident volume, status, severity, workload, or other measurements relevant to SOC stakeholders. Scheduled reporting is useful when information must be delivered or reviewed on a recurring basis, while dashboards provide ongoing visual visibility. Connector passwords and API secrets authenticate integrations, and routing tables support network communication. Reporting and visualization capabilities are therefore appropriate for communicating recurring SOC performance and operational information.
Question 350.
A connector successfully authenticates but receives a 403 response when attempting to delete an external object. What should be checked?
- The number of dashboard widgets
2. Whether the account is authorized to perform the delete operation
3. The incident title length
4. The physical disk model
Correct Answer: 2
Explanation:
A 403 response commonly indicates that the request was understood but the authenticated identity is not permitted to perform the requested action. The administrator should verify whether the connector account has the specific authorization required for deletion and whether that privilege should be granted. The account should still follow least privilege. Dashboard configuration, incident titles, and disk hardware do not determine external API authorization. Operation-specific permission checks are therefore the appropriate troubleshooting step.
Question 351.
A playbook receives a timestamp from one system in a different format than another system uses. Why might normalization be necessary?
- To change physical server time automatically
2. To increase connector privileges
3. To enable reliable comparison and processing of the time values
4. To increase dashboard resolution
Correct Answer: 3
Explanation:
Different systems may represent dates and times using different formats, time zones, or conventions. Normalizing these values allows a workflow to compare events, calculate durations, sort records, or apply time-based conditions consistently. Without normalization, logically equivalent timestamps may be interpreted incorrectly or fail parsing. Time-value normalization does not increase connector privileges or display resolution. Consistent time handling is especially important when FortiSOAR coordinates events and actions originating from multiple integrated platforms.
Question 352.
A playbook is designed to disable a user account only after supervisor approval. The approval request expires without a decision. What should the workflow do?
- Automatically interpret expiration as approval.
2. Disable the account regardless.
3. Delete the approval evidence.
4. Follow the defined timeout or escalation path without assuming approval.
Correct Answer: 4
Explanation:
An expired approval request should not automatically be interpreted as authorization for a sensitive action unless the organization’s process explicitly defines that behavior. A safer workflow follows a documented timeout path, such as escalating the request, notifying another responder, or ending the action branch. Disabling the account without approval defeats the control intended by the human authorization step. Preserving the approval state also supports accountability. Approval timeouts should therefore be handled explicitly in the workflow design.
Question 353.
What is a primary benefit of separating test and production connector configurations?
- It reduces the risk of testing workflows against live production systems or credentials.
2. It eliminates all integration failures.
3. It guarantees APIs never change.
4. It removes the need for access control.
Correct Answer: 1
Explanation:
Separating test and production connector configurations helps prevent development or validation activity from unintentionally affecting live systems. Test workflows can use appropriate test endpoints, accounts, or data, while production integrations retain their own controlled credentials and permissions. This separation does not guarantee that integrations will never fail, nor does it remove the need for access control. It provides safer change management by reducing the chance that experimental automation will perform unintended actions against production services.
Question 354.
An administrator is troubleshooting a playbook that fails only when an optional API field is absent. What should be added?
- More administrator accounts
2. Null or missing-field handling before the value is used
3. Additional dashboard themes
4. A physical network switch
Correct Answer: 2
Explanation:
Optional API fields may legitimately be absent from some responses. A workflow that assumes the field always exists can fail when it tries to reference, compare, or transform a missing value. Explicit null or missing-field handling allows the playbook to supply an appropriate default, skip an optional step, or follow an alternate path. Creating users or changing dashboards does not solve the data issue. Defensive handling of optional fields makes integration workflows more resilient to valid variations in external responses.
Question 355.
A SOC wants containment actions to differ according to whether an affected device is a workstation or a critical server. What should the playbook use?
- A random response action
2. The same destructive action for every asset
3. Asset context combined with conditional response logic
4. Dashboard formatting
Correct Answer: 3
Explanation:
Asset context can help a workflow distinguish ordinary endpoints from critical infrastructure and choose a response path appropriate to the potential business impact. The playbook can use asset type or criticality fields in conditions and apply stronger safeguards or human approval for critical servers. Random or uniform destructive actions ignore important context. Dashboard formatting does not control containment. Combining enrichment with conditional logic supports risk-aware automation and reduces the chance that response actions cause unnecessary operational disruption.
Question 356.
A connector call succeeds, but the returned JSON schema has changed and a later playbook step fails. What should the administrator do?
- Increase physical storage.
2. Reboot every analyst workstation.
3. Ignore the failed step.
4. Inspect the new response structure and update dependent mappings or references.
Correct Answer: 4
Explanation:
A successful API request does not guarantee that downstream automation remains compatible with the returned data. If the JSON schema changes, field paths referenced by later steps may no longer exist or may contain different data types. Administrators should inspect the actual response, identify affected mappings, update the workflow, and test relevant paths. Storage expansion and workstation reboots do not address schema changes. Dependency-aware testing is essential when external integrations modify their response structures.
Question 357.
Which capability enables FortiSOAR to use information from one integrated product as input to an action in another product?
- Orchestration and playbook data passing
2. Physical RAID
3. Disk partitioning
4. Hardware inventory alone
Correct Answer: 1
Explanation:
FortiSOAR playbooks can coordinate multiple integrations and pass values returned by one operation into subsequent operations. For example, an endpoint identifier discovered through one system can become input to another authorized response action. This ability is central to orchestration because it connects otherwise separate technologies into a coherent process. Physical RAID and disk partitioning are infrastructure functions, while hardware inventory alone does not coordinate actions. Data passing allows integrated products to participate in a unified workflow.
Question 358.
A playbook repeatedly creates duplicate comments in an external ticket whenever a later step is retried. What improvement is most appropriate?
- Increase the number of retries.
2. Add duplicate-prevention or idempotency checks around the comment action.
3. Delete the FortiSOAR incident.
4. Disable execution logging.
Correct Answer: 2
Explanation:
Retry logic should distinguish between actions that never completed and actions that succeeded before a later workflow failure. If a comment has already been created, repeating the operation can clutter the external ticket and confuse analysts. The playbook can store an identifier, track completion state, or check existing content before repeating the action. Increasing retries would worsen duplication, while deleting records or disabling logs removes useful information. Idempotent design helps make workflow retries safe and predictable.
Question 359.
A playbook must distribute new incidents among different teams based on incident type and business unit. Which design is appropriate?
- Assign every incident to the same user.
2. Remove the business-unit information.
3. Use conditional routing based on the relevant record fields.
4. Create a separate FortiSOAR installation for each team.
Correct Answer: 3
Explanation:
Conditional routing can evaluate structured fields such as incident type and business unit and then assign the record to the appropriate team. This supports consistent workload routing and reduces manual triage. The logic should reflect documented organizational responsibilities and include an appropriate fallback when required information is missing. Assigning everything to one person ignores the routing requirement, while separate FortiSOAR installations are unnecessary. Field-based assignment logic provides a scalable approach to team queue management.
Question 360.
After changing a connector to use a new API version, what is the most appropriate validation approach?
- Test only whether the login page is reachable.
2. Assume compatibility because the product name is unchanged.
3. Delete previous execution records.
4. Validate authentication, required operations, returned data structures, and dependent playbooks.
Correct Answer: 4
Explanation:
A new API version can change authentication behavior, endpoints, required parameters, supported operations, and response structures. Testing only connectivity is therefore insufficient. Administrators should verify the connector functions required by production workflows and confirm that returned data still matches downstream mappings and conditions. Dependent playbooks should be exercised through representative paths before the change is considered complete. End-to-end validation helps detect compatibility problems that a simple connectivity or authentication test might miss.