aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_real.c
diff options
context:
space:
mode:
authorGravatar Spenser Reinhardt <sreinhardt@nagios.com> 2014-06-05 23:01:35 -0500
committerGravatar Jan Wagner <waja@cyconet.org> 2014-06-28 18:17:48 +0200
commitb61f51ad0291cf7051b6ea15ec8f8486f02443f9 (patch)
treeaae7808ecab192780558027a6d6ae2c7d8fa3342 /plugins/check_real.c
parent9ce73696b0407b43bcd96269fb1fd6c343834475 (diff)
downloadmonitoring-plugins-b61f51ad0291cf7051b6ea15ec8f8486f02443f9.tar.gz
plugins/check_real.c - recv string null terminate
Recv into buffer is not properly null terminated prior to strstr and possible other string functions expecting a null termination. Simply take bytes received and use as an index to append \0 after. We are creating buffer[] with size of MAX_INPUT_BUFFER and recv with MAX_INPUT_BUFFER-1 so this should never overflow.
Diffstat (limited to 'plugins/check_real.c')
-rw-r--r--plugins/check_real.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c
index 47776c5b..36f64134 100644
--- a/plugins/check_real.c
+++ b/plugins/check_real.c
@@ -178,6 +178,7 @@ main (int argc, char **argv)
/* watch for the REAL connection string */
result = recv (sd, buffer, MAX_INPUT_BUFFER - 1, 0);
+ buffer[result] = "\0"; /* null terminate recieved buffer */
/* return a CRITICAL status if we couldn't read any data */
if (result == -1) {