PCCSE · Question #69
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 twistcl
The correct answer is D. twistcli images scan --address https://prisma-console.mydomain.local -u cluster -p password123 -. The correct twistcli syntax uses '--address' (not '--console-address') followed by the full HTTPS URL, then '-u' and '-p' for credentials, and '--details' to display per-vulnerability details, followed by the image name. Answer D matches this: 'twistcli images scan --address http
Question
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?
Options
- Atwistcli images scan --console-address https://prisma-console.mydomain.local -u cluster -p
- Btwistcli images scan --console-address prisma-console.mydomain.local -u cluster -p password123
- Ctwistcli images scan --address prisma-console.mydomain.local -u cluster -p password123 --
- Dtwistcli images scan --address https://prisma-console.mydomain.local -u cluster -p password123 -
How the community answered
(46 responses)- A4% (2)
- B7% (3)
- C15% (7)
- D74% (34)
Explanation
The correct twistcli syntax uses '--address' (not '--console-address') followed by the full HTTPS URL, then '-u' and '-p' for credentials, and '--details' to display per-vulnerability details, followed by the image name. Answer D matches this: 'twistcli images scan --address https://prisma-console.mydomain.local -u cluster -p password123 --details myimage:latest'. Answer A incorrectly uses '--console-address'. Answer B omits the 'https://' scheme. Answer C also omits the scheme and uses incorrect flags.
Topics
Community Discussion
No community discussion yet for this question.