google-apis-websecurityscanner_v1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed19a62febbe051b29aab187a63d528b629bd1f50eee7b2744a32acb316191e3
|
4
|
+
data.tar.gz: 35385e0de2eb6dde2b5dd7ac4f8c547fd067725ffd3115e43466756ccef94d3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f7467b13d3627bb80c77ec1352df209d84db7a8a7da75a899e2399274e11186a9c1d38da5b5adfb89bedba0134ec0490db83ee6adcee189e0d942cf898e33b6
|
7
|
+
data.tar.gz: 7ffdd2fa864c1f0129026fbbb4cf7550c0b536f039a6c114eca86e5580158d4dbc22e1ee63b1a53e68f152468ab01179624d405b9ea3f62eeaef5d0fc41894a1
|
data/CHANGELOG.md
CHANGED
@@ -237,6 +237,11 @@ module Google
|
|
237
237
|
# @return [Google::Apis::WebsecurityscannerV1::Xss]
|
238
238
|
attr_accessor :xss
|
239
239
|
|
240
|
+
# Information reported for an XXE.
|
241
|
+
# Corresponds to the JSON property `xxe`
|
242
|
+
# @return [Google::Apis::WebsecurityscannerV1::Xxe]
|
243
|
+
attr_accessor :xxe
|
244
|
+
|
240
245
|
def initialize(**args)
|
241
246
|
update!(**args)
|
242
247
|
end
|
@@ -260,6 +265,7 @@ module Google
|
|
260
265
|
@vulnerable_headers = args[:vulnerable_headers] if args.key?(:vulnerable_headers)
|
261
266
|
@vulnerable_parameters = args[:vulnerable_parameters] if args.key?(:vulnerable_parameters)
|
262
267
|
@xss = args[:xss] if args.key?(:xss)
|
268
|
+
@xxe = args[:xxe] if args.key?(:xxe)
|
263
269
|
end
|
264
270
|
end
|
265
271
|
|
@@ -999,6 +1005,32 @@ module Google
|
|
999
1005
|
@stored_xss_seeding_url = args[:stored_xss_seeding_url] if args.key?(:stored_xss_seeding_url)
|
1000
1006
|
end
|
1001
1007
|
end
|
1008
|
+
|
1009
|
+
# Information reported for an XXE.
|
1010
|
+
class Xxe
|
1011
|
+
include Google::Apis::Core::Hashable
|
1012
|
+
|
1013
|
+
# Location within the request where the payload was placed.
|
1014
|
+
# Corresponds to the JSON property `payloadLocation`
|
1015
|
+
# @return [String]
|
1016
|
+
attr_accessor :payload_location
|
1017
|
+
|
1018
|
+
# The XML string that triggered the XXE vulnerability. Non-payload values might
|
1019
|
+
# be redacted.
|
1020
|
+
# Corresponds to the JSON property `payloadValue`
|
1021
|
+
# @return [String]
|
1022
|
+
attr_accessor :payload_value
|
1023
|
+
|
1024
|
+
def initialize(**args)
|
1025
|
+
update!(**args)
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
# Update properties of this object
|
1029
|
+
def update!(**args)
|
1030
|
+
@payload_location = args[:payload_location] if args.key?(:payload_location)
|
1031
|
+
@payload_value = args[:payload_value] if args.key?(:payload_value)
|
1032
|
+
end
|
1033
|
+
end
|
1002
1034
|
end
|
1003
1035
|
end
|
1004
1036
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WebsecurityscannerV1
|
18
18
|
# Version of the google-apis-websecurityscanner_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211203"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,12 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class Xxe
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
199
205
|
class Authentication
|
200
206
|
# @private
|
201
207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -258,6 +264,8 @@ module Google
|
|
258
264
|
|
259
265
|
property :xss, as: 'xss', class: Google::Apis::WebsecurityscannerV1::Xss, decorator: Google::Apis::WebsecurityscannerV1::Xss::Representation
|
260
266
|
|
267
|
+
property :xxe, as: 'xxe', class: Google::Apis::WebsecurityscannerV1::Xxe, decorator: Google::Apis::WebsecurityscannerV1::Xxe::Representation
|
268
|
+
|
261
269
|
end
|
262
270
|
end
|
263
271
|
|
@@ -480,6 +488,14 @@ module Google
|
|
480
488
|
property :stored_xss_seeding_url, as: 'storedXssSeedingUrl'
|
481
489
|
end
|
482
490
|
end
|
491
|
+
|
492
|
+
class Xxe
|
493
|
+
# @private
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
495
|
+
property :payload_location, as: 'payloadLocation'
|
496
|
+
property :payload_value, as: 'payloadValue'
|
497
|
+
end
|
498
|
+
end
|
483
499
|
end
|
484
500
|
end
|
485
501
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-websecurityscanner_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-websecurityscanner_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-websecurityscanner_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|