commit 35631475145f0acc55df7f3702715442d0c7fae2 from: Alexander Barton date: Thu Feb 03 09:27:09 2005 UTC 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, , thanks a lot! [from HEAD.] (http://www.nosystem.com.ar/advisories/advisory-11.txt) commit - 81d21d4592cc47154c30550d0367cfb8b7ad995b commit + 35631475145f0acc55df7f3702715442d0c7fae2 blob - 9f6daf924f3bf2fd5866e13e6fc021884b707fc3 blob + 379a4e0035672d2775b56e2202cb9766856a4c78 --- ChangeLog +++ ChangeLog @@ -10,6 +10,13 @@ -- ChangeLog -- +ngIRCd 0.8.x + + - 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, + , thanks a lot! + (http://www.nosystem.com.ar/advisories/advisory-11.txt) + ngIRCd 0.8.2 (2005-01-26) - Added doc/SSL.txt to distribution. @@ -554,4 +561,4 @@ ngIRCd 0.0.1, 31.12.2001 -- -$Id: ChangeLog,v 1.233.2.18 2005/02/03 09:20:58 alex Exp $ +$Id: ChangeLog,v 1.233.2.19 2005/02/03 09:27:09 alex Exp $ blob - 794ff0acfbb3ed02ee4aaeccf2f38cca3bc323a2 blob + dd7611e4b1d0de8fa0e49848ca44e573d855e7b8 --- src/ngircd/log.c +++ src/ngircd/log.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: log.c,v 1.44.2.3 2004/06/26 09:06:27 alex Exp $"; +static char UNUSED id[] = "$Id: log.c,v 1.44.2.4 2005/02/03 09:27:09 alex Exp $"; #include "imp.h" #include @@ -269,7 +269,7 @@ va_dcl fflush( stdout ); } #ifdef SYSLOG - else syslog( Level, msg ); + else syslog( Level, "%s", msg ); #endif } /* Log_Resolver */