Security Dashboard
-
Get scan-compliance
-
To get the scan-compliance for all the applications across all the workspace use command:
initz get scan-compliance
-
To get the scan-compliance for all the applications of specific workspace use command:
initz get scan-compliance --workspaceid=<workspaceID>
-
To get the scan-compliance for specific application use command:
initz get scan-compliance --appid=<appId>
info-
If your application is not in the current workspace, don't forget to set the workspace. To set the workspace use command :
initz set workspace --workspaceid=<workspaceID>
OR
You can run the command directly:
initz get scan-compliance --appid=<appID> --workspaceid=<workspaceID>
-
-
-
Get the CVE(Common Vulnerabilities and Exposures)
- To get the cves for all the applications across all the workspaces use command :
initz get app-cves
- To get the cves for all the applications of specific workspace use command :
initz get app-cves --workspaceid=<workspaceID>
- To get the cves for specific application use command:
If your application is not in current workspace use command :
initz get app-cves --appid=<appID>
initz get app-cves --appid=<appID> --workspaceid=<workspaceID>
- To get the cves for all the applications across all the workspaces use command :
-
Get Overall Exploit Probability
- Use command :
initz get oep --appid=<appID>
- Use command :
-
Get CVE Trend
- Use command :
initz get cve-trend --appid=<appID>
- Use command :
-
Get Application Vulnerabilities
-
Use command :
initz get vuln --appid=<appID>
Running this command will provide you CVE ID,severity,exploit probability ,package name ,version. You can use CVE IDs associated with the application's vulnerabilities to obtain detailed descriptions of each specific vulnerability.
- To get the detailed description of CVE use command :
initz describe app-cve --cveid=<CVEID>
- To get the detailed description of CVE use command :
-
-
Get Licenses For Application
- Use command :
initz get licenses --appid=<appID>
- To get detailed description of each license use command :
initz describe license --licenseid=<licenseID>
- Use command :
-
To download SBOM(Software Bill of Materials)
- Use command :
initz download app-sbom --appid=<appid> --format=<spdx/cydx>
- Use command :
-
To download CVE(Common Vulnerabilities and Exposures)
- Use command :
initz download app-cves --appid=<appid> --format=<spdx/cydx>
- Use command :
important
- By default, the runtype for each security command is set to 'non-prod'.
To change it to 'prod', simply add the argument
--runtype="prod"
to the command.