File tree 1 file changed +17
-1
lines changed
plugins/in_prometheus_remote_write
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -347,6 +347,13 @@ int prom_rw_prot_handle(struct flb_prom_remote_write *ctx,
347
347
return -1 ;
348
348
}
349
349
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
+
350
357
original_data = request -> data .data ;
351
358
original_data_size = request -> data .len ;
352
359
@@ -472,13 +479,22 @@ int prom_rw_prot_handle_ng(struct flb_http_request *request,
472
479
/* HTTP/1.1 needs Host header */
473
480
if (request -> protocol_version >= HTTP_PROTOCOL_VERSION_11 &&
474
481
request -> host == NULL ) {
475
-
476
482
return -1 ;
477
483
}
478
484
479
485
if (request -> method != HTTP_METHOD_POST ) {
480
486
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
+ }
481
495
496
+ if (request -> body == NULL ) {
497
+ send_response_ng (response , 400 , "error: invalid payload\n" );
482
498
return -1 ;
483
499
}
484
500
You can’t perform that action at this time.
0 commit comments