summaryrefslogtreecommitdiffstats
path: root/plugins/imudp/imudp.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-11-29 07:22:48 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2008-11-29 07:22:48 +0100
commitf0ddbed44c332391ae6d9bbf6b07e2f06c4dd676 (patch)
treeb6d2ba495ba6e6843ac1cd6be6f858783d2019d8 /plugins/imudp/imudp.c
parentae5902a24483102840ad6c3d6ee3cb5d6e8df791 (diff)
downloadrsyslog-f0ddbed44c332391ae6d9bbf6b07e2f06c4dd676.tar.gz
rsyslog-f0ddbed44c332391ae6d9bbf6b07e2f06c4dd676.tar.xz
rsyslog-f0ddbed44c332391ae6d9bbf6b07e2f06c4dd676.zip
security bugfix: $AllowedSender was not honored,
...all senders were permitted instead
Diffstat (limited to 'plugins/imudp/imudp.c')
-rw-r--r--plugins/imudp/imudp.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/imudp/imudp.c b/plugins/imudp/imudp.c
index f8beb01f..57c5c02d 100644
--- a/plugins/imudp/imudp.c
+++ b/plugins/imudp/imudp.c
@@ -192,7 +192,7 @@ CODESTARTrunInput
* configured to do this).
* rgerhards, 2005-09-26
*/
- if(net.isAllowedSender(net.pAllowedSenders_UDP,
+ if(net.isAllowedSender((uchar*) "UDP",
(struct sockaddr *)&frominet, (char*)fromHostFQDN)) {
parseAndSubmitMessage(fromHost, fromHostIP, pRcvBuf, l,
MSG_PARSE_HOSTNAME, NOFLAG, eFLOWCTL_NO_DELAY);
@@ -241,10 +241,7 @@ ENDwillRun
BEGINafterRun
CODESTARTafterRun
/* do cleanup here */
- if (net.pAllowedSenders_UDP != NULL) {
- net.clearAllowedSenders (net.pAllowedSenders_UDP);
- net.pAllowedSenders_UDP = NULL;
- }
+ net.clearAllowedSenders((uchar*)"UDP");
if(udpLstnSocks != NULL) {
net.closeUDPListenSockets(udpLstnSocks);
udpLstnSocks = NULL;