Which setting is preventing the security requirements of the organization from being met?

Scenario: A Citrix Architect needs to assess an existing on-premises NetScaler deployment which includes Advanced Endpoint Analysis scans. During a previous security audit, the team discovered that certain endpoint devices were able to perform unauthorized actions despite NOT meeting pre-established criteria.
The issue was isolated to several endpoint analysis (EPA) scan settings.
Click the Exhibit button to view the endpoint security requirements and configured EPA policy settings.

Which setting is preventing the security requirements of the organization from being met?
A. Item 1
B. Item 4
C. Item 2
D. Item 3

Download Printable PDF. VALID exam to help you PASS.

5 thoughts on “Which setting is preventing the security requirements of the organization from being met?

  1. C is corretct:

    corrected action 1:
    (client.application.av(antivirus.exe).version==14 && client.file(secure.xml).exists) || (client.application.av(antivirus2.exe).version==12&& client.file(secure.xml).exists)

    OR

    Correct Action2 :

    (client.application.av(antivirus.exe).version==14 || client.application.av(antivirus2.exe).version==12) && client.file(secure.xml).exists

  2. C. Item 2

    first part of the action does not check for the secure.xml file:
    client.application.av(antivirus.exe).version==14

    second part of the action does check for the file:
    (client.application.av(antivirus.exe).version==14 && client.file(secure.xml).exists)

    corrected action:
    (client.application.av(antivirus.exe).version==14 && client.file(secure.xml).exists) || (client.application.av(antivirus.exe).version==14 && client.file(secure.xml).exists)

    1. mistake above fixed here:

      first part of the action does not check for the secure.xml file:
      client.application.av(antivirus.exe).version==14

      second part of the action does check for the file:
      (client.application.av(antivirus2.exe).version==12 && client.file(secure.xml).exists)

      corrected action:
      (client.application.av(antivirus.exe).version==14 && client.file(secure.xml).exists) || (client.application.av(antivirus2.exe).version==12&& client.file(secure.xml).exists)

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.