Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
env:
buildType: RelWithDebInfo
tempdir: ${{ github.workspace }}/build
libddwafVersion: 1.25.1
libddwafVersion: 1.26.0
jobs:
Spotless:
name: spotless
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You can run tests with ASAN with the `withASAN` property:
To deploy the current bindings to your local Maven repository, use the following command:

```sh
./gradlew publishToMavenLocal
./gradlew publishToMavenLocal -PforceLocal
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! completely forgot about this one 😓

```

This will publish the artifact with the `-SNAPSHOT` suffix, allowing for convenient local testing.
2 changes: 1 addition & 1 deletion libddwaf
Submodule libddwaf updated 89 files
+80 −12 .github/workflows/build.yml
+18 −0 CHANGELOG.md
+2 −2 cmake/objects.cmake
+1 −0 libddwaf.def
+1 −1 src/condition/cmdi_detector.cpp
+3 −3 src/condition/scalar_condition.cpp
+5 −5 src/configuration/common/expression_parser.cpp
+10 −0 src/configuration/common/matcher_parser.cpp
+2 −1 src/configuration/common/matcher_parser.hpp
+1 −1 src/configuration/configuration_manager.hpp
+0 −0 src/cow_string.hpp
+19 −0 src/dynamic_string.hpp
+4 −3 src/matcher/base.hpp
+5 −5 src/matcher/equals.hpp
+2 −1 src/matcher/exact_match.cpp
+1 −1 src/matcher/exact_match.hpp
+3 −3 src/matcher/greater_than.hpp
+51 −0 src/matcher/hidden_ascii_match.cpp
+37 −0 src/matcher/hidden_ascii_match.hpp
+2 −1 src/matcher/ip_match.cpp
+1 −1 src/matcher/ip_match.hpp
+2 −2 src/matcher/is_sqli.cpp
+1 −1 src/matcher/is_sqli.hpp
+2 −2 src/matcher/is_xss.cpp
+1 −1 src/matcher/is_xss.hpp
+3 −3 src/matcher/lower_than.hpp
+2 −1 src/matcher/phrase_match.cpp
+1 −1 src/matcher/phrase_match.hpp
+4 −4 src/matcher/regex_match.cpp
+1 −1 src/matcher/regex_match.hpp
+5 −6 src/obfuscator.cpp
+1 −1 src/processor/fingerprint.cpp
+1 −1 src/processor/jwt_decode.cpp
+4 −5 src/tokenizer/generic_sql.cpp
+9 −10 src/tokenizer/mysql.cpp
+6 −7 src/tokenizer/pgsql.cpp
+4 −5 src/tokenizer/shell.cpp
+2 −3 src/tokenizer/sql_base.cpp
+4 −5 src/tokenizer/sqlite.cpp
+1 −1 src/transformer/base.hpp
+1 −1 src/transformer/base64_decode.cpp
+1 −1 src/transformer/base64_encode.cpp
+1 −1 src/transformer/compress_whitespace.cpp
+2 −2 src/transformer/css_decode.cpp
+2 −2 src/transformer/html_entity_decode.cpp
+2 −2 src/transformer/js_decode.cpp
+1 −1 src/transformer/lowercase.cpp
+1 −1 src/transformer/manager.cpp
+1 −1 src/transformer/normalize_path.cpp
+1 −1 src/transformer/remove_comments.cpp
+1 −1 src/transformer/remove_nulls.cpp
+1 −1 src/transformer/shell_unescape.cpp
+2 −2 src/transformer/unicode_normalize.cpp
+1 −1 src/transformer/url_basename.cpp
+2 −2 src/transformer/url_decode.cpp
+1 −1 src/transformer/url_path.cpp
+1 −1 src/transformer/url_querystring.cpp
+112 −89 src/utf8.cpp
+1 −1 src/utf8.hpp
+13 −13 src/vendor/re2/bitstate.cc
+1 −1 src/vendor/re2/compile.cc
+16 −16 src/vendor/re2/dfa.cc
+13 −13 src/vendor/re2/nfa.cc
+7 −7 src/vendor/re2/onepass.cc
+94 −94 src/vendor/re2/parse.cc
+2 −2 src/vendor/re2/prog.cc
+17 −16 src/vendor/re2/prog.h
+38 −38 src/vendor/re2/re2.cc
+31 −31 src/vendor/re2/re2.h
+1 −1 src/vendor/re2/regexp.cc
+7 −7 src/vendor/re2/regexp.h
+1 −1 src/vendor/re2/simplify.cc
+0 −65 src/vendor/re2/stringpiece.cc
+0 −210 src/vendor/re2/stringpiece.h
+1 −1 src/vendor/re2/util/strutil.cc
+2 −2 src/vendor/re2/util/strutil.h
+83 −0 tests/integration/matchers/hidden_ascii_match/test.cpp
+14 −14 tests/unit/matcher/exact_match.cpp
+58 −0 tests/unit/matcher/hidden_ascii_match_test.cpp
+10 −10 tests/unit/matcher/ip_match_test.cpp
+5 −5 tests/unit/matcher/is_sqli_test.cpp
+3 −3 tests/unit/matcher/is_xss_test.cpp
+6 −6 tests/unit/matcher/phrase_match_test.cpp
+5 −5 tests/unit/matcher/regex_match_test.cpp
+1 −1 tests/unit/obfuscator_test.cpp
+1 −1 tests/unit/transformer/cow_string_test.cpp
+1 −1 tests/unit/transformer/transformer_utils.hpp
+107 −0 tests/unit/transformer/unicode_normalize_test.cpp
+1 −1 version
2 changes: 1 addition & 1 deletion src/main/java/com/datadog/ddwaf/Waf.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.slf4j.LoggerFactory;

public final class Waf {
public static final String LIB_VERSION = "1.25.1";
public static final String LIB_VERSION = "1.26.0";

private static final Logger LOGGER = LoggerFactory.getLogger(Waf.class);
static final boolean EXIT_ON_LEAK;
Expand Down