From 0af79ea66a5222703b6ed5eee457e8e8f6fa73a9 Mon Sep 17 00:00:00 2001 From: firefart <105281+firefart@users.noreply.github.com> Date: Sun, 19 Nov 2023 06:40:51 +0100 Subject: [PATCH] comment --- libgobuster/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgobuster/http.go b/libgobuster/http.go index cf4d7c8e..1335352a 100644 --- a/libgobuster/http.go +++ b/libgobuster/http.go @@ -176,7 +176,7 @@ func (client *HTTPClient) makeRequest(ctx context.Context, fullURL string, opts // currently only relevant on fuzzing if len(opts.ModifiedHeaders) > 0 { for _, h := range opts.ModifiedHeaders { - // empty headers are not valid + // empty headers are not valid (happens when fuzzing the host header for example because the slice is intialized with the provided header length) if h.Name == "" { continue }