libddwaf 1.8.2.0.0-arm64-darwin → 1.9.0.0.1-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ca01adcb6202628506b36f2b1bbb9431a41b24dad94811ee0880a86ded02250
|
4
|
+
data.tar.gz: d6e81a7d3d76dddf3016a4ee205497f0a4f95561733c627815ba37b385c027c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5225f8f51668d544e4c5a011a14565fa9569aaad619665324ae8d2d3ddc6c417dbfb2c0a485a4a24b2226385572e46b21b8cc97e20ef08cffe4278d81532e0c8
|
7
|
+
data.tar.gz: ca4c0cd354dbdcaca5ec2804164ce7b0a5d603d9046328152a83121e379fbcbc3da7cc028b9f72d8d9c788c75793c6b8e26a1ca7ab88523b4e1fec7317bb5a70
|
data/lib/datadog/appsec/waf.rb
CHANGED
@@ -4,6 +4,7 @@ require 'datadog/appsec/waf/version'
|
|
4
4
|
|
5
5
|
module Datadog
|
6
6
|
module AppSec
|
7
|
+
# rubocop:disable Metrics/ModuleLength
|
7
8
|
module WAF
|
8
9
|
module LibDDWAF
|
9
10
|
class Error < StandardError
|
@@ -281,9 +282,9 @@ module Datadog
|
|
281
282
|
|
282
283
|
attach_function :ddwaf_set_log_cb, [:ddwaf_log_cb, :ddwaf_log_level], :bool
|
283
284
|
|
284
|
-
DEFAULT_MAX_CONTAINER_SIZE =
|
285
|
-
DEFAULT_MAX_CONTAINER_DEPTH =
|
286
|
-
DEFAULT_MAX_STRING_LENGTH =
|
285
|
+
DEFAULT_MAX_CONTAINER_SIZE = 256
|
286
|
+
DEFAULT_MAX_CONTAINER_DEPTH = 20
|
287
|
+
DEFAULT_MAX_STRING_LENGTH = 16_384 # in bytes, UTF-8 worst case being 4x size in terms of code point)
|
287
288
|
|
288
289
|
DDWAF_MAX_CONTAINER_SIZE = 256
|
289
290
|
DDWAF_MAX_CONTAINER_DEPTH = 20
|
@@ -296,6 +297,7 @@ module Datadog
|
|
296
297
|
LibDDWAF.ddwaf_get_version
|
297
298
|
end
|
298
299
|
|
300
|
+
# rubocop:disable Metrics/MethodLength
|
299
301
|
def self.ruby_to_object(val, max_container_size: nil, max_container_depth: nil, max_string_length: nil, coerce: true)
|
300
302
|
case val
|
301
303
|
when Array
|
@@ -349,7 +351,8 @@ module Datadog
|
|
349
351
|
obj
|
350
352
|
when String
|
351
353
|
obj = LibDDWAF::Object.new
|
352
|
-
|
354
|
+
encoded_val = val.to_s.encode('utf-8', invalid: :replace, undef: :replace)
|
355
|
+
val = encoded_val[0, max_string_length] if max_string_length
|
353
356
|
str = val.to_s
|
354
357
|
res = LibDDWAF.ddwaf_object_stringl(obj, str, str.bytesize)
|
355
358
|
if res.null?
|
@@ -405,6 +408,7 @@ module Datadog
|
|
405
408
|
ruby_to_object(''.freeze)
|
406
409
|
end
|
407
410
|
end
|
411
|
+
# rubocop:enable Metrics/MethodLength
|
408
412
|
|
409
413
|
def self.object_to_ruby(obj)
|
410
414
|
case obj[:type]
|
@@ -699,5 +703,6 @@ module Datadog
|
|
699
703
|
end
|
700
704
|
end
|
701
705
|
end
|
706
|
+
# rubocop:enable Metrics/ModuleLength
|
702
707
|
end
|
703
708
|
end
|
data/vendor/libddwaf/{libddwaf-1.8.2-darwin-arm64 → libddwaf-1.9.0-darwin-arm64}/lib/libddwaf.dylib
RENAMED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libddwaf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0.0.1
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Datadog, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -42,7 +42,7 @@ files:
|
|
42
42
|
- lib/datadog/appsec/waf.rb
|
43
43
|
- lib/datadog/appsec/waf/version.rb
|
44
44
|
- lib/libddwaf.rb
|
45
|
-
- vendor/libddwaf/libddwaf-1.
|
45
|
+
- vendor/libddwaf/libddwaf-1.9.0-darwin-arm64/lib/libddwaf.dylib
|
46
46
|
homepage: https://github.com/DataDog/libddwaf-rb
|
47
47
|
licenses:
|
48
48
|
- BSD-3-Clause
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: 2.0.0
|
65
65
|
requirements: []
|
66
|
-
rubygems_version: 3.4.
|
66
|
+
rubygems_version: 3.4.13
|
67
67
|
signing_key:
|
68
68
|
specification_version: 4
|
69
69
|
summary: Datadog WAF
|