I'm trying to monitor my Jenkins instances by using the Jenkins CLI. Most important are security warnings like given in the Jenkins Security Advisories. Those are shown in the GUI in the upper right corner by red and orange warning symbols:

I can use the CLI to list all my plugins and possible updates for these:
java -jar ./jenkins-cli.jar <host> -auth <token> list-plugins | grep -E '\([0-9].[0-9].*\)'
This returns a three columned list like
| docker-commons | Docker Commons Plugin | 1.20 (1.21) |
where 1.20 tells me the currently installed version and (1.21) tells me the currently available version.
But still I could not find a CLI-call to tell whether a listed plugin has a known vulnerability. This information seems only to be available in the GUI?