Fortinet NSE6_FSR-7.3 Practice Test Questions and Exam Dumps Part17 Q321-340

View Full Fortinet NSE6_FSR-7.3 Exam Dumps and Practice Test Dumps

 

Question 321.

A FortiSOAR workflow receives an external alert identifier and must prevent creation of a second incident for the same alert. What should the workflow do?

  1. Search existing records for the identifier before creating a new incident.
    2. Create a new incident every time.
    3. Remove the external identifier.
    4. Disable the source connector.

Correct Answer: 1

Explanation:

The workflow should use the external alert identifier as a correlation or deduplication value and search existing records before creating another incident. If a matching record already exists, the workflow can update or relate information to that record instead of generating a duplicate. This helps keep case data accurate and prevents analysts from investigating the same event multiple times. Removing the identifier eliminates useful correlation data, while disabling the connector would interrupt legitimate ingestion. Deduplication logic improves the quality of automated case creation.

Question 322.

A REST API returns a successful authentication response but rejects a later request because a required parameter is missing. What should the administrator examine?

  1. The FortiSOAR dashboard layout
    2. The connector action inputs and parameter mapping
    3. The physical server chassis
    4. The analyst’s monitor settings

Correct Answer: 2

Explanation:

Successful authentication indicates that the connector can identify itself to the external service. A missing-parameter error instead points to the request generated by the specific operation. The administrator should inspect required connector inputs, dynamic values, field mappings, and the actual request-related execution information. A required value may be null or mapped from the wrong source. Dashboard layout and hardware settings do not determine API parameters. Reviewing operation inputs is therefore the appropriate troubleshooting approach.

Question 323.

A connector response contains an array of objects, and each object includes an id field. The playbook must perform another action for every returned object. What should it do?

  1. Create a new FortiSOAR installation for each object.
    2. Convert all objects into dashboards.
    3. Iterate over the array and reference each object’s identifier.
    4. Use only the first object and ignore the rest.

Correct Answer: 3

Explanation:

An array represents a collection of values or objects. The workflow can iterate through that collection and retrieve the identifier from each current object before invoking the next operation. This makes the workflow independent of the exact number of objects returned. Processing only the first object could leave relevant items unhandled, while separate installations or dashboards do not provide array processing. Understanding arrays and field references is important when FortiSOAR workflows consume structured JSON responses from external APIs.

Question 324.

An endpoint isolation playbook receives a device name but cannot uniquely identify the endpoint because several systems have similar names. What should happen?

  1. Isolate every similar endpoint.
    2. Select the first matching endpoint automatically.
    3. Close the incident without isolation.
    4. Obtain a unique identifier or require verification before performing isolation.

Correct Answer: 4

Explanation:

High-impact actions should use sufficiently precise target information. If a device name does not uniquely identify an endpoint, automatically choosing a target could disrupt the wrong system. The workflow should obtain a reliable unique identifier from the endpoint platform or route the decision for verification. Isolating every match would magnify the risk, while closing the incident leaves the response incomplete. Target validation is an important safeguard whenever automated containment could materially affect business operations.

Question 325.

What is a useful reason to normalize severity values received from multiple external security products?

  1. To provide a consistent internal representation for workflow decisions and reporting.
    2. To increase physical network bandwidth.
    3. To eliminate connector authentication.
    4. To increase server disk capacity.

Correct Answer: 1

Explanation:

Different security products may represent severity using different terms, scales, or numeric ranges. Normalization maps those values into a consistent internal model that FortiSOAR workflows can evaluate reliably. For example, several external severity schemes can be translated into the organization’s standard incident severity values. This supports consistent prioritization, reporting, and conditional automation. Severity normalization does not affect bandwidth, authentication, or physical storage. Its purpose is to make heterogeneous security data easier to process consistently.

Question 326.

A connector account can successfully read incidents from an external platform but cannot add comments. What should be checked?

  1. The FortiSOAR dashboard theme
    2. Whether the external account has the permission required to create comments
    3. The number of dashboards
    4. The server’s physical dimensions

Correct Answer: 2

Explanation:

An account may have permission to read records without having permission to modify them or create related content. Because read operations succeed, the administrator should investigate authorization for the comment operation rather than assuming authentication is broken. Only the minimum additional permission required should be granted. Dashboard settings and hardware dimensions are unrelated to API authorization. Reviewing operation-specific permissions is an important part of troubleshooting integrations while maintaining least-privilege access.

Question 327.

A playbook must treat a missing field differently from a field that explicitly contains a value of zero. What should the workflow implement?

  1. Dashboard filtering only
    2. Physical routing logic
    3. Explicit null or empty-value validation
    4. Connector deletion

Correct Answer: 3

Explanation:

