You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							45 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							45 lines
						
					
					
						
							1.6 KiB
						
					
					
				# --- SDE-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
# | 
						|
# Filename: package/.../tcp_wrappers/0023-tcp_wrappers-7.6-safe_finger.patch | 
						|
# Copyright (C) 2011 The OpenSDE Project | 
						|
# | 
						|
# More information can be found in the files COPYING and README. | 
						|
# | 
						|
# This patch file is dual-licensed. It is available under the license the | 
						|
# patched project is licensed under, as long as it is an OpenSource license | 
						|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | 
						|
# of the GNU General Public License as published by the Free Software | 
						|
# Foundation; either version 2 of the License, or (at your option) any later | 
						|
# version. | 
						|
# --- SDE-COPYRIGHT-NOTE-END --- | 
						|
 | 
						|
--- tcp-wrappers-7.6-ipv6.1.orig/safe_finger.c | 
						|
+++ tcp-wrappers-7.6-ipv6.1/safe_finger.c | 
						|
@@ -26,21 +26,24 @@ | 
						|
 #include <stdio.h> | 
						|
 #include <ctype.h> | 
						|
 #include <pwd.h> | 
						|
+#include <syslog.h> | 
						|
  | 
						|
 extern void exit(); | 
						|
  | 
						|
 /* Local stuff */ | 
						|
  | 
						|
-char    path[] = "PATH=/bin:/usr/bin:/usr/ucb:/usr/bsd:/etc:/usr/etc:/usr/sbin"; | 
						|
+char    path[] = "PATH=/bin:/usr/bin:/sbin:/usr/sbin"; | 
						|
  | 
						|
 #define	TIME_LIMIT	60		/* Do not keep listinging forever */ | 
						|
 #define	INPUT_LENGTH	100000		/* Do not keep listinging forever */ | 
						|
 #define	LINE_LENGTH	128		/* Editors can choke on long lines */ | 
						|
 #define	FINGER_PROGRAM	"finger"	/* Most, if not all, UNIX systems */ | 
						|
 #define	UNPRIV_NAME	"nobody"	/* Preferred privilege level */ | 
						|
-#define	UNPRIV_UGID	32767		/* Default uid and gid */ | 
						|
+#define	UNPRIV_UGID	65534		/* Default uid and gid */ | 
						|
  | 
						|
 int     finger_pid; | 
						|
+int	allow_severity = SEVERITY; | 
						|
+int	deny_severity = LOG_WARNING; | 
						|
  | 
						|
 void    cleanup(sig) | 
						|
 int     sig;
 | 
						|
 |