VYPR
High severityNVD Advisory· Published Jul 10, 2025· Updated Jul 10, 2025

Chall-Manager's HTTP Gateway have no header check timeout leading to potential slow loris attacks

CVE-2025-53634

Description

Chall-Manager is a platform-agnostic system able to start Challenges on Demand of a player. The HTTP Gateway processes headers, but with no timeout set. With a slow loris attack, an attacker could cause Denial of Service (DoS). Exploitation does not require authentication nor authorization, so anyone can exploit it. It should nonetheless not be exploitable as it is highly recommended to bury Chall-Manager deep within the infrastructure due to its large capabilities, so no users could reach the system. Patch has been implemented by commit 1385bd8 and shipped in v0.1.4.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
github.com/ctfer-io/chall-managerGo
< 0.1.40.1.4

Affected products

1

Patches

1
1385bd869142

fix: potential slowloris attack on http server header reading

https://github.com/ctfer-io/chall-managerLucas TESSONJan 6, 2025via ghsa
1 file changed · +2 0
  • server/server.go+2 0 modified
    @@ -6,6 +6,7 @@ import (
     	"math"
     	"net"
     	"net/http"
    +	"time"
     
     	grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
     	"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
    @@ -151,6 +152,7 @@ func (s *Server) newHTTPServer(ctx context.Context, grpcWebHandler http.Handler)
     				"application/grpc-web+proto": grpcWebHandler,
     			},
     		},
    +		ReadHeaderTimeout: time.Second,
     	}
     
     	// Build gateway to the HTTP 1.1+JSON server
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.