File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,23 @@ def list_images(self):
103
103
104
104
return [True , res .json ()]
105
105
106
+ def list_whitelisted_cves (self ):
107
+ '''**Description**
108
+ List the whitelisted global CVEs.
109
+
110
+ **Arguments**
111
+ - None
112
+
113
+ **Success Return Value**
114
+ A JSON object containing all the whitelisted CVEs.
115
+ '''
116
+ url = self .url + "/api/scanning/v1/whitelists/global?bundle=default"
117
+ res = requests .get (url , headers = self .hdrs , verify = self .ssl_verify )
118
+ if not self ._checkResponse (res ):
119
+ return [False , self .lasterr ]
120
+
121
+ return [True , res .json ()]
122
+
106
123
def query_image_content (self , image , content_type = "" ):
107
124
'''**Description**
108
125
Find the image with the tag <image> and return its content.
You can’t perform that action at this time.
0 commit comments