C1000-156 · Question #7
Which event advanced search query will check an IP address against the Spam X-Force category with a confidence greater than 3?
The correct answer is D. select * from events where XF0RCE_IP_C0NFIDENCE('Malware',sourceip)>3. To check an IP address against the Spam X-Force category with a confidence greater than 3 using an advanced search query in QRadar, the correct query format is: Query Structure: select from events where XF0RCE_IP_C0NFIDENCE('Malware',sourceip)>3 select from events: This part of…
Question
Which event advanced search query will check an IP address against the Spam X-Force category with a confidence greater than 3?
Options
- Aselect * from events where XFORCE_IP_CONFIDENCE( 'Spam', sourceip>>3
- Bselect * from flows where XFORCE_IP_CONFIDENCE{'Spam', sourceip)<3
- Cselect * from flows where XF0RCE_iP_C0NFiDEKCE{*Malware',sourceip)-3
- Dselect * from events where XF0RCE_IP_C0NFIDENCE('Malware',sourceip)>3
How the community answered
(31 responses)- A6% (2)
- B19% (6)
- C10% (3)
- D65% (20)
Explanation
To check an IP address against the Spam X-Force category with a confidence greater than 3 using an advanced search query in QRadar, the correct query format is: Query Structure: select * from events where XF0RCE_IP_C0NFIDENCE('Malware',sourceip)>3 select * from events: This part of the query selects all events from the QRadar events database. where XF0RCE_IP_C0NFIDENCE('Malware',sourceip)>3: This filter checks if the source IP address has a confidence level greater than 3 for being associated with malware according to the X-Force category. This query is designed to filter out and display events where the source IP is identified with high confidence as being associated with malicious activity.
Topics
Community Discussion
No community discussion yet for this question.