CCST-Networking 無料問題集「Cisco Certified Support Technician (CCST) NetworkingExam」
Move the MFA factors from the list on the left to their correct examples on the right. You may use each factor once, more than once, or not at all.
Note: You will receive partial credit for each correct selection.

Note: You will receive partial credit for each correct selection.

正解:

Explanation:
The correct matching of the MFA factors to their examples is as follows:
* Entering a one-time security code sent to your device after logging in: Possession
* Holding your phone to your face to be recognized: Inherence
* Specifying your user name and password to log on to a service: Knowledge Here's why each factor matches the example:
* Possession: This factor is something the user has, like a mobile device. A one-time security code sent to this device falls under this category.
* Inherence: This factor is something the user is, such as a biometric characteristic. Facial recognition using a phone is an example of this factor.
* Knowledge: This factor is something the user knows, like a password or PIN.
Multi-Factor Authentication (MFA) enhances security by requiring two or more of these factors to verify a user's identity before granting access.
* Entering a one-time security code sent to your device after logging in.
* Factor: Possession
* Explanation: This factor relates to something you have, such as a device that receives a security code.
* Holding your phone to your face to be recognized.
* Factor: Inference (typically referred to as Inherence or Biometric)
* Explanation: This factor relates to something you are, such as biometric authentication like facial recognition.
* Specifying your username and password to log on to a service.
* Factor: Knowledge
* Explanation: This factor relates to something you know, such as a username and password.
* Possession Factor: This involves something the user has in their possession. Receiving a one-time security code on a device (e.g., phone) is an example of this.
* Inference Factor (Inherence/Biometric): This involves something inherent to the user, such as biometric verification (e.g., facial recognition or fingerprint scanning).
* Knowledge Factor: This involves something the user knows, such as login credentials (username and password).
References:
* Multi-Factor Authentication (MFA) Explained: MFA Guide
* Understanding Authentication Factors: Authentication Factors
An app on a user's computer is having problems downloading data. The app uses the following URL to download data:
https://www.companypro.net:7100/api
You need to use Wireshark to capture packets sent to and received from that URL.
Which Wireshark filter options would you use to filter the results? Complete the command by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.

https://www.companypro.net:7100/api
You need to use Wireshark to capture packets sent to and received from that URL.
Which Wireshark filter options would you use to filter the results? Complete the command by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.

正解:

Explanation:
To capture packets sent to and received from the URLhttps://www.companypro.net:7100/apiusing Wireshark, you would use the following filter options:
* Protocol:tcp
* Filter Type:port
* Port Number:7100
This filter setup in Wireshark will display all TCP packets that are sent to or received from port 7100, which is the port specified in the URL for the API service. Since HTTPS typically uses TCP as the transport layer protocol, filtering by TCP and the specific port number will help isolate the relevant packets for troubleshooting the app's data download issues.
* cp: The app is using HTTPS, which relies on the TCP protocol for communication.
* port: The specific port number used by the application, which in this case is 7100.
* 7100: This is the port specified in the URL (https://www.companypro.net:7100/api).
This filter will capture all TCP traffic on port 7100, allowing you to analyze the packets related to the application's data download.
References:
* Wireshark Filters: Wireshark Display Filters