FCP_FSM_AN-7.2問題集最新版を今すぐ試そう![2026年01月] 試験準備には欠かせません!
有能な受験者がシミュレーション済みのFCP_FSM_AN-7.2試験PDF問題を試そう
質問 # 16
Refer to the exhibit.
A FortiSIEM device is receiving syslog events from a FortiGate firewall. The FortiSIEM analyst is trying to search the raw event logs for the last two hours that contain the keyword "udp". However, they are getting no results from the search, which they know should be available. Based on the filter shown in the exhibit, why are there no search results?
- A. The Time Range value should be set to Real-Time.
- B. The analyst selected AND in the Next column. This is the wrong Boolean operator.
- C. The analyst selected = in the Operator column. That is the wrong operator.
- D. The keyword is case sensitive. Instead of typing udp in the Value field, the analyst should type UDP.
正解:C
解説:
The operator is set to "=", which performs an exact match on the entire raw event log, not a substring search. To find logs that contain the keyword "udp", the analyst should use the CONTAIN operator instead. This will return all logs where "udp" appears anywhere in the raw log message.
質問 # 17
Refer to the exhibit.
Which value would you expect the FortiSIEM parser to use to populate the Application Name field?
- A. applist
- B. Network.Service
- C. wan1
- D. SSL
正解:D
解説:
The Application Name field in FortiSIEM is typically populated using the value of the app field in the raw log. In this event, app="SSL", so "SSL" is the expected application name parsed by FortiSIEM.
質問 # 18
What are two required components of a rule? (Choose two.)
- A. Detection Technology
- B. Clear policy
- C. Subpattern
- D. Exception policy
正解:A、C
解説:
A Subpattern defines the specific conditions or event patterns the rule is designed to detect, and the Detection Technology specifies the type of detection logic (e.g., real-time, historical). Both are essential for a rule to function in FortiSIEM.
質問 # 19
Refer to the exhibit.
What will happen when a device being analyzed by the machine learning configuration shown in the exhibit has a consistently high memory utilization?
- A. FortiSIEM will lower the CPU utilization trigger requirement for CPU utilization.
- B. FortiSIEM will update the regression tables for memory utilization, and average sent and received bytes.
- C. FortiSIEM will trigger an incident for high memory utilization.
- D. FortiSIEM will update the model with a higher memory utilization average value.
正解:D
解説:
In the configuration shown, FortiSIEM uses Memory Util, Sent Bytes, and Received Bytes as input features to predict CPU Utilization via a regression model. If a device shows consistently high memory utilization, the model will incorporate that into its training data and update itself with a higher average value for memory utilization, influencing future CPU utilization predictions.
質問 # 20
Which analytics search can be used to apply a user and entity behavior analytics (UEBA) tag to an event for a failed login by the user JSmith?
- A. Username NOT END WITH jsmith
- B. User = smith
- C. Username CONTAIN smit
- D. User IS jsmith
正解:D
解説:
The correct syntax to match an exact username in FortiSIEM analytics search is User IS jsmith. This ensures that the UEBA tag is applied only when the event is specifically tied to the user "jsmith", which is required for accurate behavioral analytics.
質問 # 21
Refer to the exhibit.
Which two conditions will match this rule and subpatterns? (Choose two.)
- A. A user connects to the wrong IP address for an RDP session five times.
- B. A user runs a brute force password cracker against an RDP server.
- C. A user using RDP over SSL VPN fails to log in to an application five times.
- D. A user fails twice to log in when connecting through RDP.
正解:B、C
解説:
The user initiates an RDP session (Subpattern 1) and then fails to log in multiple times (Subpattern 2 with COUNT(Matched Events) >= 3) - both from the same Source IP and User within 300 seconds.
The brute force attempts typically involve a successful RDP connection followed by multiple failed logins, satisfying the sequence and grouping conditions in the rule.
質問 # 22
Refer to the exhibit.
An analyst is trying to generate an incident with a title that includes the Source IP, Destination IP, User, and Destination Host Name. They are unable to add a Destination Host Name as an incident attribute.
What must be changed to allow the analyst to select Destination Host Name as an attribute?
- A. The Destination IP Event Attribute must be removed.
- B. The Destination Host Name must be selected as a Triggered Attribute.
- C. The Destination Host Name must be set as an aggregate item in a subpattern.
- D. The Destination Host Name must be added as an Event type in the FortiSIEM.
正解:B
解説:
For an attribute like Destination Host Name to be used in the incident title, it must first be included in the Triggered Attributes list. Only attributes listed there are available for substitution in the title template (e.g., $destIpAddr, $srcIpAddr).
質問 # 23
Refer to the exhibit.
How was this incident cleared?
- A. The analyst manually cleared the incident from the incident table.
- B. The incident was cleared automatically by the rule.
- C. FortiSIEM cleared the incident automatically after 24 hours.
- D. The endpoint was rebooted and sent an all-clear signal to FortiSIEM.
正解:B
解説:
The Incident Status shows "Auto Cleared", and the Cleared Reason states: "Rule has not been triggered for 20 minutes." This indicates that the incident was automatically cleared by the rule logic after a defined period of inactivity.
質問 # 24
What can you use to send data to FortiSIEM for user and entity behavior analytics (UEBA)?
- A. FortiSIEM agent
- B. SNMP
- C. SSH
- D. FortiSIEM worker
正解:A
解説:
The FortiSIEM agent can be used to send detailed endpoint data such as user activity and process behavior to FortiSIEM, which is essential for performing User and Entity Behavior Analytics (UEBA).
質問 # 25
How can you query the configuration management database (CMDB) in an analytics search?
- A. Click Attribute > Select from CMDB.
- B. Click Value > Select from CMDB.
- C. On the Admin tab, click CMDB Search.
- D. On the CMDB tab, select an entry, and then click Create Search.
正解:B
解説:
In an analytics search, you can query the CMDB by clicking Value > Select from CMDB, which allows you to choose values directly from CMDB entries for the selected attribute, enabling precise filtering based on asset data.
質問 # 26
Refer to the exhibit.
Which two lookup types can you reference as the subquery in a nested analytics query? (Choose two.)
- A. LDAP Query
- B. CMDB Query
- C. Event Query
- D. SNMP Query
正解:C、D
解説:
In FortiSIEM nested analytics queries, you can reference both CMDB Queries and Event Queries as subqueries. These allow correlation between CMDB data and event data for advanced detection use cases.
質問 # 27
Refer to the exhibit.
An analyst is trying to identify an issue using an expression based on the Expression Builder settings shown in the exhibit; however, the error message shown in the exhibit indicates that the expression is invalid.
What is the correct syntax to create an expression that generates a total count of matched events?
- A. Matched Events COUNT()
- B. Matched Events (COUNT)
- C. (COUNT) Matched Events
- D. COUNT(Matched Events)
正解:D
解説:
The correct syntax is COUNT(Matched Events) - with proper capitalization and spacing - to generate a total count of matched events. The error in the exhibit likely stems from a formatting issue (e.g., lowercase count() or incorrect spacing), not the logical structure of the expression.
質問 # 28
Refer to the exhibit.
If a rule containing the automation policy shown in the exhibit triggers, what will happen?
- A. Associated source IP addresses will be blocked on two FortiGate firewalls.
- B. Associated source IP addresses will be blocked on devices in the Aviation organization.
- C. Associated source IP addresses will be blocked on all FortiGate firewalls.
- D. Associated source IP addresses will be blocked on devices in the Network CMDB group.
正解:A
解説:
The automation policy is configured to run a remediation script named "Fortinet FortiOS - Block Source IP FortiOS via API". It specifies enforcement on two FortiGate devices: FortiGate508 and FortiGate90D. Therefore, associated source IP addresses will be blocked on those two FortiGate firewalls only.
質問 # 29
Refer to the exhibit.
What happens when an analyst clears an incident generated by a rule containing the automation policy shown in the exhibit?
- A. An email is sent to the SOC manager.
- B. A notification is sent to the SOC manager dashboard.
- C. No notification is sent.
- D. The remediation script is run.
正解:C
解説:
The automation policy has the option "Do not notify when an incident is cleared manually" enabled. Therefore, when an analyst manually clears an incident, no notification or automation action is triggered.
質問 # 30
......
Fortinet FCP_FSM_AN-7.2 認定試験の出題範囲:
| トピック | 出題範囲 |
|---|---|
| トピック 1 |
|
| トピック 2 |
|
| トピック 3 |
|
| トピック 4 |
|
検証済み材料を使うならまずFCP_FSM_AN-7.2テストエンジンを試そう:https://www.goshiken.com/Fortinet/FCP_FSM_AN-7.2-mondaishu.html
合格するに必要な問題集はFCP_FSM_AN-7.2試験:https://drive.google.com/open?id=1wvkaEGteJRCrlXFoXBeV0rBYYT1GleKk