libddwaf 1.9.0.0.0 → 1.10.0.0.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: 98ca4b225573cf4bcdc10a5176ea8871b5584ac0ff8ac2a85dc726cb6edc34a8
4
- data.tar.gz: 7a054a0818745fcaecfd57923b12aa0f1a35300c2af33eb6ec9ececa027aa90a
3
+ metadata.gz: 856059b09f92992e36ec1bff0fa9587ec9a2fa242bb525a2ca2f8cc4b31da6ee
4
+ data.tar.gz: 59b33db57f599533d86db3149285986618400904ba4733a3d31aad64f22f40ef
5
5
  SHA512:
6
- metadata.gz: ef7aa3f13762ccd4e4daf50a5ad2d7a2077cb5ff37f15548a52787a74937101d65e55dcf835d65644eeb68dbf3a9c50019ee6649ed6798d16c1e9f23cdacc623
7
- data.tar.gz: d5cdea0a0b2e0d2e79e75b1434d20e6ca4e759bc8afcd97a9c601c26aa771a43ea71cc202578a55cf1ef02885f9e45bb913e58dcb0dfb8cb3240ed4bce90965f
6
+ metadata.gz: 5112da5879361ddc0b7a52d8d7d09fd1c8ea69c4aebd8385a524f563e5bb1750395eb5cab57cfacee428baf7691e7d8445a8328ae88238fe9e1b1cf3264e2a0f
7
+ data.tar.gz: 1a1cf2c96a16e34a3795fc67fb31de6f06c8babd9a912e6e208a85b638edbbf02ec435f1b7f389af207c3641355068d789146aaf03850a01af3709cae0d8c1cb
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Bug report
3
+ about: File a bug report
4
+ title: ''
5
+ labels: bug
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Current behaviour**
11
+ <!-- What is be happening. -->
12
+
13
+ **Expected behaviour**
14
+ <!-- What should be happening. -->
15
+
16
+ **Steps to reproduce**
17
+ <!--
18
+ How can we reproduce this issue in order to diagnose it?
19
+ Code snippets, log messages, screenshots and sample apps are encouraged!
20
+ -->
21
+
22
+ **How does `libddwaf` help you?**
23
+ <!-- Optionally, tell us why and how you're using ddtrace, and what your overall experience with it is! -->
24
+
25
+ **Environment**
26
+
27
+ * **libddwaf version:**
28
+ * **libddwaf gem platform:**
29
+ * **Ruby version:**
30
+ * **Ruby platform:**
31
+ * **Operating system:**
32
+
@@ -0,0 +1,17 @@
1
+ **What does this PR do?**
2
+ <!-- A brief description of the change being made with this pull request. -->
3
+
4
+ **Motivation**
5
+ <!-- What inspired you to submit this pull request? -->
6
+
7
+ **Additional Notes**
8
+ <!-- Anything else we should know when reviewing? -->
9
+
10
+ **How to test the change?**
11
+ <!--
12
+ Describe here how the change can be validated.
13
+ You are strongly encouraged to provide automated tests for this PR.
14
+ If this change cannot be feasibly tested, please explain why,
15
+ unless the change does not modify code (e.g. only modifies docs, comments).
16
+ -->
17
+
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ # 2023-06-13 v.1.9.0.0.1
2
+
3
+ - Handle invalid encoding
4
+ - Ensure strings passed to libddwaf are not clipped inside a code point
5
+ - Ensure strings passed to libddwaf are UTF-8
6
+
7
+ # 2023-05-17 v1.9.0.0.0
8
+
9
+ - Update to libddwaf 1.9.0
10
+ - Support [`custom_rules`](https://github.com/DataDog/libddwaf/pull/154)
11
+
1
12
  # 2023-03-03 v1.8.2.0.0
2
13
 
3
14
  - Update to libddwaf 1.8.2
@@ -2,7 +2,7 @@ module Datadog
2
2
  module AppSec
3
3
  module WAF
4
4
  module VERSION
5
- BASE_STRING = '1.9.0'
5
+ BASE_STRING = '1.10.0'
6
6
  STRING = "#{BASE_STRING}.0.0"
7
7
  MINIMUM_RUBY_VERSION = '2.1'
8
8
  end
@@ -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 = 0
285
- DEFAULT_MAX_CONTAINER_DEPTH = 0
286
- DEFAULT_MAX_STRING_LENGTH = 0
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
- val = val.to_s[0, max_string_length] if max_string_length
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
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.9.0.0.0
4
+ version: 1.10.0.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Datadog, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-17 00:00:00.000000000 Z
11
+ date: 2023-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -33,6 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - ".github/ISSUE_TEMPLATE/bug.md"
37
+ - ".github/PULL_REQUEST_TEMPLATE.md"
36
38
  - ".github/workflows/lint.yml"
37
39
  - ".github/workflows/package.yml"
38
40
  - ".github/workflows/test.yml"