1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-10-23 10:07:40 +00:00

Fixed a bug that could case a root exploit when the daemon is compiled

to do IDENT lookups and is logging to syslog. Bug discovered by CoKi,
<coki@nosystem.com.ar>, thanks a lot!
(http://www.nosystem.com.ar/advisories/advisory-11.txt)
This commit is contained in:
Alexander Barton
2005-02-03 09:26:42 +00:00
parent 07fe19889b
commit 8308c170db
2 changed files with 8 additions and 4 deletions

View File

@@ -14,7 +14,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: log.c,v 1.49 2005/01/20 00:12:23 alex Exp $";
static char UNUSED id[] = "$Id: log.c,v 1.50 2005/02/03 09:26:42 alex Exp $";
#include "imp.h"
#include <assert.h>
@@ -272,7 +272,7 @@ va_dcl
fflush( stdout );
}
#ifdef SYSLOG
else syslog( Level, msg );
else syslog( Level, "%s", msg );
#endif
} /* Log_Resolver */