Skip to content

Commit

Permalink
Security bug fixes - thanks Andreas!
Browse files Browse the repository at this point in the history
git-svn-id: https://nagios.svn.sourceforge.net/svnroot/nagios/nagioscore/trunk@1200 5f96b256-904b-4d8d-8c98-d829582c6739
  • Loading branch information
Ethan Galstad committed Nov 2, 2008
1 parent c88d790 commit 1792c21
Show file tree
Hide file tree
Showing 14 changed files with 440 additions and 224 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Nagios 3.x Change Log
#####################


3.0.5 - ??/??/2008
------------------
* Security fix for Cross Site Request Forgery (CSRF) bug reported by Tim Starling.
* Sample audio files for CGIs removed from distribution



3.0.4 - 10/15/2008
------------------
* Fix for properly terminating plugins when parent processes get killed (e.g. using 'killall nagios' with check_timeout plugins running)
Expand Down
1 change: 1 addition & 0 deletions THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ since 1999. If I missed your name, let me know.
* Gordon Smith
* Lou Sneddon
* Mark Spieth
* Tim Starling
* Thomas Stolle
* Kevin Stone
* Herbert Straub
Expand Down
4 changes: 2 additions & 2 deletions base/nagios.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* NAGIOS.C - Core Program Code For Nagios
*
* Program: Nagios
* Version: 3.0.4
* Version: 3.0.5
* License: GPL
* Copyright (c) 1999-2007 Ethan Galstad (http://www.nagios.org)
*
* First Written: 01-28-1999 (start of development)
* Last Modified: 10-15-2008
* Last Modified: 10-30-2008
*
* Description:
*
Expand Down
4 changes: 2 additions & 2 deletions base/nagiostats.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* NAGIOSTATS.C - Displays Nagios Statistics
*
* Program: Nagiostats
* Version: 3.0.4
* Version: 3.0.5
* License: GPL
* Copyright (c) 2003-2008 Ethan Galstad ([email protected])
*
* Last Modified: 10-15-2008
* Last Modified: 10-30-2008
*
* License:
*
Expand Down
6 changes: 3 additions & 3 deletions cgi/Makefile.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###############################
# Makefile for Nagios CGIs
#
# Last Modified: 09-04-2007
# Last Modified: 10-30-2008
###############################


Expand Down Expand Up @@ -130,8 +130,8 @@ avail.cgi: avail.c $(CGIDEPS)
checksanity.cgi: checksanity.c $(CGIDEPS) $(CDATADEPS) $(DDATADEPS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ checksanity.c $(CGILIBS) $(CDATALIBS) $(DDATALIBS) $(LIBS)

cmd.cgi: cmd.c $(CGIDEPS) $(CDATADEPS) $(DDATADEPS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ cmd.c $(CGILIBS) $(CDATALIBS) $(DDATALIBS) $(LIBS)
cmd.cgi: cmd.c $(CGIDEPS) $(CDATADEPS) $(DDATADEPS) extcmd_list.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ cmd.c extcmd_list.o $(CGILIBS) $(CDATALIBS) $(DDATALIBS) $(LIBS)

config.cgi: config.c $(CGIDEPS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ config.c $(CGILIBS) $(LIBS)
Expand Down
Loading

0 comments on commit 1792c21

Please sign in to comment.