A missing or null field is not necessarily equivalent to a legitimate value such as zero. The workflow should explicitly validate whether the field exists and contains usable data before interpreting its value. This is particularly important for numeric scores, counts, or confidence values where zero may have a defined meaning. Treating missing data as zero can cause incorrect branching. Explicit validation helps the playbook distinguish unavailable information from valid values and respond appropriately to each condition.

Question 328.

A playbook has already created an external ticket, but a retry could create the same ticket again. Which design principle should be considered?

  1. Unlimited duplicate creation
    2. Removing all identifiers
    3. Disabling execution records
    4. Idempotent or duplicate-prevention logic before repeating the creation action.

Correct Answer: 4

Explanation:

Retries should be designed so they do not unintentionally repeat actions that have already succeeded. The workflow can store the external ticket identifier, search for an existing ticket, or otherwise determine whether creation has already occurred before retrying. This is an example of idempotency or duplicate-prevention behavior. Unlimited retries without checks can create duplicate tickets and confusion. Preserving identifiers and execution context helps automation distinguish an uncompleted action from one that succeeded before a later workflow step failed.

Question 329.

Which information is most useful when assigning an incident to the team best equipped to handle it?

  1. Incident category and relevant contextual attributes
    2. Dashboard background color
    3. Physical disk model
    4. Connector installation date alone

Correct Answer: 1

Explanation:

Assignment decisions can use structured incident context such as category, affected technology, asset information, severity, location, or other organization-specific fields. This allows incidents to be routed to teams with the appropriate responsibility and expertise. A playbook can automate this routing according to defined rules while preserving the ability to reassign cases when necessary. Dashboard appearance and hardware details are not useful routing criteria. Context-aware assignment can improve case ownership and reduce delays in the response process.

Question 330.

A FortiSOAR administrator wants a service account to execute only the connector operations required by a specific workflow. Which security principle applies?

  1. Maximum privilege
    2. Least privilege
    3. Anonymous administration
    4. Shared superuser access

Correct Answer: 2

Explanation:

Least privilege means granting an identity only the permissions necessary to perform its authorized functions. For a connector service account, permissions should correspond to the external operations actually used by the workflow. Unnecessary administrative, deletion, or configuration rights increase the impact of credential compromise or automation errors. Shared superuser access also weakens accountability. Restricting the service account to required capabilities provides the necessary integration functionality while reducing avoidable security exposure.

Question 331.

A workflow must wait for an analyst to complete an investigation task before proceeding to a containment decision. What should the playbook use?

  1. Physical disk expansion
    2. Dashboard export
    3. A manual task or human-interaction step in the workflow
    4. Connector credential rotation

Correct Answer: 3

Explanation:

A manual task or other human-interaction step allows the playbook to incorporate analyst work into an otherwise automated process. The workflow can pause or follow the designed process until the required investigation activity is completed, then use the result to continue toward the containment decision. This supports human-in-the-loop response when judgment is required. Disk expansion, dashboard exports, and credential rotation do not coordinate analyst activities with playbook execution. Manual workflow elements connect human decisions with automation.

Question 332.

An external API begins returning HTTP 429 responses during a large enrichment workflow. What does this most likely indicate?

  1. The dashboard has too many widgets.
    2. The incident has an invalid owner.
    3. FortiSOAR has insufficient disk space.
    4. The external service is applying a request rate limit.

Correct Answer: 4

Explanation:

An HTTP 429 response commonly indicates that the client has sent more requests than the service currently permits. The workflow should respect the provider’s rate limits and use appropriate pacing, batching, or controlled retry behavior. Immediate unlimited retries can continue triggering the limit and may worsen the problem. Dashboard configuration, incident ownership, and local disk capacity do not normally cause this HTTP response. Rate-limit awareness is important when playbooks perform large numbers of automated enrichment requests.

Question 333.

Why should FortiSOAR preserve timestamps for important investigation and response activities?

  1. They help establish the sequence and timing of actions during the incident lifecycle.
    2. They increase connector privileges.
    3. They replace user authentication.
    4. They automatically block malicious indicators.

Correct Answer: 1

Explanation:

Timestamps help analysts reconstruct when important events occurred, including alert creation, enrichment, assignments, approvals, containment actions, and closure activities. This information supports investigation, operational measurement, troubleshooting, and auditing. Accurate time information is especially useful when correlating activity across multiple systems. Timestamps do not grant connector permissions, replace authentication, or automatically perform response actions. Their primary value is preserving temporal context so the sequence and duration of incident-response activities can be understood.

Question 334.

A connector works in a test environment but fails in production even though the same playbook logic is used. What should be compared?

  1. Dashboard colors only
    2. Connector configuration, credentials, permissions, connectivity, and environment-specific values
    3. Analyst keyboard layouts
    4. Office furniture placement

