exam questions

Exam 350-201 All Questions

View all questions & answers for the 350-201 exam

Exam 350-201 topic 1 question 136 discussion

Actual exam question from Cisco's 350-201
Question #: 136
Topic #: 1
[All 350-201 Questions]

An analyst received multiple alerts on the SIEM console of users that are navigating to malicious URLs. The analyst needs to automate the task of receiving alerts and processing the data for further investigations. Three variables are available from the SIEM console to include in an automation script: console_ip, api_token, and reference_set_name. What must be added to this script to receive a successful HTTP response?
#!/usr/bin/python
import sys
import requests

  • A. {1}, {2}
  • B. {1}, {3}
  • C. console_ip, api_token
  • D. console_ip, reference_set_name
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
marceus
4 months, 2 weeks ago
Selected Answer: C
ChatGPT: To interact with the SIEM system's API and receive a successful response, the script needs the console_ip and api_token for authentication and proper interaction with the system. The reference_set_name would be used for specific data processing or filtering tasks, but it is not needed to receive a basic HTTP response.
upvoted 1 times
...
DrVoIP
10 months, 1 week ago
Option B. {1}, {3} - The console_ip is needed to send a request to the SIEM console, and reference_set_name is needed to create the reference set to store the malicious URLs. The api_token is not needed to receive a successful HTTP response, but it may be used to authenticate the request. Therefore, the correct option is B. {1}, {3}. - ChatGPT
upvoted 1 times
...
Bobster02
1 year, 12 months ago
I will take it back. C is correct.
upvoted 1 times
...
Bobster02
2 years, 1 month ago
Selected Answer: A
A. {1}, {2}
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...