Prisma Certified Cloud Security Engineer (PCCSE) — Question 242
Given this information:
✑ The Console is located at https://prisma-console.mydomain.local
✑ The username is: cluster
✑ The password is: password123
✑ The image to scan is: myimage:latest
Which twistcli command should be used to scan a Container for vulnerabilities and display the details about each vulnerability?
Answer options
- A. twistcli images scan --console-address https://prisma-console.mydomain.local -u cluster -p password123 --details myimage:latest
- B. twistcli images scan --console-address prisma-console.mydomain.local -u cluster -p password123 --vulnerability-details myimage:latest
- C. twistcli images scan --address prisma-console.mydomain.local -u cluster -p password123 --vulnerability-details myimage:latest
- D. twistcli images scan --address https://prisma-console.mydomain.local -u cluster -p password123 --details myimage:latest
Correct answer: C
Explanation
The correct answer is C because it uses the appropriate syntax for the 'twistcli' command to scan an image, including the correct address format and flags. Option A is incorrect due to the use of '--console-address' instead of '--address'. Option B has a similar issue with '--console-address' and also uses the wrong flag '--vulnerability-details'. Option D incorrectly uses 'https://' with '--address' which is not required in this context.