Skip to content

Commit bb0332e

Browse files
feat(websecurityscanner): update the api
#### websecurityscanner:v1 The following keys were added: - schemas.Finding.properties.xxe (Total Keys: 2) - schemas.Xxe (Total Keys: 4) #### websecurityscanner:v1beta The following keys were added: - schemas.Finding.properties.xxe.$ref (Total Keys: 1) - schemas.Xxe (Total Keys: 4)
1 parent 5ed38cc commit bb0332e

5 files changed

+74
-3
lines changed

docs/dyn/websecurityscanner_v1.projects.scanConfigs.scanRuns.findings.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ <h3>Method Details</h3>
162162
],
163163
&quot;storedXssSeedingUrl&quot;: &quot;A String&quot;, # The reproduction url for the seeding POST request of a Stored XSS.
164164
},
165+
&quot;xxe&quot;: { # Information reported for an XXE. # Output only. An addon containing information reported for an XXE, if any.
166+
&quot;payloadLocation&quot;: &quot;A String&quot;, # Location within the request where the payload was placed.
167+
&quot;payloadValue&quot;: &quot;A String&quot;, # The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.
168+
},
165169
}</pre>
166170
</div>
167171

@@ -240,6 +244,10 @@ <h3>Method Details</h3>
240244
],
241245
&quot;storedXssSeedingUrl&quot;: &quot;A String&quot;, # The reproduction url for the seeding POST request of a Stored XSS.
242246
},
247+
&quot;xxe&quot;: { # Information reported for an XXE. # Output only. An addon containing information reported for an XXE, if any.
248+
&quot;payloadLocation&quot;: &quot;A String&quot;, # Location within the request where the payload was placed.
249+
&quot;payloadValue&quot;: &quot;A String&quot;, # The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.
250+
},
243251
},
244252
],
245253
&quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no more results in the list.

docs/dyn/websecurityscanner_v1beta.projects.scanConfigs.scanRuns.findings.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ <h3>Method Details</h3>
160160
&quot;A String&quot;,
161161
],
162162
},
163+
&quot;xxe&quot;: { # Information reported for an XXE. # An addon containing information reported for an XXE, if any.
164+
&quot;payloadLocation&quot;: &quot;A String&quot;, # Location within the request where the payload was placed.
165+
&quot;payloadValue&quot;: &quot;A String&quot;, # The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.
166+
},
163167
}</pre>
164168
</div>
165169

@@ -236,6 +240,10 @@ <h3>Method Details</h3>
236240
&quot;A String&quot;,
237241
],
238242
},
243+
&quot;xxe&quot;: { # Information reported for an XXE. # An addon containing information reported for an XXE, if any.
244+
&quot;payloadLocation&quot;: &quot;A String&quot;, # Location within the request where the payload was placed.
245+
&quot;payloadValue&quot;: &quot;A String&quot;, # The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.
246+
},
239247
},
240248
],
241249
&quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no more results in the list.

googleapiclient/discovery_cache/documents/websecurityscanner.v1.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
}
527527
}
528528
},
529-
"revision": "20211112",
529+
"revision": "20211203",
530530
"rootUrl": "https://websecurityscanner.googleapis.com/",
531531
"schemas": {
532532
"Authentication": {
@@ -678,6 +678,11 @@
678678
"xss": {
679679
"$ref": "Xss",
680680
"description": "Output only. An addon containing information reported for an XSS, if any."
681+
},
682+
"xxe": {
683+
"$ref": "Xxe",
684+
"description": "Output only. An addon containing information reported for an XXE, if any.",
685+
"readOnly": true
681686
}
682687
},
683688
"type": "object"
@@ -1365,6 +1370,29 @@
13651370
}
13661371
},
13671372
"type": "object"
1373+
},
1374+
"Xxe": {
1375+
"description": "Information reported for an XXE.",
1376+
"id": "Xxe",
1377+
"properties": {
1378+
"payloadLocation": {
1379+
"description": "Location within the request where the payload was placed.",
1380+
"enum": [
1381+
"LOCATION_UNSPECIFIED",
1382+
"COMPLETE_REQUEST_BODY"
1383+
],
1384+
"enumDescriptions": [
1385+
"Unknown Location.",
1386+
"The XML payload replaced the complete request body."
1387+
],
1388+
"type": "string"
1389+
},
1390+
"payloadValue": {
1391+
"description": "The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.",
1392+
"type": "string"
1393+
}
1394+
},
1395+
"type": "object"
13681396
}
13691397
},
13701398
"servicePath": "",

googleapiclient/discovery_cache/documents/websecurityscanner.v1alpha.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
}
527527
}
528528
},
529-
"revision": "20211112",
529+
"revision": "20211203",
530530
"rootUrl": "https://websecurityscanner.googleapis.com/",
531531
"schemas": {
532532
"Authentication": {

googleapiclient/discovery_cache/documents/websecurityscanner.v1beta.json

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
}
527527
}
528528
},
529-
"revision": "20211112",
529+
"revision": "20211203",
530530
"rootUrl": "https://websecurityscanner.googleapis.com/",
531531
"schemas": {
532532
"Authentication": {
@@ -677,6 +677,10 @@
677677
"xss": {
678678
"$ref": "Xss",
679679
"description": "An addon containing information reported for an XSS, if any."
680+
},
681+
"xxe": {
682+
"$ref": "Xxe",
683+
"description": "An addon containing information reported for an XXE, if any."
680684
}
681685
},
682686
"type": "object"
@@ -1341,6 +1345,29 @@
13411345
}
13421346
},
13431347
"type": "object"
1348+
},
1349+
"Xxe": {
1350+
"description": "Information reported for an XXE.",
1351+
"id": "Xxe",
1352+
"properties": {
1353+
"payloadLocation": {
1354+
"description": "Location within the request where the payload was placed.",
1355+
"enum": [
1356+
"LOCATION_UNSPECIFIED",
1357+
"COMPLETE_REQUEST_BODY"
1358+
],
1359+
"enumDescriptions": [
1360+
"Unknown Location.",
1361+
"The XML payload replaced the complete request body."
1362+
],
1363+
"type": "string"
1364+
},
1365+
"payloadValue": {
1366+
"description": "The XML string that triggered the XXE vulnerability. Non-payload values might be redacted.",
1367+
"type": "string"
1368+
}
1369+
},
1370+
"type": "object"
13441371
}
13451372
},
13461373
"servicePath": "",

0 commit comments

Comments
 (0)