Skip to content

Commit 0a36d50

Browse files
committed
updates coraza, waf test with go-ftw 0.6.4
1 parent 572220f commit 0a36d50

File tree

5 files changed

+58
-391
lines changed

5 files changed

+58
-391
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/corazawaf/coraza-wasilibs
33
go 1.20
44

55
require (
6-
github.com/corazawaf/coraza/v3 v3.2.0
6+
github.com/corazawaf/coraza/v3 v3.2.1
77
github.com/magefile/mage v1.15.1-0.20230912152418-9f54e0f83e2a
88
github.com/wasilibs/go-aho-corasick v0.6.0
99
github.com/wasilibs/go-libinjection v0.5.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/corazawaf/coraza/v3 v3.2.0 h1:uvVdl55T0fH56FtcjTYyJ1sVhtPxgkCY4Jk5NtZUjsE=
2-
github.com/corazawaf/coraza/v3 v3.2.0/go.mod h1:fVndCGdUHJWl9c26VZPcORQRzUYwMPnRkC6TyTkhbUg=
1+
github.com/corazawaf/coraza/v3 v3.2.1 h1:zBIji4ut9FtFe8lXdqFwXMAkUoDJZ7HsOlEUYWERLI8=
2+
github.com/corazawaf/coraza/v3 v3.2.1/go.mod h1:fVndCGdUHJWl9c26VZPcORQRzUYwMPnRkC6TyTkhbUg=
33
github.com/corazawaf/libinjection-go v0.2.1 h1:vNJ7L6c4xkhRgYU6sIO0Tl54TmeCQv/yfxBma30Dy/Y=
44
github.com/corazawaf/libinjection-go v0.2.1/go.mod h1:OP4TM7xdJ2skyXqNX1AN1wN5nNZEmJNuWbNPOItn7aw=
55
github.com/foxcpp/go-mockdns v1.1.0 h1:jI0rD8M0wuYAxL7r/ynTrCQQq0BVqfB99Vgk7DlmewI=

waf/go.mod

+16-10
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
github.com/bmatcuk/doublestar/v4 v4.4.0
77
github.com/corazawaf/coraza-coreruleset/v4 v4.3.0
88
github.com/corazawaf/coraza-wasilibs v0.0.0-00010101000000-000000000000
9-
github.com/corazawaf/coraza/v3 v3.2.0
10-
github.com/coreruleset/go-ftw v0.4.5
9+
github.com/corazawaf/coraza/v3 v3.2.1
10+
github.com/coreruleset/go-ftw v0.6.4
1111
github.com/rs/zerolog v1.33.0
1212
)
1313

@@ -16,20 +16,26 @@ require (
1616
github.com/Masterminds/semver v1.5.0 // indirect
1717
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
1818
github.com/corazawaf/libinjection-go v0.2.1 // indirect
19-
github.com/fatih/color v1.13.0 // indirect
19+
github.com/coreruleset/ftw-tests-schema v1.1.0 // indirect
20+
github.com/fatih/color v1.16.0 // indirect
2021
github.com/fsnotify/fsnotify v1.6.0 // indirect
21-
github.com/goccy/go-yaml v1.8.10 // indirect
22-
github.com/google/uuid v1.3.0 // indirect
22+
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
23+
github.com/goccy/go-yaml v1.9.2 // indirect
24+
github.com/google/uuid v1.6.0 // indirect
2325
github.com/huandu/xstrings v1.3.3 // indirect
24-
github.com/icza/backscanner v0.0.0-20220812133752-2e60bffed4a2 // indirect
26+
github.com/icza/backscanner v0.0.0-20230330133933-bf6beb754c70 // indirect
2527
github.com/imdario/mergo v0.3.13 // indirect
26-
github.com/knadh/koanf v1.4.4 // indirect
27-
github.com/kyokomi/emoji v2.2.4+incompatible // indirect
28+
github.com/knadh/koanf/maps v0.1.1 // indirect
29+
github.com/knadh/koanf/parsers/yaml v0.1.0 // indirect
30+
github.com/knadh/koanf/providers/env v0.1.0 // indirect
31+
github.com/knadh/koanf/providers/file v0.1.0 // indirect
32+
github.com/knadh/koanf/providers/rawbytes v0.1.0 // indirect
33+
github.com/knadh/koanf/v2 v2.1.1 // indirect
34+
github.com/kyokomi/emoji/v2 v2.2.12 // indirect
2835
github.com/magefile/mage v1.15.1-0.20230912152418-9f54e0f83e2a // indirect
2936
github.com/mattn/go-colorable v0.1.13 // indirect
30-
github.com/mattn/go-isatty v0.0.19 // indirect
37+
github.com/mattn/go-isatty v0.0.20 // indirect
3138
github.com/mitchellh/copystructure v1.2.0 // indirect
32-
github.com/mitchellh/mapstructure v1.5.0 // indirect
3339
github.com/mitchellh/reflectwalk v1.0.2 // indirect
3440
github.com/petar-dambovaliev/aho-corasick v0.0.0-20240411101913-e07a1f0e8eb4 // indirect
3541
github.com/tetratelabs/wazero v1.7.2 // indirect

0 commit comments

Comments
 (0)