Skip to content

Commit 127e6cc

Browse files
committed
in_prometheus_remote_write: fix handling of content-length (CVE-2024-50608)
Signed-off-by: Eduardo Silva <eduardo@chronosphere.io>
1 parent 0768259 commit 127e6cc

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

plugins/in_prometheus_remote_write/prom_rw_prot.c

+17-1
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,13 @@ int prom_rw_prot_handle(struct flb_prom_remote_write *ctx,
347347
return -1;
348348
}
349349

350+
if (request->data.data == NULL || request->data.len <= 0) {
351+
flb_sds_destroy(tag);
352+
mk_mem_free(uri);
353+
send_response(ctx->ins, conn, 400, "error: no payload found\n");
354+
return -1;
355+
}
356+
350357
original_data = request->data.data;
351358
original_data_size = request->data.len;
352359

@@ -472,13 +479,22 @@ int prom_rw_prot_handle_ng(struct flb_http_request *request,
472479
/* HTTP/1.1 needs Host header */
473480
if (request->protocol_version >= HTTP_PROTOCOL_VERSION_11 &&
474481
request->host == NULL) {
475-
476482
return -1;
477483
}
478484

479485
if (request->method != HTTP_METHOD_POST) {
480486
send_response_ng(response, 400, "error: invalid HTTP method\n");
487+
return -1;
488+
}
489+
490+
/* check content-length */
491+
if (request->content_length <= 0) {
492+
send_response_ng(response, 400, "error: invalid content-length\n");
493+
return -1;
494+
}
481495

496+
if (request->body == NULL) {
497+
send_response_ng(response, 400, "error: invalid payload\n");
482498
return -1;
483499
}
484500

0 commit comments

Comments
 (0)