Correct Answer: 2

Explanation:

Test and production environments frequently differ in endpoints, credentials, network access, permissions, certificates, or other configuration values. When identical workflow logic behaves differently, administrators should compare these environment-specific dependencies rather than immediately redesigning the playbook. Execution errors can help identify the exact difference. Dashboard appearance and workstation settings are unrelated. Maintaining clear separation between test and production configurations also helps prevent test credentials or endpoints from being accidentally used in production automation.

Question 335.

A SOC wants an incident to be escalated when either its severity is Critical or it affects a protected asset. Which capability should implement this requirement?

  1. Report export
    2. Physical network configuration
    3. Conditional logic using the defined escalation criteria
    4. Dashboard resizing

Correct Answer: 3

Explanation:

Conditional logic allows the workflow to evaluate multiple escalation criteria and continue when the required logical expression is satisfied. In this case, either Critical severity or protected-asset status can trigger the escalation path. Clearly defining the logical relationship between conditions is important so the playbook behaves as intended. Reports and dashboards display information but do not make execution decisions, while network configuration is unrelated. Conditions provide the flexible decision structure needed for context-aware escalation.

Question 336.

A workflow is synchronizing an incident with an external ticketing platform. Both systems change the same field differently. What should be defined?

  1. A random value selection method
    2. Automatic deletion of both records
    3. Permanent disabling of synchronization
    4. A clear conflict-resolution or source-of-truth rule.

Correct Answer: 4

Explanation:

Bidirectional synchronization can create conflicts when both systems modify the same information. The integration design should define which system is authoritative for particular fields or specify another deterministic conflict-resolution rule. In some situations, conflicting changes may need analyst review. Random selection can overwrite valid information unpredictably, while deleting records or disabling synchronization is unnecessarily disruptive. A documented source-of-truth strategy helps keep synchronized data consistent and makes the behavior of automated updates predictable.

Question 337.

What is the primary purpose of connector operations in a FortiSOAR playbook?

  1. To interact with supported external systems and services as part of the workflow
    2. To increase physical server memory
    3. To replace every FortiSOAR record
    4. To format dashboard colors

Correct Answer: 1

Explanation:

Connector operations allow playbooks to interact with external products and services. Depending on the integration, operations can retrieve intelligence, query endpoints, create tickets, send messages, modify external objects, or perform authorized response actions. Their inputs and outputs can be combined with FortiSOAR record data and workflow logic. Connector operations do not modify physical memory or exist primarily for dashboard formatting. They provide the functional bridge between FortiSOAR automation and integrated technologies.

Question 338.

A connector action begins timing out after the external service becomes slower. What should be reviewed before simply increasing the timeout substantially?

  1. Dashboard font selection
    2. Service health, expected response behavior, timeout settings, and workflow retry strategy
    3. Incident title length
    4. Analyst screen brightness

Correct Answer: 2

Explanation:

A timeout can indicate external service degradation, network issues, an unusually expensive request, or a timeout value that no longer matches expected behavior. Administrators should understand the cause before increasing the timeout significantly. They should also consider how retries affect the external service and overall playbook duration. Excessively long waits can delay incident response without solving the underlying problem. Dashboard fonts and workstation display settings do not influence API response times. Timeout changes should be based on observed integration behavior.

Question 339.

A playbook receives an external severity value of P1, but FortiSOAR uses Critical, High, Medium, and Low. What should the workflow use?

  1. A random severity value
    2. The external value without interpreting it anywhere
    3. A defined mapping that translates the external severity into the internal model
    4. A new FortiSOAR server

Correct Answer: 3

Explanation:

When systems use different classification schemes, a defined mapping can translate external values into the internal terminology used by FortiSOAR workflows. For example, the organization may define how P1 through P4 correspond to its incident severity levels. This mapping should be documented and consistently applied so prioritization and reporting remain predictable. Random translation would produce unreliable results, while deploying another server does not solve semantic differences. Data normalization enables consistent automation across heterogeneous integrated systems.

Question 340.

After changing severity-mapping logic used by several production playbooks, what should the administrator do?

  1. Assume all dependent workflows will behave correctly.
    2. Remove previous incident records.
    3. Disable all dashboards.
    4. Test affected workflows and monitor resulting classifications and downstream actions.

Correct Answer: 4

Explanation:

Severity mappings can influence prioritization, assignment, notifications, approvals, and automated containment. Changing the mapping can therefore alter the behavior of several downstream workflows. Administrators should identify dependent automation, test representative values, and confirm that resulting classifications trigger the intended actions. Production monitoring can then reveal unexpected edge cases. Deleting historical records or disabling dashboards does not validate the new mapping. Dependency-aware testing helps prevent a seemingly small normalization change from producing unintended response behavior.