--- tiger-3.2.1.orig/AUTHORS +++ tiger-3.2.1/AUTHORS @@ -13,6 +13,11 @@ [new checks for RedHat and Debian GNU/Linux 2.x. made by] Paul Telford Bryan Gartner -[modifications for support of Debian GNU/Linux 2.x. made by] +[modifications for support of Debian GNU/Linux 2.x., new checks and + improvemens made by] Javier Fernandez-Sanguino Peña - +[modifications for support of HP-UX as well as patches and improvements + by] + Ryan Bradetich +[patches and improvements from] + Nicolas François --- tiger-3.2.1.orig/c/CVS/Entries +++ tiger-3.2.1/c/CVS/Entries @@ -1,7 +1,8 @@ -/Makefile/1.2/Fri Aug 23 13:11:08 2002// -/getpermit.c/1.1/Fri Jun 14 08:51:31 2002// -/md5.c/1.1/Fri Jun 14 08:51:31 2002// -/snefru.c/1.1/Fri Jun 14 08:51:31 2002// -/testsuid.c/1.1/Fri Jun 14 08:51:31 2002// -/realpath.c/1.3/Wed Apr 23 22:07:05 2003// +/Makefile/1.3/Sun Oct 19 21:56:07 2003// +/Makefile.in/1.1/Thu Mar 31 18:00:53 2005// +/getpermit.c/1.3/Thu Aug 4 17:16:34 2005// +/md5.c/1.2/Thu Aug 4 17:16:34 2005// +/realpath.c/1.4/Thu Aug 4 17:16:34 2005// +/snefru.c/1.2/Thu Aug 4 17:16:34 2005// +/testsuid.c/1.2/Thu Aug 4 17:16:34 2005// D --- tiger-3.2.1.orig/c/Makefile +++ tiger-3.2.1/c/Makefile @@ -1,3 +1,4 @@ +# Generated automatically from Makefile.in by configure. # Makefile for tiger binaries # # @@ -22,15 +23,17 @@ # been added later) BINLIST=getpermit snefru md5 testsuid realpath COPTS= -DNEEDGETWD +INSTALL=/usr/bin/install -c +CC=gcc all: ${BINLIST} install: all - cp ${BINLIST} ../bin/ + $(INSTALL) -m0755 ${BINLIST} ../bin/ % : %.c - gcc ${COPTS} -o $@ $< + $(CC) $(CFLAGS) ${COPTS} -o $@ $< clean: -rm -f ${BINLIST} --- tiger-3.2.1.orig/c/getpermit.c +++ tiger-3.2.1/c/getpermit.c @@ -1,8 +1,10 @@ #include +#include #include #include #include #include +#include /* tiger - A UN*X security checking system Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford @@ -101,6 +103,7 @@ for(argv++;*argv;argv++) showperms(*argv); } + return(0); } #define outmode(m, b) {if((m)&(b))putchar('1');else putchar('0');putchar(' ');} --- tiger-3.2.1.orig/c/md5.c +++ tiger-3.2.1/c/md5.c @@ -593,7 +593,7 @@ else { MDInit (&context); - while (len = fread (buffer, 1, 1024, file)) + while ((len = fread (buffer, 1, 1024, file))) MDUpdate (&context, buffer, len); MDFinal (digest, &context); @@ -614,7 +614,7 @@ unsigned char buffer[16], digest[16]; MDInit (&context); - while (len = fread (buffer, 1, 16, stdin)) + while ((len = fread (buffer, 1, 16, stdin))) MDUpdate (&context, buffer, len); MDFinal (digest, &context); --- tiger-3.2.1.orig/c/realpath.c +++ tiger-3.2.1/c/realpath.c @@ -25,6 +25,7 @@ */ #include +#include #include #include #include --- tiger-3.2.1.orig/c/snefru.c +++ tiger-3.2.1/c/snefru.c @@ -185,6 +185,7 @@ */ #include +#include #define INPUT_BLOCK_SIZE 16 /* size in 32-bit words of an input block to * the hash routine */ /* @@ -1291,12 +1292,9 @@ { static int shiftTable[4] = {16, 8, 16, 24}; /* the array of data being hashed */ - word32 block[INPUT_BLOCK_SIZE]; word32 SBE; /* just a temporary */ int shift, leftShift; - int i; int index; - int next, last; int byteInWord; word32 *SBox0; word32 *SBox1; --- tiger-3.2.1.orig/c/testsuid.c +++ tiger-3.2.1/c/testsuid.c @@ -17,6 +17,9 @@ c/testsuid.c */ +#include +#include +#include int main() --- tiger-3.2.1.orig/c/Makefile.in +++ tiger-3.2.1/c/Makefile.in @@ -0,0 +1,40 @@ +# Makefile for tiger binaries +# +# +# Makefile for tiger binaries - A UN*X security checking system +# Copyright (C) 2002 Javier Fernandez-Sanguino Pen~a +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# + +# For some reason snefru and md5 were received wrongly +# and they could not be compiled at first (they have +# been added later) +BINLIST=getpermit snefru md5 testsuid realpath +COPTS= -DNEEDGETWD +INSTALL=@INSTALL@ +CC=@CC@ + +all: ${BINLIST} + +install: all + $(INSTALL) -m0755 ${BINLIST} ../bin/ + + +% : %.c + $(CC) $(CFLAGS) ${COPTS} -o $@ $< + +clean: + -rm -f ${BINLIST} + +distclean: clean --- tiger-3.2.1.orig/CHANGES +++ tiger-3.2.1/CHANGES @@ -1,6 +1,15 @@ NOTE: To read changes made to the Debian package (since August 23rd 2001) see the changelog.Debian file +Changes (v 3.2.2) +(Unreleased) +---------------- +- Applied patches from Ryan Bradetich to fix Makefiles in HPUX +- Fixed bashisms in scripts +- Fixed YPCAT calls +[TODO: write more of the changes done here] + + Changes (v 3.2.1) ---------------- - New checks: --- tiger-3.2.1.orig/check.tbl +++ tiger-3.2.1/check.tbl @@ -22,4 +22,4 @@ # Add other checks that should be attempted for all systems # here. One script name per line. # -check_sendmail +#check_sendmail --- tiger-3.2.1.orig/config +++ tiger-3.2.1/config @@ -17,6 +17,16 @@ # # config (top level) - 06/14/93 # +# 06/22/2005 jfs Abort signature generation if the user does not +# have permissions to change the directories signatures are +# stored in. +# 01/21/2005 jfs Safer creation of $WORKDIR if undefined +# 08/13/2004 jfs Setup all locales as 'C' (Debian bug #270108) +# 04/28/2004 jfs Changed -f RCFILE check to -r to allow use through ssh +# as suggested by Falk Siemonsmeier: +# cat /etc/tiger/tigerrc | ssh tiger -c /dev/stdin +# 01/13/2004 jfs Added check when running with -f since on some (unconfigured) +# systems this might fail. # 08/19/2003 jfs tara -> Tiger in the usage # 08/13/2003 jfs Added some of ARSC changes including: # - support for signature generation (enhanced with also @@ -47,8 +57,8 @@ # This is important to avoid problems with commands that are # dependant on the defined language environment LANG="C" -LC_TIME="C" -export LANG LC_TIME +LC_ALL="C" +export LANG LC_ALL error_siggen() { dir=$1 @@ -70,7 +80,7 @@ if [ ! -d "$BASEDIR/systems/$OS/$REV/$ARCH/" ] then printf "Creating the directory $BASEDIR/systems/$OS/$REV/$ARCH/ where signatures will be stored..." - mkdir -p "$BASEDIR/systems/$OS/$REV/$ARCH/" + mkdir -p "$BASEDIR/systems/$OS/$REV/$ARCH/" || { echo "Cannot create directory '$BASEDIR/systems/$OS/$REV/$ARCH/'!" >&2; exit 1; } echo "...created" fi # NOTE: I'm not sure it's ok to create the directory since @@ -92,7 +102,7 @@ then printf "Generating and installing file access lists..." $BASEDIR/util/mkfilelst - mv "file_access_list.$OS-$REV-$ARCH" $BASEDIR/systems/$OS/$REV/$ARCH/file_access_list + mv "file_access_list.$OS-$REV-$ARCH" $BASEDIR/systems/$OS/$REV/$ARCH/file_access_list || { echo "Cannot move files to '$BASEDIR/systems/$OS/$REV/$ARCH/'!" >&2; exit 1; } echo "...done" else error_siggen "$PWD" "file_access_list.$OS-$REV-$ARCH" "$WORKDIR" @@ -104,13 +114,22 @@ do_usage() { echo "Tiger, version $TIGERVERSION" -echo "Usage: ./tiger [-B dir] [-d dir|@host] [-w dir] [-b dir] [-e|-E] [-GH] [-q]" +echo "Usage: ./tiger [-vthqGSH] [-B dir] [-l dir|@host] [-w dir] [-b dir] [-e|-E] [-c config] [-A arch] [-O os] [-R release]" +echo "" +echo " -v Show the Tiger version." +echo "" +echo " -t Run in test mode." +echo "" +echo " -h Show usage (this help)." +echo "" +echo " -q Supress messages to be as quiet as possible, only " +echo " security messages will be shown." echo "" echo " -B name" echo " Specify the directory where tiger is installed. If" echo " not specified, '$BASEDIR' is used." echo "" -echo " -d name" +echo " -l name" echo " Specify the name of the directory where Tiger will" echo " write the security report. This defaults to " echo " '$LOGDIR'. The filename of the report will be of " @@ -159,8 +178,16 @@ echo " same time. The checks will not be as in depth as" echo " they would be if run on the client itself." echo "" -echo " -q Supress messages to be as quiet as possible, only " -echo " security messages will be shown." +echo "Overrides for values detected by the configuration system:" +echo " -A arch" +echo " Specify an alternate architecture for tiger" +echo "" +echo " -O os" +echo " Specify an alternate operating system for tiger" +echo "" +echo " -R release" +echo " Specify an alternate operating system release " +echo " for tiger" echo "" echo "Report bugs at http://savannah.nongnu.org/projects/tiger" } @@ -203,7 +230,7 @@ fi LOGDIR=${TigerLogDir:=.} - WORKDIR=${TigerWorkDir:=${TMPDIR:=/tmp}} + WORKDIR="$TigerWorkDir" RCFILE=${TigerConfigDir:=.}/tigerrc IGNORE_FILE=${TigerConfigDir:=.}/tiger.ignore TIGERHOMEDIR="$BASEDIR" @@ -241,7 +268,6 @@ shift; done - TIGERVERSION="`/bin/cat $TIGERHOMEDIR/version.h 2>/dev/null`" [ ! -n "$TIGERVERSION" ] && TIGERVERSION="undetermined" export TIGERVERSION @@ -251,6 +277,19 @@ exit 0 } + if [ -z "$WORKDIR" ] ; then + WORKDIR=${TMPDIR:=/tmp} + ( umask 077; mkdir $WORKDIR/tiger.$$ ) || { echo "$0: Cannot create temporary directory" >&2; exit 1; } + WORKDIR="$WORKDIR/tiger.$$" + fi + # TODO: WORKDIR should be removed on exit if it is located in a temporary + # directory + if [ ! -d "$WORKDIR" ] ; then + echo "Configured working directory $WORKDIR does not exist" >&2 + exit 1 + fi + + [ "$QUIET" != "Y" ] && echo "Configuring..." set X `$BASEDIR/util/gethostinfo` unknown unknown unknown @@ -336,8 +375,8 @@ done } - [ -n "$RCFILE" -a ! -f "$RCFILE" ] && { - echo "Control file "$RCFILE" not found... exiting..." + [ -n "$RCFILE" -a ! -r "$RCFILE" ] && { + echo "Control file "$RCFILE" not defined or not readable... exiting..." exit 1 } @@ -345,7 +384,7 @@ # Preprocess the RC file, to export variables to environment # - [ -n "$RCFILE" -a -f $RCFILE ] && { + [ -n "$RCFILE" -a -r $RCFILE ] && { $GREP -v '^#' $RCFILE | $SED -e 's/^\(.*\)=/export \1; \1=/' > $WORKDIR/rcfile.$$ . $WORKDIR/rcfile.$$ @@ -357,7 +396,9 @@ then # Linux hostname has the -f option for FQDN... (jfs) # (others?) - HOSTNAME=`$GETHOSTNAME -f` + HOSTNAME=`$GETHOSTNAME -f 2>/dev/null` +# But sometimes this will fail.... (if the system is not properly setup) + [ $? -ne 0 ] && HOSTNAME=`$GETHOSTNAME` fi for file in './site-$HOSTNAME' '$BASEDIR/site-$HOSTNAME' './site' '$BASEDIR/site' @@ -388,4 +429,8 @@ . $WORKDIR/tigercmds.$$ $RM -f $WORKDIR/tigercmds.$$ } + + # set the PATH + PATH=/sbin:/usr/sbin:/bin:/usr/bin + export PATH } --- tiger-3.2.1.orig/tiger +++ tiger-3.2.1/tiger @@ -21,6 +21,11 @@ # all the checks configured for your system in the tigerrc configuration # file. # +# 05/14/2005 jfs Patch from Nicolas François which fixes aide output handling +# 01/25/2005 cslater Added separate config variable for +# check_passwdformat. +# 01/15/2003 jfs Check should use INETDCONF (and not INETDFILE). +# (Temporary fix: defined it if undefined) # 09/03/2003 jfs Included check_ssh to the checks # 08/19/2003 jfs check_cron is now check_crontabs # 08/15/2003 jfs Integrated ARSC log to syslog mechanism but modified @@ -43,7 +48,7 @@ echo "Tiger UN*X security checking system" echo " Developed by Texas A&M University, 1994" echo " Updated by the Advanced Research Corporation, 1999-2002" -echo " Further updated by Javier Fernandez-Sanguino, 2001-2003" +echo " Further updated by Javier Fernandez-Sanguino, 2001-2005" echo " Covered by the GNU General Public License (GPL)" echo TigerInstallDir="." @@ -195,7 +200,7 @@ run_script find_files >> $logtmp else echo "`$TIMECMD`> Starting file systems scans in background..." - $SCRIPTDIR/find_files > $WORKDIR/fsscan.log$$ & + $SCRIPTDIR/find_files > $WORKDIR/fsscan.log$$ 2>/dev/null & fspid=$! fi } @@ -243,6 +248,9 @@ [ "$Tiger_Check_PASSWD" != 'N' ] && { echo "`$TIMECMD`> Checking password files..." run_script check_passwd >> $logtmp +} + +[ "$Tiger_Check_PASSWD_FORMAT" != 'N' ] && { echo "`$TIMECMD`> Checking password format..." run_script check_passwdformat >> $logtmp } @@ -301,10 +309,21 @@ } [ "$Tiger_Check_INETD" != 'N' ] && { - echo "`$TIMECMD`> Checking 'inetd' configuration..." - run_script check_inetd >> $logtmp - echo "`$TIMECMD`> Checking 'tcpd' configuration..." - run_script check_tcpd >> $logtmp + # Temporary definition until all the config files (and gen_inetd + # scripts) are updated. + [ -z "$INETDCONF" ] && INETDCONF="/etc/inetd.conf" + [ -z "$XINETDCONF" ] && XINETDCONF="/etc/xinetd.conf" + + [ -n "$INETDCONF" ] && [ -f "$INETDCONF" ] && { + echo "`$TIMECMD`> Checking 'inetd' configuration..." + run_script check_inetd >> $logtmp + echo "`$TIMECMD`> Checking 'tcpd' configuration..." + run_script check_tcpd >> $logtmp + } + [ -n "$XINETDCONF" ] && [ -f "$XINETDCONF" ] && { + echo "`$TIMECMD`> Checking 'xinetd' configuration..." + run_script check_xinetd >> $logtmp + } } [ "$Tiger_Check_SERVICES" != 'N' ] && { @@ -427,6 +446,16 @@ run_script check_ftpusers >> $logtmp } +[ "$Tiger_Check_OMNIBACK" != 'N' ] && { + echo "`$TIMECMD`> Checking omniback configuration..." + run_script check_omniback >> $logtmp +} + +[ "$Tiger_Check_NTP" != 'N' ] && { + echo "`$TIMECMD`> Checking NTP configuration..." + run_script check_ntp >> $logtmp +} + # # When not doing checks of all setuid executables, we can do # embedded checks while the file system scans are running. @@ -480,8 +509,8 @@ [ -n "$aidepid" ] && { echo "`$TIMECMD`> Waiting for Aide to finish..." wait $aidepid - $CAT $tripout >> $logtmp - delete $tripout + $CAT $aideout >> $logtmp + delete $aideout } 2>/dev/null #echo "`$TIMECMD`> Security report completed for ${HOSTNAME}." --- tiger-3.2.1.orig/config.in +++ tiger-3.2.1/config.in @@ -24,6 +24,7 @@ # 04/15/2003 jfs Modified to support -B to work in the local dir # 04/21/2003 jfs Modified to only use hostname -f for Linux _and_ # moved hostname check after RCFILE parsing! +# 08/13/2004 jfs Setup all locales as 'C' (Debian bug #270108) # #----------------------------------------------------------------------------- # @@ -38,8 +39,8 @@ # This is important to avoid problems with commands that are # dependant on the defined language environment LANG="C" -LC_TIME="C" -export LANG LC_TIME +LC_ALL="C" +export LANG LC_ALL checkfile() { @@ -79,7 +80,7 @@ fi LOGDIR=${TigerLogDir:=.} - WORKDIR=${TigerWorkDir:=${TMPDIR:=/tmp/}} + WORKDIR="$TigerWorkDir" RCFILE=${TigerConfigDir:=.}/tigerrc IGNORE_FILE=${TigerConfigDir:=.}/tiger.ignore TIGERHOMEDIR="$BASEDIR" @@ -124,6 +125,19 @@ exit 0 } + if [ -z "$WORKDIR" ] ; then + WORKDIR=${TMPDIR:=/tmp} + ( umask 077; mkdir $WORKDIR/tiger.$$ ) || { echo "$0: Cannot create temporary directory" >&2; exit 1; } + WORKDIR="$WORKDIR/tiger.$$" + fi + # TODO: WORKDIR should be removed on exit if it is located in a temporary + # directory + if [ ! -d "$WORKDIR" ] ; then + echo "Configured working directory $WORKDIR does not exist" >&2 + exit 1 + fi + + echo "Configuring..." set X `$BASEDIR/util/gethostinfo` unknown unknown unknown --- tiger-3.2.1.orig/tigerrc-hpux +++ tiger-3.2.1/tigerrc-hpux @@ -0,0 +1,368 @@ +# +# 'rc' file for tiger. This file is preprocessed, and thus +# can *only* contain variable assignments and comments. +# +#------------------------------------------------------------------------ +# +# Select checks to perform. Specify 'N' (uppercase) for checks +# you don't want performed. +# +TigerNoBuild=Y # C files are corrupted (ouch.) +Tiger_Check_PASSWD=Y # Fast +Tiger_Check_PASSWD_FORMAT=N # Fast - not needed if on systems with pwck +Tiger_Check_PASSWD_SHADOW=N # Time varies on # of users +Tiger_Check_PASSWD_NIS=N # Time varies on # of users +Tiger_Check_GROUP=Y # Fast +Tiger_Check_ACCOUNTS=Y # Time varies on # of users +Tiger_Check_RHOSTS=Y # Time varies on # of users +Tiger_Check_NETRC=Y # Time varies on # of users +Tiger_Check_ALIASES=Y # Fast +Tiger_Check_CRON=Y # Fast +Tiger_Check_ANONFTP=Y # Fast +Tiger_Check_EXPORTS=Y # Fast +Tiger_Check_INETD=Y # Fast +Tiger_Check_SERVICES=Y # Could be faster, not bad though +Tiger_Check_KNOWN=Y # Fast +Tiger_Check_PERMS=Y # Could be faster, not bad though +Tiger_Check_SIGNATURES=Y # Several minutes +Tiger_Check_FILESYSTEM=Y # Time varies on disk space... can be hours +Tiger_Check_ROOTDIR=Y # Fast, only 2 checks +Tiger_Check_ROOT_ACCESS=Y # Fast +Tiger_Check_PATH=Y # Fast for just root... varies for all +Tiger_Check_EMBEDDED=Y # Several minutes +Tiger_Check_BACKUPS=Y # Fast +Tiger_Check_LOGFILES=Y # Fast +Tiger_Check_USERUMASK=Y # Fast +Tiger_Check_ETCISSUE=N # Fast, needs to be customised +Tiger_Check_STRICTNW=Y # Fast - stringent N/W server checks +Tiger_Check_LISTENING=Y # Fast +Tiger_Check_SYSTEM=Y # Depends on the specific system checks +Tiger_Check_RUNPROC=N # Fast, needs to be customized per system +Tiger_Check_DELETED=Y # Depends on the number of processes on the + # system +Tiger_Check_APACHE=N # Fast +Tiger_Check_SSH=Y # Fast +Tiger_Check_SENDMAIL=N # Fast +Tiger_Check_PRINTCAP=N # Fast +Tiger_Check_EXRC=N # Depends on the size of the filesystem +Tiger_Check_ROOTKIT=Y # Slow if chkrootkit is available +Tiger_Check_FTPUSERS=Y # Fast +# OS specific checks +# You can comment them if they are not appropiate to your system but +# they will not run if you are running a different OS +# - Linux specific +Tiger_Check_PATCH=N # Depends on your network connection + # (if no timeout is fixed it might stall) +Tiger_Check_SINGLE=Y # Fast +Tiger_Check_BOOT=Y # Fast +Tiger_Check_INITTAB=Y # Fast +Tiger_Check_RCUMASK=Y # Fast +Tiger_Check_NEVERLOG=Y # Fast +Tiger_Check_OS=Y # Fast +# - Linux, HPUX and Solaris specific +Tiger_Check_NETWORKCONFIG=Y # Fast +# - HPUX specific +Tiger_Check_TRUSTED=Y +# +# Should reports with no info be sent on cron? +# +Tiger_Cron_SendOKReports=N +# +# How many reports should be kept for each check when run from the +# crontab? +# +TigerCron_Log_Keep_Max=10 +# +# Should reports be compared with a template? (if available) +# (Note: takes precedence over previous run check) +# +Tiger_Cron_Template=N +# +# Should reports be compared with previous runs? (if available) +# +Tiger_Cron_CheckPrev=Y +# +# Should messages tagged with INFO be shown? +# +Tiger_Show_INFO_Msgs=N +# +# In order for this to be effective, you should define 'CRACK' in +# a 'site' file. +# +# Note: Disabled for Debian since it (currently) does not work and +# the 'john' package can be configured to crack the passwords periodicly +Tiger_Run_CRACK=N # First time, ages; subsequent fairly quick +# +# Custom Crack binary location (like read-only media), +# this can be a generic location which can be overriden by the site +# configuration file. +#Tiger_CRACK_LOC_OVERRIDE=/mnt/cdrom/crack/Crack +#Tiger_CRACKREPORTER_LOC_OVERRIDE=/mnt/cdrom/crack/Reporter +# This directory needs to be writable for Crack to work +#Tiger_CRACKDIR_LOC_OVERRIDE=/usr/local/crack +# +# Should we use canonical fully qualified domain names +# in the reports? +# +Tiger_Output_FQDN=Y +# +# Integrity checkers: +# Note: +# - Make sure you don't run more than one integrity checker as it will +# slow down checking drastically. +# - These checks are disabled since they are provided by the own programs +# when installing most integrity-checking programs (this is the default +# behaviour in Debian, for example) +# +# Run Tripwire file integrity checker +# +Tiger_Run_TRIPW=N # Slow +# +# Custom Tripwire binary location (like read-only media) +# This can be a generic location which can be overriden by the site +# configuration file. +#Tiger_TRIPW_LOC_OVERRIDE=/mnt/cdrom/tripw/tripwire +# +# Run Aide file integrity checker +Tiger_Run_AIDE=N # Slow +# Verbose reporting (not implemented yet) +#Tiger_Run_AIDE_VERBOSE=1 +# +# The options below are usefull if you use custom settings. +# These can be a generic location which can be overriden by the site +# configuration file. +# Custom Aide location (like read-only media) +#Tiger_AIDE_LOC_OVERRIDE=/mnt/cdrom/aide/aide.bin +# Custom Aide configuration file (say, read-only media) +#Tiger_AIDE_CFG_OVERRIDE=/mnt/cdrom/aide/aide.conf +# Custom database (for instance in read-only media) +#Tiger_AIDE_DB_OVERRIDE=/mnt/cdrom/aide/in.db +# +# I think there are enough hints to best practices like storing +# crucial data ON READ-ONLY MEDIA. +# +# Run Integrit file integrity checker +Tiger_Run_INTEGRIT=N # Slow +Tiger_INTEGRIT_CFG=/etc/integrit/integrit.conf +# +# Custom Integrit location (like read-only media) +#Tiger_INTEGRIT_LOC_OVERRIDE=/mnt/cdrom/integrit/integrit.bin + + +# Line size (for formatting of output)... default is 79... +# Specifying '0' means unlimited +# +Tiger_Output_Width=79 +# +# Same as above, except used when run via 'tigercron'... +# You should set this once and never change it, 'cause if you +# change it, you'll get lots and lots of new stuff according +# to the scripts (the diff's against previous reports will find +# lots of changes due to the formatting changes). +# +Tiger_CRON_Output_Width=0 +# +# Global places to confirm some type of default PATH setting. +# A simple space delimited list +# +Tiger_Global_PATH="/etc/profile /etc/csh.login" +# +# What password aging/constraints to check for. +# A simple space delimited list. +Tiger_Passwd_Constraints="PASS_MIN_DAYS PASS_MAX_DAYS PASS_WARN_AGE PASS_MIN_LEN" +# +# Acceptable password hashes. +# List of password hashes separated by '|'... no whitespaces +Tiger_Passwd_Hashes='crypt3|bigcrypt' +# +# Number of days of non-modified files in the home directory for a user +# to be considered dormant (setting = 0 disables this check) +Tiger_Dormant_Limit=60 +# +# What accounts are considered administrative (beyond root) +# (likely to not be used by humans, and therefore have impossible passwords) +# List of usernames separated by '|'... no whitespaces +Tiger_Admin_Accounts='adm|bin|daemon|lp|sys|uucp' +# +# If an embedded pathname refers to an executable file, this executable +# will in turn be checked. This will continue "recursively" until +# either no new executables are found, or a maximum reference depth +# is reached. Setting this variable to 0 is equivalent to infinity. +# On a Sun 4/490, SunOS 4.1.2, 6GB disk, an infinite depth check +# took about 30 minutes. Your milage will vary. +# +# On small memory systems, a large search depth can result in out +# of memory situations for 'sort'... :-(... +# +Tiger_Embed_Max_Depth=3 +# +# Only search executables for embedded pathnames. If this is +# set to 'N', then all regular files will be searched. Otherwise +# only executable files will be searched. +# +Tiger_Embed_Check_Exec_Only=Y +# +# Check all setuid executables found. This will cause 'tiger' +# to run longer on many systems, as it will have to wait for the +# file system scans to complete before it can begin checking the +# embedded pathnames. +# +Tiger_Embed_Check_SUID=Y +# +# Only report executables which are writable or not owned by root. If set +# to 'Y' only the executables will be reported. Any other value will result +# in regular files and directories being reported as well. +# +# Note that currently, device files are never reported. +# +Tiger_Embed_Report_Exec_Only=Y +# +# Who do you allow to own system files. +# List of usernames separated by '|'... no whitespace +# +Tiger_Embedded_OK_Owners='root|bin|uucp|sys|daemon' +#Tiger_Embedded_OK_Owners=root +# +# What groups can have write access to system files? +# List of group names separated by '|'... no whitespace. +# No value means no groups should have write access. +# +Tiger_Embedded_OK_Group_Write='root|bin|uucp|sys|daemon' +# +# Should all users' PATH variables be checked. This has the potential +# of being dangerous because of the way it is done. You might want to +# take a look at check_path and decide for yourself whether the precautions +# are sufficient before enabling this. +# +Tiger_Check_PATHALL=N # Check all user PATHs in startup files. +# +# Who can own executables in 'root's PATH? +# List of usernames separated by '|'... no whitespace +# +#Tiger_ROOT_PATH_OK_Owners='root|uucp|bin|news|sys|daemon' +# If you are paranoid: +#Tiger_ROOT_PATH_OK_Owners='root' +# If you are running HP-UX +Tiger_ROOT_PATH_OK_Owners='root|uucp|bin|news|sys|daemon|lp' +# +# What groups can have write access to executables in 'root's PATH? +# List of group names separated by '|'... no whitespace. +# No value means no groups should have write access. +# +Tiger_ROOT_PATH_OK_Group_Write='root|uucp|bin|sys|daemon' +# +# Who can own things in other users PATH? +# List of usernames separated by '|'... no whitespace +# +Tiger_PATH_OK_Owners='root|bin|daemon|uucp|sys|adm' +# +# What groups can have write access to executables in non-root user PATH? +# List of group names separated by '|'... no whitespace. +# No value means no groups should have write access. +# +Tiger_PATH_OK_Group_Write= +# +# Should 'tiger' wait for Crack to finish? If set to 'Y' it will wait +# until it finishes. If set to 'N', it will collect the output if +# Crack finishes before the rest of the checks. If it isn't finished +# 'tiger' will simply report where the output will be stored. +# +Tiger_Collect_CRACK=Y +# +# Run Crack on local password sources only? If set to Y, no network +# sources will be used. If set to 'N', NIS, NIS+, NetInfo, etc +# sources will also be used. +# +Tiger_Crack_Local=Y +# +# Who sends output from 'tigercron'? +# Default is "root@$HOSTNAME" (gets expanded by tigercron) +# +# Tiger_Mail_FROM="root@`uname -n`" +# +# Who gets output from 'tigercron'? +# +Tiger_Mail_RCPT=root +# +# List of '/' separated filename globs (NOT pathnames) to look for +# on the filesystems. +# +Tiger_Files_of_Note="..[!.]*/.* */.* */.[!.]/.log/.FSP*" +# +# File system scan - things to look for +# +Tiger_FSScan_Setuid=Y # Setuid executables +Tiger_FSScan_Setgid=Y # Setgid executables +Tiger_FSScan_Devs=Y # device files +Tiger_FSScan_SymLinks=Y # strange symbolic links +Tiger_FSScan_ofNote=Y # weird filenames +Tiger_FSScan_WDIR=Y # world writable directories +Tiger_FSScan_Unowned=Y # files with undefined owners/groups +# +# Should we scan read-only filesystems +# +Tiger_FSScan_ReadOnly=N +# +# List of dot files commonly found in user home directories. These +# will be checked by check_accounts for proper access permissions. +# +# Note that .rhosts and .netrc need not appear here, as they will +# be checked by scan_rhosts or scan_netrc. +# +USERDOTFILES=".alias .kshrc .cshrc .profile .login .mailrc .exrc .emacs .forward .tcshrc .zshenv .zshrc .zlogin .zprofile .rcrc .bashrc .bash_profile .inputrc .xinitrc .fvwm2rc .Xsession .Xclients .less" +# +# Rhost sites which are expected to be in the .rhosts files. +# Anything that doesn't match will be reported. The patterns +# are simple patterns as used in Bourne Shell 'case' statement. +# +#RHOST_SITES='*.tamu.edu|jupiter' + +# What uid's should not give warnings about valid shells +# (trusted or default users) +# Debian GNU/Linux: default is 999, users are generated over 1000 +# Solaris: default should be 99, users are generated over 100 +# HP-UX (?): default should be 499, users are generated over 500 +Tiger_Accounts_Trust=499 +# +# These SSH directive variables are used to specify "allowed" values +# for the SSH Daemon. +# Multiple options are seperated by '|', and directive variable can +# be left blank to ignore the check. +Tiger_SSH_Protocol='1|2' +Tiger_SSH_RhostsAuthentication='no' +Tiger_SSH_PasswordAuthentication='no' +# +# Should we give warnings on services that listen on all interfaces? +# (i.e. those that have not been configured to listen only on one) +# This is useful in servers which might add new interfaces (and thus +# services will be unexpectedly be offered in them too) or to catch +# "rogue" services +Tiger_Listening_Every=Y +# +# Which *user* do you allow to have processes listening for incoming connections +# on the system? +# List of usernames separated by '|'... no whitespaces allowed (but wildcards are) +# +Tiger_Listening_ValidUsers='root' +# +# Which processes are always considered valid, regardless of how are they +# listening for incoming connections on the system? +# This allows administrators to disable warnings on processes that might change +# the listening port dynamically (and thus cannot be removed through the +# template definitions) +# List of processes separated by '|'... no whitespaces allowed (but wildcards are) +# +Tiger_Listening_ValidProcs='' +# +# Which processess should be checked for by Tiger? +# Processes in this list (separated by whitespaces) which are not +# seen in the process table will generate a FAIL: +# +# The process list below is just an example (useful for Linux) +# change it to suit your needs +# Tiger_Running_Procs='syslogd cron atd klogd' +# +# Should we optimize DPKG checks? (by not using dpkg but looking on +# the file database at /var/lib/dpkg?) +# +Tiger_DPKG_Optimize=Y --- tiger-3.2.1.orig/TODO.checks +++ tiger-3.2.1/TODO.checks @@ -0,0 +1,181 @@ +This TODO details things that need to be done to improve the current +security checks implemented in Tiger. + + +IMPROVEMENTS +------------ +- Modify the rhosts check so that it will check for shosts files too + (or create a new check_shosts file) + +- Modify check_network to include hosts.lpd in the tests + +- Add .bash_profile into check_path + +- Add more information to the messages outputed for inetd services which + might expose password information (Unix CERT configuration list item #2.4) + +- check_rootkit should also consider analysing modification times of + important system files (binaries as well as logfiles). + Mtime, atime and ctime should not be in the future and mtime/ctime + of binaries should be similar to the time the system was installed + (unless it has been patched). Similarly, logfiles should not have + similar (almost equal) ctimes. This needs to be carefully planned in + order to avoid confusion of logfile rotation vs. a log cleaner though. + +- check_patches for Solaris should generate better messages for security + and/or recommended patches (|R|S|). The check needs to be tested for + Solaris 9 too. + Also check_patches should only output information for packages installed. + +- check_known should be improved to detect for symlink attacks and + hard links in user writable directories (/tmp, /var/tmp and, in + some systems, /var/spool/mail too, the directory list might be + defined in tigerrc or extracted by parsing the file system) + + +NEW CHECKS +----------- +- Create the following (generic) scripts: + + - Check root $HOME files (might be redundant with check_path's) + - Do alias give the same as check_aliases? + - writable/executable check + word writable? (in find_files) + - Check for SAMBA configuration (checklist #20 SANS): + . encrypted passwords. + . 600 /etc/smbpasswd or /etc/samba/smbpasswd + . shares enabled/disabled + . guest access + . create mask (770) + - Check newer FTP (/etc/ftpaccess in newer Linux systems, ftpusers + is deprecated) see checklist #22 of SANS. + (DONE)- The check_inetd script should be improved to warn if echo/chargen.. + services are enabled (SANS unix checklist #3 and Linux #4) + - SANS unix checklist #18 + . Solaris /etc/system (noexec stack) + . Solaris locked accounts (#18 and #21) + . Solaris default/login + . Solaris /etc/default/kbd + - Partition checks (in Linux /etc/fstab, in Solaris /etc/vfstab), + if there is a /usr, /opt then read-only, if /var + or /tmp suggest nosuid (maybe noexec, although it's not a real + improvement). Separate partitions for /var, /usr, /tmp, /home + (boot?) so that no hard links attacks are possible. + In general user writable directories should be separated from + from system directories to avoid (hard) symlink attacks and + local DoS due to partitions being full. + In some installations /var/log or /var/spool (or /var/mail) might + make sense to be separated. + - Solaris /etc/notrouter to disable + + - Suggested by Bob Hall: + * Check if any local file systems are being exported to + 'localhost'. Also check if the local host is in a netgroups + entry in its own exports file. + * Look for (unexpected) normal files under /dev. + (Note: included in 'check_devices', done?) + * Check for user startup files that call 'umask' with weak + settings. (Should be 022 or 027.) + (Note: included in 'check_umask' using GENPASSWDSETS, done?) + * Check that '-' is not the first character in a /etc/hosts.equiv + /etc/hosts.lpd, or .rhosts files. Also check for a '+' entry in + hosts.lpd file. + (Note: included in 'check_rhosts'?) + * If a system allows it, check for an /etc/shells file and look + if the permitted shells are in the system directories. + References: + http://www.cert.org/tech_tips/usc20.html + http://www.cert.org/advisories/CA-2001-30.html + http://www.ciac.org/ciac/bulletins/b-37.shtml + http://www.nswc.navy.mil/ISSEC/Docs/Ref/GeneralInfo/unixsecurity.nrl.txt + + - Detect promiscous mode (DONE) + - Rootkits check, like chkrootkit (DONE) + Reference: + http://linux.oreillynet.com/pub/a/linux/2002/02/07/rootkits.html + +- Implement a check for configuration files for user's password policies + and other sensible configuration such as /etc/login.access, /etc/login.defs, + /etc/login.conf + +- Implement a generic script to test package management systems + (i.e. run 'rpm -Va' in RedHat, 'pkgchk' in Solaris). Most of these check: + md5sums, permissions, size, user/group ownerships... + These can be useful to detect trivial rootkits but might be redundant + when using also integrity checkers. + Note: The Debian deb_checkmd5sums only covers part of that (using + debsums), dpkg does not have a verify mode (see Debian Bug #187019) + References: + RedHat: http://www.rpm.org/max-rpm/ch-rpm-verify.html + http://www.rpm.org/max-rpm/s1-rpm-verify-what-to-verify.html + +- Convert scripts/check_network (RedHat-based) into a number of tests. + This is a script provided by Bryan Gartner from HP + It currently checks for: + - Inetd configuration files (are xinetd or inetd files writable? + are they owned by the proper user? does inetd use -l? does + xinetd have filelog or syslog?) + (Note: some checks moved to check_tcpd) + - Does /etc/securetty exist? Does it have other entries besides vc/tty? + Is ownership of the file ok? + - Is ip forwarding enabled? + - Which version of DNS/Wu-ftpd is it running? + (Note: this might not be completely feasible since the check_network + scripts connects to the server to retrieve the banner which is + something that Tiger should leave to other, remote, VA tools) + - PermitRooLogin or Rhosts in sshd? + - EXPN/VRFY support in mail host? + Necessary services: + - Is syslog running? + - Is omniback running? + Not allowed (per policy): + - Is fingerd running? + - Is identd runnig? + - Are inetd internal services running? + - Is a routing daemon enabled? + - R-commands? + - X server + - Tftpd + - NIS + - UUCP + - R-exd? + - NFS + Note: some of this is already done in check_inetd and check_xinetd so + many might be redundant. + +INTEGRATION CHECKS +------------------ +(checks related to other tools that integrate them in the Tiger framework) + +- Tripwire: the 'tripwire_run' script has not been tested thoroughly + (mainly because in Debian it is already configured to execute + regular checks standalone) + +- Crack: same for 'crack_run' (for the same reason as for tripwire + it has not been tested thoroughly yet) + +- Other integrity checkers: aide, samhain, integrit... + (Note: done for aide and integrit for the moment) + +- Other password crackers: john + +- Logcheckers: swatch, logcheck, loganalysis, snort-logcheck + Note: Tiger currently does not do any log checking (see below) + I'm not sure if Tiger should provide a new one or re-use + existing ones and include them as an 'external' program to run + through a Tiger module. The benefit of using an accepted and use + log analysis tool is that Tiger can benefit from the database of + signatures of known attacks/non-issues. The problem is that the + sysadmin has to install yet another tool (if he is not using an OS + that already includes them) and, probably, some other stuff + (usually Perl) on which the tool itself is based. + +- User analysis: sac, hostsentry (part of Abacus, but non-free) + +- Network checks: Arpwatch, Snort + +(DONE)- Other tools: chkrootkit + +--- Javier Fernandez-Sanguino Pen~a +Sun, 27 Jun 2004 22:28:39 +0200 + + --- tiger-3.2.1.orig/configure +++ tiger-3.2.1/configure @@ -532,6 +532,312 @@ +# Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:539: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:569: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_prog_rejected=no + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + break + fi + done + IFS="$ac_save_ifs" +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# -gt 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + set dummy "$ac_dir/$ac_word" "$@" + shift + ac_cv_prog_CC="$@" + fi +fi +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:620: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:652: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 663 "configure" +#include "confdefs.h" + +main(){return(0);} +EOF +if { (eval echo configure:668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:694: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:699: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:727: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS="$ac_save_CFLAGS" +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi + +ac_aux_dir= +for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do + if test -f $ac_dir/install-sh; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f $ac_dir/install.sh; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + fi +done +if test -z "$ac_aux_dir"; then + { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; } +fi +ac_config_guess=$ac_aux_dir/config.guess +ac_config_sub=$ac_aux_dir/config.sub +ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# ./install, which can be erroneously created by make from ./install.sh. +echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 +echo "configure:789: checking for a BSD compatible install" >&5 +if test -z "$INSTALL"; then +if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" + for ac_dir in $PATH; do + # Account for people who put trailing slashes in PATH elements. + case "$ac_dir/" in + /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + if test -f $ac_dir/$ac_prog; then + if test $ac_prog = install && + grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + else + ac_cv_path_install="$ac_dir/$ac_prog -c" + break 2 + fi + fi + done + ;; + esac + done + IFS="$ac_save_IFS" + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL="$ac_cv_path_install" + else + # As a last resort, use the slow shell script. We don't cache a + # path for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the path is relative. + INSTALL="$ac_install_sh" + fi +fi +echo "$ac_t""$INSTALL" 1>&6 + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + test "x$prefix" != "xNONE" || prefix=/usr/local # Check whether --with-tigerhome or --without-tigerhome was given. @@ -608,6 +914,7 @@ + trap '' 1 2 15 cat > confcache <<\EOF # This file is a shell script that caches the results of configure @@ -719,8 +1026,10 @@ done ac_given_srcdir=$srcdir +ac_given_INSTALL="$INSTALL" trap 'rm -fr `echo "Makefile + c/Makefile man/tiger.8 man/tigercron.8" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF @@ -754,6 +1063,11 @@ s%@oldincludedir@%$oldincludedir%g s%@infodir@%$infodir%g s%@mandir@%$mandir%g +s%@CC@%$CC%g +s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g +s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g +s%@INSTALL_DATA@%$INSTALL_DATA%g +s%@install@%$install%g s%@tigerhome@%$tigerhome%g s%@tigerwork@%$tigerwork%g s%@tigerlog@%$tigerlog%g @@ -805,6 +1119,7 @@ cat >> $CONFIG_STATUS < $ac_file fi; done rm -f conftest.s* --- tiger-3.2.1.orig/configure.in +++ tiger-3.2.1/configure.in @@ -4,6 +4,9 @@ dnl for to make sure it's in the right directory. AC_INIT(tiger) +AC_PROG_CC +AC_PROG_INSTALL + test "x$prefix" != "xNONE" || prefix=/usr/local AC_ARG_WITH(tigerhome, [ --with-tigerhome=LOCATION Location of all Tiger files], @@ -42,6 +45,7 @@ tigerlogdir=`eval echo $tigerlog` tigerconfigdir=`eval echo $tigerconfig` tigerhomedir=`eval echo $tigerhome` +AC_SUBST(install) AC_SUBST(tigerhome) AC_SUBST(tigerwork) AC_SUBST(tigerlog) @@ -52,5 +56,6 @@ AC_SUBST(tigerconfigdir) AC_SUBST(tigerhomedir) AC_OUTPUT(Makefile + c/Makefile man/tiger.8 man/tigercron.8) --- tiger-3.2.1.orig/cronrc +++ tiger-3.2.1/cronrc @@ -28,7 +28,16 @@ # ---------------------------------------------------------------------- # Check for known intrusion signs every 8 hours # -0,8,16 * * check_known check_rootkit check_finddeleted check_logfiles check_runprocs check_rootdir check_root +0,8,16 * * check_known check_rootkit check_logfiles check_runprocs check_rootdir check_root +# [experimental] +# Check_finddeleted is very verbose and needs to be adjusted so we run +# it less often, admins that want to run it more often are suggested +# to look up how does the ignore mechanism works. In busy servers many +# false positives might appear because of normal user access. +# Some applications might generate false positives too due to the +# way they behave. Also, this script requires LSOF, so only enable +# it if you have it installed. +#1 * * check_finddeleted # ---------------------------------------------------------------------- # Make system-specific checks every day at 1 am # Notice: System specific checks can be enabled in the @@ -68,7 +77,7 @@ # ---------------------------------------------------------------------- # Check for system configuration once a month # -1 2 * check_services check_signatures check_umask check_ftpusers check_embedded check_exrc +1 2 * check_services check_umask check_ftpusers check_embedded check_exrc # # ---------------------------------------------------------------------- # Run a password cracker against the local passwords once a month @@ -77,13 +86,20 @@ #2 2 * crack_run # # Run an integrity checker once every week. -# This is removed since many integrity checkers provide this already -# upon installation. If yours does not uncomment the lines below -# depending on your selected/installed integrity checker +# +# This is not enabled by default since many integrity checkers provide +# this already upon installation. If yours does not uncomment the lines below +# depending on your selected/installed integrity checker. # # For tripwire: #5 * Mon tripwire_run +# # For aide: #5 * Mon aide_run +# # For integrit: #5 * Mon integrit_run +# +# For internal signature checks (not reliable nor update, use only if you +# have manually updated /usr/lib/tiger/systems/$OS/$VERSION/signatures +#5 * Mon check_signatures --- tiger-3.2.1.orig/CVS/Entries +++ tiger-3.2.1/CVS/Entries @@ -1,13 +1,9 @@ /ANNOUNCE.3.0/1.1/Mon Apr 21 07:08:40 2003// -/AUTHORS/1.1/Fri Jun 14 08:51:31 2002// /BUGS.EXTERN/1.1/Fri Jun 14 08:51:31 2002// /COPYING/1.1/Fri Jun 14 08:51:31 2002// /DESCRIPTION/1.1/Fri Jun 14 08:51:31 2002// -/README/1.3/Mon Apr 21 14:41:24 2003// /README.1st/1.1/Fri Jun 14 08:51:31 2002// -/README.hostids/1.2/Mon Apr 21 07:44:57 2003// /README.ignore/1.1/Mon Apr 21 07:44:57 2003// -/README.logo/1.1/Mon Apr 21 07:10:17 2003// /README.time/1.1/Fri Jun 14 08:51:31 2002// /check.tbl/1.1/Fri Jun 14 08:51:31 2002// /site-saturn/1.1/Fri Jun 14 08:51:31 2002// @@ -15,7 +11,6 @@ /tiger_logo.jpg/1.1/Mon Apr 21 07:21:46 2003/-kb/ /tiger_logo_half.jpg/1.1/Mon Apr 21 07:21:46 2003/-kb/ /tiger_logo_small.jpg/1.1/Mon Apr 21 07:21:46 2003/-kb/ -/tigerrc-TAMU/1.1/Fri Jun 14 08:51:31 2002// D/bin//// D/c//// D/contrib//// @@ -29,35 +24,43 @@ D/systems//// D/util//// /README.linux/1.3/Wed Apr 23 20:29:57 2003// -/tigerrc-dist/1.2/Mon May 5 13:14:34 2003// /version.h.src/1.1/Mon May 5 13:52:28 2003// -/configure/1.5/Sun May 11 19:43:27 2003// -/README.writemodules/1.4/Tue Aug 19 15:35:21 2003// -/tigexp/1.5/Tue Aug 12 19:00:41 2003// -/USING/1.3/Wed Aug 13 05:03:50 2003// -/tigercron.in/1.6/Tue Aug 19 16:34:27 2003// -/tiger.in/1.3/Tue Aug 19 16:34:07 2003// /tigexp.in/1.2/Tue Aug 19 16:34:17 2003// -/config.in/1.7/Tue Aug 19 16:34:00 2003// -/README.signatures/1.4/Wed Aug 13 01:36:09 2003// /README.unsupported/1.2/Wed Aug 13 01:39:20 2003// -/tigercron/1.13/Tue Aug 19 17:37:42 2003// -/tiger.spec/1.1/Tue Aug 19 17:46:15 2003// /version/1.6/Tue Aug 19 17:46:37 2003// /CHANGES.ARSC/1.2/Tue Aug 26 14:56:11 2003// /CREDITS/1.2/Tue Aug 26 14:58:14 2003// -/TODO/1.11/Tue Aug 26 17:48:09 2003// -/site-sample/1.3/Wed Sep 3 12:09:14 2003// -/Makefile/1.7/Thu Sep 11 06:57:16 2003// -/configure.in/1.9/Fri Sep 19 00:51:36 2003// D/other//// -/config/1.12/Fri Sep 19 00:46:26 2003// -/README.sources/1.6/Fri Sep 19 14:11:42 2003// -/cronrc/1.5/Fri Sep 19 14:24:41 2003// -/tigerrc/1.20/Mon Oct 6 22:18:12 2003// -/version.h/1.9/Mon Oct 6 22:31:38 2003// -/tiger/1.20/Mon Oct 6 22:20:24 2003// -/tigerrc-all/1.4/Mon Oct 6 22:02:56 2003// -/CHANGES/1.14/Fri Oct 10 16:12:44 2003// -/initdefs/1.13/Fri Oct 10 17:05:48 2003// -/Makefile.in/1.18/Fri Oct 10 17:12:25 2003// +/AUTHORS/1.2/Tue Feb 24 19:14:46 2004// +/version.h/1.10/Sun Oct 19 21:56:07 2003// +/CHANGES/1.15/Tue Feb 24 19:14:47 2004// +D/check.d//// +/tiger.spec/1.7/Tue Feb 24 20:18:33 2004// +/README/1.4/Thu Mar 31 15:22:25 2005// +/README.hostids/1.4/Thu Mar 31 15:22:25 2005// +/README.logo/1.2/Thu Mar 31 15:22:25 2005// +/README.signatures/1.5/Thu Mar 31 15:22:25 2005// +/README.writemodules/1.5/Thu Mar 31 15:22:25 2005// +/USING/1.4/Thu Mar 31 15:22:25 2005// +/cronrc/1.6/Result of merge// +/install.sh/1.1/Mon Mar 21 22:38:13 2005// +/site-sample/1.4/Thu Mar 31 15:22:28 2005// +/tigexp/1.6/Thu Mar 31 15:22:30 2005// +/config.in/1.9/Thu Mar 31 15:22:26 2005// +/tigercron/1.15/Thu Mar 31 15:22:29 2005// +/tigercron.in/1.7/Thu Mar 31 15:22:29 2005// +/tigerrc-TAMU/1.2/Thu Mar 31 15:22:29 2005// +/tigerrc-all/1.6/Thu Mar 31 15:22:29 2005// +/tigerrc-dist/1.3/Thu Mar 31 15:22:30 2005// +/tigerrc-hpux/1.3/Thu Mar 31 15:22:30 2005// +/TODO.checks/1.3/Sat Apr 16 20:18:36 2005// +/configure/1.7/Sat Apr 2 11:09:44 2005// +/configure.in/1.11/Sat Apr 16 20:18:36 2005// +/initdefs/1.17/Thu Mar 31 15:25:09 2005// +/tiger.in/1.4/Sat Apr 16 20:18:36 2005// +/tigerrc/1.30/Sat Apr 16 20:18:36 2005// +/README.sources/1.9/Sat May 14 10:52:36 2005// +/TODO/1.15/Sat May 14 10:52:36 2005// +/tiger/1.28/Sat May 14 11:36:35 2005// +/config/1.19/Fri Jul 22 16:07:51 2005// +/Makefile.in/1.29/Fri Jul 22 17:09:13 2005// --- tiger-3.2.1.orig/debian/CVS/Entries +++ tiger-3.2.1/debian/CVS/Entries @@ -6,15 +6,16 @@ /tiger-otheros.dirs/1.1/Fri Jun 14 08:51:31 2002// /tigexp/1.1/Fri Jun 14 08:51:31 2002// /watch/1.1/Fri Jun 14 08:51:31 2002// -/debian.ignore/1.2/Mon Apr 21 17:03:23 2003// -/cron.d/1.3/Sat Apr 26 11:44:04 2003// /conffiles/1.2/Sun May 11 19:51:43 2003// /copyright/1.2/Sun May 11 19:51:50 2003// /docs/1.3/Sun May 11 19:51:54 2003// /config/1.3/Sat Jun 21 00:20:48 2003// /postinst/1.3/Sat Jun 21 00:20:52 2003// D/po//// -/control/1.3/Fri Sep 19 01:25:22 2003// -/rules/1.12/Sat Sep 20 17:45:50 2003// /templates/1.4/Sat Sep 20 17:45:47 2003// -/changelog/1.19/Fri Oct 10 16:13:54 2003// +/cron.d/1.4/Tue Feb 24 19:14:54 2004// +/debian.ignore/1.3/Tue Feb 24 19:14:54 2004// +/changelog/1.25/Result of merge+Thu Mar 31 15:22:31 2005// +/control/1.7/Thu Mar 31 15:22:31 2005// +/rules/1.16/Thu Mar 31 15:22:31 2005// +/server.ignore/1.3/Thu Mar 31 15:22:31 2005// --- tiger-3.2.1.orig/debian/rules +++ tiger-3.2.1/debian/rules @@ -2,6 +2,9 @@ # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. +# We depend on baashisms +SHELL=/bin/bash + # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 @@ -13,7 +16,7 @@ dh_testdir autoconf - ./configure --with-tigerhome=/usr/lib/tiger --with-tigerwork=/var/run/tiger/work --with-tigerlog=/var/log/tiger --with-tigerbin=/usr/sbin --with-tigerconfig=/etc/tiger --prefix=/usr + ./configure --with-tigerhome=/usr/lib/tiger --with-tigerwork=/var/run/tiger/work --with-tigerlog=/var/log/tiger --with-tigerbin=/usr/sbin --with-tigerconfig=/etc/tiger --prefix=/usr --mandir=/usr/share/man $(MAKE) all @@ -68,18 +71,18 @@ dh_testroot dh_installdebconf dh_installdocs - dh_installexamples tigerrc* site* cronrc + dh_installexamples tigerrc* site* cronrc debian/server.ignore dh_installmenu dh_installcron dh_installman man/tiger.8 man/tigexp.8 man/tigercron.8 dh_installinfo dh_installchangelogs CHANGES dh_link - dh_strip -XHPUX -XSunOS -XAIX -XHPUX -XIRIX -XNeXT -XMacOSX + dh_strip -XHPUX -XSunOS -XAIX -XIRIX -XNeXT -XMacOSX dh_compress dh_fixperms dh_installdeb - dh_shlibdeps -XHPUX -XSunOS -XAIX -XHPUX -XIRIX -XNeXT -XMacOSX + dh_shlibdeps -XHPUX -XSunOS -XAIX -XIRIX -XNeXT -XMacOSX dh_gencontrol dh_md5sums dh_builddeb --- tiger-3.2.1.orig/debian/changelog +++ tiger-3.2.1/debian/changelog @@ -1,6 +1,370 @@ -tiger (3.2.1-1) unstable; urgency=low +tiger (1:3.2.1-28) unstable; urgency=low - * The "Happy Birthday! (to me)" Release. + * Added a dependency on "| debconf-2.0" as requested by Joey Hess + * Use Debhelper compatibility version 4 + * Updated to latest CVS code: + - gen_passwd_sets: Create a src file if using LDAP (Closes: #319815) + + -- Javier Fernandez-Sanguino Pen~a Thu, 4 Aug 2005 19:16:22 +0200 + +tiger (1:3.2.1-27) unstable; urgency=low + + * Updated to latest CVS code, with some new fixes and patches including: + - check_accounts: Check for null $uids before using them in comparisons + (Closes: #312080) + - check_runprocs: Use comm instead of fname (Closes: #308486) + - Linux/gen_mounts: Changed extraction from mount command + so it can cope with whitespaces in mount locations, added sanity + check and fix a bug that mangled $fs (Closes: #315435) + - Makefile.in: install files needed to run tiger -G (Closes: #319468) + * German translation update of debconf templates provided by Erik Schanze + (Closes: #311857) + * Updated to latest batch of Debian advisories + + -- Javier Fernandez-Sanguino Pen~a Fri, 22 Jul 2005 16:50:33 +0200 + +tiger (1:3.2.1-26) unstable; urgency=low + + * Updated to latest CVS code, with some new fixes and patches including: + - check_listeningprocs (generic and Linux versions): Proper check for + processes in loopback (Closes: #307695) + - Linux/check_passwdspec: Better fix for pwd=! (Closes #308141) + - Linux/deb_checkmd5sums: Prevent issues with /usr/bin/[ by adjusting + GREP calls (Closes #305484) + - Linux/gen_mounts: Added auto, udev when using on /dev, + capifs and nfsd. (Closes: #305670 #307802 #307887 #308585) + Note to self: Bug mount manpages since none of these are listed + there... + - Linux/gen_passwd: Add LDAP password support with patch provided by Micha + Kersloot (Closes: #307505) + - Documentation improvements (README.Sources and TODO) + + -- Javier Fernandez-Sanguino Pen~a Sat, 14 May 2005 12:52:09 +0200 + +tiger (1:3.2.1-25) unstable; urgency=low + + * Updated to latest CVS code: + - Add afs as a non-local filesystem, and auto as a local filesystem + (Closes: #305670) + - Improve manpage wording + * Provide a default value for Tiger_Running_Procs instead of leaving + it empty + + -- Javier Fernandez-Sanguino Pen~a Thu, 21 Apr 2005 20:09:45 +0200 + +tiger (1:3.2.1-24) unstable; urgency=medium + + * Updated to CVS code: + - Fixed Linux/2/gen_mounts code which broke with the patches + implemented before the previous upload. + + -- Javier Fernandez-Sanguino Pen~a Mon, 18 Apr 2005 18:23:30 +0200 + +tiger (1:3.2.1-23) unstable; urgency=low + + * Updated to CVS code, this changes: + - gen_mounts now considers valid and non-local many more filesystems + (as described in mount(5)) including devfs (Closes: #304956, #304555, + #304557) + - check_listeningprocs will now check against both fname and comm and + strips the arguments of the command (this is an improvement over the + fix done in #288086) + - check_network_config properly checks ICMP redirects and the message + generation is fixed now it also now checks for local iptables rules + (Closes: #304957) + - several typo fixes in doc/linux.txt + * Updated DSA listing + + -- Javier Fernandez-Sanguino Pen~a Sat, 16 Apr 2005 22:19:50 +0200 + +tiger (1:3.2.1-22) unstable; urgency=low + + * Added some more valid but non-local filesystems ('none', 'binfmt_misc', + 'autofs') to gen_mounts (Closes: #302646) + + -- Javier Fernandez-Sanguino Pen~a Sat, 2 Apr 2005 13:07:07 +0200 + +tiger (1:3.2.1-21) unstable; urgency=low + + * Added the sysfs as a valid (local, but not reviewed) filesystem + (Closes: #302612) + + -- Javier Fernandez-Sanguino Pen~a Sat, 2 Apr 2005 01:52:34 +0200 + +tiger (1:3.2.1-20) unstable; urgency=low + + * Upgraded to latest CVS sources: + - Depend on binutils (Closes: #301451) + - (check_rootdir) Do not warn on the inode if the root filesystem is not + ext2|3 (Closes: #298305) + - (check_runprocs) Use comm instead of fname so that the names of the + processes are not truncated (Closes: #288086) + - (check_lilo) Only run if running on the x86 architecture (Closes: #288737) + - (check_single) Only run if running on the x86 architecture (Closes: #288737) + - (check_passwdspec) Fixed password aging check. Separate all checks + so that they prevent bugs if pwd="!" (Closes: #297889) + - (deb_checkmd5sums) Do not warn if the md5 file is not present in the + list file (Closes: #299935) + - (deb_nopackfiles) Remove uneeded {} (Closes: #297889) + - Also fixes a number of documentation typos fixed by Nicolas Francois + * Updated advisories + + -- Javier Fernandez-Sanguino Pen~a Thu, 31 Mar 2005 17:14:50 +0200 + +tiger (1:3.2.1-19) unstable; urgency=low + + * tigercron + - Fixed invalid From: header based on Robert Loomans' patch. This bug + was introduced by the previous release. (Closes: #287780) + + -- Javier Fernandez-Sanguino Pen~a Thu, 30 Dec 2004 09:00:19 +0100 + +tiger (1:3.2.1-18) unstable; urgency=low + + * systems/Linux/2/check_lilo: + - Fixed grub.conf naming (Closes: #286641) + * scripts/check_passwd: + - Delete temporary passwd files only on exit (Closes: #284899) + * debian/server.ignore: + - Added a sample ignore line for users accessing a remote server + with X11Forwarding set to 'on' (Closes: #284220) + * scripts/check_passwdformat: + - Maximum user and group length set to 32 (Closes: #283446) + (probably needs to be moved to systems/Linux/2/ since it's + Debian-specific) + * tigercron, tigerrc: + - Added Tiger_Mail_FROM feature (Closes: #243517) + * Disabling signature checks since they cannot be relied on (use + Tripwire, Aide, Samhain, Integrit, bsign or any other intecrity checker + instead), moreover deb_checkmd5sums already does it for Debian... + (Closes: #274625) + * Added Czech debconf translation provided by Miroslav Kure (Closes: #287301) + + -- Javier Fernandez-Sanguino Pen~a Mon, 27 Dec 2004 19:18:53 +0100 + +tiger (1:3.2.1-17) unstable; urgency=low + + * Quoted homedir uses in check_rhosts and check_netrc (Closes: #282211) + + -- Javier Fernandez-Sanguino Pen~a Sun, 21 Nov 2004 11:56:57 +0100 + +tiger (1:3.2.1-16) unstable; urgency=low + + * Updated advisories + * Fixed gen_group_sets to work properly in NIS environments for Linux + and Tru64 (Closes: #281608) + * Fixed eval in check_accounts so that find is _only_ executed for users + which are not part of Tiger_Admin_Accounts, this prevents Tiger from + going and using remote filesystems (i.e. /var/autofs/ because in + Debian 'operator' has /var as his home dir). It also should speed + up this check a lot. This shows why Tiger_Admin_Accounts is a bad + idea and Tiger_Accounts_Trust should be used instead (or add a + Tiger_Accounts_Admin) (Closes: #280653, #280654) + + -- Javier Fernandez-Sanguino Pen~a Wed, 17 Nov 2004 15:15:21 +0100 + +tiger (1:3.2.1-15) unstable; urgency=low + + * Lintian fixes: + - Updated Standards-Version + - Removed cvs conflict copy files + - Changelog is now UTF-8 + * Use C locales to avoid scripts/check_system from breaking up (Close: #270108) + * deb_checkmd5sums's regexep now excludes usr/share/doc/ (Closes: #264111) + + -- Javier Fernandez-Sanguino Pen~a Mon, 13 Sep 2004 11:12:08 +0200 + + +tiger (1:3.2.1-14) unstable; urgency=low + + [ as suggested by Tilman Koschnick ] + * Allow delete() to remove files from LOGDIR so that reports generated + by tiger -e are removed proplerly (Closes: #262523) + * Symlink /usr/lib/tiger/tigexp to /sbin/tigexp so that tiger -e works + (Closes: #262518) + + -- Javier Fernandez-Sanguino Pen~a Sun, 1 Aug 2004 18:19:18 +0200 + +tiger (1:3.2.1-13) unstable; urgency=low + + * Updated to CVS changes which fix a problem in the gen_passwd_sets + script which would make duplicates appear in the passwd files. + Thus generating a lot of false positives (in the check_passwd script) + Also removes some other duplicates in the check_passwdformat script + and updates the Debian advisories listing. + + -- Javier Fernandez-Sanguino Pen~a Sun, 27 Jun 2004 21:25:27 +0200 + +tiger (1:3.2.1-12) unstable; urgency=low + + * Updated to latest CVS code fixing: + - [check_known] Do not call LS directly with all files but use a for loop + (Closes: #246600) + - [deb_nopackfiles] Made the dirlist variable so that directories which + do not exist are not checked for (Closes: #254574) + + -- Javier Fernandez-Sanguino Pen~a Sun, 27 Jun 2004 13:58:24 +0200 + +tiger (1:3.2.1-11) unstable; urgency=low + + * Updated to latest CVS code which fixes: + - [check_accounts] Try to avoid eval problems if user/shells/directories + contain non-empty (but invalid) characters (such as space) + (Similar changes in some other scripts to avoid breakage in similar + situations) + (Closes: #246987) + - [check_passwd] Define Tiger_Passwd_Hashes if not defined + (Closes: #246885) + - [deb_checkmd5sums] Fixed patch provided by Chung-chieh Shan + (Closes: #234811) + + * Remove check_finddeleted from the default configuration since it + is prone to a lot of false positives, also, it depends on LSOF + (which is only recommended). I will reenable this sometime in + the future and (maybe) provide a Debian-specific script to just + monitor for daemons that are using outdated libraries + (Closes: #249331) + * Send filesystem scans error output to /dev/null (need to fix this + in scripts/find_files by not following symbolic links that point + nowhere, this is an interim fix) + + -- Javier Fernandez-Sanguino Pen~a Thu, 20 May 2004 09:31:23 +0200 + +tiger (1:3.2.1-10) unstable; urgency=low + + * Removed evals from tigerrc and make proper sourcing in + Tiger_PATH_OK_Group_Write (Closes: #236419) + + -- Javier Fernandez-Sanguino Pen~a Sat, 6 Mar 2004 11:00:55 +0100 + +tiger (1:3.2.1-9) unstable; urgency=medium + + * Added Danish debconf translation (Closes: #235066) + * Fixed errors in check_finddeleted (Closes: #235951) + * Added some more common servers to the server.ignore example + * Fix error in deb_checkmd5sums with patch from Chung-chieh Shan + which avoids failure on packages whose names contain "." (Closes: #234811) + * Minor change in check_passwd to detect if no shell is defined for + a given user (as suggested by raoul bhatia) + + -- Javier Fernandez-Sanguino Pen~a Wed, 3 Mar 2004 13:13:05 +0100 + +tiger (1:3.2.1-8) unstable; urgency=low + + * check_rcumask: Proper warning if no umask settings are defined + (Closes: #234661) + + -- Javier Fernandez-Sanguino Pen~a Wed, 25 Feb 2004 20:39:16 +0100 + +tiger (1:3.2.1-7) unstable; urgency=low + + * Updated from CVS which includes a number of improvements including + the following (relevant to Debian bugs): + - Added more information on check_finddeleted regarding + how to use it and remove spurious errors. This script + will not give false positives any longer on some special + characterr) files like /dev/console or /dev/null and has + reduced its output to something more managable (there is + only one message per deleted file now) + (Closes: #232704,#231148, #225112) + - Fixed password definitions adding the 'g-Z' 'A-Z' and + '.' sets (Closes: #227596) + - Many scripts now controls YPCAT errors to printing errors in + hosts that are not properly configured. + (i.e. nsswitch.conf is defined to use NIS but there's no NIS + host) Errors are redirected to /dev/null when YPCAT is not + required as many systems do not include it, specially in Debian. + (Closes: #225910) + - Check_crontab will only warn if neither cron.allow + or cron.deny exist (Debian bug #226362) + * Default cronrc no longer runs check_finddeleted as often since it's + prone to false positives (even if it can be customised through the + ignore mechanism, see /usr/share/doc/tiger/examples/server.ignore) + * Added French template translation provided by Christian Perrier + (Closes: #226883, #224700) + * Fully translated the spanish template. + * Updated to include latest Debian advisories. + * debian/rules now uses mandir (/usr/share/man/) in configure call. + + -- Javier Fernandez-Sanguino Pen~a Tue, 24 Feb 2004 21:21:19 +0100 + +tiger (1:3.2.1-6) unstable; urgency=low + + * The cron.d taks will only run if tigercron is executable, this avoids + cron.d from running tiger if it has been removed but not purged + (thanks to Thomas Lange for noticing this mistake) + * Included patch from Nicholas François which makes Tiger not warn + on manpage files purged through localepurge (Closes: #219728) + * Added To: line in tigercron (Closes: #218363) + * Added Japanese translation contributed by Hideki Yamane (Closes: #224185) + + -- Javier Fernandez-Sanguino Pen~a Sat, 20 Dec 2003 13:49:38 +0100 + +tiger (1:3.2.1-5) unstable; urgency=low + + * Updated from CVS to fix reported bugs: + * fixed typo in check_lilo (Closes: #221470) + * This update also provides a number of fixes/enhancements which + will be available in the next release: + * check_crontabs adds more information in messages + * check_inetd does not report the services as not protected if + TCP wrappers are undefined + * per interface promiscuous detection with 'ip' for more accurate + results in check_known + * check_passwd message fix + * shadow password check is no longer in check_passwdformat (move to + account checks) + * check_rootdir checks ownership + * check_services will not misreport for services not defined + * check_ssh needs to run through bash + * check_xinetd fixes syntax error + * YP -> YPCAT in all operating systems + * Proper definitions for AIX + * HPUX fixes + * Tiger now runs check_xinetd or check_inetd depending on which + configuration file is available. + + -- Javier Fernandez-Sanguino Pen~a Sat, 6 Dec 2003 22:10:02 +0100 + +tiger (1:3.2.1-4) unstable; urgency=low + + * Updated from CVS sources to fix reported bugs + * Updated check_root so mesg check is not done when running + in cron (Closes: #218056, #220924) + * Updated check_lilo now locates grub file properly (Closes: #218771) + * Updated check_passwd fixes syntax error (Closes: #219086) + * deb_checkmd5sums detect local diversions and avoid problems with + duplicate conffiles (Closes: #219727, #220325) + * check_release fixed typeset bashism (Closes: #219764) + * deb_checkmd5sums now uses -F to avoid warning on /usr/bin/[ + (Closes: #220946) + * config add sendmail_cf location + * Updated advisories list. + + -- Javier Fernandez-Sanguino Pen~a Sun, 16 Nov 2003 13:10:08 +0100 + +tiger (1:3.2.1-3) unstable; urgency=low + + * Updated from CVS sources to latest Tiger changes including: + - Check_rootkit no longer complains if chkrootkit is not installed + (Closes: #215885) + - Fixes check_network_config return values (Closes: #215891) + - Fixes inittab's false positives (Closes: #215872) + - Fixes bashisms ini scripts (Closes: #215896) + - Fixes initdefs delete() in order for check_chkrootkit removal to work + properly (Closes: #215882) + * Debian/rules now sets SHELL=/bin/bash (Closes: #198856) + * Updated to latest advisories + * Now depends also on coreutils (X | corerutils) (Closes: #215487) + * Added device baseline to debian.ignore (Closes: #194956) + * Removed check_sendmail from check.tbl so that it does not get run by + check_system (Closes: #2158739) + + -- Javier Fernandez-Sanguino Pen~a Sun, 19 Oct 2003 23:56:50 +0200 + +tiger (1:3.2.1-2) unstable; urgency=low + + * The "Happy Birthday! (to me)" Release, now uploaded to unstable. * New upstream version, which includes is fully integrated with TARA 3.0.3 and provides quite a number of bugfixes, checks and new documentation. @@ -34,9 +398,41 @@ * Added patch for new po-debconf format (Closes: #186800) * (but changed it so that the 'root' user is not translatable) * Updated to latest Debian advisories. + * Forced to start using epochs due to how I messed the experimental + packages (3.2.1rcX > 3.2.1!) -- Javier Fernandez-Sanguino Pen~a Fri, 10 Oct 2003 19:19:36 +0200 +tiger (3.2.1-1) experimental; urgency=low + + * New upstream version, which includes is fully integrated with + TARA 3.0.3 and provides quite a number of bugfixes, checks and new + documentation. + * Changes relevant to reported Debian bugs include: + - Adds support for diversions and conffiles in deb_checkmd5sums + (Closes: #211329, #162589) + - Provides documentation for check_logfiles (Closes: #195192) + - Adds support for HP-UX in several scripts (Closes: #195200, #197220) + - Changes gen_passwd_sets under Linux to identify des or md5 + (Closes: #197221) + - Removes debug messages from check_rootdir (Closes: #197219) + - Added tigercron.8 manpage (Closes: #148291) + - OS-specific scripts are run before generic ones, since the Linux + version of check_listeningprocs is different than the generic one + it will be prefered and run (Closes: #200778) + - Deb_nopackfiles no longer uses long arguments in the grep call + and has been speed-optimized (Closes: #201577) + - Deb_nopackfiles also now sends FIND errors to void since they + are not used and might confuse users who do not have X + installed (Closes: #207904) + - check_path now uses -L to follow symlinks (Closes: #161993) + - Adds new password check for empty passwords (Closes: #197228) + * Added -XMacOSX to exclude the new OS provided upstream. + * Added patch for new po-debconf format (Closes: #186800) + + -- Javier Fernandez-Sanguino Pen~a Fri, 19 Sep 2003 02:33:00 +0200 + + tiger (3.2-4) unstable; urgency=low * Updated to latest debian advisories --- tiger-3.2.1.orig/debian/control +++ tiger-3.2.1/debian/control @@ -3,12 +3,12 @@ Priority: optional Maintainer: Javier Fernandez-Sanguino Pen~a Build-Depends: debhelper (>= 4.1.13), autoconf, po-debconf (>= 0.5.0) -Standards-Version: 3.5.7 +Standards-Version: 3.6.0.1 Package: tiger Architecture: any -Depends: diff (>=2.0), net-tools, shellutils (>=1.1.14-1), fileutils (>=3.14-1), textutils (>=1.20-1), debconf, ${shlibs:Depends} -Recommends: binutils, sendmail | mail-transport-agent, john +Depends: diff (>=2.0), net-tools, shellutils (>=1.1.14-1) | coreutils, fileutils (>=3.14-1) | coreutils, textutils (>=1.20-1) | coreutils, binutils, debconf | debconf-2.0, ${shlibs:Depends} +Recommends: binutils, sendmail | mail-transport-agent, john, chkrootkit Suggests: lsof Description: Report system security vulnerabilities TIGER, or the 'tiger' scripts, is a set of Bourne shell --- tiger-3.2.1.orig/debian/cron.d +++ tiger-3.2.1/debian/cron.d @@ -1,4 +1,4 @@ # # Regular cron jobs for the tiger package # -0 * * * * root /usr/sbin/tigercron -q +0 * * * * root test -x /usr/sbin/tigercron && /usr/sbin/tigercron -q --- tiger-3.2.1.orig/debian/debian.ignore +++ tiger-3.2.1/debian/debian.ignore @@ -16,3 +16,15 @@ /etc/inetd.conf should not have group read. /etc/inetd.conf should not have world read. /etc/pam.d/sudo should not have world read. +The directory /dev/ataraid resides in a device directory. +The directory /dev/cciss resides in a device directory. +The directory /dev/fd resides in a device directory. +The directory /dev/input resides in a device directory. +The directory /dev/pts resides in a device directory. +The directory /dev/rd resides in a device directory. +The directory /dev/usb resides in a device directory. +The directory /dev/ida resides in a device directory. +/dev/null has world permissions +/dev/ptmx has world permissions +/dev/gpmctl has world permissions +/dev/gpmdata has world permissions --- tiger-3.2.1.orig/debian/po/de.po +++ tiger-3.2.1/debian/po/de.po @@ -4,34 +4,29 @@ # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' -# # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# # Developers do not need to manually edit POT or PO files. +# Erik Schanze , 2005. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-03-29 23:25-0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Project-Id-Version: tiger_1:3.2.1-26_de\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2005-06-03 22:49+0200\n" +"Last-Translator: Erik Schanze \n" +"Language-Team: German \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - -#. Default -#: ../templates:3 -msgid "root" -msgstr "" +"X-Generator: KBabel 1.9.1\n" #. Description #: ../templates:4 msgid "Who should receive the daily mails?" -msgstr "Wer soll die täglichen Mails empfangen?" +msgstr "Wer soll die täglichen E-Mails empfangen?" #. Description #: ../templates:4 @@ -42,11 +37,16 @@ "Also note that any administrator will be able to access the reports since " "they are available in the /var/log/tiger/ directory." msgstr "" +"Der Benutzer, den Sie unten eingeben, wird alle von 'tiger' versandten " +"E-Mails erhalten, wenn die Cron-Jobs laufen. Das bedeutet nicht, dass der " +"Benutzer Berichte erhält, wenn Sie 'tiger' als einzelnes Programm aufrufen. " +"Beachten Sie auch, dass jeder Administrator auf die Berichte zugreifen kann, " +"weil sie im Verzeichnis /var/log/tiger/ verfügbar sind." #. Description #: ../templates:13 msgid "Take a minute to customize 'tiger'" -msgstr "" +msgstr "Nehmen Sie sich die Zeit, 'tiger' einzurichten." #. Description #: ../templates:13 @@ -62,11 +62,22 @@ "against each one of the templates available (one per module) and only new " "warnings will be issued." msgstr "" +"Sie sollten die Dateien im Verzeichnis /etc/tiger/ an Ihre Sicherheits- " +"Richtlinie anpassen. Zuerst sollten Sie die Tests einrichten, die auf Ihrem " +"System gemacht werden und die Daten für die Tests (in der Datei " +"/etc/tiger/tigerrc) bereitstellen, um Falschmeldungen zu vermeiden. Dann " +"sollten Sie (in der Datei /etc/tiger/cronrc) einstellen, zu welchen Zeiten " +"die Tests gemacht werden. Danach sollten Sie aus den Durchläufen der Module " +"Schablonen (im Verzeichnis /etc/tiger/templates/) erstellen, wenn Module " +"Warnungen ausgeben, die für Ihre Sicherheits-Richtlinie nicht problematisch " +"sind. Sind die Schablonen erstellt, wird jeder Durchlauf mit den verfügbaren " +"Schablonen (eine pro Modul) verglichen und es werden nur neue Warnungen " +"angezeigt." #. Description #: ../templates:28 msgid "Remove templates in buggy 'tiger' versions" -msgstr "" +msgstr "Schablonen einer fehlerhaften 'tiger'-Version entfernen" #. Description #: ../templates:28 @@ -80,3 +91,12 @@ "to avoid removing previous templates. Should we remove these files if any " "are found?" msgstr "" +"Anfänglich enthielt die 'tiger'-Version in Debian 3.1 einen Fehler, bei dem " +"die Schablonen im Verzeichnis /var/log/ anstelle von /var/log/tiger/ angelegt " +"wurden. Die Schablonen werden aber im Verzeichnis /var/log/tiger/ erwartet und " +"die anderen werden bei neueren Versionen von 'tiger' nicht funktionieren. Sie " +"wollen vielleicht eine Kopie (als Schablonen) behalten und sie selbst an die " +"richtige Stelle legen. Das Paket tut das nicht automatisch, um nicht frühere " +"Schablonen zu entfernen. Sollen diese Dateien gelöscht werden, wenn welche " +"gefunden werden?" + --- tiger-3.2.1.orig/debian/po/es.po +++ tiger-3.2.1/debian/po/es.po @@ -11,23 +11,18 @@ # # Developers do not need to manually edit POT or PO files. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-03-29 23:25-0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Project-Id-Version: tiger 3.2.1-7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2004-02-42 21:52+0200\n" +"Last-Translator: Javier Fernandez-Sanguino \n" +"Language-Team: Debian-Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#. Default -#: ../templates:3 -msgid "root" -msgstr "" - #. Description #: ../templates:4 msgid "Who should receive the daily mails?" @@ -83,7 +78,7 @@ #. Description #: ../templates:28 msgid "Remove templates in buggy 'tiger' versions" -msgstr "" +msgstr "Eliminar plantillas de versiones rotas de 'tiger'" #. Description #: ../templates:28 @@ -97,3 +92,11 @@ "to avoid removing previous templates. Should we remove these files if any " "are found?" msgstr "" +"Se distribuyó una versión de Debian Tiger 3.1 que tenía una errata que hacía " +"que se crearan plantillas bajo «/var/log» en lugar de bajo «/var/log/tiger». " +"Para funcionar correctamente, las plantillas deben estar bajo «/var/log/tiger»" +" y por tanto las plantillas antiguas no son útiles para versiones más " +"modernas de Tiger. Puede que quiera guardar una copia de éstas o moverlas " +"de forma manual a su nueva ubación. Este paquete no realizará esta operación " +"de forma automática para evitar la eliminación de las plantillas ya existentes." +"¿Debería borrar estos ficheros si los encuentro?" --- tiger-3.2.1.orig/debian/po/pt_BR.po +++ tiger-3.2.1/debian/po/pt_BR.po @@ -14,7 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: tiger_3.1-8\n" -"POT-Creation-Date: 2003-03-29 23:25-0300\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" "PO-Revision-Date: 2003-03-29 23:43-0300\n" "Last-Translator: André Luís Lopes \n" "Language-Team: Debian-BR Project \n" @@ -22,11 +23,6 @@ "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#. Default -#: ../templates:3 -msgid "root" -msgstr "root" - #. Description #: ../templates:4 msgid "Who should receive the daily mails?" @@ -42,12 +38,11 @@ "they are available in the /var/log/tiger/ directory." msgstr "" "O usuário informado abaixo irá receber todas as mensagens que o 'tiger' " -"enviar durante o dia quando executa os jobs do cron. Isto não significa " -"que quando o programa 'tiger' é executado em modo standalone (não " -"através de jobs do cron) este usuário irá receber os relatórios. Note " -"também que quaisquer administradores serão capazes de acessar os " -"relatórios uma vez que os mesmos estarão disponíveis no diretório " -"/var/log/tiger/." +"enviar durante o dia quando executa os jobs do cron. Isto não significa que " +"quando o programa 'tiger' é executado em modo standalone (não através de " +"jobs do cron) este usuário irá receber os relatórios. Note também que " +"quaisquer administradores serão capazes de acessar os relatórios uma vez que " +"os mesmos estarão disponíveis no diretório /var/log/tiger/." #. Description #: ../templates:13 @@ -68,18 +63,17 @@ "against each one of the templates available (one per module) and only new " "warnings will be issued." msgstr "" -"Você deverá personalizar os arquivos em /etc/tiger/ e adaptá-los para " -"sua política local de segurança. Primeiro, personalizando os tipos de " -"checagens que serão feitas neste sistema, bem como a informação " -"necessária para os testes de modo a reduzir a possibilidade de falsos " -"positivos (em /etc/tiger/tigerrc). Segundo, personalizando quando esses " -"testes deverão ser executados (em /etc/tiger/cronrc). E terceiro, uma " -"vez que alguns avisos (warnings) de módulos podem na verdade não ser " -"problemas relacionados a sua política atual de segurança local, definir " -"um dado arquivo de modelo (template) em /etc/tiger/template/ usando " -"execuções de cada um dos módulos. Uma vez definidas, todas as execuções " -"serão checadas contra cada um dos modelos disponíveis (um por módulo) e " -"somente novos avisos serão gerados." +"Você deverá personalizar os arquivos em /etc/tiger/ e adaptá-los para sua " +"política local de segurança. Primeiro, personalizando os tipos de checagens " +"que serão feitas neste sistema, bem como a informação necessária para os " +"testes de modo a reduzir a possibilidade de falsos positivos (em /etc/tiger/" +"tigerrc). Segundo, personalizando quando esses testes deverão ser executados " +"(em /etc/tiger/cronrc). E terceiro, uma vez que alguns avisos (warnings) de " +"módulos podem na verdade não ser problemas relacionados a sua política atual " +"de segurança local, definir um dado arquivo de modelo (template) em /etc/" +"tiger/template/ usando execuções de cada um dos módulos. Uma vez definidas, " +"todas as execuções serão checadas contra cada um dos modelos disponíveis (um " +"por módulo) e somente novos avisos serão gerados." #. Description #: ../templates:28 @@ -98,11 +92,14 @@ "to avoid removing previous templates. Should we remove these files if any " "are found?" msgstr "" -"Inicialmente as versões do Debian 3.1 do tiger foram distribuídas com " -"um bug que fazia com que os modelos fossem criados sob /var/log ao " -"invés de sob /var/log/tiger. Operações normais assumem que os modelos " -"estejam sob /var/log/tiger/ e esses modelos não serão úteis em novas " -"versões do Tiger. Você pode desejar preservar uma copia deles (para " -"usar como modelos) e movê-los manualmente sob sua própria localização. " -"O pacote não irá fazer isso automaticamente para evitar remover modelos " -"anteriores. Esses arquivos devem ser removidos caso sejam encontrados ?" +"Inicialmente as versões do Debian 3.1 do tiger foram distribuídas com um bug " +"que fazia com que os modelos fossem criados sob /var/log ao invés de sob /" +"var/log/tiger. Operações normais assumem que os modelos estejam sob /var/log/" +"tiger/ e esses modelos não serão úteis em novas versões do Tiger. Você pode " +"desejar preservar uma copia deles (para usar como modelos) e movê-los " +"manualmente sob sua própria localização. O pacote não irá fazer isso " +"automaticamente para evitar remover modelos anteriores. Esses arquivos devem " +"ser removidos caso sejam encontrados ?" + +#~ msgid "root" +#~ msgstr "root" --- tiger-3.2.1.orig/debian/po/templates.pot +++ tiger-3.2.1/debian/po/templates.pot @@ -15,7 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-03-29 23:25-0300\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,11 +24,6 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. Default -#: ../templates:3 -msgid "root" -msgstr "" - #. Description #: ../templates:4 msgid "Who should receive the daily mails?" --- tiger-3.2.1.orig/debian/po/CVS/Entries +++ tiger-3.2.1/debian/po/CVS/Entries @@ -1,6 +1,7 @@ /POTFILES.in/1.1/Fri Sep 19 01:25:22 2003// -/de.po/1.1/Fri Sep 19 01:25:22 2003// -/es.po/1.1/Fri Sep 19 01:25:22 2003// -/pt_BR.po/1.1/Fri Sep 19 01:25:22 2003// -/templates.pot/1.1/Fri Sep 19 01:25:22 2003// +/de.po/1.2/Tue Feb 24 19:14:55 2004// +/pt_BR.po/1.2/Tue Feb 24 19:14:55 2004// +/templates.pot/1.2/Tue Feb 24 19:14:55 2004// +/fr.po/1.1/Tue Feb 24 20:20:41 2004// +/es.po/1.3/Thu May 20 07:37:07 2004// D --- tiger-3.2.1.orig/debian/po/ja.po +++ tiger-3.2.1/debian/po/ja.po @@ -0,0 +1,78 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2003-11-23 10:45+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../templates:4 +msgid "Who should receive the daily mails?" +msgstr "Æü¼¡¥ì¥Ý¡¼¥È¤Î¥á¡¼¥ë¤ò郎¼õ¤±¼è¤ê¤Þ¤¹¤«?" + +#. Description +#: ../templates:4 +msgid "" +"The user you enter below will receive all the emails that 'tiger' sends " +"during the day when running the cron jobs. This does not mean that when " +"executing the 'tiger' program standalone this user will receive the reports. " +"Also note that any administrator will be able to access the reports since " +"they are available in the /var/log/tiger/ directory." +msgstr "cronjob ¤¬Æ°¤¤¤Æ¤¤¤ë´Ö 'tiger' ¤¬Á÷¤ë¥á¡¼¥ë¤ò¼õ¤±¼è¤ë¥æ¡¼¥¶¤ò°Ê²¼¤ÇÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£ 'tiger' ¥×¥í¥°¥é¥à¤¬Ã±ÆȤǼ¹Ԥµ¤ì¤¿¾ì¹ç¤Ë¤³¤Î¥æ¡¼¥¶¤¬¥ì¥Ý¡¼¥È¤ò¼õ¤±¼è¤ë¤È¤¤¤¦°ÕÌ£¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£´ÉÍý¼Ô¤Ç¤¢¤ì¤Ð /var/log/tiger/ ¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤ë¤Î¤Ç¥ì¥Ý¡¼¥È¤òÆɤá¤ë¤È¤¤¤¦¤³¤È¤Ë¤âÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#. Description +#: ../templates:13 +msgid "Take a minute to customize 'tiger'" +msgstr "'tiger' ¤Î¥«¥¹¥¿¥Þ¥¤¥º¤Ë¤Ï¿¾¯»þ´Ö¤¬¤«¤«¤ê¤Þ¤¹" + +#. Description +#: ../templates:13 +msgid "" +"You should customize the files at /etc/tiger/ to adapt to your local " +"security policy. Firstly, customizing the kind of checks that will be made " +"in this system, as well as the information needed for tests in order to " +"reduce false positives (in /etc/tiger/tigerrc). Secondly, customizing at " +"what times these tests will be executed (in /etc/tiger/cronrc). And thirdly, " +"since some modules warnings might not be problems regarding your current " +"security policy, define a given template file at /etc/tiger/templates/ using " +"runs from each of the modules. Once defined, all the runs will be checked " +"against each one of the templates available (one per module) and only new " +"warnings will be issued." +msgstr "¥í¡¼¥«¥ë¤Î¥»¥­¥å¥ê¥Æ¥£¥Ý¥ê¥·¡¼¤ËŬ¹ç¤µ¤»¤ë¤¿¤á¤Ë¤Ï /etc/tiger/ °Ê²¼¤Î¥Õ¥¡¥¤¥ë¤ò¥«¥¹¥¿¥Þ¥¤¥º¤·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£¤Þ¤º»Ï¤á¤Ë false positive ¤ò¸º¤é¤¹¤¿¤á¡¢¥Æ¥¹¥È¤ËɬÍפȤʤë¾ðÊó¤Î¥«¥¹¥¿¥Þ¥¤¥º¤Ï¤â¤Á¤í¤ó¤Î¤³¤È¡¢¤³¤Î¥·¥¹¥Æ¥à¤Ç¹Ô¤ï¤ì¤ë¥Á¥§¥Ã¥¯¤Î¼ïÎ༫ÂΤâÁªÂò¤·¤Þ¤¹ (/etc/tiger/tigerrc) ¡£2ÈÖÌܤˡ¢¤³¤ì¤é¤Î¥Æ¥¹¥È¤¬²¿²ó¼Â¹Ô¤µ¤ì¤ë¤« (/etc/tiger/cronrc) ¡£3ÈÖÌܤˡ¢¥â¥¸¥å¡¼¥ë¤¬È¯¤¹¤ë·Ù¹ð¤Î´ö¤Ä¤«¤Ï¡¢¸½ºß¤Î¥»¥­¥å¥ê¥Æ¥£¥Ý¥ê¥·¡¼¤Ë¾È¤é¤¹¤ÈÌäÂê¤È¤Ï¤Ê¤é¤Ê¤¤¤Î¤Ç¡¢¤½¤ì¤¾¤ì¤Î¥â¥¸¥å¡¼¥ë¤¬¼Â¹Ô¤¹¤ë /etc/tiger/templates/ ¤Ë¤¢¤ë¥Æ¥ó¥×¥ì¡¼¥È¥Õ¥¡¥¤¥ë¤òÄêµÁ¤·¤Þ¤¹¡£°ìÅÙÄêµÁ¤¹¤ë¤È (¥â¥¸¥å¡¼¥ë¤´¤È¤Ë) ÍøÍѲÄǽ¤Ê¥Æ¥ó¥×¥ì¡¼¥È¤½¤ì¤¾¤ì¤ËÂФ·¤Æ¥Á¥§¥Ã¥¯¤¬¹Ô¤ï¤ì¡¢¿·¤·¤¤·Ù¹ð¤À¤±¤¬¼è¤ê¾å¤²¤é¤ì¤Þ¤¹¡£" + +#. Description +#: ../templates:28 +msgid "Remove templates in buggy 'tiger' versions" +msgstr "¥Ð¥°¤Î¿¤¤¥Ð¡¼¥¸¥ç¥ó¤Î 'tiger' ¤Î¥Æ¥ó¥×¥ì¡¼¥È¤òºï½ü¤·¤Þ¤¹" + +#. Description +#: ../templates:28 +msgid "" +"Initially Debian's 3.1 tiger versions were distributed with a bug that would " +"cause templates to be created under /var/log/ instead of /var/log/tiger/. " +"Normal operation assumes templates are under /var/log/tiger/ and these " +"templates will not be useful in newer Tiger versions. You might want to " +"preserve a copy of them (to use as templates) and move them manually under " +"their proper location. The package will not do this automatically in order " +"to avoid removing previous templates. Should we remove these files if any " +"are found?" +msgstr "ºÇ½é¤ËÇÛÉÛ¤µ¤ì¤¿ Debian ¤Î tiger ¥Ð¡¼¥¸¥ç¥ó 3.1 ¤Ç¤Ï¥Æ¥ó¥×¥ì¡¼¥È¤¬ /var/log/tiger/ ¤Ç¤Ï¤Ê¤¯ /var/log/ ¤Ëºî¤é¤ì¤ë¤È¤¤¤¦¥Ð¥°¤¬¤¢¤ê¤Þ¤¹¡£Ä̾ï¤Ï /var/log/tiger/ °Ê²¼¤Ë¥Æ¥ó¥×¥ì¡¼¥È¤¬¤¢¤ë¤È²¾Äꤷ¤Æ¤¤¤ë¤Î¤Ç¡¢¤³¤ì¤é¤Î¥Æ¥ó¥×¥ì¡¼¥È¤Ï¿·¤·¤¤ tiger ¤Ç¤ÏÍøÍѤµ¤ì¤Þ¤»¤ó¡£¤³¤ì¤é¤Î¥³¥Ô¡¼¤ò (¥Æ¥ó¥×¥ì¡¼¥È¤È¤·¤Æ»È¤¦¤¿¤á¤Ë) Êݸ¤·¤ª¤­¡¢¸å¤Û¤É¼êÆ°¤ÇÀµ¤·¤¤°ÌÃ֤ذÜÆ°¤·¤Æ¤ª¤­¤¿¤¤¤È»×¤¦¤«¤â¤·¤ì¤Þ¤»¤ó¡£¥Ñ¥Ã¥±¡¼¥¸¤Ï°ÊÁ°¤Î¥Æ¥ó¥×¥ì¡¼¥È¤¬ºï½ü¤µ¤ì¤ë¤Î¤òÈò¤±¤ë¤¿¤á¡¢¤³¤Îºî¶È¤ò¼«Æ°Åª¤Ë¤Ï¼Â¹Ô¤·¤Þ¤»¤ó¡£¤É¤¦¤·¤Æ¤â¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹¤«?" --- tiger-3.2.1.orig/debian/po/da.po +++ tiger-3.2.1/debian/po/da.po @@ -0,0 +1,105 @@ +# translation of tiger_1:3.2.1-7-da.po to Danish +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Claus Hindsgaul , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: tiger_1:3.2.1-7-da\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2004-02-27 11:22+0100\n" +"Last-Translator: Claus Hindsgaul \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Description +#: ../templates:4 +msgid "Who should receive the daily mails?" +msgstr "Hvem skal modtage de daglige breve?" + +#. Description +#: ../templates:4 +msgid "" +"The user you enter below will receive all the emails that 'tiger' sends " +"during the day when running the cron jobs. This does not mean that when " +"executing the 'tiger' program standalone this user will receive the reports. " +"Also note that any administrator will be able to access the reports since " +"they are available in the /var/log/tiger/ directory." +msgstr "" +"Den bruger, du angiver herunder, vil modtage alle de breve, 'tiger' sender " +"i løbet af dagen, når den kører sine cron-jobs. Dette vil ikke betyde at " +"brugeren vil modtage rapporter hver gang 'tiger'-programmet bliver kørt " +"af andre. Bemærk også at enhver administrator vil have adgang til rapporterne, " +"da de ligger i mappen /var/log/tiger/." + +#. Description +#: ../templates:13 +msgid "Take a minute to customize 'tiger'" +msgstr "Brug et øjeblik på at sætte 'tiger' op" + +#. Description +#: ../templates:13 +msgid "" +"You should customize the files at /etc/tiger/ to adapt to your local " +"security policy. Firstly, customizing the kind of checks that will be made " +"in this system, as well as the information needed for tests in order to " +"reduce false positives (in /etc/tiger/tigerrc). Secondly, customizing at " +"what times these tests will be executed (in /etc/tiger/cronrc). And thirdly, " +"since some modules warnings might not be problems regarding your current " +"security policy, define a given template file at /etc/tiger/templates/ using " +"runs from each of the modules. Once defined, all the runs will be checked " +"against each one of the templates available (one per module) and only new " +"warnings will be issued." +msgstr "" +"Du bør redigere filerne i /etc/tiger/, så de modsvarer din lokale " +"sikkerhedspolitik. For det første bør du justere hvilke slags tjek, " +"der skal udføres på dette system, ligesom du bør give de nødvendige " +"oplysninger til at reducere antallet af falske positive (i " +"/etc/tiger/tigerrc). For det andet bør du angive hvornår tjekkene " +"skal udføres (i /etc/tiger/cronrc). For det tredje bør du definere " +"en given skabelonfil i /etc/tiger/templates ud fra kørsler med hvert " +"af modulerne, da visse moduler advarer om ting, der ikke nødvendigvis " +"anses for problematiske i forhold til netop din sikkerhedspolitik. " +"Så snart de er defineret, vil alle kørsler blive holdt op med hver " +"enkelt af de tilgængelige skabeloner (en for hvert modul), og kun nye " +"advarsler vil blive udsendt." + +#. Description +#: ../templates:28 +msgid "Remove templates in buggy 'tiger' versions" +msgstr "Fjern skabeloner fra fejlbehæftede 'tiger'-versioner" + +#. Description +#: ../templates:28 +msgid "" +"Initially Debian's 3.1 tiger versions were distributed with a bug that would " +"cause templates to be created under /var/log/ instead of /var/log/tiger/. " +"Normal operation assumes templates are under /var/log/tiger/ and these " +"templates will not be useful in newer Tiger versions. You might want to " +"preserve a copy of them (to use as templates) and move them manually under " +"their proper location. The package will not do this automatically in order " +"to avoid removing previous templates. Should we remove these files if any " +"are found?" +msgstr "" +"I starten blev Debians Tiger-version 3.1 distribueret med en fejl, der " +"gjorde at skabelonerne blev oprettet under /var/log/ i stedet for " +"/var/log/tiger. Under almindelig drift antages det at skabelonerne ligger " +"under /var/log/tiger/ og disse skabeloner vil ikke være til gavn for nyere " +"Tiger-versioner. Hvis du ønsker det, kan du gemme en kopi af dem (til brug " +"som skabeloner) og selv flytte dem til deres korrekte placering. Pakken vil " +"undlade at gøre dette automatisk, for at undgå at fjerne tidligere skabeloner. " +"Skal disse filer fjernes, hvis de findes?" + --- tiger-3.2.1.orig/debian/po/fr.po +++ tiger-3.2.1/debian/po/fr.po @@ -0,0 +1,103 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: tiger 1:3.2.1-2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2003-10-31 15:51+0100\n" +"Last-Translator: Nicolas Bertolissio \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../templates:4 +msgid "Who should receive the daily mails?" +msgstr "Destinataire des courriels quotidiens :" + +#. Description +#: ../templates:4 +msgid "" +"The user you enter below will receive all the emails that 'tiger' sends " +"during the day when running the cron jobs. This does not mean that when " +"executing the 'tiger' program standalone this user will receive the reports. " +"Also note that any administrator will be able to access the reports since " +"they are available in the /var/log/tiger/ directory." +msgstr "" +"L'utilisateur que vous indiquerez recevra tous les courriels " +"envoyés par « tiger » lors de l'exécution des tâches périodiques. Cet " +"utilisateur ne recevra pas les rapports lors de l'exécution directe du " +"programme « tiger ». Veuillez aussi noter que tout administrateur pourra " +"accéder aux rapports puisqu'ils seront disponibles dans le répertoire /var/log/" +"tiger/." + +#. Description +#: ../templates:13 +msgid "Take a minute to customize 'tiger'" +msgstr "Prenez le temps de personnaliser « tiger »" + +#. Description +#: ../templates:13 +msgid "" +"You should customize the files at /etc/tiger/ to adapt to your local " +"security policy. Firstly, customizing the kind of checks that will be made " +"in this system, as well as the information needed for tests in order to " +"reduce false positives (in /etc/tiger/tigerrc). Secondly, customizing at " +"what times these tests will be executed (in /etc/tiger/cronrc). And thirdly, " +"since some modules warnings might not be problems regarding your current " +"security policy, define a given template file at /etc/tiger/templates/ using " +"runs from each of the modules. Once defined, all the runs will be checked " +"against each one of the templates available (one per module) and only new " +"warnings will be issued." +msgstr "" +"Vous devriez personnaliser les fichiers dans /etc/tiger/ pour les adapter à " +"votre politique de sécurité locale. Commencez par personnaliser (dans /etc/tiger/tigerrc) les " +"vérifications qui sont faites sur le système, ainsi que les informations " +"nécessaires aux tests. Cela permettra de réduire le nombre de faux positifs. " +"Ensuite, personnalisez (dans /etc/tiger/cronrc) l'heure à laquelle ces tests sont " +"exécutés. Puis, si les avertissements de certains " +"modules peuvent être ignorés au regard de votre politique de " +"sécurité actuelle, définissez un fichier de modèle dans /etc/tiger/" +"templates/ après avoir utilisé chaque module. Par la suite, après chaque " +"exécution, le résultat sera comparé à ces fichiers de modèles " +"et seuls les " +"nouveaux avertissements seront signalés." + +#. Description +#: ../templates:28 +msgid "Remove templates in buggy 'tiger' versions" +msgstr "Supprimer les modèles des versions boguées de « tiger » ?" + +#. Description +#: ../templates:28 +msgid "" +"Initially Debian's 3.1 tiger versions were distributed with a bug that would " +"cause templates to be created under /var/log/ instead of /var/log/tiger/. " +"Normal operation assumes templates are under /var/log/tiger/ and these " +"templates will not be useful in newer Tiger versions. You might want to " +"preserve a copy of them (to use as templates) and move them manually under " +"their proper location. The package will not do this automatically in order " +"to avoid removing previous templates. Should we remove these files if any " +"are found?" +msgstr "" +"Les versions 3.1 de Tiger initialement distribuées dans Debian " +"créaient les modèles dans /var/log/ au lieu de /var/log/tiger/. Le " +"fonctionnement normal suppose que les modèles sont dans /var/log/tiger/. " +"Les modèles situés dans /var/log ne seront pas utilisés par les versions de Tiger plus récentes. " +"Vous pouvez souhaiter en conserver une copie (pour servir de référence) et les " +"déplacer manuellement au bon endroit. Cela ne sera pas effectué " +"automatiquement pour éviter de supprimer les modèles précédents. Cette " +"option permet de supprimer ces anciens fichiers s'ils existent." --- tiger-3.2.1.orig/debian/po/cs.po +++ tiger-3.2.1/debian/po/cs.po @@ -0,0 +1,96 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: tiger\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-10-10 19:26+0200\n" +"PO-Revision-Date: 2004-12-26 20:33+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../templates:4 +msgid "Who should receive the daily mails?" +msgstr "Kdo má dostávat denní po¹tu?" + +#. Description +#: ../templates:4 +msgid "" +"The user you enter below will receive all the emails that 'tiger' sends " +"during the day when running the cron jobs. This does not mean that when " +"executing the 'tiger' program standalone this user will receive the reports. " +"Also note that any administrator will be able to access the reports since " +"they are available in the /var/log/tiger/ directory." +msgstr "" +"U¾ivatel, kterého zde zadáte, bude dostávat emaily, je¾ \"tygr\" bìhem dne " +"zasílá. Týká se to pouze pøi spu¹tìní \"tygra\" z cronu - na ruèní spou¹tìní " +"nemá vliv. K tìmto zprávám bude mít pøístup i administrátor, proto¾e jejich " +"kopie se ukládají do adresáøe /var/log/tiger/." + +#. Description +#: ../templates:13 +msgid "Take a minute to customize 'tiger'" +msgstr "Najdìte si chvilku na pøizpùsobení \"tygra\"" + +#. Description +#: ../templates:13 +msgid "" +"You should customize the files at /etc/tiger/ to adapt to your local " +"security policy. Firstly, customizing the kind of checks that will be made " +"in this system, as well as the information needed for tests in order to " +"reduce false positives (in /etc/tiger/tigerrc). Secondly, customizing at " +"what times these tests will be executed (in /etc/tiger/cronrc). And thirdly, " +"since some modules warnings might not be problems regarding your current " +"security policy, define a given template file at /etc/tiger/templates/ using " +"runs from each of the modules. Once defined, all the runs will be checked " +"against each one of the templates available (one per module) and only new " +"warnings will be issued." +msgstr "" +"Soubory v adresáøi /etc/tiger/ byste si mìli pøizpùsobit své místní " +"bezpeènostní politice. V prvé øadì se jedná o /etc/tiger/tigerrc, kde " +"nastavíte testy, které se budou spou¹tìt, spolu s dal¹ími informacemi, " +"kterými omezíte fale¹né poplachy. Ve druhé øadì je potøeba v souboru " +"/etc/tiger/cronrc nastavit, kdy se mají testy sou¹tìt. Za tøetí, proto¾e " +"podle va¹í politiky nemusí být varování nìkterých modulù dùle¾ité, mù¾ete " +"v /etc/tiger/templates/ nadefinovat pøíslu¹nou ¹ablonu. Pøi samotném " +"spu¹tìní bude výstup kontrolován oproti nadefinovaným ¹ablonám (v¾dy jedna " +"¹ablona pro jeden modul) a budou hlá¹ena pouze nová varování." + +#. Description +#: ../templates:28 +msgid "Remove templates in buggy 'tiger' versions" +msgstr "Odstranit ¹ablony z chybových verzí \"tygra\"" + +#. Description +#: ../templates:28 +msgid "" +"Initially Debian's 3.1 tiger versions were distributed with a bug that would " +"cause templates to be created under /var/log/ instead of /var/log/tiger/. " +"Normal operation assumes templates are under /var/log/tiger/ and these " +"templates will not be useful in newer Tiger versions. You might want to " +"preserve a copy of them (to use as templates) and move them manually under " +"their proper location. The package will not do this automatically in order " +"to avoid removing previous templates. Should we remove these files if any " +"are found?" +msgstr "" +"Pùvodní verze balíku tiger z Debianu 3.1 obsahovaly chybu, díky které se " +"¹ablony místo ve /var/log/tiger/ vytváøely ve /var/log/. S tím ov¹em " +"program nepoèítá a ¹ablony se nepou¾ijí. Tyto soubory mù¾ete zachovat, " +"pou¾ít jako ¹ablony a pøesunout je na správné místo ruènì. Balík to " +"neprovede automaticky, aby omylem nesmazal exisující ¹ablony. Pokud " +"naleznu takto ¹patnì umístìné soubory, mám je odstranit?" --- tiger-3.2.1.orig/debian/server.ignore +++ tiger-3.2.1/debian/server.ignore @@ -0,0 +1,15 @@ +# Mysql database server +Program mysqld \(pid [[:digit:]]+, parent [[:digit:]]+\) is using a deleted file: .* /var/log/mysql/mysql\.err\.[[:digit:]]+ \(deleted\) +# Apache web server +Server /usr/sbin/apache \(pid [[:digit:]]+\) is using deleted files +Program apache \(pid [[:digit:]]+, parent [[:digit:]]+\) is using a deleted file: .* /tmp/session_mm_apache0.sem \(deleted\) +The parent process of server /usr/sbin/apache \(pid [[:digit:]]+\) is using deleted files +# Cupds printer daemon +Server /usr/sbin/cupsd \(pid [[:digit:]]+\) is using deleted files +Program cupsd \(pid [[:digit:]]+, parent [[:digit:]]+\) is using a deleted file: .* /var/log/cupsd/error_log\..* \(deleted\) +#Mailman list manager +Program python \(pid [[:digit:]]+, parent [[:digit:]]+\) is using a deleted file: .* /var/log/mailman/.* \(deleted\) +# Squid proxy +Server \(squid\) .* \(pid [[:digit:]]+\) is using deleted files +# SSH users accessing remotely with X11 forwarding 'on' +The process `sshd' is listening on socket 6[[:digit:]]+ (TCP on loopback interface) is run by .* --- tiger-3.2.1.orig/debian/tiger.links +++ tiger-3.2.1/debian/tiger.links @@ -0,0 +1 @@ +usr/sbin/tigexp usr/lib/tiger/tigexp --- tiger-3.2.1.orig/debian/compat +++ tiger-3.2.1/debian/compat @@ -0,0 +1 @@ +4 --- tiger-3.2.1.orig/doc/CVS/Entries +++ tiger-3.2.1/doc/CVS/Entries @@ -1,37 +1,36 @@ /aliases.txt/1.1/Fri Jun 14 08:51:31 2002// -/anonftp.txt/1.1/Fri Jun 14 08:51:31 2002// /background.txt/1.1/Fri Jun 14 08:51:31 2002// -/cron.txt/1.1/Fri Jun 14 08:51:31 2002// /debian.txt/1.1/Fri Jun 14 08:51:31 2002// -/embed.txt/1.1/Fri Jun 14 08:51:31 2002// -/filesys.txt/1.1/Fri Jun 14 08:51:31 2002// -/group.txt/1.1/Fri Jun 14 08:51:31 2002// /issue.txt/1.1/Fri Jun 14 08:51:31 2002// -/linux.txt/1.3/Mon Apr 21 07:32:01 2003// -/network.txt/1.2/Mon Apr 21 07:32:01 2003// /nfs.txt/1.1/Fri Jun 14 08:51:31 2002// -/pcap.txt/1.1/Fri Jun 14 08:51:31 2002// /references.txt/1.1/Fri Jun 14 08:51:31 2002// -/root.txt/1.1/Fri Jun 14 08:51:31 2002// -/rootdir.txt/1.1/Fri Jun 14 08:51:31 2002// -/explain.idx/1.5/Sun May 11 19:44:31 2003// -/logfiles.txt/1.4/Sat Jun 21 01:17:53 2003// -/aide.txt/1.1/Tue Aug 19 15:36:07 2003// -/inetd.txt/1.3/Tue Aug 19 15:46:03 2003// -/ndd.txt/1.1/Sat Aug 9 10:24:12 2003// -/config.txt/1.3/Fri Aug 8 20:17:33 2003// -/hpux.txt/1.4/Sat Aug 9 10:12:58 2003// -/known.txt/1.4/Thu Aug 14 22:42:57 2003// -/misc.txt/1.3/Sat Aug 9 11:09:52 2003// /netrc.txt/1.2/Tue Aug 12 22:17:12 2003// -/passwd.txt/1.6/Fri Aug 8 20:08:01 2003// -/paths.txt/1.2/Thu Aug 14 21:00:02 2003// -/permissions.txt/1.2/Thu Aug 14 21:52:07 2003// -/rhosts.txt/1.3/Tue Aug 12 22:14:05 2003// -/signature.txt/1.2/Sat Aug 9 10:48:43 2003// -/ssh.txt/1.2/Wed Sep 3 21:53:36 2003// -/rootkit.txt/1.2/Fri Sep 19 00:25:12 2003// -/integrit.txt/1.1/Sat Aug 9 13:40:43 2003// -/accounts.txt/1.3/Sat Sep 20 16:02:12 2003// -/pxt.txt/1.4/Wed Oct 1 20:26:28 2003// +/rootdir.txt/1.2/Tue Feb 24 19:14:56 2004// +/accounts.txt/1.5/Thu Mar 31 15:22:31 2005// +/aide.txt/1.2/Thu Mar 31 15:22:31 2005// +/anonftp.txt/1.3/Thu Mar 31 15:22:31 2005// +/cron.txt/1.4/Thu Mar 31 15:22:31 2005// +/embed.txt/1.2/Thu Mar 31 15:22:31 2005// +/filesys.txt/1.3/Thu Mar 31 15:22:31 2005// +/group.txt/1.2/Thu Mar 31 15:22:31 2005// +/hpux.txt/1.5/Thu Mar 31 15:22:31 2005// +/inetd.txt/1.7/Thu Mar 31 15:22:31 2005// +/integrit.txt/1.2/Thu Mar 31 15:22:31 2005// +/known.txt/1.5/Thu Mar 31 15:22:31 2005// +/logfiles.txt/1.5/Thu Mar 31 15:22:31 2005// +/misc.txt/1.5/Thu Mar 31 15:22:31 2005// +/ndd.txt/1.2/Thu Mar 31 15:22:31 2005// +/network.txt/1.3/Thu Mar 31 15:22:31 2005// +/passwd.txt/1.9/Thu Mar 31 15:22:31 2005// +/paths.txt/1.3/Thu Mar 31 15:22:31 2005// +/pcap.txt/1.2/Thu Mar 31 15:22:31 2005// +/permissions.txt/1.3/Thu Mar 31 15:22:31 2005// +/pxt.txt/1.5/Thu Mar 31 15:22:31 2005// +/root.txt/1.2/Thu Mar 31 15:22:32 2005// +/rootkit.txt/1.3/Thu Mar 31 15:22:32 2005// +/signature.txt/1.3/Thu Mar 31 15:22:32 2005// +/ssh.txt/1.3/Thu Mar 31 15:22:32 2005// +/rhosts.txt/1.5/Sat Apr 16 20:18:36 2005// +/config.txt/1.5/Sat Apr 16 22:28:02 2005// +/linux.txt/1.6/Sat Apr 16 22:28:02 2005// D --- tiger-3.2.1.orig/doc/hpux.txt +++ tiger-3.2.1/doc/hpux.txt @@ -10,7 +10,7 @@ %trust002w When the system is in trusted mode, HP-UX can enforce a default number of login attempts before the account is disabled. This -is useful for prefenting potential intruders from brute forcing +is useful for preventing potential intruders from brute forcing and/or guessing passwords. Since limiting the number of logins can also be used as a Denial of Service attack, the number of login attempts is configurable on a per-user basis. Read the --- tiger-3.2.1.orig/doc/accounts.txt +++ tiger-3.2.1/doc/accounts.txt @@ -98,10 +98,6 @@ %acc015w The listed login ID has a duplicate home directory with another login ID. This should be remedied to prevent permission problems. -%acc016w -The listed login ID does not have password aging enabled. Good -password management practices indicate that passwords should not -be static, but rather should be changed on a regular basis. %acc017w The listed login ID does not have corresponding entries in both the /etc/passwd and /etc/shadow databases. This may indicate tampering @@ -113,7 +109,7 @@ typical search paths. %acc019w The listed login ID may be missing a login program initialization -file. This file controls the behavour of the login process and of +file. This file controls the behaviour of the login process and of many important environment variables. %acc020w The listed login ID does not have a valid login program or shell. --- tiger-3.2.1.orig/doc/anonftp.txt +++ tiger-3.2.1/doc/anonftp.txt @@ -3,16 +3,16 @@ and hence there is nothing to check. %ftp002a There is a .rhosts file in the top level of the anonymous ftp -directories. This can allow unauthorized 'rlogin's or 'rsh's to +directory. This can allow unauthorized 'rlogin's or 'rsh's to occur to the ftp account. This indicates a possible intrusion. The contents of the file are listed immediately following the message. The machine should be checked for other signs of intrusion and should be cleaned up. The .rhosts file should be removed. %ftp003w -The etc/passwd file in the anonymous ftp directories appears to +The etc/passwd file in the anonymous ftp directory appears to contain valid entries in the password field. If these are valid, then the file can be retrieved and a password cracking program -run against it. The etc/passwd file in the anonymous ftp directories +run against it. The etc/passwd file in the anonymous ftp directory should simply have a '*' in the password field, and should only include entries for the 'ftp' and 'root' accounts. @@ -96,4 +96,7 @@ See CERT advisory CA-93:10 for information on setting up an anonymous FTP server. - +%ftp011w +The 'ftp' account appears to have a valid shell. A valid shell is not +required for the 'ftp' user and can be safely set to /bin/false, +/sbin/nologin, etc. --- tiger-3.2.1.orig/doc/config.txt +++ tiger-3.2.1/doc/config.txt @@ -1,12 +1,12 @@ %con001c -The configuration file listed was not read in because it was +The configuration file listed was not read because it was a directory. %con002c -The configuration file listed was not read in because it is +The configuration file listed was not read because it was not owned by `root'. This is to prevent someone from modifying the configuration file. %con003c -The configuration file listed was not read in because it is +The configuration file listed was not read because it was writable by non-root users. This is to prevent someone from modifying the configuration file. %con004c @@ -50,6 +50,11 @@ defined. Since the variable is needed for the module to run, it will probably exit. This is a configuration problem. It is necessary to add the variable to the tigerrc configuration file. +%con010c +The filesystem is not recognised by Tiger as a local filesystem +for this operating system and will not be analysed by it. If this +is a local filesystem then the configuration script for this +operating system needs to be modified. %init001e The indicated variable, which should specifies the pathname to a command, does not have a value. This message should not appear on platforms @@ -95,7 +100,7 @@ These scripts can only be invoked by the top level scripts. %init009e The script wanted to use a temporary script which already exists, this -might mean somebody created it to make use of an (fortunately unexistant) +might mean somebody created it to make use of a (fortunately non-existent) race condition. The script will not proceed further since it will not use a file which it did not create itself. %util001e @@ -112,5 +117,8 @@ The indicated file exists, but can not be read. This usually happens if you do not run the scripts from an account with super-user privileges. %run001e -A needed file cannot be read, probably due to insuficient priviledges. +A needed file cannot be read, probably due to insufficient privileges. +Make sure that Tiger is run by the superuser (root) account. +%run002e +A needed command cannot be executed, probably due to insufficient privileges. Make sure that Tiger is run by the superuser (root) account. --- tiger-3.2.1.orig/doc/cron.txt +++ tiger-3.2.1/doc/cron.txt @@ -25,4 +25,17 @@ particular, possibly recurring time. It can be very useful, but also has a very real potential for abuse by either users or system crackers. Users can be restricted to use cron by creating a /etc/cron.allow -file holding only system administrators. +(holding only system administrators) or a /etc/cron.deny file +(listing which users are not allowed access). Depending on the site +configuration if none exist either only root will be able to setup +cron tasks or all users will be permitted. In many systems the +default is to allow access to all users. +%cron006w +Cron is not restricted to a given user. It is usually good to restrict +cron as much as possible since this system has a real potential by +abuse by either users or system crackers. Consider removing the user +from the allowed cron list if it is not strictly needed. +%cron007i +Cron is restricted to a given user. This is usually good, since +restricting cron prevents this system from being +abused by either users or system crackers. --- tiger-3.2.1.orig/doc/embed.txt +++ tiger-3.2.1/doc/embed.txt @@ -69,11 +69,11 @@ The executable is group writable, world writable or both. This can enable an intruder to gain unauthorized privileges if they are able to overwrite the executable. -%embed003i +%embed004i See the 'embed' explanation for an explanation of the format of the embedded references. The file or directory is group writable, world writable or both. This may indicate a vulnerability in the system. It will be necessary to study the file and programs in which the pathname was found to -determine whether there +determine whether there is a problem. --- tiger-3.2.1.orig/doc/explain.idx +++ tiger-3.2.1/doc/explain.idx @@ -16,14 +16,20 @@ acc013w accounts.txt 86 94 acc014f accounts.txt 96 97 acc015w accounts.txt 99 100 -acc016w accounts.txt 102 104 -acc017w accounts.txt 106 108 -acc018w accounts.txt 110 113 -acc019w accounts.txt 115 117 -acc020w accounts.txt 119 125 -acc022w accounts.txt 127 130 -acc023w accounts.txt 132 134 -acc024f accounts.txt 136 $ +acc017w accounts.txt 102 104 +acc018w accounts.txt 106 109 +acc019w accounts.txt 111 113 +acc020w accounts.txt 115 116 +acc021w accounts.txt 118 121 +acc022w accounts.txt 123 126 +acc023w accounts.txt 128 130 +acc024f accounts.txt 132 $ +aide001i aide.txt 2 2 +aide002e aide.txt 4 7 +aide003wsum aide.txt 9 9 +aide003w aide.txt 11 14 +aide004w aide.txt 16 23 +aide005w aide.txt 25 $ ali001i aliases.txt 2 4 ali002f aliases.txt 6 7 ali003 aliases.txt 9 11 @@ -44,7 +50,8 @@ ftp008w anonftp.txt 70 77 ftp009w anonftp.txt 79 84 ftp010f anonftp.txt 86 91 -ftp010w anonftp.txt 93 $ +ftp010w anonftp.txt 93 98 +ftp011w anonftp.txt 100 $ rationale background.txt 2 $ con001c config.txt 2 3 con002c config.txt 5 7 @@ -55,24 +62,29 @@ con007c config.txt 37 41 con008e config.txt 43 47 con009e config.txt 49 52 -init001e config.txt 54 68 -init002e config.txt 70 75 -init003c config.txt 77 78 -init004e config.txt 80 81 -init005e config.txt 83 86 -init006e config.txt 88 89 -init007e config.txt 91 92 -init008e config.txt 94 95 -util001e config.txt 97 99 -util002e config.txt 101 102 -post001e config.txt 104 105 -read001i config.txt 107 108 -run001e config.txt 110 $ +con010c config.txt 54 57 +init001e config.txt 59 73 +init002e config.txt 75 80 +init003c config.txt 82 83 +init004e config.txt 85 86 +init005e config.txt 88 91 +init006e config.txt 93 94 +init007e config.txt 96 97 +init008e config.txt 99 100 +init009e config.txt 102 105 +util001e config.txt 107 109 +util002e config.txt 111 112 +post001e config.txt 114 115 +read001i config.txt 117 118 +run001e config.txt 120 121 +run002e config.txt 123 $ cron001w cron.txt 2 4 cron002 cron.txt 6 10 cron003 cron.txt 12 16 cron004w cron.txt 18 22 -cron005w cron.txt 24 $ +cron005w cron.txt 24 32 +cron006w cron.txt 34 37 +cron007i cron.txt 39 $ deb001e debian.txt 2 $ embed embed.txt 2 9 embed001w embed.txt 11 18 @@ -82,40 +94,68 @@ embed003w embed.txt 49 55 embed003i embed.txt 57 64 embed004w embed.txt 66 71 -embed003i embed.txt 73 $ +embed004i embed.txt 73 $ fsys001f filesys.txt 2 10 fsys002w filesys.txt 12 21 fsys003c filesys.txt 23 26 -fsys004i filesys.txt 28 29 +fsys004a filesys.txt 28 29 fsys005a filesys.txt 31 34 fsys006a filesys.txt 36 39 fsys007i filesys.txt 41 52 -fsys008i filesys.txt 54 56 +fsys008f filesys.txt 54 56 fsys009w filesys.txt 58 60 fsys010w filesys.txt 62 66 -fsys011i filesys.txt 68 $ +fsys011a filesys.txt 68 69 +fsys0012w filesys.txt 71 $ grp001w group.txt 2 3 grp002w group.txt 5 7 grp003w group.txt 9 9 grp004w group.txt 11 12 grp005w group.txt 14 16 grp006w group.txt 18 $ +trust001w hpux.txt 2 9 +trust002w hpux.txt 11 $ inet001e inetd.txt 2 5 inet002f inetd.txt 7 11 inet003w inetd.txt 13 17 inet004i inetd.txt 19 21 inet005w inetd.txt 23 26 -inet006f inetd.txt 28 33 -inet007w inetd.txt 35 39 -inet008 inetd.txt 41 43 -inet009 inetd.txt 45 47 -inet010i inetd.txt 49 50 -inet011i inetd.txt 52 54 -inet012w inetd.txt 56 56 -inet013w inetd.txt 58 58 -inet014i inetd.txt 60 61 -inet015i inetd.txt 63 65 -inet016f inetd.txt 67 $ +inet006f inetd.txt 28 41 +inet007w inetd.txt 43 47 +inet008 inetd.txt 49 51 +inet009 inetd.txt 53 55 +inet010i inetd.txt 57 58 +inet011i inetd.txt 60 62 +inet012w inetd.txt 64 68 +inet013w inetd.txt 70 74 +inet014i inetd.txt 76 77 +inet015i inetd.txt 79 81 +inet016f inetd.txt 83 86 +inet017w inetd.txt 88 93 +inet018w inetd.txt 95 100 +inet019a inetd.txt 102 109 +inet020f inetd.txt 111 116 +inet021f inetd.txt 118 123 +inet022w inetd.txt 125 135 +inet023w inetd.txt 137 155 +inet024w inetd.txt 157 162 +inet025w inetd.txt 164 170 +inet026w inetd.txt 172 176 +inet027w inetd.txt 178 182 +inet098w inetd.txt 184 189 +inet099w inetd.txt 191 195 +inet100w inetd.txt 197 204 +xnet001e inetd.txt 206 210 +xnet002e inetd.txt 212 215 +xnet003e inetd.txt 217 221 +xnet004i inetd.txt 223 225 +xnet005i inetd.txt 227 $ +integ001i integrit.txt 2 2 +integ002e integrit.txt 4 7 +integ003wsum integrit.txt 9 10 +integ003w integrit.txt 12 15 +integ004w integrit.txt 17 24 +integ005w integrit.txt 26 $ issue001w issue.txt 2 4 issue002w issue.txt 6 $ kis001a known.txt 2 5 @@ -129,7 +169,9 @@ kis009w known.txt 46 53 kis010w known.txt 55 60 kis011f known.txt 62 72 -kis012w known.txt 74 $ +kis012w known.txt 74 82 +kis013a known.txt 84 87 +kis014a known.txt 89 $ lin001w linux.txt 2 5 lin002i linux.txt 7 9 lin003w linux.txt 11 17 @@ -141,21 +183,22 @@ lin009i linux.txt 49 53 lin010f linux.txt 55 58 lin011f linux.txt 60 62 -lin012w linux.txt 64 72 -lin013f linux.txt 74 77 -lin014f linux.txt 79 84 -lin015w linux.txt 86 89 -lin016f linux.txt 91 97 -lin017w linux.txt 99 102 -lin018w linux.txt 104 $ -logf001f logfiles.txt 2 3 -logf002f logfiles.txt 5 6 -logf003f logfiles.txt 8 9 -logf004f logfiles.txt 11 12 -logf005w logfiles.txt 14 15 -logf005w logfiles.txt 17 18 -logf006f logfiles.txt 20 21 -logf007w logfiles.txt 23 $ +lin012w linux.txt 64 73 +lin013f linux.txt 75 78 +lin014f linux.txt 80 86 +lin015w linux.txt 88 91 +lin016f linux.txt 93 100 +lin017w linux.txt 102 106 +lin018w linux.txt 108 115 +lin019f linux.txt 117 $ +logf001f logfiles.txt 2 5 +logf002f logfiles.txt 7 10 +logf003f logfiles.txt 12 15 +logf004f logfiles.txt 17 20 +logf005f logfiles.txt 22 23 +logf005w logfiles.txt 25 26 +logf006f logfiles.txt 28 31 +logf007f logfiles.txt 33 $ ca9122f misc.txt 2 7 ca9122w misc.txt 9 15 ca9122i misc.txt 17 29 @@ -163,7 +206,7 @@ misc002w misc.txt 47 55 misc003f misc.txt 57 64 misc004w misc.txt 66 70 -misc005w misc.txt 72 73 +misc005e misc.txt 72 73 misc006w misc.txt 75 88 misc007w misc.txt 90 93 misc008w misc.txt 95 119 @@ -183,11 +226,25 @@ misc020f misc.txt 232 233 misc021w misc.txt 235 236 misc022f misc.txt 238 239 -misc023w misc.txt 241 $ +misc023w misc.txt 241 243 +misc024e misc.txt 245 250 +misc025e misc.txt 252 $ +ndd001f ndd.txt 2 9 +ndd002f ndd.txt 11 15 +ndd003w ndd.txt 17 21 +ndd004f ndd.txt 23 26 +ndd005w ndd.txt 28 32 +ndd006w ndd.txt 34 37 +ndd007f ndd.txt 39 44 +ndd008f ndd.txt 46 52 +ndd009f ndd.txt 54 61 +ndd010f ndd.txt 63 70 +ndd011w ndd.txt 72 $ nrc001f netrc.txt 2 8 nrc002w netrc.txt 10 14 nrc003w netrc.txt 16 17 -nrc004a netrc.txt 19 $ +nrc004a netrc.txt 19 22 +nrc005w netrc.txt 24 $ netw001f network.txt 2 2 netw002f network.txt 4 6 netw003f network.txt 8 10 @@ -232,17 +289,27 @@ pass006w passwd.txt 22 24 pass007w passwd.txt 26 27 pass008e passwd.txt 29 30 -pass009e passwd.txt 32 33 -pass010w passwd.txt 35 $ +pass009f passwd.txt 32 33 +pass010w passwd.txt 35 36 +pass011f passwd.txt 38 39 +pass012w passwd.txt 41 43 +pass013w passwd.txt 45 46 +pass014w passwd.txt 48 52 +pass015w passwd.txt 54 55 +pass016w passwd.txt 57 58 +pass017w passwd.txt 60 63 +pass018f passwd.txt 65 68 +pass19w passwd.txt 70 72 +pass20w passwd.txt 74 $ path001w paths.txt 2 5 -path002w paths.txt 7 14 -path003i paths.txt 16 18 -path004w paths.txt 20 25 -path005w paths.txt 27 34 -path006w paths.txt 36 44 -path007w paths.txt 46 49 -path008i paths.txt 51 57 -path009w paths.txt 59 $ +path002w paths.txt 7 18 +path003i paths.txt 20 22 +path004w paths.txt 24 29 +path005w paths.txt 31 38 +path006w paths.txt 40 48 +path007w paths.txt 50 53 +path008i paths.txt 55 61 +path009w paths.txt 63 $ pcap001i pcap.txt 2 4 pcap002i pcap.txt 6 7 pcap002w pcap.txt 9 11 @@ -278,23 +345,29 @@ perm022w permissions.txt 141 143 perm023a permissions.txt 145 147 perm024a permissions.txt 149 152 -perm025w permissions.txt 154 $ -dev001 pxt.txt 2 2 -dev002 pxt.txt 4 8 -boot01 pxt.txt 10 11 -boot02 pxt.txt 13 14 -boot03 pxt.txt 16 17 -ptch01 pxt.txt 19 20 -ptch02 pxt.txt 22 23 -ptch03 pxt.txt 25 27 -ptch04 pxt.txt 29 33 -ptch05e pxt.txt 35 40 -osv001 pxt.txt 42 44 -osv002 pxt.txt 46 48 -osv003 pxt.txt 50 52 -osv004 pxt.txt 54 57 -sum001 pxt.txt 59 63 -trip01 pxt.txt 65 $ +perm025w permissions.txt 154 159 +perm26f permissions.txt 161 164 +perm27f permissions.txt 166 170 +perm28f permissions.txt 172 178 +perm29f permissions.txt 180 190 +perm30f permissions.txt 192 $ +dev001f pxt.txt 2 2 +dev002f pxt.txt 4 8 +dev003w pxt.txt 10 13 +boot01 pxt.txt 15 16 +boot02 pxt.txt 18 19 +boot03w pxt.txt 21 22 +ptch01f pxt.txt 24 25 +ptch02f pxt.txt 27 28 +ptch03 pxt.txt 30 32 +ptch04w pxt.txt 34 38 +ptch05e pxt.txt 40 45 +osv001f pxt.txt 47 49 +osv002f pxt.txt 51 53 +osv003w pxt.txt 55 57 +osv004w pxt.txt 59 62 +sum001f pxt.txt 64 68 +trip01f pxt.txt 70 $ curry references.txt 2 4 garfinkel references.txt 6 $ rcmd001f rhosts.txt 2 5 @@ -306,13 +379,23 @@ rcmd007w rhosts.txt 44 45 rcmd008a rhosts.txt 47 51 rcmd009f rhosts.txt 53 56 -rcmd010i rhosts.txt 58 59 +rcmd010w rhosts.txt 58 59 rcmd011f rhosts.txt 61 70 rcmd012f rhosts.txt 72 74 rcmd013w rhosts.txt 76 81 -rcmd015w rhosts.txt 83 $ -rootdir001f rootdir.txt 2 3 -rootdir002f rootdir.txt 5 $ +rcmd015w rhosts.txt 83 86 +rcmd016w rhosts.txt 88 92 +rcmd017a rhosts.txt 94 102 +rcmd018a rhosts.txt 104 $ +rootdir001f rootdir.txt 2 4 +rootdir002f rootdir.txt 6 6 +rootdir003f rootdir.txt 8 $ +rootkit001f rootkit.txt 2 6 +rootkit002f rootkit.txt 8 12 +rootkit003w rootkit.txt 14 18 +rootkit004w rootkit.txt 20 23 +rootkit005a rootkit.txt 25 28 +rootkit006a rootkit.txt 30 $ root001w root.txt 2 5 root002w root.txt 7 8 root003w root.txt 10 $ @@ -336,4 +419,10 @@ sig018w signature.txt 146 151 sig019w signature.txt 153 162 sig020w signature.txt 164 167 -sig021w signature.txt 169 $ +sig021w signature.txt 169 175 +sig022f signature.txt 177 $ +ssh001w ssh.txt 2 3 +ssh002w ssh.txt 5 8 +ssh003w ssh.txt 10 13 +ssh004w ssh.txt 15 16 +ssh005e ssh.txt 18 $ --- tiger-3.2.1.orig/doc/filesys.txt +++ tiger-3.2.1/doc/filesys.txt @@ -24,7 +24,7 @@ all setuid programs will be listed. When fully configured for a platform, only those setuid programs that do not appear in the distribution will be listed. -%fsys004i +%fsys004a The listed programs are setuid, but are not in the database of setuid programs which appear in the OS distribution. %fsys005a @@ -50,7 +50,7 @@ chown -R joeuser /home/joeuser could potentially change the owner of a system file to 'joeuser'. -%fsys008i +%fsys008f The listed directories are world writable. These provide a location for intruders to store files. They should be checked for unusual files. @@ -64,6 +64,10 @@ the Operating System. Even on systems where this is corrected, the difficulties in writing a truly secure setgid script make them very undesirable. -%fsys011i +%fsys011a The listed programs are setgid, but are not in the database of setgid programs which appear in the OS distribution. +%fsys0012w +The listed program is not owned by an administrative user. The +majority of SUID programs should probably be owned by an +administrative user. --- tiger-3.2.1.orig/doc/group.txt +++ tiger-3.2.1/doc/group.txt @@ -18,5 +18,3 @@ The group files have integrity issues as found by 'grpck -r'. This can lead to looping of password manipulation programs and to allow unexpected access to resources. - - --- tiger-3.2.1.orig/doc/inetd.txt +++ tiger-3.2.1/doc/inetd.txt @@ -25,8 +25,8 @@ be checked, and if anything unusual is found, the system should be checked for other signs of intrusion. %inet006f -The 'rexd' service is very insecure and should never be enabled. -Known rexd servers have little or no security in their design +The 'rexd' (or 'exec') service is very insecure and should never be +enabled. Known rexd servers have little or no security in their design or implementation. Intruders can exploit this service to execute commands as any user. @@ -61,7 +61,7 @@ This should be checked to see if it is a valid addition. If it is not, it should be removed. %inet012w -The 'sysstat' service is enabled, this system provides a considerable +The 'systat' service is enabled, this system provides a considerable number of information to remote anonymous users. Consider disabling it by editing the inetd.conf file, removing the 'systat' entry, and sending a HUP signal to the @@ -80,7 +80,7 @@ by using tcp wrappers. This has been changed from default installation (which did not provide it) but is probably a better setup. %inet016f -The listed entry was protected by tcp wrappers by the systema but has, +The listed entry was protected by tcp wrappers by the system but has, for some unknown reason, changed to no longer be protected by them. Make sure that the service is secured since, if not using tcp wrappers, access control for it might be disabled. @@ -168,10 +168,22 @@ Consider disabling it by editing the inetd.conf file, removing the 'echo' and/or 'chargen' entries, and sending a HUP signal to the 'inetd' process. +%inet026w +The linuxconf service can be utilized for remote administration. + +Consider disabling it by editing the inetd.conf file, +removing the 'linuxconf' entry, and sending a HUP signal to the +'inetd' process. +%inet027w +The 'identd or auth' service is enabled, this system provides a considerable +number of information to remote anonymous users. + +Consider disabling it by editing the inetd.conf file, removing the 'auth' entry, +and sending a HUP signal to the 'inetd' process. %inet098w Services that pass sensitive information (including passwords) should be replaced with the family of programs that comprise secure shell (ssh) -which use strong encryption based on public-key criptography. +which use strong encryption based on public-key cryptography. You can use the freely-available OpenSSH implementation at http://www.openssh.org @@ -181,3 +193,37 @@ improve logging. The listed entry was protected by tcp wrappers by the default installation and is currently protected this way too. This is a good thing! +%inet100w +The inetd services does not have logging enabled. Adding logging to the +inetd services will help identify potential mis-use of system system resources. + +To enable logging for the inetd service add the -l option in the inetd startup +scripts. + +To enable logging for the xinetd services add the log_type, log_on_success +and/or log_on_failure to the /etc/xinetd.conf file. +%xnet001e +The script cannot find an xinetd configuration file in this system. This +might happen if Xinetd is not installed of if the XINETDCONF configuration +variable is not properly defined. The script will try to find this configuration +file in standard locations (/etc/xinetd.conf) but if it's not there +you will need to define it in the siterc configuration file. +%xnet002e +A directory which is being included by the XINETDCONF configuration file +is not really a directory. This prevents the script from analysing all +the active services and might be a configuration issue. Please check +Xinetd's configuration file. +%xnet003e +The script cannot read the xined configuration file in this system. This +should not usually happen since the script should be running with +root privileges. In order to analyse the configuration file you need +to run this script as a user who can read all the Xinetd configuration +files. +%xnet004i +The service is enabled in the Xinetd configuration file. You should verify +that services enabled in the server are legitimate and consider disabling +unused services in order to minimise exposure (and associated risk) +%xnet005i +The service is disabled in the Xinetd configuration file. This is usually +a good thing, since this limits exposure of the server and prevents +external attacks. --- tiger-3.2.1.orig/doc/known.txt +++ tiger-3.2.1/doc/known.txt @@ -44,7 +44,7 @@ of intrusion. %kis009w There is an .exrc file outside of any user's home directory. This file can -be loaded inadvertenly by a user if executing an editor in that directory +be loaded inadvertently by a user if executing an editor in that directory and could introduce unexpected commands through it. Note that in all modern versions of vi, you have to set the exrc option in your home's directory .exrc file before vi will read the exrc in @@ -74,11 +74,12 @@ An application in the system is using a deleted file. This might be an indication of an intruder executing rogue processes and removing the files from disk so that they cannot be traced or detected by the local administrator. -This has been observerd both in intruders running password cracking programs +This has been observed both in intruders running password cracking programs or worms propagating through remote attacks. This also can happen if a local application is using shared libraries which have been upgraded but the service itself has not been restarted in order to -use the new libraries. +use the new libraries. Notice that if there was a vulnerability in the +library and the server was not restarted the system is still vulnerable. %kis013a A interface is set up on promiscuous mode, this is a common method used by attackers to capture user account and and password information. --- tiger-3.2.1.orig/doc/linux.txt +++ tiger-3.2.1/doc/linux.txt @@ -49,7 +49,7 @@ The kernel will answer (per configuration) to ICMP echo requests in any interface. You might want to configure it to not answer to this requests and thus make it more "invisible". Do it with: -# sysctl -w net.ipv4.icmp_echo_ignore_all=1 + # sysctl -w net.ipv4.icmp_echo_ignore_all=1 Note, however, that this violates RFCs. %lin010f The system will answer to ICMP broadcast echo messages. This is considered @@ -59,28 +59,30 @@ %lin011f The system is configured to answer to bad formatted ICMP messages. This behavior is not recommended, please unconfigure it with: -# sysctl -w net.ipv4.icmp_ignore_bogus_error_responses = 1 + # sysctl -w net.ipv4.icmp_ignore_bogus_error_responses = 1 %lin012w The system is configured to accept ICMP redirects, this might or might not be necessary in your network topology. If you have multiple routers to which connect through to outside locations it might be necessary, -otherwise remote it since an attacker could send bogus ICMP redirection +otherwise remove it since an attacker could send bogus ICMP redirection messages to try to route the outgoing network packets to other systems (including his own) and thus allowing for man in the middle or denial of service attacks: # sysctl -w net.ipv4.conf.all.accept_redirects = 0 +and: # sysctl -w net.ipv4.conf.default.accept_redirects = 0 %lin013f It is common to protect systems against Denial of Service attacks using SYN packets (commonly known as "SYN flooding") by activating support -of TCP syncookies. Note, however, that activating this violates some RFCS: +of TCP syncookies. Note, however, that activating this violates some RFCs: # sysctl -w net.ipv4.tcp_syncookies = 1 %lin014f It is possible to send IP spoofed packets from this machine. Spoofed packets are commonly used by trojans that make use of compromised hosts -to deliver denial of service, man in the middle or conection hijacking. +to deliver denial of service, man in the middle or connection hijacking. You should consider configuring your kernel to not permit this: # sysctl -w net.ipv4.conf.all.rp_filter = 2 +and: # sysctl -w net.ipv4.conf.default.rp_filter = 2 %lin015w IP forwarding is the option that permits the system to act as a router @@ -94,11 +96,13 @@ circumstances or otherwise an attacker could try to bypass the traffic filtering that is done on the network: # sysctl -w net.ipv4.conf.all.accept_source_route = 0 +and: # sysctl -w net.ipv4.conf.default.accept_source_route = 0 %lin017w -Suspicious packets recieved by the kernel should be logged to detect +Suspicious packets received by the kernel should be logged to detect incoming attacks. To activate this logging capability: # sysctl -w net.ipv4.conf.all.log_martians = 1 +and: # sysctl -w net.ipv4.conf.default.log_martians = 1 %lin018w The "weak end host" description in the RFC1122 permits multihomed systems @@ -108,4 +112,17 @@ For 2.2 kernels remove this option with: # echo 1 > /proc/sys/net/ipv4/conf/eth1/hidden For 2.4 and later kernels you might need to patch the kernel or configure -your firewalling rules properly. +your firewalling rules properly (i.e. defining anti-spoofing rules). +%lin019f +The system has no firewalling rules in place to limit access to network +services and protocols. Considering configuring a set of local firewall +rules adapted to your needs. There are multiple firewall generation software +you can use to generate these (such as Bastille, Shorewall, Firestarter, +or Knetfiler). +Local firewall rules can be used to block undesired incoming and outgoing +traffic and can be useful to prevent access to network services that are +listening on all system interfaces, only want to be used from specific +hosts (or interfaces) and lack capabilities to either restrict its +use to specific local network IP addresses or hosts. +If the system is multi-home a local firewall configuration will prevent +spoofing attacks due to "weak end host" issues. --- tiger-3.2.1.orig/doc/logfiles.txt +++ tiger-3.2.1/doc/logfiles.txt @@ -18,7 +18,7 @@ server can be listed. This is accessed by the command "who". It might not exist due to a system configuration error or an intruder that has tried to cover this tracks by removing it. -%logf005w +%logf005f The log file does not have proper permissions set. It is recommended that you change the permissions to those suggested for these file. %logf005w @@ -29,12 +29,12 @@ on the server. It might not exist due to a system configuration error or an intruder that has tried to cover this tracks by removing it. -%logf006f +%logf007f The log file "messages" should exist to show a trace of the system logs (including reboots and kernel messages), it is also often used by the syslog daemon to log information. The contents of the "messages" logfile depends upon the configuration of the syslog.conf and varies by -distribution and/or system administrator preferrence. +distribution and/or system administrator preference. It might not exist if you have configured your system to use a different file for logging or if an intruder has tried to cover his tracks by removing it since the messages file might contain --- tiger-3.2.1.orig/doc/misc.txt +++ tiger-3.2.1/doc/misc.txt @@ -68,8 +68,8 @@ execute commands which allow them to read and modify memory, boot alternate OS's etc. See the 'eeprom' man page for information on securing the PROM monitor. -%misc005w -The listed security check file from a check.tbl file does not +%misc005e +The listed security check file from a check.d/ file does not exist. %misc006w The NFS mount daemon is running with port checking disabled. @@ -198,21 +198,21 @@ %misc016w The `ie', `le', and `qe' device files can be used to snoop packets -from the network (ethernet in these cases). This ability should be +from the network (Ethernet in these cases). This ability should be restricted. The permissions on the listed files should be 0600. The Solaris package facility will occasionally reset these permissions to what they are defined to be in in the /var/sadm/install/contents file. -Therefore, they must be changed there as well. The file is an ascii +Therefore, they must be changed there as well. The file is an ASCII file and can be edited with any editor. %misc017w The `ie', `le', and `qe' device files can be used to snoop packets -from the network (ethernet in these cases). This ability should be +from the network (Ethernet in these cases). This ability should be restricted. The listed device files should be owned by root and only readable/writable by root in order to restrict access. The Solaris package facility will occasionally reset the ownership and permissions to what they are defined to be in in the /var/sadm/install/contents file. -Therefore, they must be changed there as well. The file is an ascii +Therefore, they must be changed there as well. The file is an ASCII file and can be edited with any editor. %misc017f The umask settings used in the boot scripts is insecure. @@ -221,7 +221,7 @@ permissions are 022 or 022. %misc018w There are two umask settings in the boot scripts, this probably means -that only one of them will be valid. Check the appropiate file to +that only one of them will be valid. Check the appropriate file to fix this issue. %misc019w Tiger was unable to found any umask settings to be used in the boot @@ -236,19 +236,19 @@ that there are umask entries set in the configuration file. %misc022f The umask setting in the configuration file is insecure. Umask must be -set as to prevent public write (ie. either 002 or 022). +set as to prevent public write (i.e. either 002 or 022). %misc023w There are more than two umask entries in the configuration file. Please check if the umask settings are secure (to prevent public write, suggested values are either 002 or 022). -%misc024f +%misc024e The script will not be run since it belongs to a different owner than the one running the Tiger program (or script). Since running this script might introduce a risk (if the script was dropped in a directory that Tiger searches for by an attacker to have it run) it will not be executed. This might be a problem in the installation of Tiger so you should recheck the script owner and permissions. -%misc025f +%misc025e The script will not be run since it is not executable. This might be a problem with the installation of Tiger so you should recheck the script's file owner and permissions. --- tiger-3.2.1.orig/doc/network.txt +++ tiger-3.2.1/doc/network.txt @@ -1,11 +1,11 @@ %netw001f -The listed file is world writeable. chomd -ow file to correct. +The listed file is world writable. chmod -ow file to correct. %netw002f The listed file is not owned by an 'administrative' account. Change the ownership, or add your admin user to 'Tiger_Admin_Accounts' list of valid administrative users. %netw003f -The inetd daemon is not configured with loggin enabled. If xinetd +The inetd daemon is not configured with login enabled. If xinetd based, add the 'filelog' or 'syslog' options in /etc/sysconfig/xinetd configuration file. %netw004f --- tiger-3.2.1.orig/doc/passwd.txt +++ tiger-3.2.1/doc/passwd.txt @@ -28,7 +28,7 @@ %pass008e The password file was not generated and cannot be analysed. This might probably happen due to Tiger not running with full administrative access. -%pass009e +%pass009f The format of a given configuration file used for user (or group) authentication has some inconsistency that might be a security vulnerability. %pass010w @@ -61,8 +61,17 @@ account. This should be checked to see if it is legitimate. In any case, having login ID's with a user ID of zero tends to lead to security problems, and should be avoided (except for 'root') -%pass18f +%pass018f The listed administrative login should have an impossible password. Files owned by this login ID may reside in critical system directories and compromise of this account could lead to trojan executables in typical search paths. +%pass19w +The listed login ID does not have password aging enabled. Good +password management practices indicate that passwords should not +be static, but rather should be changed on a regular basis. +%pass20w +The listed login ID is not configured to use shadow passwords. This +indicates the specified login ID has its cypher text publicly available +and is subject to brute force password cracking, even though shadow +passwords are implimented on the system. --- tiger-3.2.1.orig/doc/paths.txt +++ tiger-3.2.1/doc/paths.txt @@ -9,7 +9,7 @@ executables and spread by `root'. Often these executables are owned by `bin', `uucp' or other system accounts. If these commands are never used by root, then this is not a problem. If they are, you should -consider changing the owner to `root'. Because of SMI's recent decission +consider changing the owner to `root'. Because of SMI's recent decision to install most /usr/sbin/* and /usr/bin/* executables as owned by `bin', this account will not flag a warning. --- tiger-3.2.1.orig/doc/pcap.txt +++ tiger-3.2.1/doc/pcap.txt @@ -14,6 +14,6 @@ group or world write permissions. This may represent a security vulnerability. %pcap003w -The indicated executable associsated with a printer control has +The indicated executable associated with a printer control has group or world write permissions. This may represent a security vulnerability, as it may be possible to replace the executable. --- tiger-3.2.1.orig/doc/permissions.txt +++ tiger-3.2.1/doc/permissions.txt @@ -160,7 +160,7 @@ %perm26f The file '/etc/login.access' provides finer control over user access, it can be modified to allow or disallow remote access -to priviledged accounts. If this file is writable by non-root +to privileged accounts. If this file is writable by non-root users, then unauthorized access or privileges may be obtained. %perm27f The file '/etc/login.conf' is used by default on some BSD systems, --- tiger-3.2.1.orig/doc/pxt.txt +++ tiger-3.2.1/doc/pxt.txt @@ -1,6 +1,6 @@ -%dev001 +%dev001f Tape devices used for backups should not have world permissions. -%dev002 +%dev002f Devices that have improper (world) permissions might be accessed by any system user. This might open security holes if these are shared devices or hold binaries (disks for example). The administrator should @@ -17,20 +17,20 @@ %boot02 The grub configuration file (/boot/grub/grub.conf) should have permissions limiting access to only the owner (usually root). -%boot03 +%boot03w A boot loader configuration file could not be found. That means that neither /etc/lilo.conf nor /boot/grub/grub.conf exists. -%ptch01 +%ptch01f AutoRPM has determined that there are updated packages waiting to be installed. -%ptch02 +%ptch02f apt-get has determined that there are updated packages waiting to be installed. %ptch03 The machine does not appear to be a RedHat or Debian system. This test can currently only determine current patch levels if it can find autorpm or apt-get. -%ptch04 +%ptch04w No patch management tool could be found on the system. The scripts looks for autorpm followed by apt-get. If either one is found it is used to determine if updated packages @@ -43,31 +43,31 @@ will be done only on the current available list of packages (which might not be up-to-date). Make sure that you are running the tool as an administrative user. -%osv001 +%osv001f The operating system version appears to be less than RedHat 6.2 Due to security enhancements and fixes available in recent releases, running an older version of RedHat is strongly discouraged. -%osv002 +%osv002f The operating system version appears to be less than Debian 3.0 Due to security enhancements and fixes available in recent releases, running an older version of Debian is strongly discouraged. -%osv003 +%osv003w The machine does not appear to be a RedHat or Debian system. This test can not suggest a recommended version number for your operating system. -%osv004 +%osv004w The machine is running an unreleased version of Debian GNU/Linux. This version is not supported by the security team so it might not -be up-to-date security wase (support is only provided for the latest +be up-to-date security wise (support is only provided for the latest release). That is, "run at your own risk". -%sum001 +%sum001f The system does not appear to require a password during single-user mode boot. Either add a password to your boot loader or add the line: ~~:S:wait:/sbin/sulogin -to your /etc/inittab file. This line should be added immeditaly before +to your /etc/inittab file. This line should be added immediately before the line containing "rc 0". -%trip01 +%trip01f Tripwire has detected an inconsistency in the noted file. This file has been modified in some way since the database was built -- either -upgraded, removed or tampered with. If this modification is legitmate +upgraded, removed or tampered with. If this modification is legitimate please refresh the tripwire database by running "tripwire --update" --- tiger-3.2.1.orig/doc/rhosts.txt +++ tiger-3.2.1/doc/rhosts.txt @@ -54,7 +54,7 @@ security hole. It allows anyone to login to the machine as any user except `root'. This needs to be removed immediately. Note that SunOS 4.x systems ship with the '+' entry. -%rcmd010i +%rcmd010w The contents of the /etc/hosts.equiv file is listed. The hosts listed here should be examined for correctness. %rcmd011f @@ -86,7 +86,7 @@ command. %rcmd016w The user has an .rhosts file. The use of rhosts files is not a recommended -method for secure access to remote hosts, you should consider wether or +method for secure access to remote hosts, you should consider whether or not the user needs to have an .rhosts file and, in any case, consider the use of safer replacement for the 'r' commands including public-key cryptography programs (such as SSH implementations) --- tiger-3.2.1.orig/doc/root.txt +++ tiger-3.2.1/doc/root.txt @@ -8,5 +8,5 @@ "root" should be added to this file. %root003w The root user should not have the message capability turned on. This -could lead to inadvertant modification of files with the root user is +could lead to inadvertent modification of files with the root user is logged in. --- tiger-3.2.1.orig/doc/rootdir.txt +++ tiger-3.2.1/doc/rootdir.txt @@ -1,6 +1,8 @@ %rootdir001f -The inode for the root directory is not on inode 2. This is a security -breach. To check the inode number, use "stat /" command. +The root directory is not at the beginning of a filesystems. +This usually indicates the output of the Tiger reports might +be suspect. (i.e. Tiger was possibly run inside a chroot, etc). %rootdir002f The permissions for the root directory are not secure. - +%rootdir003f +The ownership of the root directory is not secure. --- tiger-3.2.1.orig/doc/signature.txt +++ tiger-3.2.1/doc/signature.txt @@ -176,7 +176,7 @@ %sig022f The patchdiag.xref files is not available in the configuration directory. This means that the script cannot proceed further since it does not have any -information of which are the appropiate patches for this system. +information of which are the appropriate patches for this system. Please download the patchdiag file from Sunsolve, you can use, for example, the following link: --- tiger-3.2.1.orig/doc/aide.txt +++ tiger-3.2.1/doc/aide.txt @@ -5,7 +5,7 @@ cannot make use of in the current Tiger version. Please supply a custom configuration file using Tiger_Run_AIDE_CFG_OVERRIDE and/or make sure no variable substitution is used in the Aide configuration file. -%aide003w +%aide003wsum Aide detected changes in filesystem integrity. This line is only the summary. %aide003w Aide detected, by checking against the files' the attributes in the database, --- tiger-3.2.1.orig/doc/ndd.txt +++ tiger-3.2.1/doc/ndd.txt @@ -69,8 +69,8 @@ services. # ndd -set /dev/ip ip_respond_to_timestamp 0 %ndd011w -This option determins if HP-UX will include explanitory text in the -RST segement it sends. This text is helpful for debugging, but is also +This option determines if HP-UX will include explanatory text in the +RST segment it sends. This text is helpful for debugging, but is also useful to potential intruders. To disable this do: # ndd -set /dev/tcp tcp_text_in_resets 0 --- tiger-3.2.1.orig/doc/integrit.txt +++ tiger-3.2.1/doc/integrit.txt @@ -5,7 +5,7 @@ Tiger cannot make use of in the current Tiger version. Please supply a custom configuration file using Tiger_Run_AIDE_CFG_OVERRIDE and/or make sure no variable substitution is used in the Integrit configuration file. -%integ003w +%integ003wsum Integrit detected changes in filesystem integrity. This line is only the summary. %integ003w --- tiger-3.2.1.orig/doc/rootkit.txt +++ tiger-3.2.1/doc/rootkit.txt @@ -14,12 +14,12 @@ The 'chkrootkit' program has detected a suspicious directory which might be an indication of an intrusion. A full analysis of the system is recommended to determine the -presence of further signs of intrusion since a rookit might have +presence of further signs of intrusion since a rootkit might have been installed. -%rootkit004f +%rootkit004w The 'chkrootkit' program has detected a possible rootkit installation A full analysis of the system is recommended to determine the -presence of further signs of intrusion since a rookit might have +presence of further signs of intrusion since a rootkit might have been installed. %rootkit005a The 'chkrootkit' program has detected a rootkit installation @@ -29,10 +29,10 @@ %rootkit006a A rootkit is installed by intruders in systems which have been successfully compromised and in which they have obtained full -administrator priviledges. The installation of a rookit is +administrator privileges. The installation of a rootkit is an indication of a major system compromise. -If the installation of a rookit is confirmed you are encouraged +If the installation of a rootkit is confirmed you are encouraged to power off the system and follow the steps outlined by Steps for Recovering from a UNIX or NT System Compromise (http://www.cert.org/tech_tips/root_compromise.html) --- tiger-3.2.1.orig/doc/ssh.txt +++ tiger-3.2.1/doc/ssh.txt @@ -8,12 +8,12 @@ and no. %ssh003w The RhostsAuthentication directive determines if .rhosts or -/etc/hosts.equiv is sufficent authentication. This option +/etc/hosts.equiv is sufficient authentication. This option only applies to protocol version 1 and is generally believed to be insecure. %ssh004w The PasswordAuthentication directive determines if passwords -are a sufficent authentication. +are a sufficient authentication. %ssh005e The variable SSHD_CONFIG is not defined which means that you have not setup (or the system has been enable to find) your SSH configuration --- tiger-3.2.1.orig/html/CVS/Entries +++ tiger-3.2.1/html/CVS/Entries @@ -1,30 +1 @@ -/accounts.html/1.2/Wed May 14 19:51:22 2003// -/aliases.html/1.1/Wed May 14 19:51:22 2003// -/anonftp.html/1.1/Wed May 14 19:51:23 2003// -/background.html/1.1/Wed May 14 19:51:23 2003// -/config.html/1.2/Wed May 14 19:51:23 2003// -/cron.html/1.1/Wed May 14 19:51:23 2003// -/debian.html/1.1/Wed May 14 19:51:23 2003// -/embed.html/1.1/Wed May 14 19:51:23 2003// -/filesys.html/1.1/Wed May 14 19:51:23 2003// -/group.html/1.1/Wed May 14 19:51:23 2003// -/inetd.html/1.2/Wed May 14 19:51:24 2003// -/issue.html/1.1/Wed May 14 19:51:24 2003// -/known.html/1.2/Wed May 14 19:51:24 2003// -/linux.html/1.2/Wed May 14 19:51:24 2003// -/logfiles.html/1.2/Wed May 14 19:51:24 2003// -/misc.html/1.2/Wed May 14 19:51:25 2003// -/netrc.html/1.1/Wed May 14 19:51:25 2003// -/network.html/1.2/Wed May 14 19:51:25 2003// -/nfs.html/1.1/Wed May 14 19:51:25 2003// -/passwd.html/1.3/Wed May 14 19:51:25 2003// -/paths.html/1.4/Wed May 14 19:51:27 2003// -/pcap.html/1.1/Wed May 14 19:51:27 2003// -/permissions.html/1.1/Wed May 14 19:51:27 2003// -/pxt.html/1.2/Wed May 14 19:51:28 2003// -/references.html/1.1/Wed May 14 19:51:28 2003// -/rhosts.html/1.2/Wed May 14 19:51:28 2003// -/root.html/1.1/Wed May 14 19:51:28 2003// -/rootdir.html/1.1/Wed May 14 19:51:28 2003// -/signature.html/1.1/Wed May 14 19:51:28 2003// D --- tiger-3.2.1.orig/html/accounts.html +++ tiger-3.2.1/html/accounts.html @@ -316,22 +316,6 @@
-

Code [acc016w]

-The listed login ID does not have password aging enabled. Good -password management practices indicate that passwords should not -be static, but rather should be changed on a regular basis. -

-
-
-
-
-
-
-
-
-
-
-

Code [acc017w]

The listed login ID does not have corresponding entries in both the /etc/passwd and /etc/shadow databases. This may indicate tampering @@ -367,7 +351,7 @@


Code [acc019w]

The listed login ID may be missing a login program initialization -file. This file controls the behavour of the login process and of +file. This file controls the behaviour of the login process and of many important environment variables.

 
@@ -384,7 +368,19 @@
 

Code [acc020w]

The listed login ID does not have a valid login program or shell. Usually these are defined in /etc/shells. -$acc021w +

+
+
+
+
+
+
+
+
+
+
+

+

Code [acc021w]

The listed login ID appears to be dormant. Files in the home directory of this user have not been modified in the specified period of time and after investigation the account may need to --- tiger-3.2.1.orig/html/aide.html +++ tiger-3.2.1/html/aide.html @@ -0,0 +1,101 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for aide

+

Code [aide001i]

+Aide detected no changes. Good. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [aide002e]

+Aide configuration files can make use of variable substitution in a way Tiger +cannot make use of in the current Tiger version. Please supply a custom +configuration file using Tiger_Run_AIDE_CFG_OVERRIDE and/or make sure +no variable substitution is used in the Aide configuration file. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [aide003wsum]

+Aide detected changes in filesystem integrity. This line is only the summary. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [aide003w]

+Aide detected, by checking against the files' the attributes in the database, +the file has changed. "Benign" actions, like accessing a file (remember +directories are files too) may have changed it, but it may be part of a breach +of security. Please investigate. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [aide004w]

+Aide detected, by checking against the files' the attributes in the database, +the file has been removed. "Benign" configuration errors of the database +settings may lead to incorporation and checking of for instance temporary +files. Uninstalling software and related files may lead to the same result +when the database was not upgraded before this check. +If the removed file was not a temporary file and not part of legitimately +uninstalled software, it may have been used in a breach of security. +Please investigate. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [aide005w]

+Aide detected, by checking file against the database, the file was not part of +the database. "Benign" actions like installing software and related files or +changes in the configuration file may lead to this result when the database +was not upgraded before this check. If the removed file was not part of +legitimately installed software, it may be in use in a breach of security. +Please investigate. --- tiger-3.2.1.orig/html/anonftp.html +++ tiger-3.2.1/html/anonftp.html @@ -26,7 +26,7 @@


Code [ftp002a]

There is a .rhosts file in the top level of the anonymous ftp -directories. This can allow unauthorized 'rlogin's or 'rsh's to +directory. This can allow unauthorized 'rlogin's or 'rsh's to occur to the ftp account. This indicates a possible intrusion. The contents of the file are listed immediately following the message. The machine should be checked for other signs of intrusion and should @@ -44,10 +44,10 @@


Code [ftp003w]

-The etc/passwd file in the anonymous ftp directories appears to +The etc/passwd file in the anonymous ftp directory appears to contain valid entries in the password field. If these are valid, then the file can be retrieved and a password cracking program -run against it. The etc/passwd file in the anonymous ftp directories +run against it. The etc/passwd file in the anonymous ftp directory should simply have a '*' in the password field, and should only include entries for the 'ftp' and 'root' accounts.

@@ -251,4 +251,19 @@

See CERT advisory CA-93:10 for information on setting up an anonymous FTP server. -

+

+
+
+
+
+
+
+
+
+
+
+

+

Code [ftp011w]

+The 'ftp' account appears to have a valid shell. A valid shell is not +required for the 'ftp' user and can be safely set to /bin/false, +/sbin/nologin, etc. --- tiger-3.2.1.orig/html/config.html +++ tiger-3.2.1/html/config.html @@ -10,7 +10,7 @@


Documents for config

Code [con001c]

-The configuration file listed was not read in because it was +The configuration file listed was not read because it was a directory.

 
@@ -25,7 +25,7 @@
 
 

Code [con002c]

-The configuration file listed was not read in because it is +The configuration file listed was not read because it was not owned by `root'. This is to prevent someone from modifying the configuration file.

@@ -41,7 +41,7 @@
 
 

Code [con003c]

-The configuration file listed was not read in because it is +The configuration file listed was not read because it was writable by non-root users. This is to prevent someone from modifying the configuration file.

@@ -169,6 +169,23 @@
 
 
 

+

Code [con010c]

+The filesystem is not recognised by Tiger as a local filesystem +for this operating system and will not be analysed by it. If this +is a local filesystem then the configuration script for this +operating system needs to be modified. +

+
+
+
+
+
+
+
+
+
+
+

Code [init001e]

The indicated variable, which should specifies the pathname to a command, does not have a value. This message should not appear on platforms @@ -308,6 +325,23 @@


+

Code [init009e]

+The script wanted to use a temporary script which already exists, this +might mean somebody created it to make use of a (fortunately non-existent) +race condition. The script will not proceed further since it will not +use a file which it did not create itself. +

+
+
+
+
+
+
+
+
+
+
+

Code [util001e]

The attempt to compile the signature checking program (SNEFRU) failed. This will prevent the tests of the integrity of system binaries from @@ -370,5 +404,20 @@


Code [run001e]

-A needed file cannot be read, probably due to insuficient priviledges. +A needed file cannot be read, probably due to insufficient privileges. +Make sure that Tiger is run by the superuser (root) account. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [run002e]

+A needed command cannot be executed, probably due to insufficient privileges. Make sure that Tiger is run by the superuser (root) account. --- tiger-3.2.1.orig/html/cron.html +++ tiger-3.2.1/html/cron.html @@ -84,4 +84,41 @@ particular, possibly recurring time. It can be very useful, but also has a very real potential for abuse by either users or system crackers. Users can be restricted to use cron by creating a /etc/cron.allow -file holding only system administrators. +(holding only system administrators) or a /etc/cron.deny file +(listing which users are not allowed access). Depending on the site +configuration if none exist either only root will be able to setup +cron tasks or all users will be permitted. In many systems the +default is to allow access to all users. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [cron006w]

+Cron is not restricted to a given user. It is usually good to restrict +cron as much as possible since this system has a real potential by +abuse by either users or system crackers. Consider removing the user +from the allowed cron list if it is not strictly needed. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [cron007i]

+Cron is restricted to a given user. This is usually good, since +restricting cron prevents this system from being +abused by either users or system crackers. --- tiger-3.2.1.orig/html/embed.html +++ tiger-3.2.1/html/embed.html @@ -176,11 +176,11 @@


-

Code [embed003i]

+

Code [embed004i]

See the 'embed' explanation for an explanation of the format of the embedded references.

The file or directory is group writable, world writable or both. This may indicate a vulnerability in the system. It will be necessary to study the file and programs in which the pathname was found to -determine whether there +determine whether there is a problem. --- tiger-3.2.1.orig/html/filesys.html +++ tiger-3.2.1/html/filesys.html @@ -71,7 +71,7 @@


-

Code [fsys004i]

+

Code [fsys004a]

The listed programs are setuid, but are not in the database of setuid programs which appear in the OS distribution.

@@ -145,7 +145,7 @@
 
 
 

-

Code [fsys008i]

+

Code [fsys008f]

The listed directories are world writable. These provide a location for intruders to store files. They should be checked for unusual files. @@ -195,6 +195,22 @@


-

Code [fsys011i]

+

Code [fsys011a]

The listed programs are setgid, but are not in the database of setgid programs which appear in the OS distribution. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [fsys0012w]

+The listed program is not owned by an administrative user. The +majority of SUID programs should probably be owned by an +administrative user. --- tiger-3.2.1.orig/html/group.html +++ tiger-3.2.1/html/group.html @@ -89,5 +89,3 @@ The group files have integrity issues as found by 'grpck -r'. This can lead to looping of password manipulation programs and to allow unexpected access to resources. -

-

--- tiger-3.2.1.orig/html/hpux.html +++ tiger-3.2.1/html/hpux.html @@ -0,0 +1,40 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for hpux

+

Code [trust001w]

+Many additional security features are available when running the +system in trusted mode. It is recommended that you enable trusted +mode through SAM. You can find more information on the major +differences between trusted and non-trusted modes in the HP-UX FAQ +http://www.faqs.org/faqs/hp/hpux-faq/section-68.html +and at the HP document "Administering your HP-UX Trusted System" +(B2355-90121) available at +http://docs.hp.com/hpux/onlinedocs/B2355-90121/B2355-90121.html +

+
+
+
+
+
+
+
+
+
+
+

+

Code [trust002w]

+When the system is in trusted mode, HP-UX can enforce a default +number of login attempts before the account is disabled. This +is useful for preventing potential intruders from brute forcing +and/or guessing passwords. Since limiting the number of logins +can also be used as a Denial of Service attack, the number of +login attempts is configurable on a per-user basis. Read the +default(4) and modprpw(1M) man pages for additional information. --- tiger-3.2.1.orig/html/inetd.html +++ tiger-3.2.1/html/inetd.html @@ -96,12 +96,20 @@


Code [inet006f]

-The 'rexd' service is very insecure and should never be enabled. +The 'rexd' (or 'exec') service is very insecure and should never be +enabled. Known rexd servers have little or no security in their design +or implementation. Intruders can exploit this service to execute +commands as any user. +

It should be disabled immediately by editing the inetd.conf file and removing the 'rexd' entry, and sending a HUP signal to the 'inetd' process.

For AIX systems, CERT Advisory CA-92:05 is applicable. +

+Notice that some intruders may turn on a service +that you previously thought you had turned off, or replace +the inetd program with a Trojan horse program.

 
 
@@ -196,7 +204,11 @@
 
 

Code [inet012w]

-sysstat enabled +The 'systat' service is enabled, this system provides a considerable +number of information to remote anonymous users. +Consider disabling it by editing the inetd.conf file, +removing the 'systat' entry, and sending a HUP signal to the +'inetd' process.

 
 
@@ -210,7 +222,11 @@
 
 

Code [inet013w]

-netstat enabled +The 'netstat' service is enabled, this system provides a considerable +number of information to remote anonymous users. +Consider disabling it by editing the inetd.conf file, +removing the 'netstat' entry, and sending a HUP signal to the +'inetd' process.

 
 
@@ -255,7 +271,378 @@
 
 

Code [inet016f]

-The listed entry was protected by tcp wrappers by the systema but has, +The listed entry was protected by tcp wrappers by the system but has, for some unknown reason, changed to no longer be protected by them. Make sure that the service is secured since, if not using tcp wrappers, access control for it might be disabled. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet017w]

+The inetd configuration file permissions is not 600. This is the recommended +setting by CERT's 'UNIX Security Checklist v2.0'. You should check that the +file permissions on that file are correct. +If an attacker can access the file due to lack of file permissions it might +enable him to add new lines to the file which would, when inetd is restarted, +allow him to introduce backdoors in the system. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet018w]

+The inetd configuration file can be written by any user of a given group since +the file permissions ensure this. If the group is not an administrative group +you should consider changing its permissions to 600. +If the group includes untrusted users, one of them could +add new lines to the file which would, when inetd is restarted, +allow him to introduce backdoors in the system. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet019a]

+The inetd configuration file can be written by any user of the system. +This makes it possible for any user to add new lines to the file which +would, when inetd is restarted, allow him to introduce backdoors in the +system. +You should review your inetd configuration file to determine if there are +suspicious services enabled since this might indicate that an intrusion +has taken placed on the system. Also change the file permissions to restrict +this misuse. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet020f]

+The inetd configuration file is not owned by root which is usually the owner +of this file in most systems. This might indicate that the system has +been affected by an intrusion and permissions of both the file and +the directory it is stored in should be reviewed. Also review the content +of this file in order to check if there are suspicious services enabled +since this might indicate that an intrusion has taken place. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet021f]

+TCP wrappers do not seem to be installed in the system since the 'tcpd' program +is not found in the system. Tcp wrappers allows you to monitor and filter +incoming requests for common network services (through the use of the +hosts.allow and hosts.deny files) and can be used to 'wrap' services either +running through the inetd or in rc.d files. +It is available via anonymous FTP from: ftp://ftp.porcupine.org/pub/security/ +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet022w]

+The tftpd service is enabled, disable tftp if not needed by +commenting it out from the file /etc/inetd.conf and restarting the +inetd process. +

+If the tftpd service is required, create a separate partition to +store the files to be served by tftp and limit the tftp daemon +to the directory where this partition is mounted. Also make sure +that the files in the tftpd area are not writable. +

+If it is not required, disable it by editing the inetd.conf file, +removing the 'tftp' entry, and sending a HUP signal to the 'inetd' process. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet023w]

+The 'finger' service is enabled, this system provides a considerable +number of information to remote anonymous users. An +intruder can obtain quite a number of information about a remote host. +Also, if improperly configured it can be used to create a 'finger war' +DoS loop and can be used to do indirect finger requests +(that is contact remote servers when a remote user sends a request +for 'user@other_host@your_host') +

+You should make sure that you have an up-to-date version of fingerd. +Do not use a version of fingerd that is older than 16 October, 2000. +For more information consult the AusCERT ESB available at +ftp://ftp.auscert.org.au/pub/auscert/ESB/ESB-2000.286 +

+Consider disabling it unless it is considered essentially +by editing the inetd.conf file, removing the 'finger' entry, +and sending a HUP signal to the 'inetd' process. +

+If you cannot remove finger consider reducing the content by replacing +it with a version which only offers restricted information. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet024w]

+The 'rusers' service is enabled, this system provides a considerable +number of information to remote anonymous users. +

+Consider disabling it by editing the inetd.conf file, +removing the 'rusers' entry, and sending a HUP signal to the +'inetd' process. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet025w]

+The 'echo' and 'chargen' UDP servers are potentially problematic +since they can be used to setup ping-pong DoS attacks targeted at +other systems by means of IP address spoofing. +

+Consider disabling it by editing the inetd.conf file, +removing the 'echo' and/or 'chargen' entries, and sending a HUP signal to the +'inetd' process. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet026w]

+The linuxconf service can be utilized for remote administration. +

+Consider disabling it by editing the inetd.conf file, +removing the 'linuxconf' entry, and sending a HUP signal to the +'inetd' process. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet027w]

+The 'identd or auth' service is enabled, this system provides a considerable +number of information to remote anonymous users. +

+Consider disabling it by editing the inetd.conf file, removing the 'auth' entry, +and sending a HUP signal to the 'inetd' process. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet098w]

+Services that pass sensitive information (including passwords) should +be replaced with the family of programs that comprise secure shell (ssh) +which use strong encryption based on public-key cryptography. +

+You can use the freely-available OpenSSH implementation at +http://www.openssh.org +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet099w]

+The indicated service is not protected by tcp wrappers or xinetd access +control. The use of this facility is encouraged to limit access and to +improve logging. +The listed entry was protected by tcp wrappers by the default installation +and is currently protected this way too. This is a good thing! +

+
+
+
+
+
+
+
+
+
+
+

+

Code [inet100w]

+The inetd services does not have logging enabled. Adding logging to the +inetd services will help identify potential mis-use of system system resources. +

+To enable logging for the inetd service add the -l option in the inetd startup +scripts. +

+To enable logging for the xinetd services add the log_type, log_on_success +and/or log_on_failure to the /etc/xinetd.conf file. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [xnet001e]

+The script cannot find an xinetd configuration file in this system. This +might happen if Xinetd is not installed of if the XINETDCONF configuration +variable is not properly defined. The script will try to find this configuration +file in standard locations (/etc/xinetd.conf) but if it's not there +you will need to define it in the siterc configuration file. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [xnet002e]

+A directory which is being included by the XINETDCONF configuration file +is not really a directory. This prevents the script from analysing all +the active services and might be a configuration issue. Please check +Xinetd's configuration file. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [xnet003e]

+The script cannot read the xined configuration file in this system. This +should not usually happen since the script should be running with +root privileges. In order to analyse the configuration file you need +to run this script as a user who can read all the Xinetd configuration +files. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [xnet004i]

+The service is enabled in the Xinetd configuration file. You should verify +that services enabled in the server are legitimate and consider disabling +unused services in order to minimise exposure (and associated risk) +

+
+
+
+
+
+
+
+
+
+
+

+

Code [xnet005i]

+The service is disabled in the Xinetd configuration file. This is usually +a good thing, since this limits exposure of the server and prevents +external attacks. --- tiger-3.2.1.orig/html/integrit.html +++ tiger-3.2.1/html/integrit.html @@ -0,0 +1,103 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for integrit

+

Code [integ001i]

+Integrit detected no changes. Good. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [integ002e]

+Integrit configuration files can make use of variable substitution in a way +Tiger cannot make use of in the current Tiger version. Please supply a custom +configuration file using Tiger_Run_AIDE_CFG_OVERRIDE and/or make sure +no variable substitution is used in the Integrit configuration file. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [integ003wsum]

+Integrit detected changes in filesystem integrity. This line is only the +summary. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [integ003w]

+Integrit detected, by checking against the files' the attributes in the +database, the file has changed. "Benign" actions, like accessing a file +(remember directories are files too) may have changed it, but it may be part +of a breach of security. Please investigate. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [integ004w]

+Integrit detected, by checking against the files' the attributes in the +database, the file has been removed. "Benign" configuration errors of the +database settings may lead to incorporation and checking of for instance +temporary files. Uninstalling software and related files may lead to the +same result when the database was not upgraded before this check. +If the removed file was not a temporary file and not part of legitimately +uninstalled software, it may have been used in a breach of security. +Please investigate. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [integ005w]

+Integrit detected, by checking file against the database, the file was +not part of the database. "Benign" actions like installing software and +related files or changes in the configuration file may lead to this result +when the database was not upgraded before this check. If the removed file +was not part of legitimately installed software, it may be in use in a +breach of security. +Please investigate. --- tiger-3.2.1.orig/html/known.html +++ tiger-3.2.1/html/known.html @@ -151,7 +151,7 @@


Code [kis009w]

There is an .exrc file outside of any user's home directory. This file can -be loaded inadvertenly by a user if executing an editor in that directory +be loaded inadvertently by a user if executing an editor in that directory and could introduce unexpected commands through it. Note that in all modern versions of vi, you have to set the exrc option in your home's directory .exrc file before vi will read the exrc in @@ -217,8 +217,53 @@ An application in the system is using a deleted file. This might be an indication of an intruder executing rogue processes and removing the files from disk so that they cannot be traced or detected by the local administrator. -This has been observerd both in intruders running password cracking programs +This has been observed both in intruders running password cracking programs or worms propagating through remote attacks. This also can happen if a local application is using shared libraries which have been upgraded but the service itself has not been restarted in order to -use the new libraries. +use the new libraries. Notice that if there was a vulnerability in the +library and the server was not restarted the system is still vulnerable. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [kis013a]

+A interface is set up on promiscuous mode, this is a common method +used by attackers to capture user account and and password information. +For related information, see CERT advisory CA-94:01 available in +http://www.cert.org/advisories/CA-94.01.ongoing.network.monitoring.attacks.html +

+
+
+
+
+
+
+
+
+
+
+

+

Code [kis014a]

+A shell entry (/bin/sh or /bin/csh) has been defined in inetd.conf, this is +a common method used by attackers to introduce system backdoors and may +exploits run the following code: +

+echo 'ingreslock stream tcp nowait root /bin/sh sh -i' > /tmp/bob; /usr/sbin/inetd -s /tmp/bob +

+You should check all if the inetd running in the system is using a modified +configuration file and check all the programs specified in either that +configuration file or /etc/inetd.conf to verify that they are correct +and have not been replaced by Trojan horse programs. +Also check for legitimate services that you have commented +out in your /etc/inetd.conf. Intruders may turn on a service +that you previously thought you had turned off, or replace +the inetd program with a Trojan horse program. --- tiger-3.2.1.orig/html/linux.html +++ tiger-3.2.1/html/linux.html @@ -207,11 +207,12 @@ The system is configured to accept ICMP redirects, this might or might not be necessary in your network topology. If you have multiple routers to which connect through to outside locations it might be necessary, -otherwise remote it since an attacker could send bogus ICMP redirection +otherwise remove it since an attacker could send bogus ICMP redirection messages to try to route the outgoing network packets to other systems (including his own) and thus allowing for man in the middle or denial of service attacks: # sysctl -w net.ipv4.conf.all.accept_redirects = 0 +and: # sysctl -w net.ipv4.conf.default.accept_redirects = 0

 
@@ -228,7 +229,7 @@
 

Code [lin013f]

It is common to protect systems against Denial of Service attacks using SYN packets (commonly known as "SYN flooding") by activating support -of TCP syncookies. Note, however, that activating this violates some RFCS: +of TCP syncookies. Note, however, that activating this violates some RFCs: # sysctl -w net.ipv4.tcp_syncookies = 1

 
@@ -245,9 +246,10 @@
 

Code [lin014f]

It is possible to send IP spoofed packets from this machine. Spoofed packets are commonly used by trojans that make use of compromised hosts -to deliver denial of service, man in the middle or conection hijacking. +to deliver denial of service, man in the middle or connection hijacking. You should consider configuring your kernel to not permit this: # sysctl -w net.ipv4.conf.all.rp_filter = 2 +and: # sysctl -w net.ipv4.conf.default.rp_filter = 2

 
@@ -285,6 +287,7 @@
 circumstances or otherwise an attacker could try to bypass the traffic
 filtering that is done on the network:
 # sysctl -w net.ipv4.conf.all.accept_source_route = 0
+and:
 # sysctl -w net.ipv4.conf.default.accept_source_route = 0
 
 
@@ -299,9 +302,10 @@
 
 

Code [lin017w]

-Suspicious packets recieved by the kernel should be logged to detect +Suspicious packets received by the kernel should be logged to detect incoming attacks. To activate this logging capability: # sysctl -w net.ipv4.conf.all.log_martians = 1 +and: # sysctl -w net.ipv4.conf.default.log_martians = 1

 
@@ -323,4 +327,29 @@
 For 2.2 kernels remove this option with:
 # echo 1 > /proc/sys/net/ipv4/conf/eth1/hidden
 For 2.4 and later kernels you might need to patch the kernel or configure
-your firewalling rules properly.
+your firewalling rules properly (i.e. defining anti-spoofing rules).
+
+
+
+
+
+
+
+
+
+
+
+

+

Code [lin019f]

+The system has no firewalling rules in place to limit access to network +services and protocols. Considering configuring a set of local firewall +rules adapted to your needs. There are multiple firewall generation software +you can use to generate these (such as Bastille, Shorewall, Firestarter, +or Knetfiler). +Local firewall rules can be used to block undesired incoming and outgoing +traffic and can be useful to prevent access to network services that are +listening on all system interfaces, only want to be used from specific +hosts (or interfaces) and lack capabilities to either restrict its +use to specific local network IP addresses or hosts. +If the system is multi-home a local firewall configuration will prevent +spoofing attacks due to "weak end host" issues. --- tiger-3.2.1.orig/html/logfiles.html +++ tiger-3.2.1/html/logfiles.html @@ -12,6 +12,8 @@

Code [logf001f]

The log file "wtmp" should exist to show an audit trail of which user has logged into the server. This file is accessed by the command "last". +It might not exist due to a system configuration error or an +intruder that has tried to cover this tracks by removing it.

 
 
@@ -27,6 +29,8 @@
 

Code [logf002f]

The log file "btmp" should exist to log a list of bad logins. This file is accessed using the command "lastb". +It might not exist due to a system configuration error or an +intruder that has tried to cover this tracks by removing it.

 
 
@@ -42,6 +46,8 @@
 

Code [logf003f]

The log file "lastlog" should exist to show a user's most recent login session on the server. This file is accessed by the command "lastlog". +It might not exist due to a system configuration error or an +intruder that has tried to cover this tracks by removing it.

 
 
@@ -57,6 +63,8 @@
 

Code [logf004f]

The log file "utmp" should exist so that a list of current users on the server can be listed. This is accessed by the command "who". +It might not exist due to a system configuration error or an +intruder that has tried to cover this tracks by removing it.

 
 
@@ -69,9 +77,9 @@
 
 
 

-

Code [logf005w]

+

Code [logf005f]

The log file does not have proper permissions set. It is recommended that -you change the permissions to those suggested. +you change the permissions to those suggested for these file.

 
 
@@ -100,8 +108,10 @@
 
 

Code [logf006f]

-The umask setting in the configuration file is insecure. Umask must be -set as to prevent public write (ie. either 002 or 022). +The log file "loginlog" should exist to show a user login attempts +on the server. +It might not exist due to a system configuration error or an +intruder that has tried to cover this tracks by removing it.

 
 
@@ -114,7 +124,13 @@
 
 
 

-

Code [logf007w]

-There are more than two umask entries in the configuration file. Please -check if the umask settings are secure (to prevent public write, suggested -values are either 002 or 022). +

Code [logf007f]

+The log file "messages" should exist to show a trace of the system logs +(including reboots and kernel messages), it is also often used by the +syslog daemon to log information. The contents of the "messages" logfile +depends upon the configuration of the syslog.conf and varies by +distribution and/or system administrator preference. +It might not exist if you have configured your system to use a +different file for logging or if an intruder has tried to cover +his tracks by removing it since the messages file might contain +bad login attempts from local users and remote hosts. --- tiger-3.2.1.orig/html/misc.html +++ tiger-3.2.1/html/misc.html @@ -163,8 +163,8 @@


-

Code [misc005w]

-The listed security check file from a check.tbl file does not +

Code [misc005e]

+The listed security check file from a check.d/ file does not exist.

 
@@ -437,11 +437,11 @@
 

Code [misc016w]

The `ie', `le', and `qe' device files can be used to snoop packets -from the network (ethernet in these cases). This ability should be +from the network (Ethernet in these cases). This ability should be restricted. The permissions on the listed files should be 0600. The Solaris package facility will occasionally reset these permissions to what they are defined to be in in the /var/sadm/install/contents file. -Therefore, they must be changed there as well. The file is an ascii +Therefore, they must be changed there as well. The file is an ASCII file and can be edited with any editor.

 
@@ -458,12 +458,12 @@
 

Code [misc017w]

The `ie', `le', and `qe' device files can be used to snoop packets -from the network (ethernet in these cases). This ability should be +from the network (Ethernet in these cases). This ability should be restricted. The listed device files should be owned by root and only readable/writable by root in order to restrict access. The Solaris package facility will occasionally reset the ownership and permissions to what they are defined to be in in the /var/sadm/install/contents file. -Therefore, they must be changed there as well. The file is an ascii +Therefore, they must be changed there as well. The file is an ASCII file and can be edited with any editor.

 
@@ -496,7 +496,7 @@
 

Code [misc018w]

There are two umask settings in the boot scripts, this probably means -that only one of them will be valid. Check the appropiate file to +that only one of them will be valid. Check the appropriate file to fix this issue.

 
@@ -559,7 +559,7 @@
 

Code [misc022f]

The umask setting in the configuration file is insecure. Umask must be -set as to prevent public write (ie. either 002 or 022). +set as to prevent public write (i.e. either 002 or 022).

 
 
@@ -576,3 +576,38 @@
 There are more than two umask entries in the configuration file. Please
 check if the umask settings are secure (to prevent public write, suggested
 values are either 002 or 022).
+
+
+
+
+
+
+
+
+
+
+
+

+

Code [misc024e]

+The script will not be run since it belongs to a different owner than the +one running the Tiger program (or script). Since running this script might +introduce a risk (if the script was dropped in a directory that Tiger searches +for by an attacker to have it run) it will not be executed. +This might be a problem in the installation of Tiger so you should recheck +the script owner and permissions. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [misc025e]

+The script will not be run since it is not executable. This might be a problem +with the installation of Tiger so you should recheck the script's file owner +and permissions. --- tiger-3.2.1.orig/html/ndd.html +++ tiger-3.2.1/html/ndd.html @@ -0,0 +1,207 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for ndd

+

Code [ndd001f]

+This option determines whether to forward broadcast packets directed +to a specific net or subnet, if that net or subnet is directly +connected to the machine. If the system is acting as a router, this +option can be exploited to generate a great deal of broadcast network +traffic. Turning this option off will help prevent broadcast traffic +attacks. +To disable this do: +# ndd -set /dev/ip ip_forward_directed_broadcasts 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd002f]

+This option determines whether to forward packets that are source +routed. These packets define the path the packet should take instead +of allowing network routers to define the path. +To disable this do: +# ndd -set /dev/ip ip_forward_src_routed 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd003w]

+IP forwarding is the option that permits the system to act as a router +and thus resend packets from one network interface to another. If your +system is not acting as such this option should be disabled. +To disable this do: +# ndd -set /dev/ip ip_forwarding 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd004f]

+The echo-request PMTU strategy can be used for amplification attacks. +Use either strategy 1 or strategy 0. +To disable this do: +# ndd -set /dev/ip ip_pmtu_straegy [0|1] +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd005w]

+This option determines whether to send ICMP redirect messages which +can introduce changes into remote system's routing table. It should +only be used on systems that act as routers. +To disable this do: +# ndd -set /dev/ip ip_send_redirects 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd006w]

+The system is configured to send ICMP source quench messages. These +ICMP messages have been deprecated. +To disable this do: +# ndd -set /dev/ip ip_send_source_sqench 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd007f]

+This options determines whether to respond to ICMP netmask requests +which are typically sent by diskless clients when booting. An +attacker may use the netmask information for determining network +topology or the broadcast address for the subnet. +To disable this do: +# ndd -set /dev/ip ip_respond_to_address_mask_broadcast 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd008f]

+This option determines whether to respond to ICMP broadcast echo +requests (ping). An attacker may try to create a denial of service +attack on subnets by sending many broadcast echo requests to which all +systems will respond. This also provides information on systems that +are available on the network. +To disable this do: +# ndd -set /dev/ip ip_respond_to_echo_broadcast 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd009f]

+This option determines whether to respond to ICMP broadcast timestamp +requests which are used to discover the time on all systems in the +broadcast range. This option is dangerous for the same reasons as +responding to a single timestamp request. Additionally, an attacker +may try to create a denial of service attack by generating many +broadcast timestamp requests. +To disable this do: +# ndd -set /dev/ip ip_respond_to_timestamp_broadcast 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd010f]

+This option determines whether to respond to ICMP timestamp requests +which some systems use to discover the time on a remote system. An +attacker may use the time information to schedule an attack at a +period of time when the system may run a cron job (or other time- +based event) or otherwise be busy. It may also be possible predict +ID or sequence numbers that are based on the time of day for spoofing +services. +# ndd -set /dev/ip ip_respond_to_timestamp 0 +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ndd011w]

+This option determines if HP-UX will include explanatory text in the +RST segment it sends. This text is helpful for debugging, but is also +useful to potential intruders. +To disable this do: +# ndd -set /dev/tcp tcp_text_in_resets 0 --- tiger-3.2.1.orig/html/netrc.html +++ tiger-3.2.1/html/netrc.html @@ -67,3 +67,19 @@ that an intrusion has occurred. The directory should be examined for unusual files. The system should also be checked for other signs of intrusion. The directory should be renamed or removed. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [nrc005w]

+The user has a .netrc file, you should avoid usage of these files unless +absolutely necessary since they can contain sensible information which +could be used by a local intruder. --- tiger-3.2.1.orig/html/network.html +++ tiger-3.2.1/html/network.html @@ -10,7 +10,7 @@


Documents for network

Code [netw001f]

-The listed file is world writeable. chomd -ow file to correct. +The listed file is world writable. chmod -ow file to correct.

 
 
@@ -40,7 +40,7 @@
 
 

Code [netw003f]

-The inetd daemon is not configured with loggin enabled. If xinetd +The inetd daemon is not configured with login enabled. If xinetd based, add the 'filelog' or 'syslog' options in /etc/sysconfig/xinetd configuration file.

--- tiger-3.2.1.orig/html/passwd.html
+++ tiger-3.2.1/html/passwd.html
@@ -135,7 +135,7 @@
 
 
 

-

Code [pass009e]

+

Code [pass009f]

The format of a given configuration file used for user (or group) authentication has some inconsistency that might be a security vulnerability.

@@ -153,3 +153,164 @@
 

Code [pass010w]

The listed groupname occurs more than once in the same file. This indicates a configuration problem and should be corrected. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass011f]

+The listed username has an empty password string. This will allow any user +to gain access to the account without being prompted for a password. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass012w]

+The listed home directory is specified for multiple users. This can lead to +denial-of-service and unexpected resource usage (i.e. shell initialization +files, etc) if not corrected. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass013w]

+The listed username is not using an acceptable, cryptographic method for the +password hash. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass014w]

+The listed login ID is disabled in some manner ('*' in passwd field, etc), +but the login shell for the login ID is a valid shell (from /etc/shells +or the system equivalent). A valid shell can potentially enable the +login ID to continue to be used. The login shell should be changed +to something that doesn't exist, or to something like /bin/false. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass015w]

+The listed login ID does not have a valid login program or shell. +Usually these are defined in /etc/shells. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass016w]

+The listed login ID should not have "/" (system root directory) +as its home drive. This is a possible security hole. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass017w]

+The listed login ID has a user ID of zero (0) and is not the 'root' +account. This should be checked to see if it is legitimate. In any +case, having login ID's with a user ID of zero tends to lead to security +problems, and should be avoided (except for 'root') +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass018f]

+The listed administrative login should have an impossible password. +Files owned by this login ID may reside in critical system directories +and compromise of this account could lead to trojan executables in +typical search paths. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass19w]

+The listed login ID does not have password aging enabled. Good +password management practices indicate that passwords should not +be static, but rather should be changed on a regular basis. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [pass20w]

+The listed login ID is not configured to use shadow passwords. This +indicates the specified login ID has its cypher text publicly available +and is subject to brute force password cracking, even though shadow +passwords are implimented on the system. --- tiger-3.2.1.orig/html/paths.html +++ tiger-3.2.1/html/paths.html @@ -32,9 +32,13 @@ executables and spread by `root'. Often these executables are owned by `bin', `uucp' or other system accounts. If these commands are never used by root, then this is not a problem. If they are, you should -consider changing the owner to `root'. Because of SMI's recent decission -to install most /usr/sbin/accessdb /usr/sbin/addgroup /usr/sbin/adduser /usr/sbin/apt-setup /usr/sbin/arp /usr/sbin/arp2ethers /usr/sbin/arpfetch /usr/sbin/arpsnmp /usr/sbin/arpwatch /usr/sbin/atd /usr/sbin/atrun /usr/sbin/base-config /usr/sbin/bihourly /usr/sbin/bonobo-activation-sysconf /usr/sbin/chat /usr/sbin/checksecurity /usr/sbin/chkrootkit /usr/sbin/chpasswd /usr/sbin/chroot /usr/sbin/cleanup-info /usr/sbin/cpgr /usr/sbin/cppw /usr/sbin/cron /usr/sbin/cron-apt /usr/sbin/cvs-pserver /usr/sbin/cytune /usr/sbin/debootstrap /usr/sbin/delgroup /usr/sbin/deluser /usr/sbin/dmassagevendor /usr/sbin/dpasswd /usr/sbin/dpkg-divert /usr/sbin/dpkg-preconfigure /usr/sbin/dpkg-reconfigure /usr/sbin/dpkg-statoverride /usr/sbin/dumbnet /usr/sbin/editkeep /usr/sbin/elvtune /usr/sbin/exicyclog /usr/sbin/exigrep /usr/sbin/exim /usr/sbin/eximconfig /usr/sbin/exim_dbmbuild /usr/sbin/exim_dumpdb /usr/sbin/exim_fixdb /usr/sbin/exim_lock /usr/sbin/eximstats /usr/sbin/exim_tidydb /usr/sbin/exim-upgrade-to-r3 /usr/sbin/exinext /usr/sbin/exiqsumm /usr/sbin/exiwhat /usr/sbin/fdutilsconfig /usr/sbin/ftpasswd /usr/sbin/ftpshut /usr/sbin/ftpstats /usr/sbin/gdmaskpass /usr/sbin/gdmconfig /usr/sbin/gdmopen /usr/sbin/gdm-restart /usr/sbin/gdm-safe-restart /usr/sbin/gdm-stop /usr/sbin/gnome-pty-helper /usr/sbin/gpm /usr/sbin/gpmconfig /usr/sbin/gpm-microtouch-setup /usr/sbin/gpm-mouse-test /usr/sbin/groupadd /usr/sbin/groupdel /usr/sbin/groupmod /usr/sbin/grpck /usr/sbin/grpconv /usr/sbin/grpunconv /usr/sbin/hping /usr/sbin/hping2 /usr/sbin/huntd /usr/sbin/iconvconfig /usr/sbin/identd /usr/sbin/ikeygen /usr/sbin/in.comsat /usr/sbin/inetd /usr/sbin/in.identtestd /usr/sbin/install-docs /usr/sbin/install-info /usr/sbin/install-keymap /usr/sbin/install-menu /usr/sbin/install-sgmlcatalog /usr/sbin/invoke-rc.d /usr/sbin/ipmasqadm /usr/sbin/ircflush /usr/sbin/ircio /usr/sbin/ispellconfig /usr/sbin/keytab-lilo /usr/sbin/liloconfig /usr/sbin/lilo_find_mbr /usr/sbin/locale-gen /usr/sbin/logcheck /usr/sbin/logrotate /usr/sbin/logtail /usr/sbin/lpc /usr/sbin/lpd /usr/sbin/lpf /usr/sbin/lsof /usr/sbin/MAKEFLOPPIES /usr/sbin/makejail /usr/sbin/massagevendor /usr/sbin/mkboot /usr/sbin/mklost+found /usr/sbin/mkrescue /usr/sbin/mksmbpasswd /usr/sbin/modconf /usr/sbin/newusers /usr/sbin/nmbd /usr/sbin/orphaner /usr/sbin/pac /usr/sbin/pam_tally /usr/sbin/paperconfig /usr/sbin/popularity-contest /usr/sbin/pppconfig /usr/sbin/pppd /usr/sbin/pppdump /usr/sbin/pppoe /usr/sbin/pppoeconf /usr/sbin/pppoe-relay /usr/sbin/pppoe-server /usr/sbin/pppoe-sniff /usr/sbin/pppstats /usr/sbin/proftpd /usr/sbin/pwck /usr/sbin/pwconv /usr/sbin/pwunconv /usr/sbin/ramsize /usr/sbin/rdev /usr/sbin/readprofile /usr/sbin/remove-default-ispell /usr/sbin/remove-default-wordlist /usr/sbin/rmail /usr/sbin/rmt /usr/sbin/rootflags /usr/sbin/rsmtp /usr/sbin/runq /usr/sbin/safe_finger /usr/sbin/samhain /usr/sbin/select-default-ispell /usr/sbin/select-default-wordlist /usr/sbin/sendmail /usr/sbin/setvesablank /usr/sbin/smbd /usr/sbin/snort /usr/sbin/snort-stat /usr/sbin/sshd /usr/sbin/su-to-root /usr/sbin/syslogd-listfiles /usr/sbin/syslog-facility /usr/sbin/tcpd /usr/sbin/tcpdchk /usr/sbin/tcpdmatch /usr/sbin/tcpdump /usr/sbin/termwrap /usr/sbin/texconfig /usr/sbin/tiger /usr/sbin/tigercron /usr/sbin/tigexp /usr/sbin/traceroute /usr/sbin/try-from /usr/sbin/tunelp /usr/sbin/tzconfig /usr/sbin/tzsetup /usr/sbin/update-alternatives /usr/sbin/update-catalog /usr/sbin/update-default-aspell /usr/sbin/update-default-ispell /usr/sbin/update-default-wordlist /usr/sbin/update-dictcommon-aspell /usr/sbin/update-fmtutil /usr/sbin/update-fonts-alias /usr/sbin/update-fonts-dir /usr/sbin/update-fonts-scale /usr/sbin/update-gdkpixbuf-loaders /usr/sbin/update-gtk-immodules /usr/sbin/update-inetd /usr/sbin/update-ispell-dictionary /usr/sbin/update-mime /usr/sbin/update-mozilla-chrome /usr/sbin/update-pango-modules /usr/sbin/update-pangox-aliases /usr/sbin/update-passwd /usr/sbin/update-pciids /usr/sbin/update-rc.d /usr/sbin/update-texmf /usr/sbin/update-updmap /usr/sbin/update-xpdfrc /usr/sbin/useradd /usr/sbin/userdel /usr/sbin/usermod /usr/sbin/validlocale /usr/sbin/vcstime /usr/sbin/vidmode /usr/sbin/vigr /usr/sbin/vipw /usr/sbin/visudo /usr/sbin/wm-menu-config /usr/sbin/wrepld /usr/sbin/writevt /usr/sbin/wserv /usr/sbin/zic and /usr/bin/[ /usr/bin/411toppm /usr/bin/822-date /usr/bin/a2p /usr/bin/a5booklet /usr/bin/abiword /usr/bin/abw2html.pl /usr/bin/access /usr/bin/aclocal /usr/bin/acme /usr/bin/acme-properties /usr/bin/acpi_available /usr/bin/activation-client /usr/bin/addftinfo /usr/bin/addr2line /usr/bin/afm2tfm /usr/bin/afmtodit /usr/bin/allcm /usr/bin/allec /usr/bin/allneeded /usr/bin/amstex /usr/bin/analog /usr/bin/anytopnm /usr/bin/apm_available /usr/bin/appletproxy /usr/bin/apropos /usr/bin/apt-cache /usr/bin/apt-cdrom /usr/bin/apt-config /usr/bin/apt-extracttemplates /usr/bin/apt-ftparchive /usr/bin/apt-get /usr/bin/apt-sortpkgs /usr/bin/ar /usr/bin/ar86 /usr/bin/archer /usr/bin/ark /usr/bin/arrow /usr/bin/artscat /usr/bin/artsc-config /usr/bin/artsd /usr/bin/artsdsp /usr/bin/artsmessage /usr/bin/artsplay /usr/bin/artsrec /usr/bin/artsshell /usr/bin/artswrapper /usr/bin/as /usr/bin/as86 /usr/bin/asciitopgm /usr/bin/aserver /usr/bin/aspell /usr/bin/aspell-import /usr/bin/at /usr/bin/atktopbm /usr/bin/atq /usr/bin/atrm /usr/bin/audiofile-config /usr/bin/autoconf /usr/bin/autoconf2.13 /usr/bin/autoconf2.50 /usr/bin/autoconf-wrapper /usr/bin/autoheader /usr/bin/autoheader2.13 /usr/bin/autoheader2.50 /usr/bin/autom4te /usr/bin/automake /usr/bin/autopoint /usr/bin/autoproject /usr/bin/autoreconf /usr/bin/autoreconf2.13 /usr/bin/autoreconf2.50 /usr/bin/autoscan /usr/bin/autoscan2.13 /usr/bin/autoupdate /usr/bin/autoupdate2.13 /usr/bin/aviplay /usr/bin/awk /usr/bin/b2m /usr/bin/b2m.emacs20 /usr/bin/basename /usr/bin/bashbug /usr/bin/batch /usr/bin/bc /usr/bin/bdftops /usr/bin/berkeley_db3_svc /usr/bin/bibindex /usr/bin/biblook /usr/bin/bibtex /usr/bin/bibtool /usr/bin/biff /usr/bin/binstats /usr/bin/bioradtopgm /usr/bin/bison /usr/bin/bison.yacc /usr/bin/bitchx /usr/bin/BitchX /usr/bin/bmptoppm /usr/bin/bonobo-activation-empty-server /usr/bin/bonobo-activation-run-query /usr/bin/bonobo-application-x-mines /usr/bin/bonobo-audio-ulaw /usr/bin/bonobo-moniker-gunzip /usr/bin/bonobo-moniker-http /usr/bin/bonobo-selector /usr/bin/bonobo-slay /usr/bin/bonobo-text-plain /usr/bin/brushtopbm /usr/bin/bts /usr/bin/build /usr/bin/buildhash /usr/bin/bunzip2 /usr/bin/bzcat /usr/bin/bzcmp /usr/bin/bzdiff /usr/bin/bzegrep /usr/bin/bzfgrep /usr/bin/bzgrep /usr/bin/bzip2 /usr/bin/bzip2recover /usr/bin/bzless /usr/bin/bzmore /usr/bin/c++ /usr/bin/c2man /usr/bin/c2ph /usr/bin/c89 /usr/bin/cal /usr/bin/calendar /usr/bin/camlidl /usr/bin/camlp4 /usr/bin/camlp4o /usr/bin/camlp4o.opt /usr/bin/camlp4r /usr/bin/camlp4r.opt /usr/bin/cam-mktop /usr/bin/captoinfo /usr/bin/castellanizar /usr/bin/catalogmanager /usr/bin/catchsegv /usr/bin/catman /usr/bin/cc /usr/bin/ccmtcnvt /usr/bin/CDDBSlave2 /usr/bin/cddb-slave2-properties /usr/bin/cddb-track-editor /usr/bin/cdecl /usr/bin/c++filt /usr/bin/cflow /usr/bin/chage /usr/bin/charset /usr/bin/chattr /usr/bin/checkbash /usr/bin/checkXML /usr/bin/chfn /usr/bin/chilight /usr/bin/chkdupexe /usr/bin/chktri /usr/bin/chsh /usr/bin/chvt /usr/bin/ci /usr/bin/cjpeg /usr/bin/cksum /usr/bin/clear /usr/bin/cmp /usr/bin/cmuwmtopbm /usr/bin/co /usr/bin/cobfusc /usr/bin/codepage /usr/bin/col /usr/bin/colcrt /usr/bin/collateindex.pl /usr/bin/colrm /usr/bin/column /usr/bin/comm /usr/bin/compose /usr/bin/configurewrapper /usr/bin/consolechars /usr/bin/convert-metadata.db /usr/bin/cpan /usr/bin/cpif /usr/bin/cpp /usr/bin/cpp-2.95 /usr/bin/cpp-3.0 /usr/bin/cpp-3.2 /usr/bin/cpp-3.3 /usr/bin/crontab /usr/bin/crossbow /usr/bin/csplit /usr/bin/cstr /usr/bin/ctags /usr/bin/ctags.emacs20 /usr/bin/ctangle /usr/bin/cundecl /usr/bin/cunloop /usr/bin/cups-config /usr/bin/cupsdconf /usr/bin/cupsdoprint /usr/bin/cut /usr/bin/cvs /usr/bin/cweave /usr/bin/cxref /usr/bin/cxref-cc /usr/bin/cxref-query /usr/bin/db3_archive /usr/bin/db3_checkpoint /usr/bin/db3_deadlock /usr/bin/db3_dump /usr/bin/db3_dump185 /usr/bin/db3_load /usr/bin/db3_printlog /usr/bin/db3_recover /usr/bin/db3_stat /usr/bin/db3_upgrade /usr/bin/db3_verify /usr/bin/db_archive /usr/bin/db_checkpoint /usr/bin/db_deadlock /usr/bin/db_dump /usr/bin/db_dump185 /usr/bin/dbforge /usr/bin/dbforge.gui /usr/bin/db_load /usr/bin/db_printlog /usr/bin/db_recover /usr/bin/db_stat /usr/bin/dc /usr/bin/dch /usr/bin/dcop /usr/bin/dcopclient /usr/bin/dcopfind /usr/bin/dcopidl /usr/bin/dcopidl2cpp /usr/bin/dcopobject /usr/bin/dcopref /usr/bin/dcopserver /usr/bin/dcopserver_shutdown /usr/bin/dcopstart /usr/bin/ddate /usr/bin/ddd /usr/bin/deallocvt /usr/bin/debc /usr/bin/debchange /usr/bin/debclean /usr/bin/debconf /usr/bin/debconf2pot /usr/bin/debconf2po-update /usr/bin/debconf-communicate /usr/bin/debconf-copydb /usr/bin/debconf-getlang /usr/bin/debconf-gettextize /usr/bin/debconf-loadtemplate /usr/bin/debconf-mergetemplate /usr/bin/debconf-show /usr/bin/debconf-updatepo /usr/bin/debdiff /usr/bin/debi /usr/bin/debiandoc2dvi /usr/bin/debiandoc2html /usr/bin/debiandoc2info /usr/bin/debiandoc2latex /usr/bin/debiandoc2latexdvi /usr/bin/debiandoc2latexpdf /usr/bin/debiandoc2latexps /usr/bin/debiandoc2pdf /usr/bin/debiandoc2ps /usr/bin/debiandoc2texinfo /usr/bin/debiandoc2text /usr/bin/debiandoc2textov /usr/bin/debian-gnome-upgrade-check /usr/bin/debit /usr/bin/deb-make /usr/bin/deborphan /usr/bin/debpkg /usr/bin/debrelease /usr/bin/debrsign /usr/bin/debsign /usr/bin/debstd /usr/bin/debuild /usr/bin/defoma /usr/bin/defoma-app /usr/bin/defoma-font /usr/bin/defoma-hints /usr/bin/defoma-id /usr/bin/defoma-psfont-installer /usr/bin/defoma-reconfigure /usr/bin/defoma-subst /usr/bin/defoma-user /usr/bin/devdump /usr/bin/dexconf /usr/bin/dh_builddeb /usr/bin/dh_clean /usr/bin/dh_compress /usr/bin/dh_fixperms /usr/bin/dh_gencontrol /usr/bin/dh_install /usr/bin/dh_installcatalogs /usr/bin/dh_installchangelogs /usr/bin/dh_installcron /usr/bin/dh_installdeb /usr/bin/dh_installdebconf /usr/bin/dh_installdefoma /usr/bin/dh_installdirs /usr/bin/dh_installdocs /usr/bin/dh_installemacsen /usr/bin/dh_installexamples /usr/bin/dh_installinfo /usr/bin/dh_installinit /usr/bin/dh_installlogrotate /usr/bin/dh_installman /usr/bin/dh_installmanpages /usr/bin/dh_installmenu /usr/bin/dh_installmime /usr/bin/dh_installmodules /usr/bin/dh_installpam /usr/bin/dh_installwm /usr/bin/dh_installxfonts /usr/bin/dh_link /usr/bin/dh_listpackages /usr/bin/dh_make /usr/bin/dh_makeshlibs /usr/bin/dh_md5sums /usr/bin/dh_movefiles /usr/bin/dh_ocamlld /usr/bin/dh_perl /usr/bin/dh_python /usr/bin/dh_shlibdeps /usr/bin/dh_strip /usr/bin/dh_suidregister /usr/bin/dh_testdir /usr/bin/dh_testroot /usr/bin/dh_testversion /usr/bin/dh_undocumented /usr/bin/dialog /usr/bin/diff /usr/bin/diff3 /usr/bin/diffpp /usr/bin/diffstat /usr/bin/dig /usr/bin/dircolors /usr/bin/dirname /usr/bin/diskd /usr/bin/diskseekd /usr/bin/djpeg /usr/bin/dmp /usr/bin/dnet-config /usr/bin/dns-helper /usr/bin/docbook-to-man /usr/bin/dotlockfile /usr/bin/dpkg /usr/bin/dpkg2folder /usr/bin/dpkg-architecture /usr/bin/dpkg-awk /usr/bin/dpkg-break /usr/bin/dpkg-buildpackage /usr/bin/dpkg-checkbuilddeps /usr/bin/dpkg-deb /usr/bin/dpkg-depcheck /usr/bin/dpkg-distaddfile /usr/bin/dpkg-genbuilddeps /usr/bin/dpkg-genchanges /usr/bin/dpkg-gencontrol /usr/bin/dpkg-iaquery /usr/bin/dpkg-make-index /usr/bin/dpkg-name /usr/bin/dpkg-parsechangelog /usr/bin/dpkg-query /usr/bin/dpkg-scanpackages /usr/bin/dpkg-scansources /usr/bin/dpkg-shlibdeps /usr/bin/dpkg-source /usr/bin/dpkg-split /usr/bin/dprofpp /usr/bin/drkonqi /usr/bin/dscverify /usr/bin/dselect /usr/bin/dsirc /usr/bin/du /usr/bin/dumbnet-config /usr/bin/dumpkeys /usr/bin/dupload /usr/bin/dvi2fax /usr/bin/dvicopy /usr/bin/dvidvi /usr/bin/dvihp /usr/bin/dvilj /usr/bin/dvilj2p /usr/bin/dvilj4 /usr/bin/dvilj4l /usr/bin/dvilj6 /usr/bin/dvipdf /usr/bin/dvipdfm /usr/bin/dvipdft /usr/bin/dvips /usr/bin/dvired /usr/bin/dvitomp /usr/bin/dvitype /usr/bin/e2pall /usr/bin/ebb /usr/bin/edit /usr/bin/editor /usr/bin/efstool /usr/bin/einitex /usr/bin/eject /usr/bin/elatex /usr/bin/emacs /usr/bin/emacs20 /usr/bin/emacs-20.7 /usr/bin/emacsclient /usr/bin/emacsclient.emacs20 /usr/bin/enc2xs /usr/bin/enscript /usr/bin/entrigraph /usr/bin/env /usr/bin/eog /usr/bin/eog-image-viewer /usr/bin/epeire /usr/bin/eperl /usr/bin/eps2eps /usr/bin/epsffit /usr/bin/epstopdf /usr/bin/eqn /usr/bin/eqn2graph /usr/bin/esd /usr/bin/esd-config /usr/bin/etags /usr/bin/etags.emacs20 /usr/bin/etex /usr/bin/eview /usr/bin/evim /usr/bin/evirtex /usr/bin/ex /usr/bin/expand /usr/bin/expiry /usr/bin/expr /usr/bin/extensionproxy /usr/bin/extractres /usr/bin/eyuvtoppm /usr/bin/factor /usr/bin/faillog /usr/bin/faked /usr/bin/fakeroot /usr/bin/fc-cache /usr/bin/fc-list /usr/bin/fdf2tan /usr/bin/fdformat /usr/bin/fdlist /usr/bin/fdmount /usr/bin/fdmountd /usr/bin/fdrawcmd /usr/bin/fdumount /usr/bin/fgconsole /usr/bin/fiascotopnm /usr/bin/fig2dev /usr/bin/fig2ps2tex /usr/bin/filan /usr/bin/file /usr/bin/file-roller /usr/bin/filesharelist /usr/bin/fileshareset /usr/bin/find /usr/bin/find2perl /usr/bin/findaffix /usr/bin/finger /usr/bin/fitstopnm /usr/bin/fix_bs_and_del /usr/bin/fixdlsrps /usr/bin/fixfmps /usr/bin/fixincludes /usr/bin/fixmacps /usr/bin/fixpsditps /usr/bin/fixpspps /usr/bin/fixscribeps /usr/bin/fixtpps /usr/bin/fixwfwps /usr/bin/fixwpps /usr/bin/fixwwps /usr/bin/flea /usr/bin/flex /usr/bin/floppycontrol /usr/bin/floppymeter /usr/bin/fmt /usr/bin/fmtutil /usr/bin/fold /usr/bin/font2c /usr/bin/font2psf /usr/bin/fontexport /usr/bin/fontimport /usr/bin/fontinst /usr/bin/formail /usr/bin/fort /usr/bin/free /usr/bin/freetype-config /usr/bin/fribidi /usr/bin/from /usr/bin/fstopgm /usr/bin/ftp /usr/bin/ftpcount /usr/bin/ftptop /usr/bin/ftpwho /usr/bin/funzip /usr/bin/g++ /usr/bin/g++-2.95 /usr/bin/g++-3.2 /usr/bin/g3topbm /usr/bin/gaim /usr/bin/gaim-remote /usr/bin/gawk /usr/bin/gcc /usr/bin/gcc-2.95 /usr/bin/gcc-3.0 /usr/bin/gcc-3.2 /usr/bin/gcc-3.3 /usr/bin/gccbug /usr/bin/gccbug-3.0 /usr/bin/gccbug-3.2 /usr/bin/gccbug-3.3 /usr/bin/gconfd-1 /usr/bin/gconfigger /usr/bin/gconf-sanity-check-1 /usr/bin/gconftool /usr/bin/gconftool-1 /usr/bin/gconftool-2 /usr/bin/gcov /usr/bin/gcov-2.95 /usr/bin/gcov-3.0 /usr/bin/gcov-3.2 /usr/bin/gcov-3.3 /usr/bin/gdb /usr/bin/gdbserver /usr/bin/gdialog /usr/bin/gdk-pixbuf-query-loaders /usr/bin/gdm /usr/bin/gdmchooser /usr/bin/gdmflexiserver /usr/bin/gdmgreeter /usr/bin/gdmlogin /usr/bin/gdmmktemp /usr/bin/gdmphotosetup /usr/bin/gdmsetup /usr/bin/gdmthemetester /usr/bin/gdmXnest /usr/bin/gdmXnestchooser /usr/bin/gemtopbm /usr/bin/gemtopnm /usr/bin/gencat /usr/bin/gendiff /usr/bin/gendoc /usr/bin/genksyms /usr/bin/geqn /usr/bin/GET /usr/bin/getafm /usr/bin/getconf /usr/bin/get-edid /usr/bin/getent /usr/bin/getfdprm /usr/bin/gethostip /usr/bin/getkeycodes /usr/bin/getopt /usr/bin/gettext /usr/bin/gettextize /usr/bin/gfloppy /usr/bin/gfplus /usr/bin/gfserver /usr/bin/gftodvi /usr/bin/gftopk /usr/bin/gftype /usr/bin/giftopnm /usr/bin/gimp /usr/bin/gimp-1.2 /usr/bin/gimp-remote /usr/bin/gimp-remote-1.2 /usr/bin/gkb_xmmap /usr/bin/glade /usr/bin/glibcbug /usr/bin/glib-config /usr/bin/glib-genmarshal /usr/bin/glib-gettextize /usr/bin/glib-mkenums /usr/bin/gman /usr/bin/gmc /usr/bin/gmc-client /usr/bin/gnome-accessibility-keyboard-properties /usr/bin/gnome-background-properties /usr/bin/gnome-bug /usr/bin/gnome-calculator /usr/bin/gnome-cd /usr/bin/gnome-character-map /usr/bin/gnome-config /usr/bin/gnome-control-center /usr/bin/gnome-db2html /usr/bin/gnome-default-applications-properties /usr/bin/gnome-desktop-item-edit /usr/bin/gnome-dictionary /usr/bin/gnome-doc /usr/bin/gnome-dump-metadata /usr/bin/gnome-file-types-properties /usr/bin/gnome-font-install /usr/bin/gnome-font-properties /usr/bin/gnome-gen-mimedb /usr/bin/gnome-help /usr/bin/gnome-keybinding-properties /usr/bin/gnome-keyboard-properties /usr/bin/gnome-mkstub /usr/bin/gnome-mouse-properties /usr/bin/gnome-moz-remote /usr/bin/gnome-name-service /usr/bin/gnome-network-preferences /usr/bin/gnome-panel /usr/bin/gnome-panel-preferences /usr/bin/gnome-panel-screenshot /usr/bin/gnome-search-tool /usr/bin/gnome_segv /usr/bin/gnome-session /usr/bin/gnome-session-properties /usr/bin/gnome-session-save /usr/bin/gnome-settings-daemon /usr/bin/gnome-smproxy /usr/bin/gnome-sound-properties /usr/bin/gnome-sound-recorder /usr/bin/gnome-sudo /usr/bin/gnome-system-log /usr/bin/gnome-system-monitor /usr/bin/gnome-terminal /usr/bin/gnome-terminal.wrapper /usr/bin/gnome-theme-manager /usr/bin/gnome-ui-properties /usr/bin/gnome-volume-control /usr/bin/gnome-window-properties /usr/bin/gnome-wm /usr/bin/gnosamba /usr/bin/gnutls-cli /usr/bin/gnutls-cli-debug /usr/bin/gnutls-serv /usr/bin/gnutls-srpcrypt /usr/bin/goad-browser /usr/bin/gobject-query /usr/bin/gouldtoppm /usr/bin/gpasswd /usr/bin/gpg /usr/bin/gpg-convert-from-106 /usr/bin/gpgsplit /usr/bin/gpgv /usr/bin/gpic /usr/bin/gprof /usr/bin/grep-excuses /usr/bin/grn /usr/bin/grodvi /usr/bin/groff /usr/bin/groffer /usr/bin/grog /usr/bin/grolbp /usr/bin/grolj4 /usr/bin/grops /usr/bin/grotty /usr/bin/groups /usr/bin/gs /usr/bin/gsftopk /usr/bin/gs-gnu /usr/bin/gshell /usr/bin/gst-complete /usr/bin/gst-compprep /usr/bin/gst-feedback /usr/bin/gst-inspect /usr/bin/gst-launch /usr/bin/gst-launch-ext /usr/bin/gst-md5sum /usr/bin/gstreamer-properties /usr/bin/gst-register /usr/bin/gst-visualise /usr/bin/gst-xmllaunch /usr/bin/gtbl /usr/bin/gtk-config /usr/bin/gtk-query-immodules-2.0 /usr/bin/gview /usr/bin/gvim /usr/bin/gvimdiff /usr/bin/h2ph /usr/bin/h2xs /usr/bin/hd /usr/bin/head /usr/bin/HEAD /usr/bin/help2man /usr/bin/hexdump /usr/bin/hipstopgm /usr/bin/host /usr/bin/hostid /usr/bin/hpcdtoppm /usr/bin/hpftodit /usr/bin/html2text /usr/bin/htmltoc /usr/bin/hyperlatex /usr/bin/icombine /usr/bin/icontopbm /usr/bin/iconv /usr/bin/iconx /usr/bin/id /usr/bin/ident /usr/bin/ifnames /usr/bin/ifnames2.13 /usr/bin/igawk /usr/bin/ijoin /usr/bin/ilbmtoppm /usr/bin/imagetops /usr/bin/imgsize /usr/bin/imgtoppm /usr/bin/imlib-config /usr/bin/includeres /usr/bin/indent /usr/bin/indxbib /usr/bin/info /usr/bin/infobrowser /usr/bin/infocmp /usr/bin/infokey /usr/bin/infotocap /usr/bin/inimf /usr/bin/inimpost /usr/bin/iniomega /usr/bin/initex /usr/bin/install /usr/bin/instant /usr/bin/ipcrm /usr/bin/ipcs /usr/bin/irc /usr/bin/ircII /usr/bin/iselect /usr/bin/isodump /usr/bin/isoinfo /usr/bin/isovfy /usr/bin/ispell /usr/bin/ispell-wrapper /usr/bin/itclsh /usr/bin/itclsh3.1 /usr/bin/itkwish /usr/bin/itkwish3.1 /usr/bin/jade /usr/bin/jbigtopnm /usr/bin/jmacs /usr/bin/joe /usr/bin/join /usr/bin/jpegtopnm /usr/bin/jpegtran /usr/bin/jpico /usr/bin/jstar /usr/bin/kab2kabc /usr/bin/kaccess /usr/bin/kaddprinterwizard /usr/bin/kappfinder /usr/bin/karbon /usr/bin/karm /usr/bin/kate /usr/bin/kbabel /usr/bin/kbabeldict /usr/bin/kbanner.kss /usr/bin/kbdconfig /usr/bin/kbd_mode /usr/bin/kblankscrn.kss /usr/bin/kblob.kss /usr/bin/kbouboule.kss /usr/bin/kbuildsycoca /usr/bin/kcalc /usr/bin/kcharselect /usr/bin/kchart /usr/bin/kcheckpass /usr/bin/kcminit /usr/bin/kcmshell /usr/bin/kcolorchooser /usr/bin/kcoloredit /usr/bin/kconf_update /usr/bin/kcontrol /usr/bin/kcookiejar /usr/bin/kcron /usr/bin/kdb2html /usr/bin/kdcop /usr/bin/kde3 /usr/bin/kdebugdialog /usr/bin/kde-config /usr/bin/kded /usr/bin/kdeeject /usr/bin/kdeinit /usr/bin/kdeinit_shutdown /usr/bin/kdeinit_wrapper /usr/bin/kdepasswd /usr/bin/kdeprintfax /usr/bin/kdesktop /usr/bin/kdesktop_lock /usr/bin/kdesu /usr/bin/kdesud /usr/bin/kdesu_stub /usr/bin/kde-update-menu /usr/bin/kdf /usr/bin/kdialog /usr/bin/kdict /usr/bin/kdoc /usr/bin/kdontchangethehostname /usr/bin/kedit /usr/bin/keditbookmarks /usr/bin/keditfiletype /usr/bin/keuphoria.kss /usr/bin/kfile /usr/bin/kfind /usr/bin/kflux.kss /usr/bin/kfmclient /usr/bin/kfmexec /usr/bin/kformula /usr/bin/kfountain.kss /usr/bin/kghostview /usr/bin/kgravity.kss /usr/bin/khelpcenter /usr/bin/khexedit /usr/bin/khotkeys /usr/bin/kicker /usr/bin/kiconedit /usr/bin/killall /usr/bin/kill_mldonkey /usr/bin/kimage_concat /usr/bin/kinfocenter /usr/bin/kinstalltheme /usr/bin/kio_devices_mounthelper /usr/bin/kio_http_cache_cleaner /usr/bin/kioslave /usr/bin/kio_uiserver /usr/bin/kit /usr/bin/kivio /usr/bin/kjobviewer /usr/bin/kjots /usr/bin/klauncher /usr/bin/klines.kss /usr/bin/klipper /usr/bin/klocaldomainurifilterhelper /usr/bin/klorenz.kss /usr/bin/kmail /usr/bin/kmailservice /usr/bin/kmatrix.kss /usr/bin/kmenuedit /usr/bin/kmorph3d.kss /usr/bin/knewstickerstub /usr/bin/knode /usr/bin/knotes /usr/bin/knotify /usr/bin/koconverter /usr/bin/konqueror /usr/bin/konsole /usr/bin/konsole_grantpty /usr/bin/kontour /usr/bin/korn /usr/bin/koscript /usr/bin/koshell /usr/bin/kpac_dhcp_helper /usr/bin/kpackage /usr/bin/kpager /usr/bin/kpaint /usr/bin/kpartsaver.kss /usr/bin/kpersonalizer /usr/bin/kpipes.kss /usr/bin/kpm /usr/bin/kpolygon.kss /usr/bin/kprconverter.pl /usr/bin/kpresenter /usr/bin/kprinter /usr/bin/kpsepath /usr/bin/kpsestat /usr/bin/kpsetool /usr/bin/kpsewhich /usr/bin/kpsexpand /usr/bin/kpyro.kss /usr/bin/krandom.kss /usr/bin/krdb /usr/bin/kreadconfig /usr/bin/krock.kss /usr/bin/kruler /usr/bin/kscience.kss /usr/bin/ksendbugmail /usr/bin/kshell /usr/bin/ksirc /usr/bin/kslidescreen.kss /usr/bin/kslideshow.kss /usr/bin/ksmserver /usr/bin/ksnapshot /usr/bin/ksolarwinds.kss /usr/bin/kspace.kss /usr/bin/ksplash /usr/bin/kspread /usr/bin/kstart /usr/bin/ksvgtopng /usr/bin/kswarm.kss /usr/bin/ksysguard /usr/bin/ksysguardd /usr/bin/ksystraycmd /usr/bin/ksysv /usr/bin/ktelnetservice /usr/bin/kthesaurus /usr/bin/ktimer /usr/bin/ktip /usr/bin/kudesigner /usr/bin/kugar /usr/bin/kuser /usr/bin/kview /usr/bin/kvm.kss /usr/bin/kwave.kss /usr/bin/kwebdesktop /usr/bin/kwikdisk /usr/bin/kwin /usr/bin/kwmtheme /usr/bin/kword /usr/bin/kwrapper /usr/bin/kwrite /usr/bin/kwrited /usr/bin/kxkb /usr/bin/kxsconfig /usr/bin/kxsrun /usr/bin/lablgl /usr/bin/labltk /usr/bin/lacheck /usr/bin/lambda /usr/bin/last /usr/bin/lastb /usr/bin/lastlog /usr/bin/latex /usr/bin/latex2html /usr/bin/lcf /usr/bin/ld /usr/bin/ld86 /usr/bin/ldd /usr/bin/lddlibc4 /usr/bin/leaftoppm /usr/bin/less /usr/bin/lessecho /usr/bin/lessfile /usr/bin/lesskey /usr/bin/lesspipe /usr/bin/lex /usr/bin/lexgrog /usr/bin/libart2-config /usr/bin/libart-config /usr/bin/libgcrypt-config /usr/bin/libglade-config /usr/bin/libglade-convert /usr/bin/libglade-xgettext /usr/bin/libgnutls-config /usr/bin/libgnutls-extra-config /usr/bin/libIDL-config /usr/bin/libnetcfg /usr/bin/libpng12-config /usr/bin/libpng-config /usr/bin/libtool /usr/bin/libtoolize /usr/bin/linc-cleanup-sockets /usr/bin/linda /usr/bin/link /usr/bin/links /usr/bin/links.main /usr/bin/lintian /usr/bin/lintian-info /usr/bin/linux_logo /usr/bin/lispmtopgm /usr/bin/lkbib /usr/bin/lnusertemp /usr/bin/loadshlib /usr/bin/locale /usr/bin/localedef /usr/bin/locate /usr/bin/lockfile /usr/bin/lockfile-create /usr/bin/lockfile-remove /usr/bin/lockfile-touch /usr/bin/logger /usr/bin/logname /usr/bin/look /usr/bin/lookbib /usr/bin/lorder /usr/bin/lpq /usr/bin/lpr /usr/bin/lprm /usr/bin/lptest /usr/bin/lrelease /usr/bin/lsattr /usr/bin/lsof /usr/bin/lspgpot /usr/bin/lss16toppm /usr/bin/ltrace /usr/bin/lupdate /usr/bin/lwp-download /usr/bin/lwp-mirror /usr/bin/lwp-request /usr/bin/lwp-rget /usr/bin/lynx /usr/bin/lz /usr/bin/m4 /usr/bin/macptopbm /usr/bin/mad /usr/bin/mag /usr/bin/magic2mime /usr/bin/mail /usr/bin/Mail /usr/bin/mail-files /usr/bin/mail-lock /usr/bin/mailq /usr/bin/mailshar /usr/bin/mailstat /usr/bin/mail-touchlock /usr/bin/mail-unlock /usr/bin/mailx /usr/bin/make /usr/bin/make_driver_db_cups /usr/bin/make_driver_db_lpr /usr/bin/makeindex /usr/bin/makeinfo /usr/bin/makekdedoc /usr/bin/makempx /usr/bin/makempy /usr/bin/makepasswd /usr/bin/MakeTeXPK /usr/bin/man /usr/bin/mandb /usr/bin/manpath /usr/bin/mattrib /usr/bin/mawk /usr/bin/mbadblocks /usr/bin/mcat /usr/bin/mcd /usr/bin/mcheck /usr/bin/mcomp /usr/bin/mcookie /usr/bin/mcopidl /usr/bin/mcopy /usr/bin/mcp /usr/bin/md5sum /usr/bin/md5sum.textutils /usr/bin/mdatopbm /usr/bin/mdel /usr/bin/mdeltree /usr/bin/mdetect /usr/bin/mdir /usr/bin/mdu /usr/bin/meinproc /usr/bin/merge /usr/bin/mergechanges /usr/bin/mesg /usr/bin/mf /usr/bin/mf-nowin /usr/bin/mformat /usr/bin/mft /usr/bin/mfw /usr/bin/mgrtopbm /usr/bin/mib2c /usr/bin/minfo /usr/bin/mkafmmap /usr/bin/mkcamlp4 /usr/bin/mkfifo /usr/bin/mkfontdesc /usr/bin/mkhybrid /usr/bin/mkindex /usr/bin/mkisofs /usr/bin/mkmanifest /usr/bin/mk_modmap /usr/bin/mkocp /usr/bin/mkofm /usr/bin/mkpasswd /usr/bin/mktexfmt /usr/bin/mktexlsr /usr/bin/mktexmf /usr/bin/mktexpk /usr/bin/mktextfm /usr/bin/mkzftree /usr/bin/mlabel /usr/bin/mlchat /usr/bin/mlchat_say /usr/bin/mldonkey /usr/bin/mldonkey_gui /usr/bin/mldonkey_gui2 /usr/bin/mldonkey_previewer /usr/bin/mldonkey_submit /usr/bin/mln /usr/bin/mmd /usr/bin/mmount /usr/bin/mmove /usr/bin/mmroff /usr/bin/mmv /usr/bin/moc /usr/bin/moc-qt2 /usr/bin/moc-qt3 /usr/bin/moniker-test /usr/bin/mozilla /usr/bin/mozilla-1.3 /usr/bin/mp4h /usr/bin/mpack /usr/bin/mpage /usr/bin/mpartition /usr/bin/mpost /usr/bin/mpto /usr/bin/mptopdf /usr/bin/mrd /usr/bin/mren /usr/bin/msgattrib /usr/bin/msgcat /usr/bin/msgcmp /usr/bin/msgcomm /usr/bin/msgconv /usr/bin/msgen /usr/bin/msgexec /usr/bin/msgfilter /usr/bin/msgfmt /usr/bin/msggrep /usr/bin/msginit /usr/bin/msgmerge /usr/bin/msgunfmt /usr/bin/msguniq /usr/bin/mshowfat /usr/bin/mtools /usr/bin/mtoolstest /usr/bin/mtr /usr/bin/mtrace /usr/bin/mtvtoppm /usr/bin/mtype /usr/bin/munchlist /usr/bin/munpack /usr/bin/mutt /usr/bin/muttbug /usr/bin/mutt_dotlock /usr/bin/mxtar /usr/bin/mzip /usr/bin/namei /usr/bin/nano /usr/bin/nautilus /usr/bin/nautilus-file-management-properties /usr/bin/nautilus-server-connect /usr/bin/nawk /usr/bin/ncal /usr/bin/neotoppm /usr/bin/neqn /usr/bin/net /usr/bin/netkit-ftp /usr/bin/net-snmp-config /usr/bin/newaliases /usr/bin/newer /usr/bin/newgrp /usr/bin/new-object /usr/bin/nex /usr/bin/ngettext /usr/bin/nice /usr/bin/nl /usr/bin/nm /usr/bin/nm86 /usr/bin/nmap /usr/bin/nmblookup /usr/bin/nodefs /usr/bin/nohup /usr/bin/noindex /usr/bin/noroff /usr/bin/noroots /usr/bin/notangle /usr/bin/nountangle /usr/bin/noweave /usr/bin/noweb /usr/bin/nroff /usr/bin/nsgmls /usr/bin/nslookup /usr/bin/nspluginscan /usr/bin/nspluginviewer /usr/bin/nsupdate /usr/bin/nuweb2noweb /usr/bin/nvi /usr/bin/nview /usr/bin/oaf-client /usr/bin/oafd /usr/bin/oaf-empty-server /usr/bin/oaf-run-query /usr/bin/oaf-slay /usr/bin/oaf-sysconf /usr/bin/objcopy /usr/bin/objdump /usr/bin/objdump86 /usr/bin/objinfo /usr/bin/ocaml /usr/bin/ocamlbrowser /usr/bin/ocamlc /usr/bin/ocamlc.opt /usr/bin/ocamlcp /usr/bin/ocamlcvs /usr/bin/ocamldebug /usr/bin/ocamldep /usr/bin/ocamldoc /usr/bin/ocamldoc.opt /usr/bin/ocamldot /usr/bin/ocamlfind /usr/bin/ocaml-ldconf /usr/bin/ocamllex /usr/bin/ocamllex.opt /usr/bin/ocamlmklib /usr/bin/ocamlmktop /usr/bin/ocamlopt /usr/bin/ocamlopt.opt /usr/bin/ocamlprof /usr/bin/ocamlrun /usr/bin/ocamltags /usr/bin/ocamlweb /usr/bin/ocamlyacc /usr/bin/ocpp /usr/bin/od /usr/bin/odvicopy /usr/bin/odvips /usr/bin/odvitype /usr/bin/ofm2opl /usr/bin/omega /usr/bin/omfonts /usr/bin/omom-edit /usr/bin/omom-gen /usr/bin/on_ac_power /usr/bin/open /usr/bin/opencdk-config /usr/bin/openvt /usr/bin/opl2ofm /usr/bin/orbit-config /usr/bin/orbit-idl /usr/bin/otangle /usr/bin/otp2ocp /usr/bin/outocp /usr/bin/over /usr/bin/ovf2ovp /usr/bin/ovp2ovf /usr/bin/oxdvi /usr/bin/oxdvi.bin /usr/bin/oxdvi.real /usr/bin/pager /usr/bin/palmtopnm /usr/bin/pamcut /usr/bin/pamfile /usr/bin/pamoil /usr/bin/panel-test-applets /usr/bin/pango-querymodules /usr/bin/paperconf /usr/bin/parse-edid /usr/bin/passwd /usr/bin/paste /usr/bin/patch /usr/bin/patgen /usr/bin/pathchk /usr/bin/pbmclean /usr/bin/pbmlife /usr/bin/pbmmake /usr/bin/pbmmask /usr/bin/pbmpage /usr/bin/pbmpscale /usr/bin/pbmreduce /usr/bin/pbmtext /usr/bin/pbmto10x /usr/bin/pbmtoascii /usr/bin/pbmtoatk /usr/bin/pbmtobbnbg /usr/bin/pbmtocmuwm /usr/bin/pbmtoepsi /usr/bin/pbmtoepson /usr/bin/pbmtog3 /usr/bin/pbmtogem /usr/bin/pbmtogo /usr/bin/pbmtoicon /usr/bin/pbmtolj /usr/bin/pbmtomacp /usr/bin/pbmtomda /usr/bin/pbmtomgr /usr/bin/pbmtonokia /usr/bin/pbmtopgm /usr/bin/pbmtopi3 /usr/bin/pbmtoplot /usr/bin/pbmtoppa /usr/bin/pbmtopsg3 /usr/bin/pbmtoptx /usr/bin/pbmtowbmp /usr/bin/pbmtox10bm /usr/bin/pbmtoxbm /usr/bin/pbmtoybm /usr/bin/pbmtozinc /usr/bin/pbmupc /usr/bin/pcdindex /usr/bin/pcre-config /usr/bin/pcretest /usr/bin/pcxtoppm /usr/bin/pdbedit /usr/bin/pdf2dsc /usr/bin/pdf2ps /usr/bin/pdfeinitex /usr/bin/pdfelatex /usr/bin/pdfetex /usr/bin/pdfevirtex /usr/bin/pdffonts /usr/bin/pdfimages /usr/bin/pdfinfo /usr/bin/pdfinitex /usr/bin/pdflatex /usr/bin/pdfopt /usr/bin/pdftex /usr/bin/pdftopbm /usr/bin/pdftops /usr/bin/pdftosrc /usr/bin/pdftotext /usr/bin/pdfvirtex /usr/bin/perl /usr/bin/perl5.8.0 /usr/bin/perlbug /usr/bin/perlcc /usr/bin/perldoc /usr/bin/perldoc.stub /usr/bin/perlivp /usr/bin/pf2afm /usr/bin/pfb2pfa /usr/bin/pfbtops /usr/bin/pftp /usr/bin/pgawk /usr/bin/pgmbentley /usr/bin/pgmcrater /usr/bin/pgmedge /usr/bin/pgmenhance /usr/bin/pgmhist /usr/bin/pgmkernel /usr/bin/pgmnoise /usr/bin/pgmnorm /usr/bin/pgmoil /usr/bin/pgmramp /usr/bin/pgmslice /usr/bin/pgmtexture /usr/bin/pgmtofs /usr/bin/pgmtolispm /usr/bin/pgmtopbm /usr/bin/pgmtoppm /usr/bin/pgp /usr/bin/pgp5 /usr/bin/pgpe /usr/bin/pgpk /usr/bin/pgps /usr/bin/pgpv /usr/bin/pgrep /usr/bin/pi1toppm /usr/bin/pi3topbm /usr/bin/pic /usr/bin/pic2graph /usr/bin/pic2tpic /usr/bin/piconv /usr/bin/pinky /usr/bin/pjtoppm /usr/bin/pk2bm /usr/bin/pkg-config /usr/bin/pkill /usr/bin/pktogf /usr/bin/pktype /usr/bin/pl2pm /usr/bin/plain-gmc /usr/bin/plog /usr/bin/plotchangelog /usr/bin/pltotf /usr/bin/pmap /usr/bin/pngtopnm /usr/bin/pnmalias /usr/bin/pnmarith /usr/bin/pnmcat /usr/bin/pnmcomp /usr/bin/pnmconvol /usr/bin/pnmcrop /usr/bin/pnmcut /usr/bin/pnmdepth /usr/bin/pnmenlarge /usr/bin/pnmfile /usr/bin/pnmflip /usr/bin/pnmgamma /usr/bin/pnmhisteq /usr/bin/pnmhistmap /usr/bin/pnmindex /usr/bin/pnminterp /usr/bin/pnminterp-gen /usr/bin/pnminvert /usr/bin/pnmmargin /usr/bin/pnmmontage /usr/bin/pnmnlfilt /usr/bin/pnmnoraw /usr/bin/pnmpad /usr/bin/pnmpaste /usr/bin/pnmpsnr /usr/bin/pnmrotate /usr/bin/pnmscale /usr/bin/pnmscalefixed /usr/bin/pnmshear /usr/bin/pnmsmooth /usr/bin/pnmsplit /usr/bin/pnmtile /usr/bin/pnmtoddif /usr/bin/pnmtofiasco /usr/bin/pnmtofits /usr/bin/pnmtojbig /usr/bin/pnmtojpeg /usr/bin/pnmtopalm /usr/bin/pnmtoplainpnm /usr/bin/pnmtopng /usr/bin/pnmtops /usr/bin/pnmtorast /usr/bin/pnmtorle /usr/bin/pnmtosgi /usr/bin/pnmtosir /usr/bin/pnmtotiff /usr/bin/pnmtotiffcmyk /usr/bin/pnmtoxwd /usr/bin/po2debconf /usr/bin/pod2html /usr/bin/pod2latex /usr/bin/pod2man /usr/bin/pod2text /usr/bin/pod2usage /usr/bin/podchecker /usr/bin/podselect /usr/bin/poff /usr/bin/pon /usr/bin/pooltype /usr/bin/POST /usr/bin/poster /usr/bin/post-grohtml /usr/bin/ppm3d /usr/bin/ppmbrighten /usr/bin/ppmchange /usr/bin/ppmcie /usr/bin/ppmcolormask /usr/bin/ppmdim /usr/bin/ppmdist /usr/bin/ppmdither /usr/bin/ppmfade /usr/bin/ppmflash /usr/bin/ppmforge /usr/bin/ppmhist /usr/bin/ppmlabel /usr/bin/ppmmake /usr/bin/ppmmix /usr/bin/ppmnorm /usr/bin/ppmntsc /usr/bin/ppmpat /usr/bin/ppmquant /usr/bin/ppmquantall /usr/bin/ppmqvga /usr/bin/ppmrelief /usr/bin/ppmshadow /usr/bin/ppmshift /usr/bin/ppmspread /usr/bin/ppmtoacad /usr/bin/ppmtobmp /usr/bin/ppmtoeyuv /usr/bin/ppmtogif /usr/bin/ppmtoicr /usr/bin/ppmtoilbm /usr/bin/ppmtojpeg /usr/bin/ppmtoleaf /usr/bin/ppmtolj /usr/bin/ppmtolss16 /usr/bin/ppmtomap /usr/bin/ppmtomitsu /usr/bin/ppmtompeg /usr/bin/ppmtoneo /usr/bin/ppmtopcx /usr/bin/ppmtopgm /usr/bin/ppmtopi1 /usr/bin/ppmtopict /usr/bin/ppmtopj /usr/bin/ppmtopuzz /usr/bin/ppmtorgb3 /usr/bin/ppmtosixel /usr/bin/ppmtotga /usr/bin/ppmtouil /usr/bin/ppmtowinicon /usr/bin/ppmtoxpm /usr/bin/ppmtoyuv /usr/bin/ppmtoyuvsplit /usr/bin/ppmtv /usr/bin/pr /usr/bin/pre-grohtml /usr/bin/preparetips /usr/bin/print /usr/bin/printenv /usr/bin/printf /usr/bin/procan /usr/bin/procmail /usr/bin/ps2ascii /usr/bin/ps2epsi /usr/bin/ps2frag /usr/bin/ps2pdf /usr/bin/ps2pdf12 /usr/bin/ps2pdf13 /usr/bin/ps2pdf14 /usr/bin/ps2pdfwr /usr/bin/ps2pk /usr/bin/ps2ps /usr/bin/psbook /usr/bin/psed /usr/bin/psfaddtable /usr/bin/psfgettable /usr/bin/psfstriptable /usr/bin/psidtopgm /usr/bin/pslatex /usr/bin/psmerge /usr/bin/psnup /usr/bin/psresize /usr/bin/psselect /usr/bin/pstoedit /usr/bin/pstoimg /usr/bin/pstopnm /usr/bin/pstops /usr/bin/pstree /usr/bin/pstree.x11 /usr/bin/pstruct /usr/bin/ptked /usr/bin/ptksh /usr/bin/ptx /usr/bin/pydoc /usr/bin/pydoc2.1 /usr/bin/pydoc2.2 /usr/bin/pygettext /usr/bin/pygettext2.1 /usr/bin/pygettext2.2 /usr/bin/pygtk-codegen-1.2 /usr/bin/python /usr/bin/python2.1 /usr/bin/python2.2 /usr/bin/qembed /usr/bin/qmake /usr/bin/qrttoppm /usr/bin/qt2kdoc /usr/bin/querybts /usr/bin/rainbow /usr/bin/rainbow-ac /usr/bin/rainbow-be /usr/bin/rainbow-pr /usr/bin/rainbow-rank /usr/bin/rainbow-stats /usr/bin/ranlib /usr/bin/rar /usr/bin/rasttopnm /usr/bin/rawtopgm /usr/bin/rawtoppm /usr/bin/rcp /usr/bin/rcs /usr/bin/rcs2log /usr/bin/rcs-checkin /usr/bin/rcs-checkin.emacs20 /usr/bin/rcsclean /usr/bin/rcsdiff /usr/bin/rcsfreeze /usr/bin/rcsmerge /usr/bin/rdjpgcom /usr/bin/readelf /usr/bin/red /usr/bin/refer /usr/bin/release /usr/bin/remsync /usr/bin/rename /usr/bin/renice /usr/bin/rep /usr/bin/replay /usr/bin/report /usr/bin/reportbug /usr/bin/report.gui /usr/bin/rep-remote /usr/bin/reset /usr/bin/rev /usr/bin/rgb3toppm /usr/bin/rgrep /usr/bin/rgview /usr/bin/rgvim /usr/bin/rjoe /usr/bin/rletopnm /usr/bin/rlog /usr/bin/rlogin /usr/bin/rmccmt /usr/bin/routef /usr/bin/routel /usr/bin/rpcclient /usr/bin/rpcgen /usr/bin/rpcinfo /usr/bin/rpm /usr/bin/rpm2cpio /usr/bin/rpmbuild /usr/bin/rpmdb /usr/bin/rpme /usr/bin/rpmi /usr/bin/rpmquery /usr/bin/rpmsign /usr/bin/rpmu /usr/bin/rpmverify /usr/bin/rsh /usr/bin/rstartd /usr/bin/rubibtex /usr/bin/rumakeindex /usr/bin/run-mailcap /usr/bin/run-with-aspell /usr/bin/rview /usr/bin/rvim /usr/bin/s2p /usr/bin/savelog /usr/bin/sawfish /usr/bin/sawfish-client /usr/bin/sawfish-ui /usr/bin/sbigtopgm /usr/bin/scp /usr/bin/scr-bx /usr/bin/screen /usr/bin/screendump /usr/bin/screensaver-properties-capplet /usr/bin/script /usr/bin/scrollkeeper-config /usr/bin/scrollkeeper-extract /usr/bin/scrollkeeper-gen-seriesid /usr/bin/scrollkeeper-get-cl /usr/bin/scrollkeeper-get-content-list /usr/bin/scrollkeeper-get-extended-content-list /usr/bin/scrollkeeper-get-index-from-docpath /usr/bin/scrollkeeper-get-toc-from-docpath /usr/bin/scrollkeeper-get-toc-from-id /usr/bin/scrollkeeper-install /usr/bin/scrollkeeper-preinstall /usr/bin/scrollkeeper-rebuilddb /usr/bin/scrollkeeper-uninstall /usr/bin/scrollkeeper-update /usr/bin/sdiff /usr/bin/secpolicy /usr/bin/see /usr/bin/select-default-iwrap /usr/bin/sensible-browser /usr/bin/sensible-editor /usr/bin/sensible-pager /usr/bin/seq /usr/bin/setfdprm /usr/bin/setkeycodes /usr/bin/set-language-env /usr/bin/setleds /usr/bin/setmetamode /usr/bin/setsid /usr/bin/setterm /usr/bin/sfconvert /usr/bin/sfinfo /usr/bin/sftp /usr/bin/sg /usr/bin/sgitopnm /usr/bin/sgml2xml /usr/bin/sgmlnorm /usr/bin/sgmlspl /usr/bin/sha1sum /usr/bin/shar /usr/bin/showcfont /usr/bin/showchar /usr/bin/showkey /usr/bin/shred /usr/bin/signchanges /usr/bin/sirtopnm /usr/bin/size /usr/bin/size86 /usr/bin/skill /usr/bin/sl2h /usr/bin/sldtoppm /usr/bin/slice /usr/bin/sliceprint /usr/bin/slogin /usr/bin/smbcacls /usr/bin/smbclient /usr/bin/smbcontrol /usr/bin/smbgroupedit /usr/bin/smb-nat /usr/bin/smbpasswd /usr/bin/smbspool /usr/bin/smbstatus /usr/bin/smbtar /usr/bin/smbtree /usr/bin/snice /usr/bin/socat /usr/bin/soelim /usr/bin/sort /usr/bin/spam /usr/bin/spctoppm /usr/bin/spent /usr/bin/splain /usr/bin/split /usr/bin/splitfont /usr/bin/sputoppm /usr/bin/sq /usr/bin/ssh /usr/bin/ssh-add /usr/bin/ssh-agent /usr/bin/ssh-argv0 /usr/bin/ssh-copy-id /usr/bin/ssh-keygen /usr/bin/ssh-keyscan /usr/bin/startkde /usr/bin/stat /usr/bin/states /usr/bin/strace /usr/bin/strfile /usr/bin/strings /usr/bin/strip /usr/bin/sudo /usr/bin/sum /usr/bin/superformat /usr/bin/symlinks /usr/bin/syslinux /usr/bin/syslinux2ansi /usr/bin/t1mapper /usr/bin/tac /usr/bin/tack /usr/bin/tail /usr/bin/tangle /usr/bin/tasksel /usr/bin/tbl /usr/bin/tclsh /usr/bin/tclsh8.3 /usr/bin/tclsh8.4 /usr/bin/tcsh /usr/bin/tdbbackup /usr/bin/tee /usr/bin/telnet /usr/bin/telnet.netkit /usr/bin/test /usr/bin/testparm /usr/bin/testprns /usr/bin/tex /usr/bin/texconfig /usr/bin/texdoc /usr/bin/texdoctk /usr/bin/texexec /usr/bin/texexpand /usr/bin/texfind /usr/bin/texfont /usr/bin/texhash /usr/bin/texi2dvi /usr/bin/texi2html /usr/bin/texi2pdf /usr/bin/texindex /usr/bin/texlinks /usr/bin/texshow /usr/bin/texutil /usr/bin/tfmtodit /usr/bin/tftopl /usr/bin/tgatoppm /usr/bin/tgz /usr/bin/thinkjettopbm /usr/bin/thumbpdf /usr/bin/tic /usr/bin/tie /usr/bin/tifftopnm /usr/bin/time /usr/bin/tixindex /usr/bin/tixindex4.1 /usr/bin/tixindex8.1 /usr/bin/tixwish /usr/bin/tixwish4.1 /usr/bin/tixwish8.1 /usr/bin/tklanguage /usr/bin/tload /usr/bin/toe /usr/bin/top /usr/bin/topcameleon /usr/bin/touch /usr/bin/tput /usr/bin/tr /usr/bin/traceroute /usr/bin/traceroute.lbl /usr/bin/transfig /usr/bin/tree /usr/bin/troff /usr/bin/tryaffix /usr/bin/tset /usr/bin/tsort /usr/bin/ttf2afm /usr/bin/ttfadmin.sh /usr/bin/ttftool /usr/bin/tty /usr/bin/tzselect /usr/bin/ucf /usr/bin/uic /usr/bin/uic-qt2 /usr/bin/uic-qt3 /usr/bin/ul /usr/bin/unexpand /usr/bin/unicode_start /usr/bin/unicode_stop /usr/bin/uniq /usr/bin/unison /usr/bin/unison-gtk /usr/bin/unlink /usr/bin/unrar /usr/bin/unshar /usr/bin/unsq /usr/bin/unstr /usr/bin/untex /usr/bin/untrigraph /usr/bin/unzip /usr/bin/unzipsfx /usr/bin/updatedb /usr/bin/update-menus /usr/bin/updmap /usr/bin/uptime /usr/bin/uscan /usr/bin/user-ja-conf /usr/bin/users /usr/bin/use_tags /usr/bin/uudecode /usr/bin/uuencode /usr/bin/uuidgen /usr/bin/uupdate /usr/bin/uz /usr/bin/vacation /usr/bin/vftovp /usr/bin/vi /usr/bin/view /usr/bin/vim /usr/bin/vimdiff /usr/bin/vimtutor /usr/bin/virmf /usr/bin/virmpost /usr/bin/viromega /usr/bin/virtex /usr/bin/vmstat /usr/bin/volname /usr/bin/vptovf /usr/bin/vt-is-UTF8 /usr/bin/vumeter /usr/bin/w /usr/bin/w3c /usr/bin/wall /usr/bin/watch /usr/bin/wbmptopbm /usr/bin/wc /usr/bin/weave /usr/bin/webbot /usr/bin/wget /usr/bin/whatis /usr/bin/whereis /usr/bin/which /usr/bin/whiptail /usr/bin/who /usr/bin/whoami /usr/bin/whois /usr/bin/widget /usr/bin/winicontoppm /usr/bin/wish /usr/bin/wish8.3 /usr/bin/wish8.4 /usr/bin/wmb /usr/bin/wmd /usr/bin/wmk /usr/bin/wml /usr/bin/wmu /usr/bin/wmxmms /usr/bin/word-list-compress /usr/bin/w.procps /usr/bin/write /usr/bin/wrjpgcom /usr/bin/www /usr/bin/www-browser /usr/bin/X11 /usr/bin/xanim /usr/bin/xargs /usr/bin/xbitchx /usr/bin/xbmtopbm /usr/bin/xchat /usr/bin/xdfcopy /usr/bin/xdfformat /usr/bin/xdvi /usr/bin/xdvi.bin /usr/bin/xdvi.real /usr/bin/xdvizilla /usr/bin/xfig /usr/bin/xgettext /usr/bin/ximtoppm /usr/bin/xml2man /usr/bin/xmlcatalog /usr/bin/xml-config /usr/bin/xmlizer /usr/bin/xmllint /usr/bin/xmlproc_parse /usr/bin/xmlproc_parse.python2.1-xml /usr/bin/xmlproc_parse.python2.2-xml /usr/bin/xmlproc_val /usr/bin/xmlproc_val.python2.1-xml /usr/bin/xmlproc_val.python2.2-xml /usr/bin/xmms /usr/bin/xpdf /usr/bin/xpdf.bin /usr/bin/xpmtoppm /usr/bin/xscreensaver /usr/bin/xscreensaver-command /usr/bin/xscreensaver-demo /usr/bin/xscreensaver-getimage /usr/bin/xscreensaver-getimage-file /usr/bin/xscreensaver-getimage-video /usr/bin/xscreensaver.kss /usr/bin/x-session-manager /usr/bin/xsltproc /usr/bin/xsubpp /usr/bin/x-terminal-emulator /usr/bin/xvfb-run /usr/bin/xvminitoppm /usr/bin/xwdtopnm /usr/bin/x-window-manager /usr/bin/x-www-browser /usr/bin/xxd /usr/bin/yacc /usr/bin/ybmtopbm /usr/bin/yelp /usr/bin/yelp-pregenerate /usr/bin/yes /usr/bin/yuvsplittoppm /usr/bin/yuvtoppm /usr/bin/yyextract /usr/bin/yyref /usr/bin/zdump /usr/bin/zeisstopnm /usr/bin/zip /usr/bin/zipcloak /usr/bin/zipgrep /usr/bin/zipinfo /usr/bin/zipnote /usr/bin/zipsplit /usr/bin/zsoelim /usr/bin/zxpdf executables +consider changing the owner to `root'. Because of SMI's recent decision +to install most /usr/sbin/ab /usr/sbin/ab2 /usr/sbin/accessdb /usr/sbin/acpid /usr/sbin/addgnupghome /usr/sbin/addgroup /usr/sbin/add-shell /usr/sbin/adduser /usr/sbin/apache /usr/sbin/apacheconfig /usr/sbin/apachectl /usr/sbin/apache-modconf /usr/sbin/apmd /usr/sbin/apt-setup /usr/sbin/arp /usr/sbin/arp2ethers /usr/sbin/arpfetch /usr/sbin/arpsnmp /usr/sbin/arpwatch /usr/sbin/aspell-autobuildhash /usr/sbin/atd /usr/sbin/atrun /usr/sbin/authenumerate /usr/sbin/backup-simple /usr/sbin/base-config /usr/sbin/bihourly /usr/sbin/biosdecode /usr/sbin/bonobo-activation-sysconf /usr/sbin/buildd-make-chroot /usr/sbin/changeaudiocddev /usr/sbin/chat /usr/sbin/check_forensic /usr/sbin/checkgid /usr/sbin/checkgid2 /usr/sbin/checkpc /usr/sbin/checksecurity /usr/sbin/chkrootkit /usr/sbin/chpasswd /usr/sbin/chroot /usr/sbin/cleanup-info /usr/sbin/coldnamed /usr/sbin/courierauthtest /usr/sbin/courierlogger /usr/sbin/couriertcpd /usr/sbin/cpgr /usr/sbin/cppw /usr/sbin/Crack /usr/sbin/Crack-Reporter /usr/sbin/cramfsck /usr/sbin/cron /usr/sbin/cruft /usr/sbin/cvs-pserver /usr/sbin/cytune /usr/sbin/debootstrap /usr/sbin/debsums_gen /usr/sbin/delgroup /usr/sbin/deluser /usr/sbin/dmassagevendor /usr/sbin/dmidecode /usr/sbin/dpasswd /usr/sbin/dpkg-divert /usr/sbin/dpkg-preconfigure /usr/sbin/dpkg-reconfigure /usr/sbin/dpkg-statoverride /usr/sbin/dumbnet /usr/sbin/editkeep /usr/sbin/elvtune /usr/sbin/ethtool /usr/sbin/exicyclog /usr/sbin/exigrep /usr/sbin/exim4 /usr/sbin/exim_checkaccess /usr/sbin/exim_convert4r4 /usr/sbin/exim_dbmbuild /usr/sbin/exim_dumpdb /usr/sbin/exim_fixdb /usr/sbin/exim_lock /usr/sbin/eximstats /usr/sbin/exim_tidydb /usr/sbin/exinext /usr/sbin/exipick /usr/sbin/exiqgrep /usr/sbin/exiqsumm /usr/sbin/exiwhat /usr/sbin/fancontrol /usr/sbin/fdutilsconfig /usr/sbin/filefrag /usr/sbin/foomatic-addpjloptions /usr/sbin/foomatic-cleanupdrivers /usr/sbin/foomatic-fix-xml /usr/sbin/foomatic-getpjloptions /usr/sbin/foomatic-kitload /usr/sbin/foomatic-nonumericalids /usr/sbin/foomatic-preferred-driver /usr/sbin/foomatic-printermap-to-gimp-print-xml /usr/sbin/foomatic-replaceoldprinterids /usr/sbin/fping /usr/sbin/fping6 /usr/sbin/fstab-sync /usr/sbin/ftpasswd /usr/sbin/ftpquota /usr/sbin/ftpshut /usr/sbin/ftpstats /usr/sbin/gdmconfig /usr/sbin/gnome-pty-helper /usr/sbin/gpm /usr/sbin/gpmconfig /usr/sbin/gpm-microtouch-setup /usr/sbin/gpm-mouse-test /usr/sbin/groupadd /usr/sbin/groupdel /usr/sbin/groupmod /usr/sbin/grpck /usr/sbin/grpconv /usr/sbin/grpunconv /usr/sbin/hald /usr/sbin/hddtemp /usr/sbin/hping /usr/sbin/hping2 /usr/sbin/huntd /usr/sbin/i2cdetect /usr/sbin/i2cdump /usr/sbin/i2cset /usr/sbin/iconvconfig /usr/sbin/identd /usr/sbin/idswakeup /usr/sbin/ikeygen /usr/sbin/in.comsat /usr/sbin/inetd /usr/sbin/in.identtestd /usr/sbin/in.ntalkd /usr/sbin/install-docs /usr/sbin/install-info /usr/sbin/install-keymap /usr/sbin/install-menu /usr/sbin/install-sgmlcatalog /usr/sbin/in.talkd /usr/sbin/invoke-rc.d /usr/sbin/ipmasqadm /usr/sbin/iptraf /usr/sbin/ircflush /usr/sbin/ircio /usr/sbin/irqtune /usr/sbin/isadump /usr/sbin/isaset /usr/sbin/ispell-autobuildhash /usr/sbin/ispellconfig /usr/sbin/iwu /usr/sbin/kernel-packageconfig /usr/sbin/keytab-lilo /usr/sbin/liloconfig /usr/sbin/lilo_find_mbr /usr/sbin/locale-gen /usr/sbin/localepurge /usr/sbin/logcheck /usr/sbin/logresolve /usr/sbin/logresolve2 /usr/sbin/logrotate /usr/sbin/logtail /usr/sbin/lpc /usr/sbin/lpd /usr/sbin/lpdomatic /usr/sbin/lprng_certs /usr/sbin/lprng_index_certs /usr/sbin/lsof /usr/sbin/lsusb /usr/sbin/magicfilter /usr/sbin/magicfilterconfig /usr/sbin/MAKEFLOPPIES /usr/sbin/makejail /usr/sbin/makeuserdb /usr/sbin/massagevendor /usr/sbin/memtest /usr/sbin/mkboot /usr/sbin/mkcramfs /usr/sbin/mkinitrd /usr/sbin/mklost+found /usr/sbin/mkrescue /usr/sbin/mksmbpasswd /usr/sbin/modconf /usr/sbin/modules-config /usr/sbin/mysqld /usr/sbin/nessus-adduser /usr/sbin/nessus-check-signature /usr/sbin/nessusd /usr/sbin/nessus-mkcert /usr/sbin/nessus-rmuser /usr/sbin/nessus-update-plugins /usr/sbin/nessus-update-plugins-gpl /usr/sbin/newusers /usr/sbin/nmbd /usr/sbin/ntpd /usr/sbin/ntpdate /usr/sbin/ntp-keygen /usr/sbin/ntptime /usr/sbin/ntp-wait /usr/sbin/oinkmaster /usr/sbin/orphaner /usr/sbin/ownership /usr/sbin/p0f /usr/sbin/packit /usr/sbin/pam_getenv /usr/sbin/pam_tally /usr/sbin/paperconfig /usr/sbin/pbuilder /usr/sbin/pconf_detect /usr/sbin/popcon-largest-unused /usr/sbin/popularity-contest /usr/sbin/pppconfig /usr/sbin/pppd /usr/sbin/pppdump /usr/sbin/pppoe /usr/sbin/pppoeconf /usr/sbin/pppoe-discovery /usr/sbin/pppoe-relay /usr/sbin/pppoe-server /usr/sbin/pppoe-sniff /usr/sbin/pppstats /usr/sbin/proftpd /usr/sbin/pw2userdb /usr/sbin/pwck /usr/sbin/pwconv /usr/sbin/pwmconfig /usr/sbin/pwunconv /usr/sbin/qic02conf /usr/sbin/ramsize /usr/sbin/rdev /usr/sbin/readprofile /usr/sbin/remove-default-ispell /usr/sbin/remove-default-wordlist /usr/sbin/remove-shell /usr/sbin/rmail /usr/sbin/rmt /usr/sbin/rmt-tar /usr/sbin/rootflags /usr/sbin/rotatelogs /usr/sbin/rotatelogs2 /usr/sbin/rscsi /usr/sbin/rsmtp /usr/sbin/runas /usr/sbin/runq /usr/sbin/rvnamed /usr/sbin/safe_finger /usr/sbin/samhain /usr/sbin/saned /usr/sbin/select-default-ispell /usr/sbin/select-default-wordlist /usr/sbin/sendmail /usr/sbin/sensors-detect /usr/sbin/setvesablank /usr/sbin/sharedindexinstall /usr/sbin/sharedindexsplit /usr/sbin/smbd /usr/sbin/snort /usr/sbin/snort-stat /usr/sbin/spamd /usr/sbin/spfd /usr/sbin/split-logfile /usr/sbin/sshd /usr/sbin/su-to-root /usr/sbin/synaptic /usr/sbin/sync-available /usr/sbin/syslog2eximlog /usr/sbin/syslogd-listfiles /usr/sbin/syslog-facility /usr/sbin/sysv-rc-conf /usr/sbin/tcpd /usr/sbin/tcpdchk /usr/sbin/tcpdmatch /usr/sbin/tcpdump /usr/sbin/termwrap /usr/sbin/texconfig /usr/sbin/tickadj /usr/sbin/tiger /usr/sbin/tigercron /usr/sbin/tigexp /usr/sbin/tmpreaper /usr/sbin/traceroute /usr/sbin/try-from /usr/sbin/tunelp /usr/sbin/tzconfig /usr/sbin/tzsetup /usr/sbin/update-alternatives /usr/sbin/update-ca-certificates /usr/sbin/update-catalog /usr/sbin/update-default-aspell /usr/sbin/update-default-ispell /usr/sbin/update-default-wordlist /usr/sbin/update-dictcommon-aspell /usr/sbin/update-exim4.conf /usr/sbin/update-exim4.conf.template /usr/sbin/update-exim4defaults /usr/sbin/update-flashplugin /usr/sbin/update-fmtutil /usr/sbin/update-fonts-alias /usr/sbin/update-fonts-dir /usr/sbin/update-fonts-scale /usr/sbin/update-gdkpixbuf-loaders /usr/sbin/update-gtk-immodules /usr/sbin/update-inetd /usr/sbin/update-ispell-dictionary /usr/sbin/update-lilo /usr/sbin/update-mime /usr/sbin/update-mozilla-chrome /usr/sbin/update-openoffice-dicts /usr/sbin/update-pango-modules /usr/sbin/update-pangox-aliases /usr/sbin/update-passwd /usr/sbin/update-rc.d /usr/sbin/update-texmf /usr/sbin/update-updmap /usr/sbin/update-usbids /usr/sbin/update-xmlcatalog /usr/sbin/update-xpdfrc /usr/sbin/usbmodules /usr/sbin/useradd /usr/sbin/userdb /usr/sbin/userdbpw /usr/sbin/userdel /usr/sbin/usermod /usr/sbin/validlocale /usr/sbin/vchkpw2userdb /usr/sbin/vcstime /usr/sbin/vidmode /usr/sbin/vigr /usr/sbin/vipw /usr/sbin/visudo /usr/sbin/vpddecode /usr/sbin/w3camd /usr/sbin/wm-menu-config /usr/sbin/writevt /usr/sbin/wserv /usr/sbin/zic and /usr/bin/[ /usr/bin/411toppm /usr/bin/822-date /usr/bin/a2p /usr/bin/a2ps /usr/bin/a2ps-lpr-wrapper /usr/bin/a52dec /usr/bin/a5booklet /usr/bin/aalib-config /usr/bin/aaxine /usr/bin/abiword /usr/bin/AbiWord-2.2 /usr/bin/abw2html /usr/bin/access /usr/bin/aclocal /usr/bin/aclocal-1.4 /usr/bin/aclocal-1.6 /usr/bin/aclocal-1.7 /usr/bin/acpi /usr/bin/acpi_available /usr/bin/acpi_listen /usr/bin/activation-client /usr/bin/acyclic /usr/bin/addftinfo /usr/bin/addr2line /usr/bin/addresses /usr/bin/adnshost /usr/bin/adnslogres /usr/bin/adnsresfilter /usr/bin/afm2tfm /usr/bin/afmdiff.awk /usr/bin/afmtodit /usr/bin/alexandria /usr/bin/alien /usr/bin/allcm /usr/bin/allec /usr/bin/allneeded /usr/bin/amor /usr/bin/amstex /usr/bin/amule /usr/bin/amuleweb /usr/bin/amulewebDLG /usr/bin/analog /usr/bin/animate /usr/bin/annotate-output /usr/bin/anytopnm /usr/bin/apm /usr/bin/apm_available /usr/bin/apmsleep /usr/bin/appletproxy /usr/bin/appletviewer /usr/bin/apropos /usr/bin/apt-cache /usr/bin/apt-cdrom /usr/bin/apt-config /usr/bin/apt-extracttemplates /usr/bin/apt-file /usr/bin/apt-ftparchive /usr/bin/apt-get /usr/bin/aptitude /usr/bin/apt-listchanges /usr/bin/apt-sortpkgs /usr/bin/ar /usr/bin/ar86 /usr/bin/archer /usr/bin/archpath /usr/bin/ark /usr/bin/arrow /usr/bin/artsbuilder /usr/bin/artscat /usr/bin/artsc-config /usr/bin/artscontrol /usr/bin/artsd /usr/bin/artsdsp /usr/bin/artsmessage /usr/bin/artsplay /usr/bin/artsrec /usr/bin/artsshell /usr/bin/artswrapper /usr/bin/as /usr/bin/as86 /usr/bin/asciitopgm /usr/bin/ascii-xfr /usr/bin/aserver /usr/bin/asn1Coding /usr/bin/asn1Decoding /usr/bin/asn1Parser /usr/bin/aspell /usr/bin/aspell-import /usr/bin/at /usr/bin/atktopbm /usr/bin/atlantikdesigner /usr/bin/atq /usr/bin/atrm /usr/bin/atsar /usr/bin/audiofile-config /usr/bin/autoconf /usr/bin/autoconf2.13 /usr/bin/autoconf2.50 /usr/bin/autoheader /usr/bin/autoheader2.13 /usr/bin/autoheader2.50 /usr/bin/autom4te /usr/bin/automake /usr/bin/automake-1.4 /usr/bin/automake-1.6 /usr/bin/automake-1.7 /usr/bin/autopoint /usr/bin/autopsy /usr/bin/autoreconf /usr/bin/autoreconf2.13 /usr/bin/autoreconf2.50 /usr/bin/autoscan /usr/bin/autoscan2.13 /usr/bin/autoupdate /usr/bin/autoupdate2.13 /usr/bin/avg-pkg-build-time /usr/bin/aviplay /usr/bin/awk /usr/bin/b2m /usr/bin/b2m.emacs21 /usr/bin/b2m.xemacs21 /usr/bin/basename /usr/bin/bashbug /usr/bin/batch /usr/bin/baz /usr/bin/bazaar-gpg-check /usr/bin/bc /usr/bin/bcomps /usr/bin/bdftops /usr/bin/beep /usr/bin/berkeley_db3_svc /usr/bin/berkeley_db4.2_svc /usr/bin/bg5conv /usr/bin/bg5latex /usr/bin/bg5+latex /usr/bin/bibindex /usr/bin/biblook /usr/bin/bibtex /usr/bin/bibtool /usr/bin/biff /usr/bin/binstats /usr/bin/bioradtopgm /usr/bin/bison /usr/bin/bison.yacc /usr/bin/bitchx /usr/bin/BitchX /usr/bin/bluefish /usr/bin/bmp2tiff /usr/bin/bmptopnm /usr/bin/bmptoppm /usr/bin/bochs /usr/bin/bochs-bin /usr/bin/bogomips /usr/bin/bonobo-activation-run-query /usr/bin/bonobo-application-x-mines /usr/bin/bonobo-audio-ulaw /usr/bin/bonobo-browser /usr/bin/bonobo-moniker-gunzip /usr/bin/bonobo-moniker-http /usr/bin/bonobo-selector /usr/bin/bonobo-slay /usr/bin/bonobo-text-plain /usr/bin/boot-admin /usr/bin/brushtopbm /usr/bin/bsd-write /usr/bin/btcompletedir /usr/bin/btcompletedir.bittorrent /usr/bin/btdownloadcurses /usr/bin/btdownloadcurses.bittorrent /usr/bin/btdownloadheadless /usr/bin/btdownloadheadless.bittorrent /usr/bin/btedit /usr/bin/btlaunchmany /usr/bin/btlaunchmany.bittorrent /usr/bin/btlaunchmanycurses /usr/bin/btlaunchmanycurses.bittorrent /usr/bin/btmakemetafile /usr/bin/btmakemetafile.bittorrent /usr/bin/btreannounce /usr/bin/btreannounce.bittorrent /usr/bin/btrename /usr/bin/btrename.bittorrent /usr/bin/bts /usr/bin/btshowmetainfo /usr/bin/btshowmetainfo.bittorrent /usr/bin/bttrack /usr/bin/bttrack.bittorrent /usr/bin/bug-buddy /usr/bin/buildhash /usr/bin/bunzip2 /usr/bin/burnBX /usr/bin/burnK6 /usr/bin/burnK7 /usr/bin/burnMMX /usr/bin/burnP5 /usr/bin/burnP6 /usr/bin/bwm /usr/bin/bximage /usr/bin/bzcat /usr/bin/bzcmp /usr/bin/bzdiff /usr/bin/bzegrep /usr/bin/bzexe /usr/bin/bzfgrep /usr/bin/bzgrep /usr/bin/bzip2 /usr/bin/bzip2recover /usr/bin/bzless /usr/bin/bzmore /usr/bin/c++ /usr/bin/c2man /usr/bin/c2ph /usr/bin/c89 /usr/bin/c99 /usr/bin/cadubi /usr/bin/cal /usr/bin/calendar /usr/bin/camlidl /usr/bin/camlp4 /usr/bin/camlp4o /usr/bin/camlp4o.opt /usr/bin/camlp4r /usr/bin/camlp4r.opt /usr/bin/cancel /usr/bin/captoinfo /usr/bin/card /usr/bin/cardos-info /usr/bin/castellanizar /usr/bin/catalogmanager /usr/bin/catchsegv /usr/bin/catman /usr/bin/cc /usr/bin/ccal /usr/bin/ccmtcnvt /usr/bin/ccomps /usr/bin/cdadd /usr/bin/cdbackup /usr/bin/cdbakeoven /usr/bin/cdbodialogloader /usr/bin/cdbosetuptool /usr/bin/cdbs-edit-patch /usr/bin/cdcd /usr/bin/cdclose /usr/bin/cdctrl /usr/bin/cdda2mp3 /usr/bin/cdda2ogg /usr/bin/cdda2wav /usr/bin/cddb-slave2-properties /usr/bin/cdecl /usr/bin/cdeject /usr/bin/cdinfo /usr/bin/cdir /usr/bin/cdloop /usr/bin/cdown /usr/bin/cdparanoia /usr/bin/cdpause /usr/bin/cdplay /usr/bin/cdrdao /usr/bin/cdrecord /usr/bin/cdrecord.mmap /usr/bin/cdrecord.shm /usr/bin/cdreset /usr/bin/cdrestore /usr/bin/cdrtoaster /usr/bin/cdshuffle /usr/bin/cdstop /usr/bin/cdvolume /usr/bin/cdxa2mpeg /usr/bin/cef5conv /usr/bin/cef5latex /usr/bin/cefconv /usr/bin/ceflatex /usr/bin/cefsconv /usr/bin/cefslatex /usr/bin/celestrongps /usr/bin/c++filt /usr/bin/cflow /usr/bin/cg_annotate /usr/bin/chage /usr/bin/charmap /usr/bin/charset /usr/bin/chattr /usr/bin/checkbash /usr/bin/checkbashisms /usr/bin/checkrestart /usr/bin/cheops /usr/bin/chfn /usr/bin/chilight /usr/bin/chkdupexe /usr/bin/chktri /usr/bin/chsh /usr/bin/chvt /usr/bin/ci /usr/bin/circo /usr/bin/cjpeg /usr/bin/cksum /usr/bin/clear /usr/bin/clips /usr/bin/clusterdb /usr/bin/cm2rem /usr/bin/cmp /usr/bin/cmuwmtopbm /usr/bin/co /usr/bin/cobfusc /usr/bin/codepage /usr/bin/col /usr/bin/colcrt /usr/bin/coldsync /usr/bin/collateindex.pl /usr/bin/colrm /usr/bin/column /usr/bin/combinediff /usr/bin/comm /usr/bin/compare /usr/bin/comp_err /usr/bin/compile_et /usr/bin/compose /usr/bin/composeglyphs /usr/bin/composite /usr/bin/conjure /usr/bin/consolechars /usr/bin/ControlPanel /usr/bin/convert /usr/bin/courier-config /usr/bin/cpan /usr/bin/cpif /usr/bin/cpp /usr/bin/cpp-2.95 /usr/bin/cpp-3.2 /usr/bin/cpp-3.3 /usr/bin/createdb /usr/bin/createdisk /usr/bin/createlang /usr/bin/createuser /usr/bin/c_rehash /usr/bin/crontab /usr/bin/crossbow /usr/bin/cryptoflex-tool /usr/bin/csplit /usr/bin/csslint /usr/bin/csslint-0.6 /usr/bin/cstr /usr/bin/ctags /usr/bin/ctags.emacs21 /usr/bin/ctangle /usr/bin/cue2toc /usr/bin/cundecl /usr/bin/cunloop /usr/bin/cups-config /usr/bin/cupsdconf /usr/bin/cupsdoprint /usr/bin/curl /usr/bin/curl-config /usr/bin/cut /usr/bin/cvs /usr/bin/cvsaskpass /usr/bin/cvs-debc /usr/bin/cvs-debi /usr/bin/cvs-debrelease /usr/bin/cvs-debuild /usr/bin/cvsservice /usr/bin/cw /usr/bin/cweave /usr/bin/cwgen /usr/bin/cxref /usr/bin/cxref-cc /usr/bin/cxref-cpp /usr/bin/cxref-cpp-configure /usr/bin/cxref-cpp.upstream /usr/bin/cxref-query /usr/bin/daemon /usr/bin/dash-search /usr/bin/datastat /usr/bin/db2dvi /usr/bin/db2html /usr/bin/db2pdf /usr/bin/db2ps /usr/bin/db2rtf /usr/bin/db3_archive /usr/bin/db3_checkpoint /usr/bin/db3_deadlock /usr/bin/db3_dump /usr/bin/db3_dump185 /usr/bin/db3_load /usr/bin/db3_printlog /usr/bin/db3_recover /usr/bin/db3_stat /usr/bin/db3_upgrade /usr/bin/db3_verify /usr/bin/db4.2_archive /usr/bin/db4.2_checkpoint /usr/bin/db4.2_deadlock /usr/bin/db4.2_dump /usr/bin/db4.2_load /usr/bin/db4.2_printlog /usr/bin/db4.2_recover /usr/bin/db4.2_stat /usr/bin/db4.2_upgrade /usr/bin/db4.2_verify /usr/bin/db_archive /usr/bin/db_checkpoint /usr/bin/db_deadlock /usr/bin/db_dump /usr/bin/db_dump185 /usr/bin/dbforge /usr/bin/dbforge.gui /usr/bin/dbiprof /usr/bin/dbiproxy /usr/bin/db_load /usr/bin/dbmmanage /usr/bin/dbmmanage2 /usr/bin/db_printlog /usr/bin/db_recover /usr/bin/dbs-edit-patch /usr/bin/db_stat /usr/bin/dbus-cleanup-sockets /usr/bin/dbus-daemon-1 /usr/bin/dbverify /usr/bin/dc /usr/bin/dcalc /usr/bin/dcat /usr/bin/dch /usr/bin/dcop /usr/bin/dcopclient /usr/bin/dcopfind /usr/bin/dcopobject /usr/bin/dcopquit /usr/bin/dcopref /usr/bin/dcopserver /usr/bin/dcopserver_shutdown /usr/bin/dcopstart /usr/bin/ddate /usr/bin/ddd /usr/bin/dd-list /usr/bin/deallocvt /usr/bin/debc /usr/bin/debchange /usr/bin/debclean /usr/bin/debcommit /usr/bin/debconf /usr/bin/debconf2pot /usr/bin/debconf2po-update /usr/bin/debconf-communicate /usr/bin/debconf-copydb /usr/bin/debconf-getlang /usr/bin/debconf-get-selections /usr/bin/debconf-gettextize /usr/bin/debconf-loadtemplate /usr/bin/debconf-mergetemplate /usr/bin/debconf-set-selections /usr/bin/debconf-show /usr/bin/debconf-updatepo /usr/bin/debdiff /usr/bin/debget /usr/bin/debi /usr/bin/debiandoc2docbookxml /usr/bin/debiandoc2dvi /usr/bin/debiandoc2html /usr/bin/debiandoc2info /usr/bin/debiandoc2latex /usr/bin/debiandoc2latexdvi /usr/bin/debiandoc2latexpdf /usr/bin/debiandoc2latexps /usr/bin/debiandoc2pdf /usr/bin/debiandoc2ps /usr/bin/debiandoc2texinfo /usr/bin/debiandoc2text /usr/bin/debiandoc2textov /usr/bin/debian-mirrors /usr/bin/debman /usr/bin/debmirror /usr/bin/deborphan /usr/bin/debpkg /usr/bin/debrelease /usr/bin/debrsign /usr/bin/debsign /usr/bin/debstd /usr/bin/debsums /usr/bin/debugsh /usr/bin/debuild /usr/bin/debuild-pbuilder /usr/bin/deb-update-applet-gui /usr/bin/deb-update-applet-tui /usr/bin/defoma /usr/bin/defoma-app /usr/bin/defoma-font /usr/bin/defoma-hints /usr/bin/defoma-id /usr/bin/defoma-psfont-installer /usr/bin/defoma-reconfigure /usr/bin/defoma-subst /usr/bin/defoma-user /usr/bin/degrep /usr/bin/dehtmldiff /usr/bin/deliverquota /usr/bin/deliverquota.courier /usr/bin/desktop-file-install /usr/bin/desktop-file-validate /usr/bin/devdump /usr/bin/dexconf /usr/bin/dfgrep /usr/bin/dglob /usr/bin/dgrep /usr/bin/dh_builddeb /usr/bin/dh_clean /usr/bin/dh_compress /usr/bin/dh_desktop /usr/bin/dh_fixperms /usr/bin/dh_gconf /usr/bin/dh_gencontrol /usr/bin/dh_install /usr/bin/dh_installcatalogs /usr/bin/dh_installchangelogs /usr/bin/dh_installcron /usr/bin/dh_installdeb /usr/bin/dh_installdebconf /usr/bin/dh_installdefoma /usr/bin/dh_installdirs /usr/bin/dh_installdocs /usr/bin/dh_installemacsen /usr/bin/dh_installexamples /usr/bin/dh_installinfo /usr/bin/dh_installinit /usr/bin/dh_installkpatches /usr/bin/dh_installlogcheck /usr/bin/dh_installlogrotate /usr/bin/dh_installman /usr/bin/dh_installmanpages /usr/bin/dh_installmenu /usr/bin/dh_installmime /usr/bin/dh_installmodules /usr/bin/dh_installpam /usr/bin/dh_installppp /usr/bin/dh_installwm /usr/bin/dh_installxfonts /usr/bin/dh_installxmlcatalogs /usr/bin/dh_link /usr/bin/dh_listpackages /usr/bin/dh_make /usr/bin/dh-make-perl /usr/bin/dh_makeshlibs /usr/bin/dh_md5sums /usr/bin/dh_movefiles /usr/bin/dh_perl /usr/bin/dh_python /usr/bin/dh_scrollkeeper /usr/bin/dh_shlibdeps /usr/bin/dh_strip /usr/bin/dh_suidregister /usr/bin/dh_testdir /usr/bin/dh_testroot /usr/bin/dh_testversion /usr/bin/dh_undocumented /usr/bin/dh_usrlocal /usr/bin/dia /usr/bin/dia-gnome /usr/bin/dialog /usr/bin/dia-normal /usr/bin/dict /usr/bin/dictl /usr/bin/diff /usr/bin/diff3 /usr/bin/diffpp /usr/bin/diffstat /usr/bin/dig /usr/bin/dijkstra /usr/bin/dircolors /usr/bin/directomatic /usr/bin/dirmngr /usr/bin/dirmngr-client /usr/bin/dirname /usr/bin/dirsplit /usr/bin/discover-config /usr/bin/disdvi /usr/bin/diskd /usr/bin/diskseekd /usr/bin/disk_sreset /usr/bin/disk_stat /usr/bin/display /usr/bin/djpeg /usr/bin/djscript /usr/bin/dlpsh /usr/bin/dls /usr/bin/dmp /usr/bin/dnet-config /usr/bin/dns_browse /usr/bin/dns-helper /usr/bin/dns_tree /usr/bin/docbook2dvi /usr/bin/docbook2html /usr/bin/docbook2man /usr/bin/docbook2pdf /usr/bin/docbook2ps /usr/bin/docbook2rtf /usr/bin/docbook2tex /usr/bin/docbook2texi /usr/bin/docbook2txt /usr/bin/docbook-to-man /usr/bin/docker /usr/bin/dos2unix /usr/bin/dot /usr/bin/dot2gxl /usr/bin/dotlockfile /usr/bin/dotneato-config /usr/bin/dotty /usr/bin/do_unlinks /usr/bin/doxygen /usr/bin/doxytag /usr/bin/dpatch /usr/bin/dpatch-convert-diffgz /usr/bin/dpatch-edit-patch /usr/bin/dpatch-get-origtargz /usr/bin/dpatch-list-patch /usr/bin/dpigs /usr/bin/dpkg /usr/bin/dpkg2folder /usr/bin/dpkg-architecture /usr/bin/dpkg-awk /usr/bin/dpkg-break /usr/bin/dpkg-buildpackage /usr/bin/dpkg-checkbuilddeps /usr/bin/dpkg-deb /usr/bin/dpkg-depcheck /usr/bin/dpkg-distaddfile /usr/bin/dpkg-genbuilddeps /usr/bin/dpkg-genchanges /usr/bin/dpkg-gencontrol /usr/bin/dpkg-iaquery /usr/bin/dpkg-make-index /usr/bin/dpkg-name /usr/bin/dpkg-parsechangelog /usr/bin/dpkg-query /usr/bin/dpkg-scanpackages /usr/bin/dpkg-scansources /usr/bin/dpkg-shlibdeps /usr/bin/dpkg-source /usr/bin/dpkg-split /usr/bin/dprofpp /usr/bin/dpsch-auto-cronapt /usr/bin/dpsch-backupclean /usr/bin/dpsch-cvsclean /usr/bin/dpsch-gencvsignore /usr/bin/dpsch-gendepends /usr/bin/dpsch-genpkg /usr/bin/dpsch-installcfengine /usr/bin/dpsch-installcronapt /usr/bin/dpsch-installgroups /usr/bin/dpsch-installpatch /usr/bin/dpsch-installskel /usr/bin/dpsch-installuserpatch /usr/bin/dpsch-installusers /usr/bin/dpsch-installuserskel /usr/bin/dpsch-listbinpkgs /usr/bin/dpsch-showfirstbinpkg /usr/bin/dpsyco-applypatch /usr/bin/dpsyco-patch /usr/bin/dpsyco-skel /usr/bin/drkonqi /usr/bin/dropdb /usr/bin/droplang /usr/bin/dropuser /usr/bin/dscverify /usr/bin/dselect /usr/bin/dsirc /usr/bin/du /usr/bin/dubdv /usr/bin/dumbnet-config /usr/bin/dumphint /usr/bin/dumpkeys /usr/bin/dupload /usr/bin/dvconnect /usr/bin/dvi2fax /usr/bin/dvi2tty /usr/bin/dvicopy /usr/bin/dvidvi /usr/bin/dvihp /usr/bin/dvilj /usr/bin/dvilj2p /usr/bin/dvilj4 /usr/bin/dvilj4l /usr/bin/dvilj6 /usr/bin/dvipdf /usr/bin/dvipdfm /usr/bin/dvipdft /usr/bin/dvipng /usr/bin/dviprint /usr/bin/dvips /usr/bin/dvired /usr/bin/dvitomp /usr/bin/dvitype /usr/bin/dzgrep /usr/bin/e2pall /usr/bin/ebb /usr/bin/ebrowse /usr/bin/ebrowse.emacs21 /usr/bin/echo-client-2 /usr/bin/ed2k /usr/bin/ed2k.amule /usr/bin/ed2k.wrapper /usr/bin/ed2k.xmule /usr/bin/edit /usr/bin/editcap /usr/bin/editclient /usr/bin/editdiff /usr/bin/editor /usr/bin/efax /usr/bin/efix /usr/bin/efstool /usr/bin/egroupwarewizard /usr/bin/einitex /usr/bin/eject /usr/bin/elatex /usr/bin/elinks /usr/bin/ellcc /usr/bin/ellcc.xemacs21 /usr/bin/emacs /usr/bin/emacs21 /usr/bin/emacs21-x /usr/bin/emacsclient /usr/bin/emacsclient.emacs21 /usr/bin/enc2xs /usr/bin/enchant /usr/bin/enchant-lsmod /usr/bin/encodedv /usr/bin/enscript /usr/bin/entrigraph /usr/bin/env /usr/bin/envsubst /usr/bin/eog /usr/bin/eperl /usr/bin/epiphany /usr/bin/eps2eps /usr/bin/epsffit /usr/bin/epstopdf /usr/bin/eqn /usr/bin/eqn2graph /usr/bin/erb1.8 /usr/bin/esd /usr/bin/esd-config /usr/bin/espdiff /usr/bin/etags /usr/bin/etags.emacs21 /usr/bin/etags.xemacs21 /usr/bin/etex /usr/bin/etherape /usr/bin/ethereal /usr/bin/ethstatus /usr/bin/euro-test /usr/bin/eview /usr/bin/evim /usr/bin/evince /usr/bin/evince-thumbnailer /usr/bin/evirtex /usr/bin/evolution /usr/bin/evolution-2.2 /usr/bin/ex /usr/bin/exifautotran /usr/bin/expand /usr/bin/expiry /usr/bin/expr /usr/bin/extcheck /usr/bin/extconv /usr/bin/extensionproxy /usr/bin/extract_a52 /usr/bin/extractkmdr /usr/bin/extractres /usr/bin/extresso /usr/bin/ext_skel /usr/bin/ext_skel4 /usr/bin/eyuvtoppm /usr/bin/factor /usr/bin/faillog /usr/bin/faked-sysv /usr/bin/faked-tcp /usr/bin/fakeroot /usr/bin/fakeroot-sysv /usr/bin/fakeroot-tcp /usr/bin/fax /usr/bin/fax2ps /usr/bin/fax2tiff /usr/bin/fbxine /usr/bin/fc-cache /usr/bin/fc-list /usr/bin/fc-match /usr/bin/fdf2tan /usr/bin/fdformat /usr/bin/fdlist /usr/bin/fdmount /usr/bin/fdmountd /usr/bin/fdp /usr/bin/fdrawcmd /usr/bin/fdumount /usr/bin/fdupes /usr/bin/feedbrowser /usr/bin/fetchmail /usr/bin/ffind /usr/bin/ffmpeg /usr/bin/ffmpeg-config /usr/bin/ffplay /usr/bin/ffserver /usr/bin/fiascotopnm /usr/bin/fig2dev /usr/bin/fig2ps2tex /usr/bin/filan /usr/bin/file /usr/bin/file-roller /usr/bin/filesharelist /usr/bin/fileshareset /usr/bin/filterdiff /usr/bin/find /usr/bin/find2perl /usr/bin/findaffix /usr/bin/finger /usr/bin/fitstopnm /usr/bin/fix_bs_and_del /usr/bin/fixcvsdiff /usr/bin/fixdlsrps /usr/bin/fixfmps /usr/bin/fixincludes /usr/bin/fixmacps /usr/bin/fixmswrd.pl /usr/bin/fixnt /usr/bin/fixps /usr/bin/fixpsditps /usr/bin/fixpspps /usr/bin/fixscribeps /usr/bin/fixtpps /usr/bin/fixwfwps /usr/bin/fixwpps /usr/bin/fixwwps /usr/bin/flac /usr/bin/flashkard /usr/bin/flawfinder /usr/bin/flex /usr/bin/fliccd /usr/bin/flipdiff /usr/bin/floppycontrol /usr/bin/floppymeter /usr/bin/fls /usr/bin/fmt /usr/bin/fmtutil /usr/bin/fold /usr/bin/font2c /usr/bin/font2psf /usr/bin/fontexport /usr/bin/fontimport /usr/bin/fontinst /usr/bin/foomatic-combo-xml /usr/bin/foomatic-compiledb /usr/bin/foomatic-configure /usr/bin/foomatic-datafile /usr/bin/foomatic-gswrapper /usr/bin/foomatic-gui /usr/bin/foomatic-perl-data /usr/bin/foomatic-ppdfile /usr/bin/foomatic-ppd-options /usr/bin/foomatic-printjob /usr/bin/foomatic-rip /usr/bin/formail /usr/bin/fort /usr/bin/fping /usr/bin/fping6 /usr/bin/free /usr/bin/freetype-config /usr/bin/fribidi /usr/bin/fribidi-config /usr/bin/from /usr/bin/fromdos /usr/bin/fsstat /usr/bin/fstopgm /usr/bin/ftdump1 /usr/bin/fterror /usr/bin/ftlint1 /usr/bin/ftmetric /usr/bin/ftp /usr/bin/ftpcount /usr/bin/ftpdctl /usr/bin/ftptop /usr/bin/ftpwho /usr/bin/ftsbit /usr/bin/ftstring1 /usr/bin/ftstrpnm /usr/bin/ftstrtto /usr/bin/fttimer1 /usr/bin/ftview1 /usr/bin/ftzoom /usr/bin/funzip /usr/bin/g++ /usr/bin/g++-2.95 /usr/bin/g++-3.2 /usr/bin/g++-3.3 /usr/bin/g3topbm /usr/bin/gabber /usr/bin/gaim /usr/bin/gaim-remote /usr/bin/gamma4scanimage /usr/bin/gawk /usr/bin/gbklatex /usr/bin/gc /usr/bin/gcalctool /usr/bin/gcc /usr/bin/gcc-2.95 /usr/bin/gcc-3.2 /usr/bin/gcc-3.3 /usr/bin/gccbug /usr/bin/gccbug-3.2 /usr/bin/gccbug-3.3 /usr/bin/gconfd-1 /usr/bin/gconf-editor /usr/bin/gconfigger /usr/bin/gconf-merge-tree /usr/bin/gconf-sanity-check-1 /usr/bin/gconftool /usr/bin/gconftool-1 /usr/bin/gconftool-2 /usr/bin/gcov /usr/bin/gcov-2.95 /usr/bin/gcov-3.2 /usr/bin/gcov-3.3 /usr/bin/gda-config-tool /usr/bin/gda-report-test /usr/bin/gda-run /usr/bin/gda-test /usr/bin/gdb /usr/bin/gdbserver /usr/bin/gdbtui /usr/bin/gdialog /usr/bin/gdk-pixbuf-config /usr/bin/gdk-pixbuf-csource /usr/bin/gdk-pixbuf-query-loaders /usr/bin/gdm /usr/bin/gdmchooser /usr/bin/gdmflexiserver /usr/bin/gdmgreeter /usr/bin/gdmlogin /usr/bin/gdmphotosetup /usr/bin/gdmsetup /usr/bin/gdmthemetester /usr/bin/gdmXnest /usr/bin/gdmXnestchooser /usr/bin/gedi /usr/bin/gemtopbm /usr/bin/gemtopnm /usr/bin/gencat /usr/bin/gendiff /usr/bin/genksyms /usr/bin/genresscript /usr/bin/geqn /usr/bin/GET /usr/bin/getafm /usr/bin/getafm-freetype /usr/bin/getconf /usr/bin/get-edid /usr/bin/getent /usr/bin/getfdprm /usr/bin/gethostip /usr/bin/getkeycodes /usr/bin/getls-lR /usr/bin/getopt /usr/bin/getpeername /usr/bin/gettext /usr/bin/gettextize /usr/bin/gettext.sh /usr/bin/gfloppy /usr/bin/gfplus /usr/bin/gfserver /usr/bin/gftodvi /usr/bin/gftopk /usr/bin/gftype /usr/bin/ggv /usr/bin/ghns /usr/bin/gif2tiff /usr/bin/giftopnm /usr/bin/gimp /usr/bin/gimp-2.2 /usr/bin/gimpprint-config /usr/bin/gimp-remote /usr/bin/gimp-remote-2.2 /usr/bin/gkrellm /usr/bin/gksu /usr/bin/gksudo /usr/bin/gksuexec /usr/bin/glade-2 /usr/bin/glib-config /usr/bin/glib-genmarshal /usr/bin/glib-gettextize /usr/bin/glib-mkenums /usr/bin/gnome-about /usr/bin/gnome-accessibility-keyboard-properties /usr/bin/gnome-at-properties /usr/bin/gnome-audio-profiles-properties /usr/bin/gnome-background-properties /usr/bin/gnome-bug /usr/bin/gnome-calculator /usr/bin/gnome-cd /usr/bin/gnome-cd-properties /usr/bin/gnome-character-map /usr/bin/gnome-config /usr/bin/gnome-control-center /usr/bin/gnome-cups-add /usr/bin/gnome-cups-icon /usr/bin/gnome-cups-manager /usr/bin/gnome-db2html /usr/bin/gnome-default-applications-properties /usr/bin/gnome-desktop-item-edit /usr/bin/gnome-dictionary /usr/bin/gnome-display-properties /usr/bin/gnome-doc /usr/bin/gnome-doc-prepare /usr/bin/gnome-dump-metadata /usr/bin/gnome-font-install /usr/bin/gnome-font-properties /usr/bin/gnome-font-viewer /usr/bin/gnome-gen-mimedb /usr/bin/gnome-gv /usr/bin/gnome-help /usr/bin/gnome-keybinding-properties /usr/bin/gnome-keyboard-properties /usr/bin/gnome-keyring-daemon /usr/bin/gnomemeeting /usr/bin/gnomemeeting-config-tool /usr/bin/gnome-menu-spec-test /usr/bin/gnome-mkstub /usr/bin/gnome-mouse-properties /usr/bin/gnome-moz-remote /usr/bin/gnome-name-service /usr/bin/gnome-nettool /usr/bin/gnome-network-preferences /usr/bin/gnome-open /usr/bin/gnome-panel /usr/bin/gnome-panel-screenshot /usr/bin/gnome-pilot-make-password /usr/bin/gnome-screenshot /usr/bin/gnome-search-tool /usr/bin/gnome_segv /usr/bin/gnome-session /usr/bin/gnome-session-properties /usr/bin/gnome-session-remove /usr/bin/gnome-session-save /usr/bin/gnome-settings-daemon /usr/bin/gnome-smproxy /usr/bin/gnome-sound-properties /usr/bin/gnome-sound-recorder /usr/bin/gnome-sudo /usr/bin/gnome-system-log /usr/bin/gnome-system-monitor /usr/bin/gnome-terminal /usr/bin/gnome-terminal.wrapper /usr/bin/gnome-text-editor /usr/bin/gnome-theme-manager /usr/bin/gnome-theme-thumbnailer /usr/bin/gnome-thumbnail-font /usr/bin/gnome-typing-monitor /usr/bin/gnome-ui-properties /usr/bin/gnomevfs-cat /usr/bin/gnomevfs-copy /usr/bin/gnomevfs-info /usr/bin/gnomevfs-ls /usr/bin/gnomevfs-mkdir /usr/bin/gnomevfs-mv /usr/bin/gnomevfs-rm /usr/bin/gnome-video-thumbnailer /usr/bin/gnome-volume-control /usr/bin/gnome-window-properties /usr/bin/gnome-wm /usr/bin/gnuattach /usr/bin/gnuattach.xemacs21 /usr/bin/gnuclient /usr/bin/gnuclient.xemacs21 /usr/bin/gnudoit /usr/bin/gnudoit.xemacs21 /usr/bin/gnumeric /usr/bin/gnuplot /usr/bin/goad-browser /usr/bin/gobject-query /usr/bin/gouldtoppm /usr/bin/gpasswd /usr/bin/gpdf /usr/bin/gpg /usr/bin/gpg2 /usr/bin/gpg-agent /usr/bin/gpgconf /usr/bin/gpg-convert-from-106 /usr/bin/gpg-error /usr/bin/gpg-error-config /usr/bin/gpgp /usr/bin/gpgsm /usr/bin/gpgsm-gencert.sh /usr/bin/gpgsplit /usr/bin/gpgv /usr/bin/gpgv2 /usr/bin/gpic /usr/bin/gpilot-applet /usr/bin/gpilotd /usr/bin/gpilotd-control-applet /usr/bin/gpilotd-session-wrapper /usr/bin/gpilot-install-file /usr/bin/gprof /usr/bin/gqcam /usr/bin/gramps /usr/bin/grep-aptavail /usr/bin/grep-available /usr/bin/grep-changelog /usr/bin/grep-changelog.emacs21 /usr/bin/grep-dctrl /usr/bin/grepdiff /usr/bin/grep-excuses /usr/bin/grep-status /usr/bin/gretl /usr/bin/gretlcli /usr/bin/gretl_x11 /usr/bin/grn /usr/bin/grodvi /usr/bin/groff /usr/bin/groffer /usr/bin/grog /usr/bin/grolbp /usr/bin/grolj4 /usr/bin/grops /usr/bin/grotty /usr/bin/groups /usr/bin/groupwarewizard /usr/bin/gs /usr/bin/gsbj /usr/bin/gsdj /usr/bin/gsdj500 /usr/bin/gsftopk /usr/bin/gs-gpl /usr/bin/gshell /usr/bin/gslj /usr/bin/gslp /usr/bin/gsnd /usr/bin/gst-complete /usr/bin/gst-complete-0.8 /usr/bin/gst-compprep-0.6 /usr/bin/gst-compprep-0.8 /usr/bin/gst-feedback /usr/bin/gst-feedback-0.8 /usr/bin/gst-inspect /usr/bin/gst-inspect-0.8 /usr/bin/gst-launch /usr/bin/gst-launch-0.8 /usr/bin/gst-launch-ext /usr/bin/gst-launch-ext-0.8 /usr/bin/gst-md5sum /usr/bin/gst-md5sum-0.8 /usr/bin/gstreamer-properties /usr/bin/gst-register-0.6 /usr/bin/gst-register-0.8 /usr/bin/gst-typefind /usr/bin/gst-typefind-0.8 /usr/bin/gst-visualise /usr/bin/gst-visualise-0.8 /usr/bin/gst-xmlinspect /usr/bin/gst-xmlinspect-0.8 /usr/bin/gst-xmllaunch /usr/bin/gst-xmllaunch-0.8 /usr/bin/gtbl /usr/bin/gthumb /usr/bin/gtk-config /usr/bin/gtk-query-immodules-2.0 /usr/bin/gtksee /usr/bin/gtk-update-icon-cache /usr/bin/guards /usr/bin/gucharmap /usr/bin/gv /usr/bin/gvcolor /usr/bin/gvpack /usr/bin/gvpr /usr/bin/gxditview /usr/bin/gxine /usr/bin/gxine_client /usr/bin/gxl2dot /usr/bin/h2ph /usr/bin/h2xs /usr/bin/hal-get-property /usr/bin/hal-set-property /usr/bin/hattrib /usr/bin/hbf2gf /usr/bin/hcd /usr/bin/hcopy /usr/bin/hd /usr/bin/hdel /usr/bin/hdir /usr/bin/head /usr/bin/HEAD /usr/bin/help2man /usr/bin/helpviewer /usr/bin/helpztags /usr/bin/hexdump /usr/bin/hfind /usr/bin/hformat /usr/bin/hinotes /usr/bin/hipstopgm /usr/bin/hls /usr/bin/hman /usr/bin/hmkdir /usr/bin/hmount /usr/bin/honeyd /usr/bin/honeydctl /usr/bin/host /usr/bin/hostid /usr/bin/hpcdtoppm /usr/bin/hpftodit /usr/bin/hpset /usr/bin/hpwd /usr/bin/hrename /usr/bin/hrmdir /usr/bin/ht /usr/bin/htdbm /usr/bin/htdigest /usr/bin/htdigest2 /usr/bin/htlatex /usr/bin/html2png /usr/bin/html2text /usr/bin/HtmlConverter /usr/bin/htmltoc /usr/bin/htpasswd /usr/bin/htpasswd2 /usr/bin/httex /usr/bin/httexi /usr/bin/httpush /usr/bin/humount /usr/bin/hvol /usr/bin/hyperlatex /usr/bin/i386-linux-cpp /usr/bin/i386-linux-cpp-3.2 /usr/bin/i386-linux-g++ /usr/bin/i386-linux-g++-3.2 /usr/bin/i386-linux-gcc /usr/bin/i386-linux-gcc-3.2 /usr/bin/i486-linux-gnu-cpp-3.3 /usr/bin/i486-linux-gnu-g++-3.3 /usr/bin/i486-linux-gnu-gcc-3.3 /usr/bin/ical2vcal /usr/bin/icat /usr/bin/icat-sleuthkit /usr/bin/icombine /usr/bin/icontopbm /usr/bin/iconv /usr/bin/iconx /usr/bin/icotool /usr/bin/id /usr/bin/ident /usr/bin/identify /usr/bin/idlj /usr/bin/ietf2datebook /usr/bin/ifind /usr/bin/ifnames /usr/bin/ifnames2.13 /usr/bin/igal /usr/bin/igawk /usr/bin/ijoin /usr/bin/ilbmtoppm /usr/bin/ils /usr/bin/ils-sleuthkit /usr/bin/im /usr/bin/im2.3 /usr/bin/imagetops /usr/bin/img2png /usr/bin/img2py /usr/bin/img2xpm /usr/bin/imgsize /usr/bin/img_stat /usr/bin/imgtoppm /usr/bin/imlib-config /usr/bin/import /usr/bin/includeres /usr/bin/indent /usr/bin/indiserver /usr/bin/indxbib /usr/bin/info /usr/bin/infobrowser /usr/bin/infocmp /usr/bin/infokey /usr/bin/infotocap /usr/bin/inimf /usr/bin/inimpost /usr/bin/iniomega /usr/bin/initex /usr/bin/install /usr/bin/install-datebook /usr/bin/install-expenses /usr/bin/install-hinote /usr/bin/install-memo /usr/bin/install-menu /usr/bin/install-netsync /usr/bin/install-todo /usr/bin/install-todos /usr/bin/install-user /usr/bin/instant /usr/bin/instmodsh /usr/bin/interdiff /usr/bin/intltool-extract /usr/bin/intltoolize /usr/bin/intltool-merge /usr/bin/intltool-prepare /usr/bin/intltool-update /usr/bin/iostat /usr/bin/ipcalc /usr/bin/ipcrm /usr/bin/ipcs /usr/bin/ipv4calc /usr/bin/irb /usr/bin/irb1.8 /usr/bin/irc /usr/bin/ircII /usr/bin/irkick /usr/bin/isamchk /usr/bin/isamlog /usr/bin/iselect /usr/bin/isodump /usr/bin/isoinfo /usr/bin/isovfy /usr/bin/ispell /usr/bin/ispell-wrapper /usr/bin/istat /usr/bin/itclsh /usr/bin/itclsh3.1 /usr/bin/jack_bufsize /usr/bin/jack_connect /usr/bin/jackd /usr/bin/jack_disconnect /usr/bin/jack_freewheel /usr/bin/jack_impulse_grabber /usr/bin/jack_load /usr/bin/jack_lsp /usr/bin/jack_metro /usr/bin/jack_monitor_client /usr/bin/jackrec /usr/bin/jack_showtime /usr/bin/jack_simple_client /usr/bin/jackstart /usr/bin/jack_transport /usr/bin/jack_unload /usr/bin/jade /usr/bin/jadetex /usr/bin/jar /usr/bin/jarsigner /usr/bin/java /usr/bin/javac /usr/bin/javadoc /usr/bin/javah /usr/bin/javap /usr/bin/javaws /usr/bin/jcat /usr/bin/jdb /usr/bin/jls /usr/bin/jmacs /usr/bin/joe /usr/bin/join /usr/bin/jpegexiforient /usr/bin/jpegtopnm /usr/bin/jpegtran /usr/bin/jpico /usr/bin/jstar /usr/bin/juk /usr/bin/jw /usr/bin/k3b /usr/bin/k3bsetup /usr/bin/kab2kabc /usr/bin/kabc2mutt /usr/bin/kaboodle /usr/bin/kaccess /usr/bin/kaddprinterwizard /usr/bin/kaddressbook /usr/bin/kalarm /usr/bin/kalarmd /usr/bin/kalzium /usr/bin/kandy /usr/bin/kandy_client /usr/bin/kappfinder /usr/bin/karbon /usr/bin/karm /usr/bin/kate /usr/bin/kaudiocreator /usr/bin/kbabel /usr/bin/kbabeldict /usr/bin/kbanner.kss /usr/bin/kbd-config /usr/bin/kbd_mode /usr/bin/kblankscrn.kss /usr/bin/kblob.kss /usr/bin/kbruch /usr/bin/kbuildsycoca /usr/bin/kbxutil /usr/bin/kcalc /usr/bin/kcharselect /usr/bin/kchart /usr/bin/kcheckpass /usr/bin/kclock.kss /usr/bin/kcminit /usr/bin/kcmshell /usr/bin/kcolorchooser /usr/bin/kcoloredit /usr/bin/kconfig_compiler /usr/bin/kconf_update /usr/bin/kcontrol /usr/bin/kcontroledit /usr/bin/kcookiejar /usr/bin/kcron /usr/bin/kdat /usr/bin/kdcop /usr/bin/kdebugdialog /usr/bin/kde-config /usr/bin/kded /usr/bin/kdeeject /usr/bin/kdeinit /usr/bin/kdeinit_shutdown /usr/bin/kdeinit_wrapper /usr/bin/kdeinstallktheme /usr/bin/kde-menu /usr/bin/kdepasswd /usr/bin/kdeprintfax /usr/bin/kdesktop /usr/bin/kdesktop_lock /usr/bin/kdessh /usr/bin/kdesu /usr/bin/kdesud /usr/bin/kdesu_stub /usr/bin/kdf /usr/bin/kdialog /usr/bin/kdict /usr/bin/kdoc /usr/bin/kdontchangethehostname /usr/bin/kdvi /usr/bin/kedit /usr/bin/keditfiletype /usr/bin/keduca /usr/bin/keducabuilder /usr/bin/keuphoria.kss /usr/bin/keytool /usr/bin/kfax /usr/bin/kfile /usr/bin/kfind /usr/bin/kfiresaver.kss /usr/bin/kfloppy /usr/bin/kflux.kss /usr/bin/kfmexec /usr/bin/kfontinst /usr/bin/kfontview /usr/bin/kformula /usr/bin/kfountain.kss /usr/bin/kget /usr/bin/kghostview /usr/bin/kgpg /usr/bin/kgpgcertmanager /usr/bin/kgrantpty /usr/bin/kgravity.kss /usr/bin/khangman /usr/bin/khc_indexbuilder /usr/bin/khelpcenter /usr/bin/khexedit /usr/bin/khotkeys /usr/bin/khotnewstuff /usr/bin/kicker /usr/bin/kiconedit /usr/bin/kig /usr/bin/killall /usr/bin/kimage_concat /usr/bin/kinfocenter /usr/bin/kinstalltheme /usr/bin/kio_devices_mounthelper /usr/bin/kioexec /usr/bin/kio_http_cache_cleaner /usr/bin/kioslave /usr/bin/kio_uiserver /usr/bin/kit /usr/bin/kitchensync /usr/bin/kiten /usr/bin/kitengen /usr/bin/kivio /usr/bin/kjobviewer /usr/bin/kjots /usr/bin/klaptop_acpi_helper /usr/bin/klaptop_check /usr/bin/klatin /usr/bin/klauncher /usr/bin/klettres /usr/bin/klines.kss /usr/bin/klinkstatus /usr/bin/klipper /usr/bin/klocaldomainurifilterhelper /usr/bin/klorenz.kss /usr/bin/kmail /usr/bin/kmail_antivir.sh /usr/bin/kmail_clamav.sh /usr/bin/kmailcvt /usr/bin/kmail_fprot.sh /usr/bin/kmail_sav.sh /usr/bin/kmailservice /usr/bin/kmdr2po /usr/bin/kmdr-editor /usr/bin/kmdr-executor /usr/bin/kmdr-plugins /usr/bin/kmenuedit /usr/bin/kmessedwords /usr/bin/kmid /usr/bin/kmix /usr/bin/kmixctrl /usr/bin/kmplot /usr/bin/knewstickerstub /usr/bin/knode /usr/bin/knotes /usr/bin/koconverter /usr/bin/kodo /usr/bin/kolabwizard /usr/bin/kolourpaint /usr/bin/konsole /usr/bin/konsolekalendar /usr/bin/kontact /usr/bin/kooka /usr/bin/kopete /usr/bin/kopete_latexconvert.sh /usr/bin/korgac /usr/bin/korganizer /usr/bin/korganizerIn /usr/bin/korn /usr/bin/koscript /usr/bin/koshell /usr/bin/kpac_dhcp_helper /usr/bin/kpackage /usr/bin/kpager /usr/bin/kpaint /usr/bin/kpalmdoc /usr/bin/kpartsaver.kss /usr/bin/kpdf /usr/bin/kpendulum.kss /usr/bin/kpercentage /usr/bin/kpersonalizer /usr/bin/kpilot /usr/bin/kpilotDaemon /usr/bin/kpm /usr/bin/kpolygon.kss /usr/bin/kpovmodeler /usr/bin/kppp /usr/bin/kppplogview /usr/bin/kprconverter.pl /usr/bin/kpresenter /usr/bin/kprinter /usr/bin/kpsepath /usr/bin/kpsestat /usr/bin/kpsetool /usr/bin/kpsewhich /usr/bin/kpsexpand /usr/bin/krandom.kss /usr/bin/krandrinithack /usr/bin/krandrtray /usr/bin/krb5-config /usr/bin/krdb /usr/bin/krdc /usr/bin/kreadconfig /usr/bin/krec /usr/bin/kregexpeditor /usr/bin/krfb /usr/bin/krfb_httpd /usr/bin/krita /usr/bin/krotation.kss /usr/bin/kruler /usr/bin/kscd /usr/bin/kscience.kss /usr/bin/ksendbugmail /usr/bin/kshell /usr/bin/ksig /usr/bin/ksirc /usr/bin/kslideshow.kss /usr/bin/ksmserver /usr/bin/ksnapshot /usr/bin/ksolarwinds.kss /usr/bin/kspace.kss /usr/bin/ksplash /usr/bin/kspread /usr/bin/kstars /usr/bin/kstart /usr/bin/ksvgtopng /usr/bin/kswarm.kss /usr/bin/ksymoops /usr/bin/ksync /usr/bin/ksysguard /usr/bin/ksysguardd /usr/bin/ksystraycmd /usr/bin/ksysv /usr/bin/kteatime /usr/bin/ktelnetservice /usr/bin/kthesaurus /usr/bin/ktimer /usr/bin/ktip /usr/bin/ktnef /usr/bin/ktouch /usr/bin/ktradertest /usr/bin/kturtle /usr/bin/ktux /usr/bin/kudesigner /usr/bin/kugar /usr/bin/kuickshow /usr/bin/kuser /usr/bin/kverbos /usr/bin/kview /usr/bin/kviewshell /usr/bin/kvoctrain /usr/bin/kwalletmanager /usr/bin/kwave.kss /usr/bin/kweatherreport /usr/bin/kweatherservice /usr/bin/kwebdesktop /usr/bin/kwifimanager /usr/bin/kwikdisk /usr/bin/kwin /usr/bin/kwin_killer_helper /usr/bin/kwin_rules_dialog /usr/bin/kword /usr/bin/kwordquiz /usr/bin/kworldclock /usr/bin/kwrapper /usr/bin/kwrite /usr/bin/kwriteconfig /usr/bin/kxkb /usr/bin/kxsconfig /usr/bin/kxsrun /usr/bin/lablgl /usr/bin/lablglut /usr/bin/labltk /usr/bin/lacheck /usr/bin/lambda /usr/bin/langen2kvtml /usr/bin/last /usr/bin/lastb /usr/bin/lastlog /usr/bin/latex /usr/bin/latex2html /usr/bin/lcf /usr/bin/ld /usr/bin/ld86 /usr/bin/ldd /usr/bin/lddlibc4 /usr/bin/leaftoppm /usr/bin/lefty /usr/bin/less /usr/bin/lessecho /usr/bin/lessfile /usr/bin/lesskey /usr/bin/lesspipe /usr/bin/lex /usr/bin/lexgrog /usr/bin/libart2-config /usr/bin/libart-config /usr/bin/libgcrypt-config /usr/bin/libglade-config /usr/bin/libglade-convert /usr/bin/libglade-xgettext /usr/bin/libgnutls-config /usr/bin/libgnutls-extra-config /usr/bin/libIDL-config /usr/bin/libIDL-config-2 /usr/bin/libnetcfg /usr/bin/libnet-config /usr/bin/libpng12-config /usr/bin/libpng-config /usr/bin/libtasn1-config /usr/bin/libtool /usr/bin/libtoolize /usr/bin/libusb-config /usr/bin/linda /usr/bin/line /usr/bin/link /usr/bin/links /usr/bin/links.main /usr/bin/lintian /usr/bin/lintian-info /usr/bin/linuxdoc /usr/bin/linux_logo /usr/bin/lispmtopgm /usr/bin/list_audio_tracks /usr/bin/lkbib /usr/bin/llexec /usr/bin/llines /usr/bin/lneato /usr/bin/lnkforward /usr/bin/lnusertemp /usr/bin/loadshlib /usr/bin/locale /usr/bin/localedef /usr/bin/locate /usr/bin/lockfile /usr/bin/lockfile-create /usr/bin/lockfile-remove /usr/bin/lockfile-touch /usr/bin/lockvc /usr/bin/lockvs /usr/bin/logger /usr/bin/logname /usr/bin/look /usr/bin/lookbib /usr/bin/lorder /usr/bin/lore /usr/bin/lore2.3 /usr/bin/lp /usr/bin/lpq /usr/bin/lpr /usr/bin/lprm /usr/bin/lprsetup.sh /usr/bin/lpstat /usr/bin/lrelease /usr/bin/lsattr /usr/bin/lsdev /usr/bin/lsdiff /usr/bin/lshal /usr/bin/lskpatches /usr/bin/lsof /usr/bin/lspci /usr/bin/lspgpot /usr/bin/lss16toppm /usr/bin/lsusb /usr/bin/ltrace /usr/bin/lupdate /usr/bin/lwp-download /usr/bin/lwp-mirror /usr/bin/lwp-request /usr/bin/lwp-rget /usr/bin/lx200_16 /usr/bin/lx200autostar /usr/bin/lx200classic /usr/bin/lx200generic /usr/bin/lx200gps /usr/bin/lx200xed /usr/bin/lynx /usr/bin/lynx.stable /usr/bin/lyx /usr/bin/lyx-qt /usr/bin/lz /usr/bin/m4 /usr/bin/macptopbm /usr/bin/mactime /usr/bin/mactime-sleuthkit /usr/bin/mad /usr/bin/madison-lite /usr/bin/mag /usr/bin/magicdev /usr/bin/mail /usr/bin/Mail /usr/bin/maildiracl /usr/bin/maildirkw /usr/bin/maildirmake /usr/bin/maildirmake.courier /usr/bin/mail-files /usr/bin/mail-lock /usr/bin/mailmail /usr/bin/mailmail2.3 /usr/bin/mailq /usr/bin/mailshar /usr/bin/mailstat /usr/bin/mail-touchlock /usr/bin/mail-unlock /usr/bin/mailx /usr/bin/make /usr/bin/makedat /usr/bin/make_driver_db_cups /usr/bin/make_driver_db_lpr /usr/bin/makeindex /usr/bin/makeinfo /usr/bin/makekdedoc /usr/bin/makekdewidgets /usr/bin/make-kpkg /usr/bin/make-memtest86-boot-floppy /usr/bin/makempx /usr/bin/makempy /usr/bin/makepasswd /usr/bin/MakeTeXPK /usr/bin/man /usr/bin/man2html /usr/bin/mandb /usr/bin/manhole /usr/bin/manhole2.3 /usr/bin/manpath /usr/bin/mattrib /usr/bin/mawk /usr/bin/mbadblocks /usr/bin/mbmon /usr/bin/mbmon-rrd /usr/bin/mcat /usr/bin/mcd /usr/bin/mcheck /usr/bin/mcomp /usr/bin/mcookie /usr/bin/mcopy /usr/bin/mcp /usr/bin/md5sum /usr/bin/mdatopbm /usr/bin/mdel /usr/bin/mdeltree /usr/bin/mdetect /usr/bin/mdir /usr/bin/mdu /usr/bin/meinproc /usr/bin/memos /usr/bin/merge /usr/bin/mergecap /usr/bin/mergechanges /usr/bin/mesg /usr/bin/metaflac /usr/bin/mev /usr/bin/mf /usr/bin/mf-nowin /usr/bin/mformat /usr/bin/mft /usr/bin/mfw /usr/bin/mgrtopbm /usr/bin/midisend /usr/bin/minfo /usr/bin/minicom /usr/bin/mini-inetd /usr/bin/mirror /usr/bin/mirror-master /usr/bin/mirrors /usr/bin/mk4ht /usr/bin/mkafmmap /usr/bin/mkcamlp4 /usr/bin/mk_cmds /usr/bin/mkfifo /usr/bin/mkfontdesc /usr/bin/mkhybrid /usr/bin/mkindex /usr/bin/mkisofs /usr/bin/mkls-lR /usr/bin/mkmanifest /usr/bin/mk_modmap /usr/bin/mkocp /usr/bin/mkofm /usr/bin/mkpasswd /usr/bin/mktap /usr/bin/mktap2.3 /usr/bin/mktexfmt /usr/bin/mktexlsr /usr/bin/mktexmf /usr/bin/mktexpk /usr/bin/mktextfm /usr/bin/mkzftree /usr/bin/mlabel /usr/bin/mlchat /usr/bin/mlchat_say /usr/bin/mln /usr/bin/mmd /usr/bin/mmencode /usr/bin/mmls /usr/bin/mmount /usr/bin/mmove /usr/bin/mmroff /usr/bin/mmstat /usr/bin/mmv /usr/bin/moc /usr/bin/moc-qt2 /usr/bin/moc-qt3 /usr/bin/mogrify /usr/bin/money2qif /usr/bin/moniker-test /usr/bin/montage /usr/bin/movemail /usr/bin/mozilla-1.7.8 /usr/bin/mozilla-suite /usr/bin/mp3burn /usr/bin/mp3-decoder /usr/bin/mp4h /usr/bin/mpack /usr/bin/mpage /usr/bin/mpartition /usr/bin/mpeglibartsplay /usr/bin/mpg123 /usr/bin/mpg321 /usr/bin/mpost /usr/bin/mpstat /usr/bin/mpto /usr/bin/mptopdf /usr/bin/mrd /usr/bin/mren /usr/bin/mrmlsearch /usr/bin/msgattrib /usr/bin/msgcat /usr/bin/msgcmp /usr/bin/msgcomm /usr/bin/msgconv /usr/bin/msgen /usr/bin/msgexec /usr/bin/msgfilter /usr/bin/msgfmt /usr/bin/msggrep /usr/bin/msginit /usr/bin/msgmerge /usr/bin/msgunfmt /usr/bin/msguniq /usr/bin/mshowfat /usr/bin/msql2mysql /usr/bin/mtools /usr/bin/mtoolstest /usr/bin/mtr /usr/bin/mtrace /usr/bin/mtvtoppm /usr/bin/mtype /usr/bin/multicd /usr/bin/munchlist /usr/bin/munpack /usr/bin/mutt /usr/bin/mutt_dotlock /usr/bin/mxtar /usr/bin/myisamchk /usr/bin/myisam_ftdump /usr/bin/myisamlog /usr/bin/myisampack /usr/bin/my_print_defaults /usr/bin/mysql /usr/bin/mysqlaccess /usr/bin/mysqladmin /usr/bin/mysqlbinlog /usr/bin/mysqlbug /usr/bin/mysqlcheck /usr/bin/mysql_config /usr/bin/mysql_convert_table_format /usr/bin/mysqld_multi /usr/bin/mysqld_safe /usr/bin/mysqldump /usr/bin/mysqldumpslow /usr/bin/mysql_explain_log /usr/bin/mysql_find_rows /usr/bin/mysql_fix_extensions /usr/bin/mysql_fix_privilege_tables /usr/bin/mysqlhotcopy /usr/bin/mysqlimport /usr/bin/mysql_install_db /usr/bin/mysqlmanager /usr/bin/mysqlmanagerc /usr/bin/mysqlmanager-pwgen /usr/bin/mysql_secure_installation /usr/bin/mysql_setpermission /usr/bin/mysqlshow /usr/bin/mysql_tableinfo /usr/bin/mysqltest /usr/bin/mysql_waitpid /usr/bin/mysql_zap /usr/bin/mzip /usr/bin/namei /usr/bin/nano /usr/bin/nasl /usr/bin/nasl-config /usr/bin/native2ascii /usr/bin/nautilus-cd-burner /usr/bin/nawk /usr/bin/ncal /usr/bin/ncftp /usr/bin/ncftp3 /usr/bin/ncftpbatch /usr/bin/ncftpbookmarks /usr/bin/ncftpget /usr/bin/ncftpls /usr/bin/ncftpput /usr/bin/ncftpspooler /usr/bin/neato /usr/bin/neotoppm /usr/bin/neqn /usr/bin/nessus /usr/bin/nessus-build /usr/bin/nessus-config /usr/bin/nessus-fetch /usr/bin/nessus-mkcert-client /usr/bin/nessus-mkrand /usr/bin/net /usr/bin/netkit-ftp /usr/bin/netselect /usr/bin/network-admin /usr/bin/newaliases /usr/bin/newer /usr/bin/newgrp /usr/bin/new-object /usr/bin/nex /usr/bin/ngettext /usr/bin/nice /usr/bin/nl /usr/bin/nm /usr/bin/nm86 /usr/bin/nmap /usr/bin/nmblookup /usr/bin/nmicmpd /usr/bin/nmtrapd /usr/bin/noatun /usr/bin/noatunsynaescope.bin /usr/bin/noatuntippecanoe.bin /usr/bin/noatuntyler.bin /usr/bin/nodefs /usr/bin/nohup /usr/bin/noindex /usr/bin/nop /usr/bin/normalize /usr/bin/normalize-mp3 /usr/bin/normalize-ogg /usr/bin/noroff /usr/bin/noroots /usr/bin/notangle /usr/bin/nountangle /usr/bin/noweave /usr/bin/noweb /usr/bin/noweb2lyx /usr/bin/nroff /usr/bin/nsgmls /usr/bin/nslookup /usr/bin/nspluginscan /usr/bin/nspluginviewer /usr/bin/nsupdate /usr/bin/ntpdc /usr/bin/ntpq /usr/bin/ntpsweep /usr/bin/ntptrace /usr/bin/ntsc-cc /usr/bin/nuweb2noweb /usr/bin/nvi /usr/bin/nview /usr/bin/oaf-client /usr/bin/oafd /usr/bin/oaf-empty-server /usr/bin/oaf-run-query /usr/bin/oaf-slay /usr/bin/oaf-sysconf /usr/bin/objcopy /usr/bin/objdump /usr/bin/objdump86 /usr/bin/ocaml /usr/bin/ocamlbrowser /usr/bin/ocamlc /usr/bin/ocamlc.opt /usr/bin/ocamlcp /usr/bin/ocamlcvs /usr/bin/ocamldebug /usr/bin/ocamldep /usr/bin/ocamldep.opt /usr/bin/ocamldoc /usr/bin/ocamldoc.opt /usr/bin/ocamldot /usr/bin/ocamlfind /usr/bin/ocamllex /usr/bin/ocamllex.opt /usr/bin/ocamlmklib /usr/bin/ocamlmktop /usr/bin/ocamlobjinfo /usr/bin/ocamlopt /usr/bin/ocamlopt.opt /usr/bin/ocamlprof /usr/bin/ocamlrun /usr/bin/ocamltags /usr/bin/ocamlweb /usr/bin/ocamlyacc /usr/bin/ocpp /usr/bin/od /usr/bin/odvicopy /usr/bin/odvips /usr/bin/odvitype /usr/bin/ofm2opl /usr/bin/ogg123 /usr/bin/oggdec /usr/bin/oggenc /usr/bin/ogginfo /usr/bin/ogonkify /usr/bin/omega /usr/bin/omfonts /usr/bin/omom-edit /usr/bin/omom-gen /usr/bin/on_ac_power /usr/bin/onsgmls /usr/bin/open /usr/bin/opencdk-config /usr/bin/openjade /usr/bin/openjade-1.4devel /usr/bin/opensc-explorer /usr/bin/opensc-tool /usr/bin/openssl /usr/bin/openssl_fips_fingerprint /usr/bin/openuniverse /usr/bin/openvt /usr/bin/opl2ofm /usr/bin/orbit2-config /usr/bin/orbit-config /usr/bin/orbit-idl /usr/bin/orbit-idl-2 /usr/bin/osgmlnorm /usr/bin/ospam /usr/bin/ospcat /usr/bin/ospent /usr/bin/osx /usr/bin/otangle /usr/bin/otp2ocp /usr/bin/outocp /usr/bin/over /usr/bin/ovf2ovp /usr/bin/ovp2ovf /usr/bin/oxdvi /usr/bin/oxdvi.bin /usr/bin/oxdvi.real /usr/bin/pack_isam /usr/bin/pads /usr/bin/pads-report /usr/bin/pager /usr/bin/pal2rgb /usr/bin/palmtopnm /usr/bin/pamcut /usr/bin/pamdeinterlace /usr/bin/pamdice /usr/bin/pamfile /usr/bin/pamoil /usr/bin/pamstack /usr/bin/pamstretch /usr/bin/pamstretch-gen /usr/bin/panel-test-applets /usr/bin/pango-querymodules /usr/bin/paperconf /usr/bin/par /usr/bin/parse-edid /usr/bin/passwd /usr/bin/paste /usr/bin/patch /usr/bin/patgen /usr/bin/pathchk /usr/bin/paxtest /usr/bin/pbmclean /usr/bin/pbmlife /usr/bin/pbmmake /usr/bin/pbmmask /usr/bin/pbmpage /usr/bin/pbmpscale /usr/bin/pbmreduce /usr/bin/pbmtext /usr/bin/pbmtextps /usr/bin/pbmto10x /usr/bin/pbmtoascii /usr/bin/pbmtoatk /usr/bin/pbmtobbnbg /usr/bin/pbmtocmuwm /usr/bin/pbmtoepsi /usr/bin/pbmtoepson /usr/bin/pbmtog3 /usr/bin/pbmtogem /usr/bin/pbmtogo /usr/bin/pbmtoicon /usr/bin/pbmtolj /usr/bin/pbmtomacp /usr/bin/pbmtomda /usr/bin/pbmtomgr /usr/bin/pbmtonokia /usr/bin/pbmtopgm /usr/bin/pbmtopi3 /usr/bin/pbmtoplot /usr/bin/pbmtoppa /usr/bin/pbmtopsg3 /usr/bin/pbmtoptx /usr/bin/pbmtowbmp /usr/bin/pbmtox10bm /usr/bin/pbmtoxbm /usr/bin/pbmtoybm /usr/bin/pbmtozinc /usr/bin/pbmupc /usr/bin/pcdindex /usr/bin/pcimodules /usr/bin/pcre-config /usr/bin/pcretest /usr/bin/pcxtoppm /usr/bin/pdb /usr/bin/pdb2.2 /usr/bin/pdb2.3 /usr/bin/pdb2.4 /usr/bin/pdbedit /usr/bin/pdebuild /usr/bin/pdf2dsc /usr/bin/pdf2ps /usr/bin/pdfeinitex /usr/bin/pdfelatex /usr/bin/pdfetex /usr/bin/pdfevirtex /usr/bin/pdffonts /usr/bin/pdfimages /usr/bin/pdfinfo /usr/bin/pdfinitex /usr/bin/pdfjadetex /usr/bin/pdflatex /usr/bin/pdfopt /usr/bin/pdftex /usr/bin/pdftoppm /usr/bin/pdftops /usr/bin/pdftosrc /usr/bin/pdftotext /usr/bin/pdfvirtex /usr/bin/pdiff /usr/bin/perl /usr/bin/perl5.8.7 /usr/bin/perlbug /usr/bin/perlcc /usr/bin/perldoc /usr/bin/perldoc.stub /usr/bin/perlivp /usr/bin/perror /usr/bin/pf2afm /usr/bin/pfb2pfa /usr/bin/pfbtopfa /usr/bin/pfbtops /usr/bin/pftp /usr/bin/pg /usr/bin/pgawk /usr/bin/pg_config /usr/bin/pg_dump /usr/bin/pg_dumpall /usr/bin/pgmbentley /usr/bin/pgmcrater /usr/bin/pgmedge /usr/bin/pgmenhance /usr/bin/pgmhist /usr/bin/pgmkernel /usr/bin/pgmnoise /usr/bin/pgmnorm /usr/bin/pgmoil /usr/bin/pgmramp /usr/bin/pgmslice /usr/bin/pgmtexture /usr/bin/pgmtofs /usr/bin/pgmtolispm /usr/bin/pgmtopbm /usr/bin/pgmtoppm /usr/bin/pgp /usr/bin/pgp5 /usr/bin/pgpe /usr/bin/pgpgpg /usr/bin/pgpk /usr/bin/pgps /usr/bin/pgpv /usr/bin/pgrep /usr/bin/pg_restore /usr/bin/pg_wrapper /usr/bin/php /usr/bin/php4 /usr/bin/php4-cgi /usr/bin/php-cgi /usr/bin/php-config /usr/bin/php-config4 /usr/bin/phpextdist /usr/bin/phpextdist4 /usr/bin/phpize /usr/bin/phpize4 /usr/bin/pi1toppm /usr/bin/pi3topbm /usr/bin/pia /usr/bin/pic /usr/bin/pic2graph /usr/bin/pic2tpic /usr/bin/pico /usr/bin/piconv /usr/bin/pi-csd /usr/bin/pi-getram /usr/bin/pi-getrom /usr/bin/pi-getromtoken /usr/bin/pike /usr/bin/pike7.2 /usr/bin/pike7.2-config /usr/bin/pilconvert.py /usr/bin/pildriver.py /usr/bin/pilfile.py /usr/bin/pilfont.py /usr/bin/pilot-addresses /usr/bin/pilot-archive /usr/bin/pilot-clip /usr/bin/pilot-datebook /usr/bin/pilot-dedupe /usr/bin/pilot-file /usr/bin/pilot-foto /usr/bin/pilot-manager /usr/bin/PilotManager /usr/bin/pilot-prc /usr/bin/pilot-schlep /usr/bin/pilot-undelete /usr/bin/pilot-xfer /usr/bin/pilprint.py /usr/bin/pinentry /usr/bin/pinentry-qt /usr/bin/pinentry-x11 /usr/bin/pinky /usr/bin/pi-nredir /usr/bin/pitchplay /usr/bin/pjtoppm /usr/bin/pk2bm /usr/bin/pkcs11-tool /usr/bin/pkcs15-crypt /usr/bin/pkcs15-init /usr/bin/pkcs15-tool /usr/bin/pkg-config /usr/bin/pkgs_to_mmin /usr/bin/pkill /usr/bin/pktogf /usr/bin/pktype /usr/bin/pl2pm /usr/bin/planner /usr/bin/playdv /usr/bin/plog /usr/bin/plotchangelog /usr/bin/pltotf /usr/bin/pmap /usr/bin/pmount /usr/bin/pmount-hal /usr/bin/pngtopnm /usr/bin/pnmalias /usr/bin/pnmarith /usr/bin/pnmcat /usr/bin/pnmcolormap /usr/bin/pnmcomp /usr/bin/pnmconvol /usr/bin/pnmcrop /usr/bin/pnmcut /usr/bin/pnmdepth /usr/bin/pnmenlarge /usr/bin/pnmfile /usr/bin/pnmflip /usr/bin/pnmgamma /usr/bin/pnmhisteq /usr/bin/pnmhistmap /usr/bin/pnmindex /usr/bin/pnminterp /usr/bin/pnminterp-gen /usr/bin/pnminvert /usr/bin/pnmmargin /usr/bin/pnmmontage /usr/bin/pnmnlfilt /usr/bin/pnmnoraw /usr/bin/pnmnorm /usr/bin/pnmpad /usr/bin/pnmpaste /usr/bin/pnmpsnr /usr/bin/pnmquant /usr/bin/pnmremap /usr/bin/pnmrotate /usr/bin/pnmscale /usr/bin/pnmscalefixed /usr/bin/pnmshear /usr/bin/pnmsmooth /usr/bin/pnmsplit /usr/bin/pnmtile /usr/bin/pnmtoddif /usr/bin/pnmtofiasco /usr/bin/pnmtofits /usr/bin/pnmtojpeg /usr/bin/pnmtopalm /usr/bin/pnmtoplainpnm /usr/bin/pnmtopng /usr/bin/pnmtops /usr/bin/pnmtorast /usr/bin/pnmtorle /usr/bin/pnmtosgi /usr/bin/pnmtosir /usr/bin/pnmtotiff /usr/bin/pnmtotiffcmyk /usr/bin/pnmtoxwd /usr/bin/po2debconf /usr/bin/po2xml /usr/bin/pod2html /usr/bin/pod2latex /usr/bin/pod2man /usr/bin/pod2text /usr/bin/pod2usage /usr/bin/podchecker /usr/bin/podebconf-display-po /usr/bin/podebconf-report-po /usr/bin/podselect /usr/bin/poff /usr/bin/policytool /usr/bin/pon /usr/bin/pooltype /usr/bin/popbugs /usr/bin/popclient /usr/bin/POST /usr/bin/poster /usr/bin/post-grohtml /usr/bin/pphs /usr/bin/ppm2tiff /usr/bin/ppm3d /usr/bin/ppmbrighten /usr/bin/ppmchange /usr/bin/ppmcie /usr/bin/ppmcolormask /usr/bin/ppmcolors /usr/bin/ppmdim /usr/bin/ppmdist /usr/bin/ppmdither /usr/bin/ppmfade /usr/bin/ppmflash /usr/bin/ppmforge /usr/bin/ppmhist /usr/bin/ppmlabel /usr/bin/ppmmake /usr/bin/ppmmix /usr/bin/ppmnorm /usr/bin/ppmntsc /usr/bin/ppmpat /usr/bin/ppmquant /usr/bin/ppmquantall /usr/bin/ppmqvga /usr/bin/ppmrainbow /usr/bin/ppmrelief /usr/bin/ppmshadow /usr/bin/ppmshift /usr/bin/ppmspread /usr/bin/ppmtoacad /usr/bin/ppmtobmp /usr/bin/ppmtoeyuv /usr/bin/ppmtogif /usr/bin/ppmtoicr /usr/bin/ppmtoilbm /usr/bin/ppmtojpeg /usr/bin/ppmtoleaf /usr/bin/ppmtolj /usr/bin/ppmtolss16 /usr/bin/ppmtomap /usr/bin/ppmtomitsu /usr/bin/ppmtompeg /usr/bin/ppmtoneo /usr/bin/ppmtopcx /usr/bin/ppmtopgm /usr/bin/ppmtopi1 /usr/bin/ppmtopict /usr/bin/ppmtopj /usr/bin/ppmtopuzz /usr/bin/ppmtorgb3 /usr/bin/ppmtosixel /usr/bin/ppmtotga /usr/bin/ppmtouil /usr/bin/ppmtowinicon /usr/bin/ppmtoxpm /usr/bin/ppmtoyuv /usr/bin/ppmtoyuvsplit /usr/bin/ppmtv /usr/bin/pr /usr/bin/precat /usr/bin/pre-grohtml /usr/bin/prename /usr/bin/preparetips /usr/bin/preunzip /usr/bin/prezip /usr/bin/prezip-bin /usr/bin/print /usr/bin/printafm /usr/bin/printenv /usr/bin/printf /usr/bin/printnodetest /usr/bin/procan /usr/bin/procinfo /usr/bin/procmail /usr/bin/prove /usr/bin/prune /usr/bin/ps2ascii /usr/bin/ps2epsi /usr/bin/ps2frag /usr/bin/ps2image /usr/bin/ps2pdf /usr/bin/ps2pdf12 /usr/bin/ps2pdf13 /usr/bin/ps2pdf14 /usr/bin/ps2pdfwr /usr/bin/ps2pk /usr/bin/ps2ps /usr/bin/psbook /usr/bin/pscan /usr/bin/psed /usr/bin/psfaddtable /usr/bin/psfgettable /usr/bin/psfstriptable /usr/bin/psidtopgm /usr/bin/pslatex /usr/bin/psmandup /usr/bin/psmerge /usr/bin/psnup /usr/bin/psql /usr/bin/psresize /usr/bin/psselect /usr/bin/psset /usr/bin/pstoedit /usr/bin/pstoimg /usr/bin/pstopnm /usr/bin/pstops /usr/bin/pstree /usr/bin/pstree.x11 /usr/bin/pstruct /usr/bin/ptar /usr/bin/ptked /usr/bin/ptksh /usr/bin/ptx /usr/bin/pumount /usr/bin/pv.sh /usr/bin/pwdx /usr/bin/pyalacarte /usr/bin/pyalamode /usr/bin/pycrust /usr/bin/pydoc /usr/bin/pydoc2.2 /usr/bin/pydoc2.3 /usr/bin/pydoc2.4 /usr/bin/pygettext /usr/bin/pygettext2.2 /usr/bin/pygettext2.3 /usr/bin/pygettext2.4 /usr/bin/pygtk-codegen-2.0 /usr/bin/pygtk-demo /usr/bin/pyshell /usr/bin/python /usr/bin/python2.2 /usr/bin/python2.3 /usr/bin/python2.4 /usr/bin/pywrap /usr/bin/qemacs /usr/bin/qembed /usr/bin/qmake /usr/bin/qrttoppm /usr/bin/qt2kdoc /usr/bin/quanta /usr/bin/querybts /usr/bin/quilt /usr/bin/quinn-diff /usr/bin/rainbow /usr/bin/rainbow-ac /usr/bin/rainbow-be /usr/bin/rainbow-pr /usr/bin/rainbow-rank /usr/bin/rainbow-stats /usr/bin/ranlib /usr/bin/rapidsvn /usr/bin/rar /usr/bin/ras2tiff /usr/bin/rasttopnm /usr/bin/rats /usr/bin/raw2tiff /usr/bin/rawtopgm /usr/bin/rawtoppm /usr/bin/rc-alert /usr/bin/rcp /usr/bin/rcs /usr/bin/rcs2log /usr/bin/rcs-checkin /usr/bin/rcs-checkin.emacs21 /usr/bin/rcs-checkin.xemacs21 /usr/bin/rcsclean /usr/bin/rcsdiff /usr/bin/rcsfreeze /usr/bin/rcsmerge /usr/bin/rdjpgcom /usr/bin/readcd /usr/bin/readelf /usr/bin/read-expenses /usr/bin/read-ical /usr/bin/readmult /usr/bin/read-notepad /usr/bin/read-palmpix /usr/bin/read-todos /usr/bin/realvncpasswd /usr/bin/realvncpasswd.real /usr/bin/recode /usr/bin/recountdiff /usr/bin/red /usr/bin/rediff /usr/bin/refer /usr/bin/reLyX /usr/bin/rem2ps /usr/bin/remind /usr/bin/reminders /usr/bin/remsync /usr/bin/rename /usr/bin/renice /usr/bin/rep /usr/bin/replace /usr/bin/report /usr/bin/reportbug /usr/bin/report.gui /usr/bin/rep-remote /usr/bin/reset /usr/bin/resolveip /usr/bin/resolve_stack_dump /usr/bin/rev /usr/bin/rgb2ycbcr /usr/bin/rgb3toppm /usr/bin/rgettext /usr/bin/rgrep /usr/bin/rhythmbox /usr/bin/rjoe /usr/bin/rletopnm /usr/bin/rlog /usr/bin/rlogin /usr/bin/rmccmt /usr/bin/rmic /usr/bin/rmid /usr/bin/rmiregistry /usr/bin/rmsgfmt /usr/bin/rootv /usr/bin/routef /usr/bin/routel /usr/bin/rpcclient /usr/bin/rpcgen /usr/bin/rpcinfo /usr/bin/rpm /usr/bin/rpm2cpio /usr/bin/rpmbuild /usr/bin/rpmdb /usr/bin/rpme /usr/bin/rpmi /usr/bin/rpmquery /usr/bin/rpmsign /usr/bin/rpmu /usr/bin/rpmverify /usr/bin/rrdcgi /usr/bin/rrdtool /usr/bin/rrdupdate /usr/bin/rsh /usr/bin/rssclient /usr/bin/rssservice /usr/bin/rstartd /usr/bin/rsync /usr/bin/rtf2rtf /usr/bin/rubibtex /usr/bin/ruby /usr/bin/ruby1.8 /usr/bin/ruby-glade-create-template /usr/bin/rumakeindex /usr/bin/run-mailcap /usr/bin/runscript /usr/bin/run-with-aspell /usr/bin/rview /usr/bin/rvim /usr/bin/s2p /usr/bin/sadf /usr/bin/sa-learn /usr/bin/sane-find-scanner /usr/bin/sar /usr/bin/sar.sysstat /usr/bin/savelog /usr/bin/sawfish /usr/bin/sawfish-client /usr/bin/sawfish-ui /usr/bin/sbigtopgm /usr/bin/sbuild /usr/bin/scanimage /usr/bin/scantv /usr/bin/sccmap /usr/bin/sc-copykeys /usr/bin/scdaemon /usr/bin/scotty /usr/bin/scotty3.0.0 /usr/bin/scp /usr/bin/scr-bx /usr/bin/screen /usr/bin/screendump /usr/bin/script /usr/bin/scriptreplay /usr/bin/scrollkeeper-config /usr/bin/scrollkeeper-extract /usr/bin/scrollkeeper-gen-seriesid /usr/bin/scrollkeeper-get-cl /usr/bin/scrollkeeper-get-content-list /usr/bin/scrollkeeper-get-extended-content-list /usr/bin/scrollkeeper-get-index-from-docpath /usr/bin/scrollkeeper-get-toc-from-docpath /usr/bin/scrollkeeper-get-toc-from-id /usr/bin/scrollkeeper-install /usr/bin/scrollkeeper-preinstall /usr/bin/scrollkeeper-rebuilddb /usr/bin/scrollkeeper-uninstall /usr/bin/scrollkeeper-update /usr/bin/sdiff /usr/bin/sdl-config /usr/bin/secpolicy /usr/bin/see /usr/bin/select-default-iwrap /usr/bin/sendip /usr/bin/sensible-browser /usr/bin/sensible-editor /usr/bin/sensible-pager /usr/bin/sensors /usr/bin/seq /usr/bin/serialver /usr/bin/setfdprm /usr/bin/setkeycodes /usr/bin/set-language-env /usr/bin/setleds /usr/bin/setlogcons /usr/bin/setmetamode /usr/bin/setpci /usr/bin/setsid /usr/bin/setterm /usr/bin/sfconvert /usr/bin/sfinfo /usr/bin/sftp /usr/bin/sg /usr/bin/sgitopnm /usr/bin/sgml2html /usr/bin/sgml2info /usr/bin/sgml2latex /usr/bin/sgml2lyx /usr/bin/sgml2rtf /usr/bin/sgml2txt /usr/bin/sgml2xml /usr/bin/sgmlcheck /usr/bin/sgmldiff /usr/bin/sgmlnorm /usr/bin/sgmlpre /usr/bin/sgmlsasp /usr/bin/sgmlspl /usr/bin/sha1sum /usr/bin/shar /usr/bin/shell-quote /usr/bin/showcfont /usr/bin/showchar /usr/bin/showkey /usr/bin/shred /usr/bin/shtool /usr/bin/shtoolize /usr/bin/sigfind /usr/bin/sirtopnm /usr/bin/size /usr/bin/size86 /usr/bin/sjisconv /usr/bin/sjislatex /usr/bin/skill /usr/bin/sl2h /usr/bin/slabtop /usr/bin/sldtoppm /usr/bin/slice /usr/bin/sliceprint /usr/bin/slogin /usr/bin/sloxwizard /usr/bin/smbcacls /usr/bin/smbclient /usr/bin/smbcontrol /usr/bin/smbcquotas /usr/bin/smb-nat /usr/bin/smbpasswd /usr/bin/smbspool /usr/bin/smbstatus /usr/bin/smbtar /usr/bin/smbtree /usr/bin/smime_keys /usr/bin/snice /usr/bin/socat /usr/bin/sodipodi /usr/bin/soelim /usr/bin/sort /usr/bin/sorter /usr/bin/sound-juicer /usr/bin/spacechart /usr/bin/spam /usr/bin/spamassassin /usr/bin/spamc /usr/bin/spctoppm /usr/bin/spent /usr/bin/sperl5.8.7 /usr/bin/spfqtool /usr/bin/spfquery /usr/bin/spikeproxy /usr/bin/splain /usr/bin/splint /usr/bin/split /usr/bin/split2po /usr/bin/splitdiff /usr/bin/splitfont /usr/bin/spotlight2kvtml /usr/bin/sputoppm /usr/bin/sq /usr/bin/srch_strings /usr/bin/ssconvert /usr/bin/ssh /usr/bin/ssh-add /usr/bin/ssh-agent /usr/bin/ssh-argv0 /usr/bin/ssh-copy-id /usr/bin/ssh-keygen /usr/bin/ssh-keyscan /usr/bin/ssindex /usr/bin/st4topgm /usr/bin/starconvert /usr/bin/starpkg /usr/bin/starplot /usr/bin/startkde /usr/bin/stat /usr/bin/states /usr/bin/stegbreak /usr/bin/stegcompare /usr/bin/stegdeimage /usr/bin/stegdetect /usr/bin/strace /usr/bin/strfile /usr/bin/strings /usr/bin/strip /usr/bin/subtitles /usr/bin/sudo /usr/bin/sudoedit /usr/bin/suidperl /usr/bin/sum /usr/bin/superformat /usr/bin/su-to-root /usr/bin/svgdisplay /usr/bin/svn /usr/bin/svnadmin /usr/bin/svndumpfilter /usr/bin/svnlook /usr/bin/svnpath /usr/bin/svnserve /usr/bin/svnversion /usr/bin/swappo /usr/bin/symlinks /usr/bin/sync-plan /usr/bin/syslinux /usr/bin/syslinux2ansi /usr/bin/t1asm-freetype /usr/bin/t1mapper /usr/bin/t4ht /usr/bin/tac /usr/bin/tack /usr/bin/tagpending /usr/bin/tail /usr/bin/talk /usr/bin/tangle /usr/bin/tap2deb /usr/bin/tap2deb2.3 /usr/bin/tap2rpm /usr/bin/tap2rpm2.3 /usr/bin/tapconvert /usr/bin/tapconvert2.3 /usr/bin/tasksel /usr/bin/tbl /usr/bin/tclsh /usr/bin/tclsh8.3 /usr/bin/tclsh8.4 /usr/bin/tcpbug /usr/bin/tcpconnect /usr/bin/tcpflow /usr/bin/tcplisten /usr/bin/tcpstat /usr/bin/tcsh /usr/bin/tdbbackup /usr/bin/tee /usr/bin/telnet /usr/bin/telnet.netkit /usr/bin/test /usr/bin/test-moniker /usr/bin/testmxlookup /usr/bin/testparm /usr/bin/testprns /usr/bin/testrb1.8 /usr/bin/tetex-xwarn /usr/bin/tex /usr/bin/tex4ht /usr/bin/tex4ht-ht /usr/bin/texconfig /usr/bin/texdoc /usr/bin/texdoctk /usr/bin/texexec /usr/bin/texexpand /usr/bin/texfind /usr/bin/texfont /usr/bin/texhash /usr/bin/texi2dvi /usr/bin/texi2dvi4a2ps /usr/bin/texi2html /usr/bin/texi2pdf /usr/bin/texindex /usr/bin/texlinks /usr/bin/texshow /usr/bin/text2pcap /usr/bin/texutil /usr/bin/tfmtodit /usr/bin/tftopl /usr/bin/tgatoppm /usr/bin/tgz /usr/bin/themus-theme-applier /usr/bin/thinkjettopbm /usr/bin/thumbnail /usr/bin/thumbpdf /usr/bin/tic /usr/bin/tidy /usr/bin/tie /usr/bin/tiff2bw /usr/bin/tiff2pdf /usr/bin/tiff2ps /usr/bin/tiff2rgba /usr/bin/tiffcmp /usr/bin/tiffcp /usr/bin/tiffdither /usr/bin/tiffdump /usr/bin/tiffinfo /usr/bin/tiffmedian /usr/bin/tiffset /usr/bin/tiffsplit /usr/bin/tifftopnm /usr/bin/t-im /usr/bin/t-im2.3 /usr/bin/time /usr/bin/time-admin /usr/bin/tixindex /usr/bin/tixindex8.1 /usr/bin/tixwish /usr/bin/tixwish8.1 /usr/bin/tkined /usr/bin/tkined1.5.0 /usr/bin/tklanguage /usr/bin/tkmktap /usr/bin/tkmktap2.3 /usr/bin/tkremind /usr/bin/tload /usr/bin/toc2cddb /usr/bin/toc2cue /usr/bin/todos /usr/bin/toe /usr/bin/toolame /usr/bin/top /usr/bin/totem /usr/bin/totem-video-thumbnailer /usr/bin/touch /usr/bin/tp_tagger /usr/bin/tput /usr/bin/tr /usr/bin/traceroute /usr/bin/traceroute.lbl /usr/bin/transfig /usr/bin/transxx /usr/bin/tred /usr/bin/tree /usr/bin/trial /usr/bin/trial2.3 /usr/bin/trm /usr/bin/troff /usr/bin/tryaffix /usr/bin/trytime /usr/bin/tset /usr/bin/tsort /usr/bin/ttf2afm /usr/bin/ttf2bdf /usr/bin/ttf2pfb /usr/bin/ttf2pk /usr/bin/ttf2tfm /usr/bin/ttfbanner /usr/bin/tty /usr/bin/twistd /usr/bin/twistd2.3 /usr/bin/twopi /usr/bin/txt2man /usr/bin/tzselect /usr/bin/ucf /usr/bin/udevinfo /usr/bin/udevtest /usr/bin/uic /usr/bin/uic-qt2 /usr/bin/uic-qt3 /usr/bin/ul /usr/bin/unexpand /usr/bin/unflatten /usr/bin/unicode_start /usr/bin/unicode_stop /usr/bin/uniq /usr/bin/unison /usr/bin/unison2.10.2 /usr/bin/unison2.10.2-gtk /usr/bin/unison2.9.1 /usr/bin/unison-gtk /usr/bin/unix2dos /usr/bin/unix-lpr.sh /usr/bin/unlink /usr/bin/unrar /usr/bin/unshar /usr/bin/unsq /usr/bin/unstr /usr/bin/untex /usr/bin/untrigraph /usr/bin/unwrapdiff /usr/bin/unzip /usr/bin/unzipsfx /usr/bin/updatedb /usr/bin/update-desktop-database /usr/bin/update-lyxrc /usr/bin/update-menus /usr/bin/update-menus.real /usr/bin/update-mime-database /usr/bin/update-pciids /usr/bin/update-perl-sax-parsers /usr/bin/update-sourcedeps /usr/bin/updmap /usr/bin/uptime /usr/bin/usbmodules /usr/bin/uscan /usr/bin/user-ja-conf /usr/bin/users /usr/bin/users-admin /usr/bin/uudecode /usr/bin/uuencode /usr/bin/uuidgen /usr/bin/uupdate /usr/bin/uz /usr/bin/v4l-conf /usr/bin/v4lctl /usr/bin/v4ldriver /usr/bin/v4l-info /usr/bin/v4lphilips /usr/bin/vacation /usr/bin/vacuumdb /usr/bin/valgrind /usr/bin/valgrind.bin /usr/bin/valgrind-listener /usr/bin/vcdimager /usr/bin/vcd-info /usr/bin/vcdxbuild /usr/bin/vcdxgen /usr/bin/vcdxminfo /usr/bin/vcdxrip /usr/bin/vcut /usr/bin/vftovp /usr/bin/vi /usr/bin/vidcat /usr/bin/view /usr/bin/vim /usr/bin/vimdiff /usr/bin/vimtutor /usr/bin/vino-preferences /usr/bin/virmf /usr/bin/virmpost /usr/bin/viromega /usr/bin/virtex /usr/bin/VisualOS /usr/bin/vmstat /usr/bin/vncpasswd /usr/bin/vncviewer /usr/bin/volname /usr/bin/vorbiscomment /usr/bin/vptovf /usr/bin/vt-is-UTF8 /usr/bin/vumeter /usr/bin/w /usr/bin/w3c /usr/bin/w3m /usr/bin/w3mman /usr/bin/wall /usr/bin/watch /usr/bin/watchgnupg /usr/bin/wbmptopbm /usr/bin/wc /usr/bin/wdiff /usr/bin/weave /usr/bin/webbot /usr/bin/weblint /usr/bin/websetroot /usr/bin/websetroot2.3 /usr/bin/wftopfa /usr/bin/wget /usr/bin/whatis /usr/bin/whereis /usr/bin/which /usr/bin/whiptail /usr/bin/who /usr/bin/whoami /usr/bin/whodepends /usr/bin/whois /usr/bin/widget /usr/bin/winicontoppm /usr/bin/wish /usr/bin/wish8.3 /usr/bin/wish8.4 /usr/bin/wmb /usr/bin/wmd /usr/bin/wmk /usr/bin/wml /usr/bin/wmu /usr/bin/wmxmms /usr/bin/wnpp-alert /usr/bin/word-list-compress /usr/bin/workman2cddb.pl /usr/bin/w.procps /usr/bin/wrestool /usr/bin/write /usr/bin/wrjpgcom /usr/bin/www /usr/bin/www-browser /usr/bin/X11 /usr/bin/xargs /usr/bin/xawtv /usr/bin/xawtv-remote /usr/bin/xbitchx /usr/bin/xbmtopbm /usr/bin/xcdroast /usr/bin/xchat /usr/bin/xdfcopy /usr/bin/xdfformat /usr/bin/xdvi /usr/bin/xdvi.bin /usr/bin/xdvi.real /usr/bin/xdvizilla /usr/bin/xemacs /usr/bin/xemacs21 /usr/bin/xemacs-21.4.17-mule /usr/bin/xemacs21-mule /usr/bin/xephemdbd /usr/bin/xf86gammacfg /usr/bin/xfig /usr/bin/xft-config /usr/bin/xgettext /usr/bin/ximtoppm /usr/bin/xine /usr/bin/xine-bugreport /usr/bin/xine-check /usr/bin/xine-remote /usr/bin/xkeycaps /usr/bin/xmbmon /usr/bin/xminicom /usr/bin/xml2-config /usr/bin/xml2po /usr/bin/xml2pot /usr/bin/xml-config /usr/bin/xmlproc_parse /usr/bin/xmlproc_parse.python2.3-xml /usr/bin/xmlproc_val /usr/bin/xmlproc_val.python2.3-xml /usr/bin/xmms /usr/bin/xmovie /usr/bin/xpdf /usr/bin/xpdf.bin /usr/bin/xplanet /usr/bin/xpmtoppm /usr/bin/xrced /usr/bin/xscreensaver /usr/bin/xscreensaver-command /usr/bin/xscreensaver-demo /usr/bin/xscreensaver-getimage /usr/bin/xscreensaver-getimage-file /usr/bin/xscreensaver-getimage-video /usr/bin/xscreensaver-gl-helper /usr/bin/xscreensaver-text /usr/bin/x-session-manager /usr/bin/xsltproc /usr/bin/xsubpp /usr/bin/x-terminal-emulator /usr/bin/xtightvncviewer /usr/bin/xvfb-run /usr/bin/xvidcap /usr/bin/xvminitoppm /usr/bin/xvncviewer /usr/bin/xwdtopnm /usr/bin/x-window-manager /usr/bin/x-www-browser /usr/bin/xxd /usr/bin/yacc /usr/bin/yada /usr/bin/yaf-cdda /usr/bin/yaf-mpgplay /usr/bin/yaf-splay /usr/bin/yaf-tplay /usr/bin/yaf-vorbis /usr/bin/yaf-yuv /usr/bin/ybmtopbm /usr/bin/yelp /usr/bin/yes /usr/bin/ysh /usr/bin/ytalk /usr/bin/yuvsplittoppm /usr/bin/yuvtoppm /usr/bin/yyextract /usr/bin/yyref /usr/bin/zdump /usr/bin/zeisstopnm /usr/bin/zenity /usr/bin/zgv /usr/bin/zip /usr/bin/zipcloak /usr/bin/zipgrep /usr/bin/zipinfo /usr/bin/zipnote /usr/bin/zipsplit /usr/bin/zsoelim /usr/bin/zxpdf executables as owned by `bin', this account will not flag a warning. +

+Linux (notably RedHat) operating environments violate this convention +with printer (lp*) and rpm programs among others. +Changing ownership in this case may be problematic.

 
 
--- tiger-3.2.1.orig/html/pcap.html
+++ tiger-3.2.1/html/pcap.html
@@ -73,6 +73,6 @@
 
 

Code [pcap003w]

-The indicated executable associsated with a printer control has +The indicated executable associated with a printer control has group or world write permissions. This may represent a security vulnerability, as it may be possible to replace the executable. --- tiger-3.2.1.orig/html/permissions.html +++ tiger-3.2.1/html/permissions.html @@ -528,3 +528,101 @@ loss of 'arp -a' functionality for a normal user account. (On SunOS 5.x systems, even this functionality isn't lost... there is no reason for 'arp' to be setgid). This is a minor loss of functionality. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [perm26f]

+The file '/etc/login.access' provides finer control over user +access, it can be modified to allow or disallow remote access +to privileged accounts. If this file is writable by non-root +users, then unauthorized access or privileges may be obtained. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [perm27f]

+The file '/etc/login.conf' is used by default on some BSD systems, +it can be used to set up user environment and to set policy and +accounting restrictions. Since this file provides control over user +access, if this file is writable by non-root +users, then unauthorized access or privileges may be obtained. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [perm28f]

+The file '/etc/login.defs' is used by default on some Linux systems, +it can be used to set up user environment and to set policy and +accounting restrictions (such as password aging), as it defines +configuration control definitions for the login package. +Since this file provides control over user access, if this file +is writable by non-root users, then unauthorized access or privileges +may be obtained. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [perm29f]

+The configuration files for PAM (Pluggable Authentication Modules) +are used by default on many Unix systems, it can be used to set up +the environment for some services and defined the policy for its +access. Since this file provides control over user access, if this file +is writable by non-root users, then unauthorized access or privileges +may be obtained. +

+More information about PAM is available from: +http://www.kernel.org/pub/linux/libs/pam/ +and +http://www.sun.com/solaris/pam/ +

+
+
+
+
+
+
+
+
+
+
+

+

Code [perm30f]

+The configuration files (/etc/ttys, /etc/default/login, /etc/security +or /etc/securetty depending on the operating system) determines +access to users based on what consoles are they logged in. +Since this file provides control over user access, if this file +is writable by non-root users, then unauthorized access or privileges +may be obtained. --- tiger-3.2.1.orig/html/pxt.html +++ tiger-3.2.1/html/pxt.html @@ -9,7 +9,7 @@


Documents for pxt

-

Code [dev001]

+

Code [dev001f]

Tape devices used for backups should not have world permissions.

 
@@ -23,7 +23,7 @@
 
 
 

-

Code [dev002]

+

Code [dev002f]

Devices that have improper (world) permissions might be accessed by any system user. This might open security holes if these are shared devices or hold binaries (disks for example). The administrator should @@ -41,6 +41,23 @@


+

Code [dev003w]

+There is a file in the devices directory which is a common file. Devices +directory should only hold special files although some systems have +directories and shell scripts in /dev. Please check your system's +documentation to determine if that file should be located there. +

+
+
+
+
+
+
+
+
+
+
+

Code [boot01]

The lilo configuration file (/etc/lilo.conf) should have permissions limiting access to only the owner (usually root). @@ -71,7 +88,7 @@


-

Code [boot03]

+

Code [boot03w]

A boot loader configuration file could not be found. That means that neither /etc/lilo.conf nor /boot/grub/grub.conf exists.

@@ -86,7 +103,7 @@
 
 
 

-

Code [ptch01]

+

Code [ptch01f]

AutoRPM has determined that there are updated packages waiting to be installed.

@@ -101,7 +118,7 @@
 
 
 

-

Code [ptch02]

+

Code [ptch02f]

apt-get has determined that there are updated packages waiting to be installed.

@@ -132,7 +149,7 @@
 
 
 

-

Code [ptch04]

+

Code [ptch04w]

No patch management tool could be found on the system. The scripts looks for autorpm followed by apt-get. If either one is found it is used to determine if updated packages @@ -169,7 +186,7 @@


-

Code [osv001]

+

Code [osv001f]

The operating system version appears to be less than RedHat 6.2 Due to security enhancements and fixes available in recent releases, running an older version of RedHat is strongly discouraged. @@ -185,8 +202,8 @@


-

Code [osv002]

-The operating system version appears to be less than Debian 2.1 +

Code [osv002f]

+The operating system version appears to be less than Debian 3.0 Due to security enhancements and fixes available in recent releases, running an older version of Debian is strongly discouraged.

@@ -201,7 +218,7 @@
 
 
 

-

Code [osv003]

+

Code [osv003w]

The machine does not appear to be a RedHat or Debian system. This test can not suggest a recommended version number for your operating system. @@ -217,10 +234,10 @@


-

Code [osv004]

+

Code [osv004w]

The machine is running an unreleased version of Debian GNU/Linux. This version is not supported by the security team so it might not -be up-to-date security wase (support is only provided for the latest +be up-to-date security wise (support is only provided for the latest release). That is, "run at your own risk".

 
@@ -234,11 +251,11 @@
 
 
 

-

Code [sum001]

+

Code [sum001f]

The system does not appear to require a password during single-user mode boot. Either add a password to your boot loader or add the line: ~~:S:wait:/sbin/sulogin -to your /etc/inittab file. This line should be added immeditaly before +to your /etc/inittab file. This line should be added immediately before the line containing "rc 0".

 
@@ -252,8 +269,8 @@
 
 
 

-

Code [trip01]

+

Code [trip01f]

Tripwire has detected an inconsistency in the noted file. This file has been modified in some way since the database was built -- either -upgraded, removed or tampered with. If this modification is legitmate +upgraded, removed or tampered with. If this modification is legitimate please refresh the tripwire database by running "tripwire --update" --- tiger-3.2.1.orig/html/rhosts.html +++ tiger-3.2.1/html/rhosts.html @@ -173,7 +173,7 @@


-

Code [rcmd010i]

+

Code [rcmd010w]

The contents of the /etc/hosts.equiv file is listed. The hosts listed here should be examined for correctness.

@@ -251,3 +251,64 @@
 to be found in a .rhosts file. This file should be examined and the
 invalid characters removed, as it may contain a typo or possibly a
 command.
+
+
+
+
+
+
+
+
+
+
+
+

+

Code [rcmd016w]

+The user has an .rhosts file. The use of rhosts files is not a recommended +method for secure access to remote hosts, you should consider whether or +not the user needs to have an .rhosts file and, in any case, consider +the use of safer replacement for the 'r' commands including public-key +cryptography programs (such as SSH implementations) +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rcmd017a]

+The .rhosts file of a given user does not belong to him, if you are running +the rlogin service this transfers control to what users (and where from) +can access this account to the user that this files belongs to. This is usually +and indication of an intrusion attempt and you should take steps to remove +this file and determine who has accessed to this account using the rlogin +service. +Consider removing the 'r' commands altogether and use safer replacements +commands, including public-key cryptography programs +(such as SSH implementations) +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rcmd018a]

+Root has an .rhosts file, you should avoid at all hosts providing +passwordless remote access to the administrator user. +This can also be an indication of a remote intrusion, if so you should +take steps to remove this file and determine who has accessed to +this account using the rlogin service. +Consider removing the 'r' commands altogether and use safer replacements +commands, including public-key cryptography programs +(such as SSH implementations) --- tiger-3.2.1.orig/html/rootdir.html +++ tiger-3.2.1/html/rootdir.html @@ -10,8 +10,9 @@


Documents for rootdir

Code [rootdir001f]

-The inode for the root directory is not on inode 2. This is a security -breach. To check the inode number, use "stat /" command. +The root directory is not at the beginning of a filesystems. +This usually indicates the output of the Tiger reports might +be suspect. (i.e. Tiger was possibly run inside a chroot, etc).

 
 
@@ -26,4 +27,17 @@
 

Code [rootdir002f]

The permissions for the root directory are not secure. -

+

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootdir003f]

+The ownership of the root directory is not secure. --- tiger-3.2.1.orig/html/rootkit.html +++ tiger-3.2.1/html/rootkit.html @@ -0,0 +1,109 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for rootkit

+

Code [rootkit001f]

+A test was run on the 'ls' command to determine if it 'sees' +certain pathnames (e.g., '...','bnc','war',etc). Tiger creates +a temporary directory, creates files with known hacker program +names/directories, and attempts an 'ls'. If the 'ls' does not +recognize the file, a FAIL is issued +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootkit002f]

+A test was run on the 'find' command to determine if it 'sees' +certain pathnames (e.g., '...','bnc','war',etc). Tiger creates +a temporary directory, creates files with known hacker program +names/directories, and attempts an 'find'. If the 'find' does +not recognize the file, a FAIL is issued. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootkit003w]

+The 'chkrootkit' program has detected a suspicious directory +which might be an indication of an intrusion. +A full analysis of the system is recommended to determine the +presence of further signs of intrusion since a rootkit might have +been installed. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootkit004w]

+The 'chkrootkit' program has detected a possible rootkit installation +A full analysis of the system is recommended to determine the +presence of further signs of intrusion since a rootkit might have +been installed. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootkit005a]

+The 'chkrootkit' program has detected a rootkit installation +A full analysis of the system is recommended to determine the +presence of further signs of intrusion and to determine if the +rootkit is indeed installed. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [rootkit006a]

+A rootkit is installed by intruders in systems which have been +successfully compromised and in which they have obtained full +administrator privileges. The installation of a rootkit is +an indication of a major system compromise. +

+If the installation of a rootkit is confirmed you are encouraged +to power off the system and follow the steps outlined by +Steps for Recovering from a UNIX or NT System Compromise +(http://www.cert.org/tech_tips/root_compromise.html) --- tiger-3.2.1.orig/html/root.html +++ tiger-3.2.1/html/root.html @@ -43,5 +43,5 @@


Code [root003w]

The root user should not have the message capability turned on. This -could lead to inadvertant modification of files with the root user is +could lead to inadvertent modification of files with the root user is logged in. --- tiger-3.2.1.orig/html/signature.html +++ tiger-3.2.1/html/signature.html @@ -424,3 +424,25 @@ field when changing the password. As a result, the 'root' account has a null password field, allowing anyone to remote shell in as root. To fix this problem, place a '*' in the password field in /etc/passwd. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [sig022f]

+The patchdiag.xref files is not available in the configuration directory. This +means that the script cannot proceed further since it does not have any +information of which are the appropriate patches for this system. +

+Please download the patchdiag file from Sunsolve, you can use, for example, +the following link: +http://sunsolve.sun.com/pub-cgi/patchDownload.pl?target=patchdiag.xref&method=H +

+Once downloaded, place it in the configuration directory and rerun the script. --- tiger-3.2.1.orig/html/ssh.html +++ tiger-3.2.1/html/ssh.html @@ -0,0 +1,80 @@ +


+
+
+
+
+
+
+
+
+

+

Documents for ssh

+

Code [ssh001w]

+The Protocol directive in the sshd_config file is not in the +allowed protocol list. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ssh002w]

+The PermitRootLogin directive is not in the allowed methods +list. This directive controls how root is allowed to use SSH. +Valid options are: yes, without-password, forced-commands-only, +and no. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ssh003w]

+The RhostsAuthentication directive determines if .rhosts or +/etc/hosts.equiv is sufficient authentication. This option +only applies to protocol version 1 and is generally believed +to be insecure. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ssh004w]

+The PasswordAuthentication directive determines if passwords +are a sufficient authentication. +

+
+
+
+
+
+
+
+
+
+
+

+

Code [ssh005e]

+The variable SSHD_CONFIG is not defined which means that you have +not setup (or the system has been enable to find) your SSH configuration +files. You should setup that variable in your site-`hostname` +configuration file. --- tiger-3.2.1.orig/initdefs +++ tiger-3.2.1/initdefs @@ -16,6 +16,13 @@ # # initdefs - 06/14/93 # +# initdefs - 01/10/2005 - cslater - Modified ignore function so that +# filtering can also be done on msgid and level +# initdefs - 08/01/2004 - jfs - Allow removal from LOGDIR so that tiger -e +# works as expected +# initdefs - 10/15/2003 - jfs - Quoted $__File in deleted() in order +# for the check_rootkit check to work properly. +# (Debian bug #215882) # initdefs - 10/10/2003 - jfs - Improved check so that it will not # remove files created by a different user and # warn if files to be deleted do not exist @@ -117,14 +124,14 @@ do if [ -n "$LS" ] then - if [ -z "`$LS $__file 2>/dev/null`" ] + if [ -z "`$LS \"$__file\" 2>/dev/null`" ] then # echo "--ERROR-- [post001e] File \`$__file' will not be removed since it does not exist" goahead=0 fi if [ $goahead -eq 1 -a -n "$AWK" -a -n "$UUID" ] then - if [ "$UUID" != "`$LS -nl $__file | $AWK '{print $3}'`" ] + if [ "$UUID" != "`$LS -nl \"$__file\" | $AWK '{print $3}'`" ] then echo "--ERROR-- [post001e] File \`$__file' will not be removed since it has not been created by the current user (symlink attack?)." goahead=0 @@ -134,6 +141,7 @@ [ $goahead -eq 1 ] && { eval "case \"\$__file\" in $WORKDIR*) $RM -f \"\$__file\";; + $LOGDIR*) $RM -f \"\$__file\";; *) echo \"--ERROR-- [post001e] File \\\`\$__file' not removed.\";; esac" } @@ -164,7 +172,7 @@ __len=${Tiger_Output_Width:=79} # If the message should be ignore it is removed - ignore_message "$_mesg" && return + ignore_message "$_level $_msgid $_mesg" && return [ "$HTML" = "N" ] && { @@ -505,15 +513,15 @@ if [ $__script_owner -eq $UUID ]; then $__script_run else - echo "--ERROR-- [misc024w] The $__script_run script will not be run since it is owned by a user ($__script_owner) different than the one running Tiger ($UUID)" + echo "--ERROR-- [misc024e] The $__script_run script will not be run since it is owned by a user ($__script_owner) different than the one running Tiger ($UUID)" __error=1 fi else - echo "--ERROR-- [misc025w] The $__script_run will not be run since it is not executable" + echo "--ERROR-- [misc025e] The $__script_run will not be run since it is not executable" __error=1 fi else - echo "--ERROR-- [misc005w] Can't find '$script'..." + echo "--ERROR-- [misc005e] Can't find '$script'..." __error=1 fi done --- tiger-3.2.1.orig/README.hostids +++ tiger-3.2.1/README.hostids @@ -14,7 +14,7 @@ policy template for the module or a previous run to check against, if available. Only messages not reported before (or not in the policy will be checked against) -3.- The report (wether full or differential) is sent through e-mail +3.- The report (whether full or differential) is sent through e-mail to the address configured at 'Tiger_Mail_RCPT' Tiger can be configured so that it is run as a cron job hourly. @@ -42,6 +42,7 @@ - an integrity checker such as Tripwire (or a replacement like Aide). - a logchecker (like logcheck) to look for security information in the log files. +- an specific tool to detect rootkits: chkrootkit - (maybe) a Network IDS such as Snort. - (maybe) a portscanner detection such as portsentry, scanlogd, scandetd or psad (provided by Bastille) @@ -64,10 +65,13 @@ a) just use GPG/PGP to sign or encrypt the e-mails. You need however to place a private key in the agent (and it could be compromised) b) use a VPN tunnel between agents and the mailserver. This could - be done either using a permament SSH tunnel, an Ipsec VPN... + be done either using a permanent SSH tunnel, an Ipsec VPN... 2.- there is no such thing (currently) as a Tiger Server, unlike other -HIDS (If anyone wants to write one please say so :) so there's no way to: +HIDS (If anyone wants to write one please say so :) so there's no way to +receive all the alerts in a single place and correlate them. +Note: in the contrib directory you will find the 'secauditdb' program +(not yet integrated into Tiger) which does just this. 3.- Tiger reports are not protected in anyway save for standard UNIX permissions. This means that if the server Tiger is running in is @@ -80,10 +84,11 @@ (if using differentiated reports against either templates or previous runs) -Not that any other host-based IDS does not have any of these issues, -after all, if an IDS is running in a compromised host then those -IDS alarms and reports cannot be trusted anyway. - +Not that most host-based IDS have these same issues, after all, if an +IDS is running in a compromised host then those IDS alarms and reports +cannot be trusted anyway. This is not 100% true, however, for HIDS running +at the kernel level. -- Javier Fernández-Sanguino Peña -Thu, 17 Apr 2003 19:00:20 +0200 +Wed, 12 Nov 2003 03:46:57 +0100 + --- tiger-3.2.1.orig/tigerrc +++ tiger-3.2.1/tigerrc @@ -7,8 +7,16 @@ # Select checks to perform. Specify 'N' (uppercase) for checks # you don't want performed. # +# Notice this does not affect which checks will be performed through +# the cron job (Tiger's cronrc file governs that, usually under +# /usr/local/etc/tiger or /etc/tiger), it only affects which +# checks will be performed when running the full security checks +# (i.e. 'tiger') +# +# TigerNoBuild=Y # C files are corrupted (ouch.) Tiger_Check_PASSWD=Y # Fast +Tiger_Check_PASSWD_FORMAT=N # Fast - not needed if on systems with pwck Tiger_Check_PASSWD_SHADOW=Y # Time varies on # of users Tiger_Check_PASSWD_NIS=N # Time varies on # of users Tiger_Check_GROUP=Y # Fast @@ -19,7 +27,7 @@ Tiger_Check_CRON=Y # Fast Tiger_Check_ANONFTP=Y # Fast Tiger_Check_EXPORTS=Y # Fast -Tiger_Check_INETD=Y # Fast +Tiger_Check_INETD=Y # Fast for inetd, Varies on xinetd Tiger_Check_SERVICES=Y # Could be faster, not bad though Tiger_Check_KNOWN=Y # Fast Tiger_Check_PERMS=Y # Could be faster, not bad though @@ -37,7 +45,7 @@ Tiger_Check_LISTENING=Y # Fast Tiger_Check_SYSTEM=Y # Depends on the specific system checks Tiger_Check_RUNPROC=N # Fast, needs to be customized per system -Tiger_Check_DELETED=Y # Depends on the number of processes on the +Tiger_Check_DELETED=N # Depends on the number of processes on the # system Tiger_Check_APACHE=N # Fast Tiger_Check_SSH=Y # Fast @@ -46,6 +54,9 @@ Tiger_Check_EXRC=N # Depends on the size of the filesystem Tiger_Check_ROOTKIT=Y # Slow if chkrootkit is available Tiger_Check_FTPUSERS=Y # Fast +Tiger_Check_OMNIBACK=N # Fast +Tiger_Check_NTP=Y # Fast + # OS specific checks # You can comment them if they are not appropiate to your system but # they will not run if you are running a different OS @@ -253,13 +264,13 @@ # Who can own things in other users PATH? # List of usernames separated by '|'... no whitespace # -Tiger_PATH_OK_Owners='root|bin|daemon|uucp|sys|adm' +Tiger_PATH_OK_Owners=$Tiger_ROOT_PATH_OK_Owners # # What groups can have write access to executables in non-root user PATH? # List of group names separated by '|'... no whitespace. # No value means no groups should have write access. # -Tiger_PATH_OK_Group_Write= +eval Tiger_PATH_OK_Group_Write='$Tiger_ROOT_PATH_OK_Group_Write' # # Should 'tiger' wait for Crack to finish? If set to 'Y' it will wait # until it finishes. If set to 'N', it will collect the output if @@ -274,6 +285,11 @@ # Tiger_Crack_Local=Y # +# Who sends output from 'tigercron'? +# Default is "root@$HOSTNAME" (gets expanded by tigercron) +# +# Tiger_Mail_FROM="root@`uname -n`" +# # Who gets output from 'tigercron'? # Tiger_Mail_RCPT=root @@ -285,12 +301,12 @@ # # File system scan - things to look for # -Tiger_FSScan_Setuid=Y # Setuid executables -Tiger_FSScan_Setgid=Y # Setgid executables +Tiger_FSScan_Setuid=N # Setuid executables +Tiger_FSScan_Setgid=N # Setgid executables Tiger_FSScan_Devs=Y # device files Tiger_FSScan_SymLinks=Y # strange symbolic links Tiger_FSScan_ofNote=Y # weird filenames -Tiger_FSScan_WDIR=Y # world writable directories +Tiger_FSScan_WDIR=N # world writable directories Tiger_FSScan_Unowned=Y # files with undefined owners/groups # # Should we scan read-only filesystems @@ -353,8 +369,11 @@ # seen in the process table will generate a FAIL: # # The process list below is just an example (useful for Linux) -# change it to suit your needs -# Tiger_Running_Procs='syslogd cron atd klogd' +# change it to suit your needs. You can use either the process name +# or the full path name +Tiger_Running_Procs='syslogd cron atd klogd' +# or +# Tiger_Running_Procs='/sbin/syslogd /usr/sbin/atd /usr/sbin/cron /sbin/klogd' # # Should we optimize DPKG checks? (by not using dpkg but looking on # the file database at /var/lib/dpkg?) --- tiger-3.2.1.orig/Makefile.in +++ tiger-3.2.1/Makefile.in @@ -21,6 +21,9 @@ mandir=@mandir@ # To avoid troubles with some systems.. SHELL = /bin/sh +# Installation program +INSTALL=@INSTALL@ +CC=@CC@ # This directory will contain the 'tiger', 'tigercron', 'tigexp' # scripts, config files, the 'scripts' subdirectory which will @@ -54,6 +57,10 @@ # TIGERCONFIG=@tigerconfig@ # +# Where do manpages go to +# +TIGERMANDIR=@mandir@ +# #------------------------------------------------------------------------ # # End of user customization... @@ -61,7 +68,7 @@ #------------------------------------------------------------------------ # -PLATFORM_SCRIPTS=$(shell find ./systems/ -type f) +PLATFORM_SCRIPTS=$$(find ./systems/ -type f) BINARIES=./tiger \ ./tigexp \ @@ -89,6 +96,8 @@ ./scripts/check_netrc \ ./scripts/check_network \ ./scripts/check_nisplus \ + ./scripts/check_ntp \ + ./scripts/check_omniback \ ./scripts/check_passwd \ ./scripts/check_passwdformat \ ./scripts/check_path \ @@ -116,11 +125,13 @@ $(PLATFORM_SCRIPTS) CONFIGFILES=./tigerrc \ - ./cronrc \ + ./cronrc MISCFILES=./initdefs \ - ./check.tbl \ ./syslist \ + ./check.d/README \ + ./util/buildbins \ + ./util/buildconf \ ./util/difflogs \ ./util/flogit \ ./util/genmsgidx \ @@ -130,19 +141,29 @@ ./util/getfs-std \ ./util/gethostinfo \ ./util/getnetgroup \ + ./util/getpermit \ + ./util/installsig \ ./util/logit \ + ./util/mkfilelst \ + ./util/mksig \ ./util/setsh \ ./util/sgrep MISCDIRS=./bin \ + ./check.d \ ./doc \ ./html \ - ./man \ ./scripts/sub \ ./systems all: + @if [ ! -d bin ]; then \ + mkdir bin; \ + fi cd c && $(MAKE) install + @if [ ! -d html ]; then \ + mkdir html; \ + fi cd util && sh doc2html ./util/genmsgidx @@ -182,6 +203,19 @@ mkdir -p $(DESTDIR)$(TIGERCONFIG); \ chmod 700 $(DESTDIR)$(TIGERCONFIG); \ fi + @echo "Creating $(TIGERMANDIR)..." + @if [ ! -d $(DESTDIR)$(TIGERMANDIR) ]; then \ + mkdir -p $(DESTDIR)$(TIGERMANDIR); \ + mkdir -p $(DESTDIR)$(TIGERMANDIR)/man8; \ + chmod 755 $(DESTDIR)$(TIGERMANDIR); \ + chmod 755 $(DESTDIR)$(TIGERMANDIR)/man8; \ + fi + +installmanpages: + @echo "Copying manpages..." + $(INSTALL) -m 0444 man/tiger.8 $(DESTDIR)$(TIGERMANDIR)/man8 + $(INSTALL) -m 0444 man/tigexp.8 $(DESTDIR)$(TIGERMANDIR)/man8 + $(INSTALL) -m 0444 man/tigercron.8 $(DESTDIR)$(TIGERMANDIR)/man8 installbinaries: @echo "Copying binaries..." @@ -198,8 +232,7 @@ installconfig: @echo "Copying configuration files..." @for file in $(CONFIGFILES); do \ - cp $$file $(DESTDIR)$(TIGERCONFIG)/$$file; \ - chmod 640 $(DESTDIR)$(TIGERCONFIG)/$$file; \ + $(INSTALL) -m 0640 $$file $(DESTDIR)$(TIGERCONFIG)/$$file; \ done @echo "Copying general configuration..." @sed -e 's%^TigerLogDir=.*$$%TigerLogDir="'$(TIGERLOGS)'"%' \ @@ -210,13 +243,13 @@ ./config >$(DESTDIR)$(TIGERHOME)/config @chmod 644 $(DESTDIR)$(TIGERHOME)/config -install: installdirs installbinaries installconfig +install: installdirs installbinaries installconfig installmanpages cd c && $(MAKE) install - @echo "Copying miscellaneus dirs..." + @echo "Copying miscellaneous dirs..." @for dir in $(MISCDIRS); do \ tar cf - $$dir | (cd $(DESTDIR)$(TIGERHOME); tar xpf -); \ done - @echo "Copying miscellaneus files..." + @echo "Copying miscellaneous files..." @for file in $(MISCFILES); do \ cp -p $$file $(DESTDIR)$(TIGERHOME)/$$file; \ done --- tiger-3.2.1.orig/man/CVS/Entries +++ tiger-3.2.1/man/CVS/Entries @@ -1,7 +1,4 @@ -/tiger.man/1.1/Fri Jun 14 08:51:31 2002// -/tigexp.man/1.1/Fri Jun 14 08:51:31 2002// -/tiger.8/1.2/Tue Aug 19 15:28:51 2003// -/tiger.8.in/1.1/Tue Aug 19 15:28:43 2003// -/tigexp.8/1.2/Tue Aug 19 15:34:17 2003// -/tigercron.8.in/1.1/Fri Sep 19 01:01:57 2003// +/tigexp.8/1.4/Thu Mar 31 15:22:32 2005// +/tigercron.8.in/1.3/Sat Apr 16 20:18:36 2005// +/tiger.8.in/1.5/Sat Apr 23 23:42:15 2005// D --- tiger-3.2.1.orig/man/tiger.8.in +++ tiger-3.2.1/man/tiger.8.in @@ -2,7 +2,24 @@ .SH NAME tiger \- UNIX Security Checker .SH SYNOPSIS -.B "tiger [-B tigerdir] [-l logdir] [-w workdir] [-b bindir] [-e|-E] [-S] [-H] [-c tigerrc] [-q]" +.B "tiger" +.RB [ -vthqGSH "] [" -B +.IR dir ] +.RB [ -l +.IR dir | @host ] +.RB [ -w +.IR dir ] +.RB [ -b +.IR dir ] +.RB [ -e | -E ] +.RB [ -c +.IR config ] +.RB [ -A +.IR arch ] +.RB [ -O +.IR os ] +.RB [ -R +.IR release ] .LP .SH DESCRIPTION .LP @@ -11,273 +28,332 @@ UNIX system. It scans system configuration files, file systems, and user configuration files for possible security problems and reports them. The command -.B tigexp(8) -can be used to obtain explanations of the problems reported by -.I tiger. -.SS OPTIONS +.BR tigexp (8) +can be used to obtain explanations of the problems reported by \fBtiger\fR. +.LP +You can configure +.B tiger +by adjusting the +.B Tiger_ +variables in the +.I @tigerconfigdir@/tigerrc +configuration file. For each available module (see +.B MODULES +below) there is a corresponding variable in the configuration file that +determines whether the module is run. All of the variables names start with +.B Tiger_check_ +and should be set equal to Y to run, or N to skip. Other configuration +variables will modify the behaviour of some modules, and should be +adjusted based on the operating system. +.LP +The +.I @tigerconfigdir@/tiger.ignore +configuration file defines a set of messages that will not be presented +in the report even if any of the modules generate them. +If the file exists, all the entries (line by line) are used as extended +regular expressions that are compared against each message (notice that +it will introduce some overhead which grows with the size of the file). +For more information on this mechanism read the +.I README.ignore +document. +.SH OPTIONS .TP -.I "\-B tigerdir" +The following arguments can be used when calling the program: +.TP +.BI "\-B " tigerdir Specify the directory where -.I tiger +.B tiger is installed. If not specified, @tigerhomedir@ is used. .TP -.I "\-l logdir" +.BI "\-l " logdir\fR|\fI@logserver Specify the name of the directory where -.I tiger +.B tiger will write the security report. This defaults to @tigerlogdir@. The filename of the report will -be of the form -.RI 'security.report. hostname.date.time.' -If the directory begins with a \fB@\fR, the name will -be interpreted as a tiger logging server. +be of the form 'security.report.\fIhostname.date.time\fR'. +If the directory begins with a \fB@\fR, the name will +be interpreted as a tiger logging server. Tiger logging's server +is currently a server that listens in port (tcp) 5353 on a remote +host. The tiger process will just send the results to that server +using a telnet connection. .TP -.I "\-w workdir" +.BI "\-w " workdir Specify a directory to use for creating scratch files. This defaults -to -.I @tigerworkdir@. +to \fI@tigerworkdir@\fR. .TP -.I "\-b bindir" +.BI "\-b " bindir Specify the directory which contains (or will contain) the binaries generated from the C modules. If the systems directories contain all the binaries, they will be used directly from there. If not, -then if the +then if .I bindir contains the binaries, these will be used. If none are found in either place, then an attempt will be made to compile the C code -and install the executables into the -.I bindir. +and install the executables into \fIbindir\fR. .TP -.I "\-c tigerrc" +.BI "\-c " tigerrc Specify an alternate name for the .I tigerrc control file. The default is '@tigerconfigdir@/tigerrc'. .TP -.I "\-e" +.B "\-e" This option will cause explanations to be inserted into the security report following each message. This can greatly increase the size of the report, as explanations may appear repeatedly. .TP -.I "\-E" +.B "\-E" This option indicates that a separate explanation report should be created, with explanations for each type of message only appearing -once. The filename of the explanation report will be of the form -.RI 'explain.report. hostname.date.time.' +once. The filename of the explanation report will be of the +form 'explain.report.\fIhostname.date.time\fR'. .TP -.I "\-G" +.B "\-G" Generate the signatures (MD5 hashes and file permissions) for system binary files. .TP -.I "\-H" +.B "\-H" This option will format the report into HTML creating local links to the problem descriptions. .TP -.I "\-S" +.B "\-S" This option indicates that a surface level check of the configuration files of any diskless clients served by this machine should be checked at the same time. The checks will not be as in depth as they would be if run on the client itself. .TP -.I "\-q" -Supress messages to be as quiet as possible, only +.B "\-q" +Suppress messages to be as quiet as possible, only security messages will be shown. +.TP +.I "\-A arch" +This option overrides the default value obtained for the current architecture +detected by the internal configuration engine to a value defined +by the user. +.TP +.I "\-O os" +This option overrides the default value obtained for the current operating +system detected by the internal configuration engine to a value defined +by the user. +.TP +.I "\-R release" +This option overrides the default value obtained for the current +operating system release detected by the internal configuration engine +to a value defined by the user. +.LP +Notice that changing the real values for the operating system and +architecture +.B Tiger +is running in might result in scripts being run which are not +appropiate to it, and, as a consequence, unexpected (and potentially +dangerous) errors might be generated. When executed +.B Tiger +will show which operating system, release and architecture thinks it is +running in. .LP .SH MODULES .LP .B Tiger is composed of a series of modules. Each of these modules check specific -security issues related to UNIX systems. The framework provided by +security issues related to UNIX systems. The framework provided by .B Tiger allows the provision of both generic modules and those specific for the operating system the software runs in. Modules can be executed stand alone, from cron or through the .B tiger program (which will execute all those available). +.LP +If you want to write additional modules for your system read the +.I README.writemodules +document. +.LP +.B Tiger +currently provides the following modules: .TP -.I check_accounts +.B check_accounts Checks the accounts provided in the system, looking for disabled accounts with cron, rhosts, .forward, and valid shells. .TP -.I check_aliases +.B check_aliases Performs a check for mail aliases and improper configuration. .TP -.I check_anonftp +.B check_anonftp Determines if the anonymous FTP service is properly configured. .TP -.I check_cron +.B check_cron Validates the cron entries in the system. .TP -.I check_embedded +.B check_embedded Determines if embedded pathnames are configured properly. .TP -.I check_exports +.B check_exports Analyses configuration files for NFS exported filesystems to see if access is properly restricted. .TP -.I check_group +.B check_group Checks the UNIX groups available in the system, looking for conflicts and improper entries. .TP -.I check_inetd +.B check_inetd Checks the inetd configuration file: compares against services -definition, valid directory paths, non-existant binaries and active +definition, valid directory paths, non-existent binaries and active services. .TP -.I check_known -Looks for known intrusion signs including backdors and mail spools. +.B check_known +Looks for known intrusion signs including backdoors and mail spools. .TP -.I check_netrc +.B check_netrc Checks if users's netrc files are insecurely configured. .TP -.I check_nisplus +.B check_nisplus Looks for wrong configuration in the NIS+ entries. .TP -.I check_passwd +.B check_passwd Checks the UNIX users available in the system, looking for conflicts and improper entries. .TP -.I check_path +.B check_path Validates the binaries in user's PATHs as well as PATH definitions used by scripts in order to determine insecure definitions. .TP -.I check_perms +.B check_perms Check filepermissions and inconsistencies. .TP -.I check_printcap +.B check_printcap Analyses the configuration for the printer control file. .TP -.I check_rhosts +.B check_rhosts Checks rhosts files in order to see if user's configuration leaves the system open to attack. .TP -.I check_sendmail +.B check_sendmail Checks sendmail configuration files. -.I check_signatures +.B check_signatures Compares binary files signatures against those stored in the local database (provided with the program). .TP -.I check_system +.B check_system This module calls the operating system's specific modules available at -.B /usr/lib/tiger/systems/ +\fB/usr/lib/tiger/systems/\fR. .TP -.I check_apache +.B check_apache Checks the -.I Apache -configuration file and reports on generic issues whcih might introduce +.B Apache +configuration file and reports on generic issues which might introduce exposures or vulnerabilities in the system. .TP -.I check_devices +.B check_devices Checks for devices's permissions, warning about devices that have world permissions. .TP -.I check_exrc -Analyses .exrc files that are not in user's home directories. The vi +.B check_exrc +Analyses .exrc files that are not in user's home directories. The \fBvi\fR command will look for the existence of such a file in the current -directory, and so may inadvertenly perform commands that can -compromise your system's security when starting vi or ex. +directory, and so may inadvertently perform commands that can +compromise your system's security when starting \fBvi\fR or \fBex\fR. .TP -.I check_finddeleted +.B check_finddeleted Checks if deleted files are being used by any process in the current system. This might be an indication of intrusion (a user executing processes and then deleting its files) or of unpatched servers (which, if not restarted use old library files and are still -vulnerable) +vulnerable). .TP -.I check_ftpusers +.B check_ftpusers Analyses the system's /etc/ftpusers and determines if the administrative users are in that file. -.TP -.I check_issue +.TP +.B check_issue Checks the /etc/issue and /etc/issue.net file to determine if they -contain the appropiate content (this is defined in the ISSUEFILE and -ISSUENETFILE) +contain the appropriate content (this is defined in the ISSUEFILE and +ISSUENETFILE). .TP -.I check_logfiles -Checks for the existance of log files (wtmp, btmp, lastlog and utmp). It +.B check_logfiles +Checks for the existence of log files (wtmp, btmp, lastlog and utmp). It will also check for proper umask settings. .TP -.I check_lilo +.B check_lilo Analyses configuration files for lilo and grub boot loaders (Linux-specific). .TP -.I check_listeningprocs +.B check_listeningprocs Checks for processes listening on TCP/IP sockets (servers) in the system as well as users running them. Will warn if the user running a server is not an authorised one or if the server is listening on all available interfaces. .TP -.I check_passwdformat +.B check_passwdformat Checks the format of the /etc/passwd file in order to determine inconsistencies which indicate an intrusion or misconfiguration. .TP -.I check_patches +.B check_patches Checks if patches are available for the system (i.e. new packages). -It will use autorpm or apt-get to check this (so this tools need to be +It will use autorpm or apt\-get to check this (so this tools need to be properly configured). This check is specific to Linux (RedHat or Debian). .TP -.I check_root +.B check_root Checks if remote root login is allowed to the local system. .TP -.I check_rootdir +.B check_rootdir Checks the permissions for the root directory. .TP -.I check_rootkit +.B check_rootkit Tries to find systems which have been rootkited, it does so by looking for trojaned \fBls\fR and \fBfind\fR commands. It also includes a wrapper to run the \fBchkrootkit\fR program and format the results in Tiger's message format. .TP -.I check_single +.B check_single Checks if the system is properly configured to disallow single-user access. This check is specific to Linux. .TP -.I check_release -Analyses the verions of the operating system and determines if it is +.B check_release +Analyses the version of the operating system and determines if it is too out of date. This check is specific to Linux (RedHat or Debian). .TP -.I check_runprocs +.B check_runprocs This module will check if the processes configured in .I tigerrc are running currently in the system. If any of the processes -is not running +is not running, .B Tiger will warn the administrator (this acts as a lightweight software watchdog) .TP -.I check_services +.B check_services Check which services are configured in the system (usually in /etc/services) versus the ones that should be configured (in the provided services file) .TP -.I check_tcpd -Tests for the existance of tcp-wrappers and changes in their configuration -it also determines which services are running wrapped in tcp-wrappers. +.B check_tcpd +Tests for the existence of tcp\-wrappers and changes in their configuration +it also determines which services are running wrapped in tcp\-wrappers. .TP -.I check_umask +.B check_umask Check for umask setting in configuration files. .TP -.I check_xinetd +.B check_xinetd Checks which xinetd services are enabled or disabled. .TP -.I crack_run +.B crack_run Runs a local installation of the \fBCrack\fR program which can be used to determine if local user passwords are easy (or not) to guess. .TP -\fItripwire_run\fR \fIaide_run\fR \fIintegrit_run\fR +\fBtripwire_run\fR \fBaide_run\fR \fBintegrit_run\fR Wrappers for a number of integrity checkers, these programs enhance the -support of \fBTiger\fR for MD5 and SHA-1 binary signatures and file -system permission checks (implemenented with the the \fIcheck_perms\fR -and \fIcheck_signatures\fR scripts). You should consider installing -any of these three programs (\fITripwire\fR, \fIAide\fR or \fIIntegrit\fR) +support of \fBTiger\fR for MD5 and SHA\-1 binary signatures and file +system permission checks (implemented with the the \fBcheck_perms\fR +and \fBcheck_signatures\fR scripts). You should consider installing +any of these three programs (\fBTripwire\fR, \fBAide\fR or \fBIntegrit\fR) and use read-only locations (such as CD-ROM) to store the hashes of the system. .TP -.I deb_checkadvisories +.B deb_checkadvisories This module checks against a list of stored Debian Security Advisories in order to see if the system has any package installed whose version might be subject to any security vulnerability (Debian-specific). .TP -.I deb_checkmd5sums +.B deb_checkmd5sums Compares the MD5 sums of binary files against those provided after installation. Changes in these files might be an indication of a compromised system (Debian-specific). .TP -.I deb_nopackfiles +.B deb_nopackfiles Looks for files installed in the system's directories that are not provided by any installed Debian packages (Debian-specific). .LP @@ -290,27 +366,32 @@ .TP .I @tigerconfigdir@/cronrc Configuration file for the -.I Tigercron +.B Tigercron tool. .TP .I @tigerlogdir@ Location of the log messages generated by .B Tiger -when run through -.I cron +when run through \fBcron\fR. .TP .I @tigerworkdir@ Working directory used by .B Tiger scripts to create temporary files. +.TP +.I @tigerconfigdir@/tiger.ignore +Configuration file that defines which messages generated by modules will be +ignored by +.B Tiger +and will not be presented in the final report. .SH SEE ALSO -tigexp(8) +.BR tigexp (8) .PP There are also a number of .I README files that describe in detail the behaviour of .B Tiger -and how it can be used to setup a host-based instrusion detection +and how it can be used to setup a host-based intrusion detection system. These can be found in the top directory of the sources or in .B @tigerhomedir@ @@ -323,23 +404,23 @@ Some places in the package are not shell meta-character or white-space safe. .LP -Report or read known bugs at the +You can report or read known bugs at the .I http://savannah.nongnu.org/projects/tiger webpage. .LP For Debian-specific (known) bugs read the -.B /usr/share/doc/tiger/README.Debian +.I /usr/share/doc/tiger/README.Debian document or the -.B http://bugs.debian.org/tiger +.I http://bugs.debian.org/tiger webpage. .SH AUTHOR .B Tiger was originally developed by a team of the -Texas A&M University Supercomputer Center, as of september 1993, +Texas A&M University Supercomputer Center, as of September 1993, the development done via the Network Group, Computing & Information Services. .PP This software was written originally by Douglas Lee Schales, Dave K. Hess, Khalid Warraich, -and Dave R. Safford (circa 1993) +and Dave R. Safford (circa 1993). .PP A .B lot @@ -348,10 +429,10 @@ Mike Kienenberger , including support for quite a number of operating systems. .PP -Current upsteam maintenance of +Current upstream maintenance of .B Tiger is being done by Javier Fernandez-Sanguino Peña and coordinated at -.I http://savannah.nongnu.org/projects/tiger +\fIhttp://savannah.nongnu.org/projects/tiger\fR. .PP The adaptation for the GNU/Linux operating system was made by Robert L. Ziegler @@ -359,12 +440,10 @@ The modifications for the Debian GNU/Linux operating system have been made by Javier Fernandez-Sanguino Peña , including a number of checks for the GNU/Linux -operating systems ( -.B check_listeningprocs -) and some specific for Debian ( -.B deb_checkadvisories -, +operating systems +.RB ( check_listeningprocs ) +and some specific for Debian +.RB ( deb_checkadvisories , .B deb_checkmd5sums and -.B deb_nopackfiles -). +.BR deb_nopackfiles ). --- tiger-3.2.1.orig/man/tigexp.8 +++ tiger-3.2.1/man/tigexp.8 @@ -2,73 +2,82 @@ .SH NAME tigexp \- UNIX Security Checker Explanation Generator .SH SYNOPSIS -.B "tigexp msgid [msgid [msgid...]]" +.B tigexp +.IR msgid " [" msgid [ msgid ...]] .LP -.B "tigexp [-f|-F] [security_report]" +.B tigexp +.RB [ -f | -F ] +.RI [ security_report ] .LP .SH DESCRIPTION .LP -Tigexp is used to generate explanations of the output from the -Tiger security checking package. In the first form, -.I tigexp +\fBTigexp\fR is used to generate explanations of the output from the +\fBTiger\fR security checking package. In the first form, +.B tigexp will generate an explanation of each of the message ids listed. In the second form, the security report specified will be scanned and explanations generated. The -.I "\-f" +.B "\-f" option will generate one explanation for each unique message id in the security report, whereas the -.I "\-F" +.B "\-F" option will output the security report with explanations inserted after each entry in the report. .PP -There are five different message levels produced by Tiger. Each of -the message levels is the last letter of the message id. The are: -.TP +There are five different message levels produced by \fBTiger\fR. Each of +the message levels is the last letter of the message id. The levels are: +.TP .I ALERT -A message of this level indicates that Tiger has detected a +A message of this level indicates that \fBTiger\fR has detected a possible intrusion attempt or troublesome misconfiguration which can -expose the whole system to attack. -.TP +expose the whole system to attacks. +.TP .I FAIL Messages of this level indicate a violation of a generic security policy -or a possible intrusion. Appropiate action should be taken to fix this +or a possible intrusion. Appropriate action should be taken to fix this security issue. -.TP +.TP .I WARN Messages of this level indicate a security issue which should be checked further and might indicate a probable vulnerability or exposure. Most -.I Tiger +.B Tiger messages appear in this category. -.TP +.TP .I INFO These includes information messages which are not necessarily a security -violation but might be useful for the administrator. Note that the +violation but might be useful for the administrator. Note that the .I tigerrc -configuration file through the +configuration file through the .I Tiger_Show_INFO_Msgs -option determines wether or not -.I Tiger -shows these items. The default behaviour is to +option determines whether or not +.B Tiger +shows these items. The default behaviour is to .I not show them. -.TP -.I ERR +.TP +.I ERROR These messages are errors in the execution of -.I Tiger -(or any of its scripts), this is probably due to a misconfiguration -in the program, because of a problem in the installation or because -a file needed for the test is missing. The script who outputs this error +.B Tiger +(or any of its scripts), this is probably due to a misconfiguration +in the program, because of a problem in the installation or because +a file needed for the test is missing. The script who outputs this error should be investigated further. - +.TP +.I CONFIG +Messages with this level inform of stages in the configuration process +of \fBTiger\fR. They are not errors (otherwise +.I ERROR +would be used) but notices for the user running the program explaining, for +example, which configuration might be used. .SS OPTIONS .TP -.I "\-f" +.B "\-f" Scan the indicated security report and generate explanations of it. One explanation will be generated for each unique message id in the security report. If the name of a security report is not given, then the report is read from stdin. .TP -.I "\-F" +.B "\-F" Output the indicated security report with explanations inserted after each entry in the report. If the name of a security report is not given, then the report is read from stdin. @@ -77,7 +86,7 @@ $TIGERHOMEDIR/doc/explain.idx .LP .SH SEE ALSO -tiger(8) +.BR tiger (8) .LP .SH BUGS If the explanation index is out of date, it doesn't recognize it --- tiger-3.2.1.orig/man/tigercron.8.in +++ tiger-3.2.1/man/tigercron.8.in @@ -2,39 +2,47 @@ .SH NAME tigercron \- Cron utility for Tiger UNIX Security Checker .SH SYNOPSIS -.B "tigercron [-B basedir] [..tigeroptions..] [controlfile] " +.B tigercron +.RI [ controlfile ] +.RB [ -B +.IR basedir ] +.RI [ tigeroptions ...] .LP .SH DESCRIPTION .LP -Tigercron is used to run periodically checks from the Tiger +\fBTigercron\fR is used to run periodically checks from the Tiger UNIX Security Checker. \fBTigercron\fR reads a control file -which is located in '@tigerconfigdir@/cronrc'. The format -of this control file is the same as for the \fBcron\fR program, each +which is usually located in '@tigerconfigdir@/cronrc' although it +can also be specificied as the first argument when calling the program. +The format of this control file is the same as for the \fBcron\fR program, each line indicates when different checks from \fBTiger\fR will be run. +The user can indicate where Tiger is installed through the +\fB-B basedir\fR parameter, any other additional options provided +in the command line will be passed on to configure to configure \fBTiger\fR +based on them (as described in \fBtiger (8)\fR). \fBTigercron\fR runs the specified checks and compares their reports with previous stored reports (under @tigerlogdir@). It will then -mail the user defined in the '@tigerconfigdir@/cronrc' +mail the user defined in '@tigerconfigdir@/tigerrc' (\fITiger_Mail_RCPT\fR) the results. When a module is run, \fBtigercron\fR checks: - -.PP -* If \fITiger_Cron_Template\fR is set to Y in tigerrc. If it is, it checks +.IP \(bu 4 +If \fITiger_Cron_Template\fR is set to Y in tigerrc. If it is, it checks if there is a template stating which are the expected results. -.PP -* If \fITiger_Cron_CheckPrev\fR is set to Y in tigerrc. If it is, it checks +.IP \(bu 4 +If \fITiger_Cron_CheckPrev\fR is set to Y in tigerrc. If it is, it checks if there is a previous run of the module it can check against. - +.PP A differential report is generated depending on the module reports and previous run and is sent through e-mail. These reports -provides an easy way to detect intrusions even if no configuration +provide an easy way to detect intrusions even if no configuration of templates has been done. In the event of an intrusion a \fBTiger\fR check might detect something specific (file changes, new processes, new users, etc.) and this alert mechanism provides a way to turn \fBTiger\fR into a Host Intrusion Detection System (HIDS). -The hability of it to work as a proper HIDS is based on a good customization +The ability of it to work as a proper HIDS is based on a good customization of the cronrc file. Modules that check events to which the host is most exposed to should be run often in order to detect deviations from normal behaviour. @@ -64,15 +72,15 @@ .B Tiger scripts to create temporary files. .SH SEE ALSO -tigexp(8), tiger(8), cron(8), crontab(5) +.BR tigexp (8), tiger (8), cron (8), crontab (5) -The deficiencies of using \fBtigercron\fR as a HID are described in the +The deficiencies of using \fBtigercron\fR as a HIDS are described in the file README.hostids which is provided with the package. In Debian GNU/Linux you will find this (and other related) documentation at /usr/share/doc/tiger/ .SH BUGS Currently \fBTigercron\fR has only one alert mechanism (mail) and signatures are not supported. Thus, alerts could be faked. Also, it is dependant -on \fBcron\fR and will not work if its not working. +on \fBcron\fR and will not work if \fBcron\fR is not working. .SH AUTHOR This manpage was written by Javier Fernandez-Sanguino. --- tiger-3.2.1.orig/README +++ tiger-3.2.1/README @@ -37,7 +37,7 @@ Mailing lists ------------- -There are now two maillings list available for the 'tiger' at +There are now two mailing lists available for the 'tiger' at savannah.gnu.org. These two mailing lists are: - a user's mailing list: tiger-user@mail.freesoftware.fsf.org @@ -101,9 +101,9 @@ developed by the HP corporation by Bryan Gartner and the last one developed for the Debian GNU/Linux distribution by Javier Fernandez-Sanguino. -These forks were merged on may 2002 and in june 2002 the new source code, +These forks were merged on may 2002 and in June 2002 the new source code, now labeled as the 3.0 release, was published at the Savannah site. -The 3.1 release was distributed in october 2002, it was considered +The 3.1 release was distributed in October 2002, it was considered an unstable release and included some new checks, a new autoconf script for automatic configuration, but mostly included fixes from bugs found after testing Tiger in Debian GNU/Linux and in other --- tiger-3.2.1.orig/tiger.spec +++ tiger-3.2.1/tiger.spec @@ -1,17 +1,42 @@ +# Build relocatable? (1=yes 0=no) +%define want_reloc 1 +%{?build_want_reloc:%define want_reloc 1} + +# Is this the distributable or local test version? (1=distr 0=test) +%define want_distr 1 +%{?build_want_distr:%define want_distr 1} + +# Do we want to keep non-Linux systems +%define keep_other_sys 0 +%{?build_want_distr:%define keep_other_sys 0} + %define maj 3 -%define min 2 +%define min 2 %define rev 1 -%define rel 2003.08.19.00.00.00 +%define cvs 2003.08.19.00.00.00 Summary: Security auditing on UNIX systems Name: tiger Version: %{maj}.%{min} -Release: %{rel} +%if %{want_distr} +Release: %{rev} +%else +Release: %{rev}.%{cvs} +%endif License: GPL Group: System Environment/Base +URL: http://www.tigersecurity.org Source: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version} Provides: %{name} +%if %{want_reloc} +Prefix: /usr/sbin +Prefix: /usr/lib +Prefix: /var +Prefix: /etc +%else +Prefix: /usr/local +%endif @@ -26,35 +51,81 @@ tested as thoroughly as the SunOS and NeXT configurations, and in some cases, may barely work. For other systems, a "best effort" check will be performed. +This is TIGER release %{version}.%{release} -Note[0]: This package currently installs in /usr/local/tiger. -Note[1]: Please adjust your /usr/local/tiger/tigerrc before running. %prep %setup -q %build +autoconf ./configure \ --prefix=${RPM_BUILD_ROOT} \ + --mandir=/usr/share/man \ +%if %{want_reloc} + --with-tigerhome=/usr/lib/tiger \ + --with-tigerbin=/usr/sbin \ + --with-tigerconfig=/etc/tiger \ + --with-tigerwork=/var/run/tiger \ + --with-tigerlog=/var/log/tiger +%else --with-tigerhome=/usr/local/tiger \ - --with-tigerconfig=/usr/local/tiger \ + --with-tigerbin=/usr/local/tiger/bin \ + --with-tigerconfig=/usr/local/tiger/etc \ --with-tigerwork=/usr/local/tiger/run \ - --with-tigerlog=/var/log \ - --with-tigerbin=/usr/local/tiger/bin -# Hurry up -grep /proc/version -qe " SMP "; case "$?" in 0) opt='-j 3';; esac + --with-tigerlog=/usr/local/tiger/log +%endif + +if grep /proc/version -qe " SMP "; then opt='-j 3'; fi make ${opt} + %install export DESTDIR=${RPM_BUILD_ROOT} +# Generic call make install +# OS Specific +# 1.- Cron job installation +mkdir -p ${DESTDIR}/etc/cron.d/ +chmod 755 ${DESTDIR}/etc/cron.d/ +%if %{want_reloc} +install -m644 debian/cron.d ${DESTDIR}/etc/cron.d/tiger +%else +sed -es 's/usr\/sbin/usr\/local\/tiger\/bin/g' < debian/cron.d >${DESTDIR}/etc/cron.d/tiger +chmod 644 ${DESTDIR}/etc/cron.d/tiger +%endif +# 2.- Tiger.ignore (needs to be revised for RedHat) +%if %{want_reloc} +install -m600 debian/debian.ignore ${DESTDIR}/etc/tiger/tiger.ignore +%else +install -m600 debian/debian.ignore ${DESTDIR}/usr/local/etc/tiger.ignore +%endif +# 3.- This should be done by the Makefile, grumble... +%if %{want_reloc} +install -m 644 version.h ${DESTDIR}/usr/lib/tiger/ +%else +install -m 644 version.h ${DESTDIR}/usr/local/tiger/ +%endif +# Removed unnecesary stuff +%if ! %{keep_other_sys} +for system in AIX HPUX IRIX NeXT SunOS UNICOS UNICOSMK Tru64 MacOSX ; +do +%if %{want_reloc} +rm -rf ${RPM_BUILD_ROOT}/usr/lib/tiger/systems/${system}; +%else +rm -rf ${RPM_BUILD_ROOT)/usr/local/tiger/systems/${system}; +%endif +done +%endif +find ${RPM_BUILD_ROOT} -type d -name CVS | xargs -iX rm -rf "X" %clean rm -rf ${RPM_BUILD_ROOT} + %post -printf "%sPlease adjust your /usr/local/tiger/tigerrc before running.\n" +# Nothing necessary here %preun @@ -67,11 +138,49 @@ %files %defattr(-,root,root) +# Common directories regardless of if its relocated or not +/etc/cron.d +/usr/share/man +# Directories that will change if relocated +%if %{want_reloc} +/usr/sbin/ +/usr/lib/%{name} +/var/run/%{name} +/var/log/%{name} +/etc/%{name} +%else /usr/local/%{name} - - +%endif %changelog +* Sun Jan 25 2004 Ryan Bradietch +- Changed permissions on ${DESTDIR}/etc/cron.d from: 766 to 755. +- Added a call to autoconf in the %build section. + +* Sat Dec 27 2003 Javier Fernandez-Sanguino +- Spec file when relocatable now uses /usr/lib instead of /usr/local/tiger +- Fixed grep of /proc/version so that build does not stop in RH 7.3 + (it builds fine in Debian sid though :-) +- Cron file is now installed in /etc/cron.d/tiger +- Version.h file is now installed (should be done by the Makefile) +- Install ignore file (but needs to be revised) +- Always remove the systems we don not care for (just leave Linux) +- Remove the systems we don not care for (just leave Linux) based on + the keep_other_sys variable +- Added /usr/sbin (if relocatable) and /etc/cron.d/ in the generic case + to the distributed files. +- Changed /var/log to /var/log/tiger +- NOTE: I don't expect the relocatable part to work properly (since Tiger + has been already 'configured'). I'll leave it momentarily until + I decide what to do with it. If it's relocated Tiger will _NOT_ work + (until the hardcoded paths are changed), this could be done in the + %post installation properly, though. + +* Wed Sep 24 2003 unSpawn XIII +- Made spec file build relocatable and reflect tru parameterisation +- Strip CVS dirs on build +- Strip AIX, HPUX, Sun and Mac systems dir on build (should be defines) + * Sun May 4 2003 unSpawn 3.2rc3-2003.23.04.13.00 - First attempt to build from sources "made easy" by Javier incorporating a default Makefile script. --- tiger-3.2.1.orig/README.logo +++ tiger-3.2.1/README.logo @@ -3,9 +3,9 @@ ------------ The original Tiger tool did not have a logo so I started a logo contest -back in june 2002 (http://savannah.gnu.org/forum/forum.php?forum_id=769). +back in June 2002 (http://savannah.gnu.org/forum/forum.php?forum_id=769). -The logo contest was closed in november 2002 +The logo contest was closed in November 2002 ( http://savannah.nongnu.org/forum/forum.php?forum_id=1270), and the winner was a logo provided by OpenGraphics (http://www.coresis.com/opengraphics). The logo is available in the --- tiger-3.2.1.orig/README.signatures +++ tiger-3.2.1/README.signatures @@ -20,7 +20,7 @@ system you can use the scripts 'util/mksig' and 'util/mkfilelst' which will, respectively, create a signatures.$OS-$REV-$ARCH and file_access_list.$OS-$REV-$ARCH file in the current directory you can -install under the appropiate systems/$OS/$REV/$ARCH directory (and +install under the appropriate systems/$OS/$REV/$ARCH directory (and rename them to 'signatures' and 'file_access_list') You can retrieve updated signatures (MD5 and SHA-1 signatures) from --- tiger-3.2.1.orig/README.sources +++ tiger-3.2.1/README.sources @@ -14,6 +14,14 @@ are dated) I still need to read the third edition though (http://www.oreilly.com/catalog/puis3/) +- NIST Security Check Lists (has both a generic UNIX checklist and specific + to some OS): + http://csrc.nist.gov/pcig/cig.html + +- NSA's Security Confguration Guides, provides some Checklists for UNIX + operating systems (Solaris-only at the time of this writting) + http://ww.nsa.gov/snac + - CERT's Security Improvement Modules available at http://www.cert.org/security-improvement/ @@ -59,7 +67,8 @@ http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/patch-license&nav=pub-patches - For AIX - AIX manpages: http://publib.boulder.ibm.com/cgi-bin/ds_form?lang=en_US + AIX 5.x manpages: http://publib16.boulder.ibm.com/cgi-bin/ds_form?lang=en_US&viewset=AIX + AIX 4.3 manpages: http://publib.boulder.ibm.com/cgi-bin/ds_form?lang=en_US AIX 4.3 documentation library: http://publib.boulder.ibm.com/cgi-bin/ds_form?lang=en_US IBM Redbooks http://www.redbooks.ibm.com/ @@ -102,7 +111,7 @@ There are a number of security tools that have inspired Tiger in some way, either in philosophy or checks. Some of the tools below are not specifically auditing tools but hardening tools (such as Titan or Bastille) and Tiger -has been configured to check for the default not-secure configurations taht +has been configured to check for the default not-secure configurations that they have been programmed to fix. - Dan Farmer's COPS (Computer Oracle and Password System) developed in 1989 @@ -132,529 +141,9 @@ Note that the FreeBSD versions are not implemented since FreeBSD is not yet a supported system in Tiger. -TODO-CHECK: -(if implemented) +Other Titan modules have not been reviewed yet and need to be checked. + + +--- Javier Fernandez-Sanguino jfs@computer.org +Mon, 18 Apr 2005 23:45:32 +0200 -linux-generic/bin/modules: -aliases.sh -cronset.sh -decode.sh -disable-accounts.sh -disable-core.sh -duplicate-root.sh -file-own.sh2 -fix-cronpath.sh -ftpaccess_secure.sh -hosts-equiv.sh -hosts.equiv.sh -inetd2.sh -L2.4RWdisableX.sh -lib -loginlog.sh -lpsched.sh -nsswitch.sh -pam-rhosts.sh -passwd.sh -psfix.sh -rhosts.sh -rootchk.sh -rootpath.sh -routed-quiet.sh -routed.sh -sendmail-forward.sh -sendmail.sh -smtpbanner.sh -snmpdx.sh -syslog.sh -tftp-disable.sh -tftpServer.sh -tmp -ttytab.sh -tune-perm.sh -useraddset.sh -userumask.sh -utmp.sh -uucp-disabled.sh -ypserver-client.sh -ziplock.sh - -RedHat/bin/modules: -adjust-arp-timers.sh -aliases.sh -atset.sh -create-umask-redhat.sh -cronlog-redhat.sh -cronset.sh -decode.sh -disable-accounts.sh -disable-core.sh -duplicate-root.sh -file-own.sh -fix-cronpath.sh -ftpaccess_secure.sh -hosts.equiv.sh -inetd2.sh -L2.4RWdisableX.sh -lib -limit-core-redhat.sh -loginlog.sh -lpsched.sh -nsswitch.sh -pam-rhosts.sh -passwd.sh -psfix.sh -rhosts.sh -rootchk.sh -rootpath.sh -routed-quiet.sh -sendmail-forward.sh -sendmail.sh -smtpbanner.sh -snmpdx.sh -syslog.sh -tftp-disable.sh -tftpServer.sh -tmp -ttytab.sh -tune-perm.sh -userumask.sh -utmp.sh -uucp-disabled.sh -ypserver-client.sh -ziplock.sh - -sol1sun3/bin/modules: -aliases.sh -decode.sh -duplicate-root.sh -hosts-equiv.sh -inetd2.sh -lib -mkshadow.sh -passwd.sh -rhosts.sh -rootchk.sh -rootpath.sh -routed-quiet.sh -tftp-disable.sh -tftpServer.sh -ttytab.sh -tune-perm.sh -utmp.sh -uucp-disabled.sh -ypserver-client.sh - -sol1sun4/bin/modules: -aliases.sh -decode.sh -duplicate-root.sh -hosts-equiv.sh -inetd2.sh -lib -mkshadow.sh -passwd.sh -rhosts.sh -rootchk.sh -rootpath.sh -routed-quiet.sh -tftp-disable.sh -tftpServer.sh -ttytab.sh -tune-perm.sh -utmp.sh -uucp-disabled.sh -ypserver-client.sh - -sol2sun4/bin/modules: -add-umask.sh -adjust-arp-timers.sh -adjust.syn-timeout.sh -aset.sh -automount2.sh -automount.sh -bsm.sh -cde.sh -cronset.sh -decode.sh -defloginparams.sh -defpwparams.sh -disable-accounts.sh -disable-core.sh -disable_ip_holes.sh -disable-L1-A.sh -disable-NFS-2.6.sh -disable-NFS.bind.sh -disable-ping-echo.sh -disable-services.sh -dmi-2.6.sh -eeprom.sh -file-own.sh -fix-cronpath.sh -fix-modes.sh -fix-stack.sh -fix-stack.sol2.6.sh -ftp-2.6_secure.sh -ftpusers.sh -hosts.equiv.sh -inetd2.sh -inetsvc.sh -keyserv.sh -lib -loginlog.sh -log-tcp.sh -lpsched.sh -nddconfig.sh -nfs-portmon.sh -nsswitch.sh -nuke-cachefs.sh -nuke-dtlogin.sh -nuke-nfs-client.sh -nuke-nfs-serv.sh -nuke-nscd.sh -nuke-powerd.sh -nuke-rpc.sh -pam-rhosts-2.6.sh -passwd.sh -powerd.sh -psfix.sh -rf_create-motd.sh -rhosts.sh -rmmount.sh -rootchk.sh -routed.sh -sendmail-forward.sh -sendmail.sh -smtpbanner-8.8.sh -smtp-banner.sh -snmpdx-2.6.sh -sulog.sh -syslog-block-remote.sh -syslog.sh -tcp-sequence.sh -tmp -tmpfs-fixsize.sh -useraddset.sh -userumask.sh -utmp2.7.sh -utmp.sh -vold.sh -ziplock.sh - -sol2x86/bin/modules: -add-umask.sh -adjust-arp-timers.sh -adjust.syn-timeout.sh -aset.sh -automount2.sh -automount.sh -bsm.sh -cde.sh -cronset.sh -decode.sh -defloginparams.sh -defpwparams.sh -disable-accounts.sh -disable-core.sh -disable_ip_holes.sh -disable-NFS-2.6.sh -disable-NFS.bind.sh -disable-ping-echo.sh -disable-services.sh -dmi-2.6.sh -eeprom.sh -file-own.sh -fix-cronpath.sh -fix-modes.sh -fix-stack.sh -fix-stack.sol2.6.sh -ftp-2.6_secure.sh -ftpusers.sh -hosts.equiv.sh -inetd2.sh -inetsvc.sh -keyserv.sh -lib -loginlog.sh -log-tcp.sh -lpsched.sh -nddconfig.sh -nfs-portmon.sh -nsswitch.sh -nuke-cachefs.sh -nuke-dtlogin.sh -nuke-nfs-client.sh -nuke-nfs-serv.sh -nuke-nscd.sh -nuke-powerd.sh -nuke-rpc.sh -pam-rhosts-2.6.sh -passwd.sh -powerd.sh -psfix.sh -rf_create-motd.sh -rhosts.sh -rmmount.sh -rootchk.sh -routed.sh -sendmail-forward.sh -sendmail.sh -smtpbanner-8.8.sh -smtp-banner.sh -snmpdx-2.6.sh -sulog.sh -syslog-block-remote.sh -syslog.sh -tcp-sequence.sh -tmp -tmpfs-fixsize.sh -useraddset.sh -userumask.sh -utmp2.7.sh -utmp.sh -vold.sh -ziplock.sh - -sol8sun4/bin/modules: -add-umask.sh -adjust-arp-timers2.8.sh -aset.sh -automount2.sh -automount.sh -bsm.sh -cde.sh -cronset.sh -decode.sh -defloginparams.sh -defpwparams.sh -disable-accounts.sh -disable-afbinit.sh -disable-cachefs.sh -disable-core-sol8.sh -disable-flasprom.sh -disable-ifbinit.sh -disable_ip_holes.sh -disable-L1-A.sh -disable-llc2.sh -disable-ncad.sh -disable-ncalogd.sh -disable-NFS-2.6.sh -disable-ping-echo.sh -disable-pppd.sh -disable-services.sh -dmi-2.6.sh -eeprom.sh -file-own.sh -fix-cronpath.sh -fix-modes.sh -fix-stack.sol2.6.sh -ftp-2.6_secure.sh -ftpusers.sh -hosts.equiv.sh -inetd2.sh -inetsvc.sh -keyserv2.8.sh -lib -login_failed_retries.sh -loginlog.sh -log-tcp.sh -lpsched.sh -nddconfig2.8.sh -nfs-portmon.sh -nsswitch.sh -nuke-dtlogin.sh -nuke-nfs-client.sh -nuke-nfs-serv.sh -nuke-nscd.sh -nuke-powerd.sh -nuke-rpc.sh -nuke-smc.sh -pam-rhosts-2.6.sh -passwd.sh -powerd2.8.sh -psfix.sh -queue-sendmail.sh -rf_create-motd.sh -rhosts.sh -rmmount.sh -rootchk.sh -routed.sh -sendmail-forward.sh -sendmail.sh -smtpbanner-8.8.sh -snmpdx-2.6.sh -sulog.sh -syslog-block-remote.sh -syslog_failed_logins.sh -syslog.sh -tcp-sequence.sh -tmp -tmpfs-fixsize.sh -useraddset.sh -userumask.sh -utmp2.7.sh -vold.sh -ziplock.sh - -sol8x86/bin/modules: -add-umask.sh -adjust-arp-timers2.8.sh -aset.sh -automount2.sh -automount.sh -bsm.sh -cde.sh -cronset.sh -decode.sh -defloginparams.sh -defpwparams.sh -disable-accounts.sh -disable-afbinit.sh -disable-cachefs.sh -disable-core-sol8.sh -disable-flasprom.sh -disable-ifbinit.sh -disable_ip_holes.sh -disable-L1-A.sh -disable-llc2.sh -disable-ncad.sh -disable-ncalogd.sh -disable-NFS-2.6.sh -disable-ping-echo.sh -disable-pppd.sh -disable-services.sh -dmi-2.6.sh -eeprom.sh -file-own.sh -fix-cronpath.sh -fix-modes.sh -fix-stack.sol2.6.sh -ftp-2.6_secure.sh -ftpusers.sh -hosts.equiv.sh -inetd2.sh -inetsvc.sh -keyserv2.8.sh -lib -login_failed_retries.sh -loginlog.sh -log-tcp.sh -lpsched.sh -nddconfig2.8.sh -nfs-portmon.sh -nsswitch.sh -nuke-dtlogin.sh -nuke-nfs-client.sh -nuke-nfs-serv.sh -nuke-nscd.sh -nuke-powerd.sh -nuke-rpc.sh -nuke-smc.sh -pam-rhosts-2.6.sh -passwd.sh -powerd2.8.sh -psfix.sh -queue-sendmail.sh -rf_create-motd.sh -rhosts.sh -rmmount.sh -rootchk.sh -routed.sh -sendmail-forward.sh -sendmail.sh -smtpbanner-8.8.sh -snmpdx-2.6.sh -sulog.sh -syslog-block-remote.sh -syslog_failed_logins.sh -syslog.sh -tcp-sequence.sh -tmp -tmpfs-fixsize.sh -useraddset.sh -userumask.sh -utmp2.7.sh -vold.sh -ziplock.sh - -sol9sun4/bin/modules: -add-cmask.sh -adjust-arp-timers2.8.sh -automount2.sh -automount.sh -bsm.sh -cde.sh -cronset.sh -decode.sh -defloginparams.sh -defpwparams.sh -disable-accounts.sh -disable-afbinit.sh -disable-cachefs.sh -disable-core-sol8.sh -disable-flasprom.sh -disable-ifbinit.sh -disable_ip_holes.sh -disable-L1-A.sh -disable-llc2.sh -disable-ncalogd.sh -disable-NFS-2.6.sh -disable-ping-echo.sh -disable-pppd.sh -disable-services.sh -dmi-2.6.sh -eeprom.sh -file-own.sh -fix-cronpath.sh -fix-modes.sh -fix-stack.sol2.6.sh -ftp-2.6_secure.sh -ftpusers.sh -hostallow.sh -hosts.equiv.sh -inetd2.sh -inetsvc.sh -keyserv2.9.sh -lib -login_failed_retries.sh -loginlog.sh -log-tcp.sh -lpsched.sh -nddconfig2.9.sh -nfs-portmon.sh -nsswitch.sh -nuke-dtlogin.sh -nuke-nfs-client.sh -nuke-nfs-serv.sh -nuke-nscd.sh -nuke-powerd.sh -nuke-rpc.sh -nuke-smc.sh -pam-rhosts-2.6.sh -passwd.sh -powerd2.8.sh -psfix.sh -queue-sendmail.sh -rf_create-motd.sh -rhosts.sh -rmmount.sh -rootchk.sh -sendmail-forward.sh -sendmail.sh -smtpbanner-8.8.sh -snmpdx-2.6.sh -ssh-banner.sh -sulog.sh -syslog-block-remote.sh -syslog_failed_logins.sh -syslog.sh -tcp_connection_logging.sh -tcp-sequence.sh -tcp_wrap.sh -tmp -tmpfs-fixsize.sh -useraddset.sh -userumask.sh -utmp2.7.sh -vold.sh -x-nolisten.sh -ziplock.sh --- tiger-3.2.1.orig/README.writemodules +++ tiger-3.2.1/README.writemodules @@ -27,7 +27,7 @@ After this check the core of the script is written. The core includes all the commands necessary to check the system or configuration files -and output appropiate messages when a security test fails. Reports +and output appropriate messages when a security test fails. Reports should not be sent to standard output via 'echo' or similar methods. They should be sent with the 'message' function. This function takes four parameters: kind of report, codeword of message, trailer, and description @@ -35,8 +35,8 @@ system). Eg: message FAIL XXXX0??f "" "MESSAGE TO WRITE IN REPORT" Each and everyone of the messages should be included under -appropiate files in doc/. If you add new messages to the module (which -you should always do since you are reporting someting after all) you +appropriate files in doc/. If you add new messages to the module (which +you should always do since you are reporting something after all) you must include the message verbose description of the issue into the files (shown below). User's will be able to retrieve this information if they execute 'tigexp codeword'. Codewords are usually three letters followed --- tiger-3.2.1.orig/scripts/CVS/Entries +++ tiger-3.2.1/scripts/CVS/Entries @@ -2,45 +2,47 @@ D/misc//// D/sub//// /check_network/1.3/Thu May 1 15:25:48 2003// -/check_embedded/1.3/Thu May 1 17:37:42 2003// /check_nisplus/1.3/Thu May 1 17:45:43 2003// -/check_printcap/1.4/Thu May 1 17:47:06 2003// -/check_sendmail/1.4/Thu May 1 17:48:38 2003// -/check_system/1.2/Thu May 1 17:48:53 2003// -/check_logfiles/1.5/Sat Jun 21 00:27:07 2003// -/check_rootdir/1.4/Sat Jun 21 01:21:21 2003// -/check_aliases/1.4/Tue Aug 19 15:39:34 2003// -/check_anonftp/1.4/Tue Aug 19 15:40:14 2003// /check_apache/1.4/Tue Aug 19 15:40:43 2003// -/check_exports/1.6/Tue Aug 19 15:43:24 2003// /check_issue/1.7/Tue Aug 19 15:47:09 2003// /check_perms/1.7/Tue Aug 19 15:53:52 2003// -/check_rhosts/1.6/Tue Aug 19 15:54:35 2003// -/check_runprocs/1.3/Tue Aug 19 15:59:18 2003// -/check_services/1.4/Tue Aug 19 16:00:20 2003// -/check_signatures/1.3/Tue Aug 19 16:01:11 2003// -/check_umask/1.3/Tue Aug 19 16:02:55 2003// -/find_files/1.3/Tue Aug 19 16:09:02 2003// /integrit_run/1.2/Tue Aug 19 16:09:30 2003// -/check_ssh/1.3/Thu Sep 18 23:15:21 2003// -/check_listeningprocs/1.9/Fri Sep 19 00:07:38 2003// -/check_devices/1.7/Fri Sep 19 00:29:51 2003// -/check_root/1.9/Fri Sep 19 00:31:46 2003// -/check_rootkit/1.3/Fri Sep 19 01:08:09 2003// -/check_finddeleted/1.4/Fri Sep 19 01:38:58 2003// /aide_run/1.4/Fri Sep 19 02:03:10 2003// -/check_xinetd/1.4/Fri Sep 19 02:02:15 2003// -/tripwire_run/1.6/Fri Sep 19 02:02:58 2003// -/check_netrc/1.6/Tue Sep 30 22:33:02 2003// /check_exrc/1.2/Wed Oct 1 21:03:22 2003// -/check_path/1.9/Mon Oct 6 22:29:26 2003// -/check_crontabs/1.1/Tue Sep 30 22:12:10 2003// -/check_ftpusers/1.6/Mon Oct 6 22:24:00 2003// -/check_known/1.8/Mon Oct 6 22:29:43 2003// -/crack_run/1.5/Mon Oct 6 22:26:47 2003// -/check_group/1.6/Mon Oct 6 23:08:13 2003// -/check_passwd/1.12/Mon Oct 6 23:10:32 2003// -/check_tcpd/1.7/Mon Oct 6 23:14:38 2003// -/check_inetd/1.9/Mon Oct 6 23:13:48 2003// -/check_passwdformat/1.5/Fri Oct 10 16:24:37 2003// -/check_accounts/1.13/Fri Oct 10 16:26:36 2003// +/check_tcpd/1.8/Sun Oct 19 21:56:10 2003// +/check_ntp/1.1/Mon Jan 12 05:43:19 2004// +/check_omniback/1.1/Mon Jan 12 05:43:19 2004// +/check_printcap/1.6/Tue Feb 24 19:15:13 2004// +/check_sendmail/1.5/Tue Feb 24 19:15:14 2004// +/check_services/1.5/Tue Feb 24 19:15:14 2004// +/check_xinetd/1.5/Tue Feb 24 19:15:15 2004// +/check_finddeleted/1.9/Wed Mar 3 12:14:32 2004// +/check_embedded/1.4/Thu May 20 07:37:21 2004// +/check_exports/1.7/Thu May 20 07:37:21 2004// +/check_group/1.7/Thu May 20 07:37:21 2004// +/check_path/1.12/Thu May 20 07:37:22 2004// +/check_ssh/1.6/Thu May 20 07:37:24 2004// +/check_umask/1.6/Thu May 20 07:37:24 2004// +/check_known/1.11/Sun Jun 27 11:58:22 2004// +/check_aliases/1.5/Thu Mar 31 15:22:32 2005// +/check_crontabs/1.4/Thu Mar 31 15:22:32 2005// +/check_rootdir/1.6/Thu Mar 31 15:22:33 2005// +/check_rootkit/1.7/Thu Mar 31 15:22:33 2005// +/check_system/1.4/Thu Mar 31 15:22:33 2005// +/crack_run/1.6/Thu Mar 31 15:22:33 2005// +/tripwire_run/1.7/Thu Mar 31 15:22:33 2005// +/check_netrc/1.7/Thu Mar 31 15:22:32 2005// +/check_passwdformat/1.12/Thu Mar 31 15:22:32 2005// +/check_inetd/1.13/Thu Mar 31 16:31:41 2005// +/check_anonftp/1.8/Sat Apr 16 20:18:37 2005// +/check_devices/1.9/Sat Apr 16 20:18:37 2005// +/check_ftpusers/1.7/Sat Apr 16 20:18:37 2005// +/check_logfiles/1.11/Sat Apr 16 20:18:37 2005// +/check_root/1.14/Sat Apr 16 20:18:37 2005// +/check_signatures/1.4/Sat Apr 16 20:18:37 2005// +/check_passwd/1.23/Sat Apr 16 22:30:56 2005// +/check_listeningprocs/1.10/Sat May 14 10:52:38 2005// +/check_rhosts/1.13/Sat May 14 11:36:35 2005// +/check_accounts/1.23/Fri Jul 22 16:07:52 2005// +/check_runprocs/1.7/Fri Jul 22 16:07:52 2005// +/find_files/1.6/Thu Aug 4 17:16:35 2005// --- tiger-3.2.1.orig/scripts/sub/CVS/Entries +++ tiger-3.2.1/scripts/sub/CVS/Entries @@ -1,9 +1,9 @@ -/check_devs/1.1/Fri Jun 14 08:51:31 2002// -/check_embed/1.1/Fri Jun 14 08:51:31 2002// -/check_links/1.1/Fri Jun 14 08:51:31 2002// -/check_names/1.1/Fri Jun 14 08:51:31 2002// /check_nousrgrp/1.1/Fri Jun 14 08:51:31 2002// -/check_sgid/1.1/Fri Jun 14 08:51:31 2002// -/check_suid/1.2/Mon Oct 28 16:22:46 2002// -/check_wdir/1.2/Mon Oct 28 16:22:46 2002// +/check_devs/1.2/Thu Mar 31 15:22:33 2005// +/check_embed/1.2/Thu Mar 31 15:22:33 2005// +/check_links/1.2/Thu Mar 31 15:22:33 2005// +/check_names/1.2/Thu Mar 31 15:22:33 2005// +/check_sgid/1.2/Thu Mar 31 15:22:33 2005// +/check_wdir/1.3/Thu Mar 31 15:22:33 2005// +/check_suid/1.5/Fri Jul 22 16:07:52 2005// D --- tiger-3.2.1.orig/scripts/sub/check_devs +++ tiger-3.2.1/scripts/sub/check_devs @@ -69,7 +69,7 @@ eval $greps | $GREP -v '^'/hw> $WORKDIR/dev.list.$$ [ -s $WORKDIR/dev.list.$$ ] && { - message WARN fsys006a "" "Unexpected device files found:" + message ALERT fsys006a "" "Unexpected device files found:" $SORT $WORKDIR/dev.list.$$ | while read file do --- tiger-3.2.1.orig/scripts/sub/check_embed +++ tiger-3.2.1/scripts/sub/check_embed @@ -282,9 +282,5 @@ done delete $newfile $oldfile $record $WORKDIR/tmp1.$$ -# -exit 0 -# -exit 0 -# + exit 0 --- tiger-3.2.1.orig/scripts/sub/check_links +++ tiger-3.2.1/scripts/sub/check_links @@ -59,7 +59,7 @@ $LS -ld $LSGROUP "$file" | { read p l owner group s a b c f [ "$owner" != 'root' -a "$owner" != 'bin' ] && { - echo "--INFO-- [fsys007i] Symbolic link \`$file' points to \`$realfile'." + message INFO fsys007i "" "Symbolic link \`$file' points to \`$realfile'." } } done --- tiger-3.2.1.orig/scripts/sub/check_names +++ tiger-3.2.1/scripts/sub/check_names @@ -53,10 +53,10 @@ file="`$BASENAME \"$pathname\"`" case "$file" in .FSP*) - echo "--WARN-- [fsys009w] FSP server control file found:" + message WARN fsys009w "" "FSP server control file found:" $LS $LSGROUP -ld "$pathname";; *) - echo "--ALERT-- [fsys005a] Unusual filename \`$file' found:" + message ALERT fsys005a "" "Unusual filename \`$file' found:" $LS $LSGROUP -ld "$pathname";; esac done --- tiger-3.2.1.orig/scripts/sub/check_sgid +++ tiger-3.2.1/scripts/sub/check_sgid @@ -89,7 +89,7 @@ haveallcmds LS AWK && { [ -s $WORKDIR/sgid.list.$$ ] && { - message INFO fsys011i "" 'The following setgid programs are non-standard:' + message ALERT fsys011a "" 'The following setgid programs are non-standard:' while read file do $LS $LSGROUP -ld "$file" --- tiger-3.2.1.orig/scripts/sub/check_suid +++ tiger-3.2.1/scripts/sub/check_suid @@ -18,6 +18,10 @@ # sub/check_suid - 06/14/93 # #----------------------------------------------------------------------------- +# TODO +# - Consider fixing the Tiger_Admin_Accounts check so that it takes into +# account Tiger_Accounts_Trust too +#----------------------------------------------------------------------------- # This script is not runnable directly. # inputfile="$1" @@ -65,6 +69,18 @@ $LS $LSGROUP -ld "$file" } + getpermit "$file" 2>/dev/null | + while read _file owner group ur uw ux gr gw gx or ow ox suid sgid stk + do + eval "case \"$owner\" in + \"$Tiger_Admin_Accounts\"|root) + ;; + *) + message FAIL fsys0012w \"\" \"File $file is not owned by an administrative user.\" + $LS $LSGROUP -ld \"$file\" + esac" + done + case "$file" in *xterm) { message WARN misc013w "" "$file: see CERT Advisory CA-93:17 about a security hole in xterm (does not apply to HP-UX)." @@ -162,7 +178,7 @@ haveallcmds LS AWK && { [ -s $WORKDIR/suid.list.$$ ] && { - message INFO fsys004i "" 'The following setuid programs are non-standard:' + message ALERT fsys004a "" 'The following setuid programs are non-standard:' while read file do $LS $LSGROUP -ld "$file" --- tiger-3.2.1.orig/scripts/sub/check_wdir +++ tiger-3.2.1/scripts/sub/check_wdir @@ -78,7 +78,7 @@ eval $greps > $WORKDIR/wdir.tmp.$$ [ -s $WORKDIR/wdir.tmp.$$ ] && { - echo "--INFO-- [fsys008i] The following directories are world writable:" + message FAIL fsys008f "" 'The following directories are world writable:' $SORT $WORKDIR/wdir.tmp.$$ } --- tiger-3.2.1.orig/scripts/check_accounts +++ tiger-3.2.1/scripts/check_accounts @@ -18,8 +18,29 @@ # check_accounts - created 06/14/93 # # Checks the accounts provided in the system, looking for disabled accounts -# with cron, rhosts, .forward, and valid shells. -# +# with cron, rhosts, and .forward files as well as proper configuration +# (home directory accesibility, shell configuration files, dormant accounts +# and .hushlogin files) +# +# 15/06/2005 jfs Check for null $uids before using them in comparisons +# (Debian bug #312080) +# 17/11/2004 jfs Fixed eval in check_accounts so that find is _only_ +# executed for users which are not part of +# Tiger_Admin_Accounts, this prevents Tiger from accesing +# filesystems when not needed (Debian bug #280653) +# It also should speed this check by removing unnecesary +# filesystem checks. +# 05/02/2004 jfs Try to avoid eval problems if user/shells/directories contain +# non-empty (but invalid) characters (such as space) +# (Debian bug #246987) +# 01/21/2004 jfs Removed TODO (no longer applies here), expanded description and +# fixed typo. +# 01/18/2004 rbrad Applying 4 Savannah patches: +# * 2466 - Remove redundant check (check was moved to check_passwd). +# * 2467 - Fix bug in USERDOTFILES when USERDOTFILES is empty. +# * 2468 - Cleanup and comment check_disabled(). +# * 2469 - New check: Verify parent of $home is owned by administrative +# user. # 10/01/2003 jfs For some reason this script stopped working in Linux # massaged it to work again (changed while read in function # to explicit parameter calling). Also added a check to @@ -64,7 +85,11 @@ # Now checks *all* accounts, not just disabled ones # and checks config files in home directories for # writability. -# +#----------------------------------------------------------------------------- +# TODO: +# - Some 'valid' shells such as nologin or noshell might be listed under +# /etc/shells but are really invalid. The script should maybe check these +# cases or provide a way to define $NOSHELL in order to exclude these. #----------------------------------------------------------------------------- # TigerInstallDir='.' @@ -146,43 +171,25 @@ user=$1 home=$2 host=$3 - shell=$4 - if [ "$OS" = "Linux" -a -z "$shell" ] - then - shell="/bin/sh" - fi - - [ $TESTEXEC "$shell" ] && { - eval " - case \"$shell\" in - $shcase) - message WARN acc001w \"\" \"Login ID $user is disabled, but still has a valid shell.\" - ;; - "/bin/false") - ;; - "/dev/null") - ;; - "/sbin/nologin") - ;; - *) [ $TESTEXEC $shell -a ! -c $shell ] && - message INFO acc002i \"\" \"Login ID $user is disabled, and has a shell\" - ;; - esac " + + # Check for an active cron file. + [ -n "$CHECK_CRON" -a "`$CHECK_CRON $user`" = 'YES' ] && + message WARN acc005w "" "Login ID $user is disabled, but has a 'cron' file or cron entries." + + # Return if home directory is not local or does not exists. + ([ ! -d "$home/" ] || [ "$host" != "$HOSTNAME" ]) && return + + # Check the .forward file. + [ -s $home/.forward ] && $GREP '\|' $home/.forward 2>&1 >/dev/null && + message WARN acc003w "" "Login ID $user is disabled, but has a .forward file which executes commands." + + # Check the .rhosts file. + [ -s $home/.rhosts ] && { + owner=`$LS -ld $home/.rhosts | $AWK '{print $3}'` + [ "$owner" = "$user" ] && { + message WARN acc004w "" "Login ID $user is disabled, but has a .rhosts file" } - [ -d "$home/" -a "$host" = "$HOSTNAME" ] && { - [ -d $home/ ] && { - [ -s $home/.forward ] && $SGREP '\|' $home/.forward && - message WARN acc003w "" "Login ID $user is disabled, but has a .forward file which executes commands." - [ -s $home/.rhosts ] && { - owner=`$LS -ld $home/.rhosts | $AWK '{print $3}'` - [ "$owner" = "$user" ] && { - message WARN acc004w "" "Login ID $user is disabled, but has a .rhosts file" - } - } - } } - [ -n "$CHECK_CRON" -a "`$CHECK_CRON $user`" = 'YES' ] && - message WARN acc005w "" "Login ID $user is disabled, but has a 'cron' file or cron entries." } check_users() @@ -195,14 +202,14 @@ # a valid password). case $hash in '*') - check_disabled "$user" "$home" "$host" "$shell" + check_disabled "$user" "$home" "$host" ;; esac # Verify the home directory is accessable. [ ! -d "$home/" ] && { - [ $Tiger_Accounts_Trust -lt $uid ] && [ "$host" = "$HOSTNAME" ] && { - message WARN acc022w "" "Login ID $user home directory ($home) is not accessable." + [ -n "$uid" ] && [ $Tiger_Accounts_Trust -lt $uid ] && [ "$host" = "$HOSTNAME" ] && { + message WARN acc022w "" "Login ID $user home directory ($home) is not accessible." } continue } @@ -217,6 +224,8 @@ # group so this check does # TODO: make it check if there are more than a single user in the group # and if it is = owner + # There is also usually a list of groups that we might want to + # white list here (such as 'adm' or 'staff') [ "$ow" = 1 ] || [ "$owner" != "$group" -a "$gw" = 1 ] && { str="Login ID $user's home directory ($home) has" @@ -235,16 +244,23 @@ str="$str world write" ;; esac - message FAIL acc006w "" "${str} access." + message WARN acc006w "" "${str} access." changelog "WARN : chmod : $mode : $home/." } } # Check permissions on the parent home directory - [ $uid -gt $Tiger_Accounts_Trust ] && { + [ -n "$uid" ] && [ $uid -gt $Tiger_Accounts_Trust ] && { getpermit ${home%/*}/ | { read _f owner group ur uw ux gr gw gx or ow ox suid sgid sticky + eval "case \"$owner\" in + $Tiger_Admin_Accounts) + ;; + *) + message WARN acc023w \"\" \"Login ID $user's parent directory (${home%/*}) has non-administrative \\\`$owner' ownership.\" + esac" + [ "${gw}${ow}" != '00' ] && { str="Login ID $user's parent directory (${home%/*}/) has" case "$gw$ow" in @@ -262,21 +278,15 @@ # Dormant account check. [ "$home" != / -a -n "$home" -a "$Tiger_Dormant_Limit" != 0 ] && { - eval " - case $user in - $Tiger_Admin_Accounts) - ;; - *) - [ `$FIND "$home/" -mtime -$Tiger_Dormant_Limit | $WC -l` -eq 0 ] && { - message WARN acc021w \"\" \"Login ID $user appears to be a dormant account.\" - } - ;; - esac" + notadmin=`eval "case \"$user\" in $Tiger_Admin_Accounts) ;; *) echo $user;; esac"` + [ -n "$notadmin" ] && \ + [ `$FIND "$home/" -mtime -$Tiger_Dormant_Limit | $WC -l` -eq 0 ] && + message WARN acc021w "" "Login ID $user appears to be a dormant account." } # Non-zero sized .hushlogin [ -s "$home/.hushlogin" ] && - message ALERT acc007a '' "Logon ID $user has a non-zero length .hushlogin" + message ALERT acc007a '' "Login ID $user has a non-zero length .hushlogin" # Check shell initialization files. # TODO: Bob Hall suggest disabling the check for standard UNIX accounts. @@ -286,12 +296,12 @@ # A secure approach has to be determined for this to work properly. [ -z "$shell" ] && shell=/bin/sh - [ $TESTEXEC $shell ] && [ $uid -gt $Tiger_Accounts_Trust ] && { + [ $TESTEXEC $shell ] && [ -n "$uid" ] && [ $uid -gt $Tiger_Accounts_Trust ] && { eval " - case $shell in + case \"$shell\" in $shcase) [ ! -r "${home}/.${shell##*/}rc" ] && { - message WARN acc019w \"\" \"Logon ID $user may be missing a shell initialization file ${home}/.${shell##*/}rc.\" + message WARN acc019w \"\" \"Login ID $user may be missing a shell initialization file ${home}/.${shell##*/}rc.\" } ;; *) @@ -301,7 +311,7 @@ } # Check permissions on user dotfiles. - dotfiles=${USERDOTFILES-".cshrc .bashrc .kshrc .profile .login .exrc .forward"} + dotfiles=${USERDOTFILES:-".cshrc .bashrc .kshrc .profile .login .exrc .forward"} for file in $dotfiles do [ -f "$home/$file" ] && { --- tiger-3.2.1.orig/scripts/check_aliases +++ tiger-3.2.1/scripts/check_aliases @@ -86,7 +86,7 @@ [ -n "$TigerCheckEmbedded" ] && { echo "$prog $source" >> $TigerCheckEmbedded } - message INFO ali005w "$rcpt" "Alias \`$alias' contains a program entry${fmsg}:" + message WARN ali005w "$rcpt" "Alias \`$alias' contains a program entry${fmsg}:" case "$prog" in *uudecode) message FAIL ali002f "" "Program alias \`$alias' executes $prog.";; esac --- tiger-3.2.1.orig/scripts/check_anonftp +++ tiger-3.2.1/scripts/check_anonftp @@ -17,6 +17,9 @@ # # check_anonftp - 06/14/93 # +# 08/31/2005 jfs Changed GROUPC to GROUPSS +# 06/28/2004 jfs Avoid duplicates for $ftphome +# 01/13/2004 rbrad Cleanup noise and add additional check to check_anonftp. # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies # 12/06/2002 jfs Fixed script so that it checks if ftphome/etc/passwd # exists before using grep on it @@ -78,7 +81,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds LS CAT AWK GROUPC FIND SGREP GREP OUTPUTMETHOD || exit 1 + haveallcmds LS CAT AWK GROUPSS FIND SGREP GREP OUTPUTMETHOD || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." @@ -89,7 +92,7 @@ echo echo "# Performing check of anonymous FTP..." -haveallcmds LS CAT AWK GROUPC FIND SGREP GREP OUTPUTMETHOD || exit 1 +haveallcmds LS CAT AWK GROUPSS FIND SGREP GREP OUTPUTMETHOD || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 checkfiles() @@ -147,44 +150,59 @@ # TODO: this should be fixed to use the password sources (gen_passwd) # instead of using the system's directly (might lead to false # positives) - if $GREP '^ftp:' /etc/passwd && [ $status = 0 ]; then - if [ ! -d "$ftphome" ]; then - message WARN ftp006w "" "Anonymous FTP enabled, but directory does not exist." - elif [ ! -n "$ftphome" ]; then - message WARN ftp004w "" "Anonymous FTP directory is '' (null)" - elif [ "$ftphome" = "/" ]; then - message WARN ftp005f "" "Anonymous FTP directory is '/'" - else - ftpgroups= - haveallcmds GROUPC && ftpgroups=`$GROUPC ftp` - ( - for file in "" /bin /dev /usr /usr/lib /usr/lib/ld.so /usr/lib/lib\* /.rhosts /.forward - do - echo ${ftphome}$file - done | - checkfiles FAIL f Y + # Get the ftp entry from the password file. + ftp_pwentry=`$GREP '^ftp:' /etc/passwd` + [ -z "$ftp_pwentry" -o $status != 0 ] && { + message INFO ftp001i "" 'Anonymous FTP not configured on this machine.' + exit + } + + # Does the ftp user have a valid shell? + shell=`echo $ftp_pwentry | $CUT -d: -f7` + case "$shell" in + /bin/false|/usr/bin/false|/sbin/nologin) + ;; + + *) + message WARN ftp011w "" "The anonymous FTP user appears to have a valid shell." + esac + + # Check files in the Anonymous FTP user's home directory. + if [ ! -d "$ftphome" ]; then + message WARN ftp006w "" "Anonymous FTP enabled, but directory does not exist." + elif [ ! -n "$ftphome" ]; then + message WARN ftp004w "" "Anonymous FTP directory is '' (null)" + elif [ "$ftphome" = "/" ]; then + message WARN ftp005f "" "Anonymous FTP directory is '/'" + else + ftpgroups= + haveallcmds GROUPSS && ftpgroups=`$GROUPSS ftp` + + ( + for file in "" /bin /dev /usr /usr/lib /usr/lib/ld.so /usr/lib/lib\* /.rhosts /.forward + do + echo ${ftphome}$file + done | + checkfiles FAIL f Y - haveallcmds FIND && { - (cd /;$FIND $ftphome -type d -print) | - checkfiles WARN w N - } - ) - - [ -f $ftphome/etc/passwd ] && { - $SGREP '^[^:]*:[a-zA-Z0-9\./,]*:' $ftphome/etc/passwd |\ - $SGREP -v '::' && { - message WARN ftp003w "" '~ftp/etc/passwd contains accounts with passwords.' + haveallcmds FIND && { + (cd /; $FIND $ftphome -type d -print) | $GREP -vs $ftphome | + checkfiles WARN w N } - } - [ -s $ftphome/.rhosts ] && { - message ALERT ftp002a "" '~ftp/.rhosts exists and is not empty:' - $CAT $ftphome/.rhosts - echo + ) + + [ -f $ftphome/etc/passwd ] && { + $SGREP '^[^:]*:[a-zA-Z0-9\./,]*:' $ftphome/etc/passwd | $SGREP -v '::' && { + message WARN ftp003w "" "$ftphome/etc/passwd contains accounts with passwords." } - fi - else - message INFO ftp001i "" 'Anonymous FTP not configured on this machine.' + } + + [ -s $ftphome/.rhosts ] && { + message ALERT ftp002a "" "$ftphome/.rhosts exists and is not empty:" + $CAT $ftphome/.rhosts + echo + } fi } | $OUTPUTMETHOD --- tiger-3.2.1.orig/scripts/check_ssh +++ tiger-3.2.1/scripts/check_ssh @@ -18,6 +18,8 @@ # check_ssh - Checks for configuration directives in the SSH configuration # file. # +# 01/07/2004 - rbrad - Applied Savannah Patch: 2439 to make POSIX compliant. +# 11/19/2003 - jfs - This script is not POSIX compliant (yet) # 09/19/2003 - jfs - Applied patch from Ryan Braderitch fixing typoes (sp?) # 09/03/2003 - jfs - Removed PermitRootLogin since that's checked by check_root # (and belongs there, IMHO) also added failsafe checks for @@ -118,7 +120,7 @@ list=$2 [ -z "$list" ] && return 1 - eval "case $value in + eval "case \"$value\" in $list) return 1 ;; @@ -142,27 +144,31 @@ while read line do line=${line%%\#*} - [[ "$line" = Protocol* ]] && { - found_Protocol=1 - parse_Protocol ${line##Protocol } $1 && { - message WARN ssh001w "" "Protocol $proto is enabled in $file" - } - } - - - [[ "$line" = RhostsAuthentication* ]] && { - found_RhostsAuthentication=1 - parse_directive ${line##RhostsAuthentication } $Tiger_SSH_RhostsAuthentication && { - message WARN ssh003w "" "The RhostsAuthentication directive in $1 is set to the unapproved value: ${line##RhostsAuthentication }." - } - } - - [[ "$line" = PasswordAuthentication* ]] && { - found_PasswordAuthentication=1 - parse_directive ${line##PasswordAuthentication } $Tiger_SSH_PasswordAuthentication && { - message WARN ssh004w "" "The PasswordAuthentication directive in $1 is set to the unapproved value: ${line##PasswordAuthentication }." - } - } + key=${line%% *} + line=${line##${key}} + + case "$key" in + Protocol) + found_Protocol=1 + parse_Protocol $line $1 && { + message WARN ssh001w "" "Protocol $proto is enabled in $file" + } + ;; + + RhostsAuthentication) + found_RhostsAuthentication=1 + parse_directive $line $Tiger_SSH_RhostsAuthentication && { + message WARN ssh003w "" "The RhostsAuthentication directive in $1 is set to the unapproved value: $line." + } + ;; + + PasswordAuthentication) + found_PasswordAuthentication=1 + parse_directive $line $Tiger_SSH_PasswordAuthentication && { + message WARN ssh004w "" "The PasswordAuthentication directive in $1 is set to the unapproved value: $line." + } + ;; + esac done < $1 # Check the default values if the entry was not specified. --- tiger-3.2.1.orig/scripts/check_group +++ tiger-3.2.1/scripts/check_group @@ -16,6 +16,8 @@ # Please see the file `COPYING' for the complete copyright notice. # # check_group - created 06/14/93 +# check_group - 04/03/2003 - rbrad - grpck does not always return non-0 values +# on errors. # check_group - 10/07/2003 - jfs - Delete temporary files # check_group - 08/14/2003 - jfs - Added OUTPUTMETHOD to dependancies # check_group - 08/09/2003 - jfs - Re-added RM to dependancies. @@ -160,8 +162,11 @@ delete $file $file.src done < $WORKDIR/grp.list.$$ +# Verify the group file format. [ -n "$GRPCK" ] && { - if ! $GRPCK >/dev/null 2>&1 ; then + # TODO: Add the results to the report + grpckerr=`$GRPCK 2>&1` + if [ -n "$grpckerr" ] ; then message WARN grp006w "" "Integrity of group files questionable ($GRPCK)." fi } --- tiger-3.2.1.orig/scripts/check_devices +++ tiger-3.2.1/scripts/check_devices @@ -30,6 +30,8 @@ # 08/09/2002 jfs Fixed to work in Solaris (added pseudo devices and changed # -L to -h) # 07/25/2002 jfs Changed TigerInstallDir to . +# 03/31/2005 jfs Added EXPECTEDIRS dn EXPECTEDDEVICES in /dev (Os specific) +# and added Solaris (9) devices # #----------------------------------------------------------------------------- # @@ -87,10 +89,10 @@ then case $device in /dev/st[0-9]) - message FAIL dev001 "" "$device has world permissions" + message FAIL dev001f "" "$device has world permissions" ;; *) - message FAIL dev002 "" "$device has world permissions" + message FAIL dev002f "" "$device has world permissions" ;; esac fi @@ -101,6 +103,18 @@ echo echo "# Checking device permissions..." +EXPECTEDIRS="/dev/none" +if [ "$OS" = "Linux" ] ; then + EXPECTEDFILES="/dev/core|/dev/stdout" +fi +EXPECTEDIRS="/dev/none" +if [ "$OS" = "SunOS" ] ; then + EXPECTEDDIRS="/dev/cfg|/dev/cua|/dev/dsk|/dev/es|/dev/fd|/dev/md|/dev/printers|/dev/pts|/dev/rdsk|/dev/sad|/dev/swap|/dev/term" +fi +if [ "$OS" = "Linux" ] ; then + EXPECTEDDIRS="/dev/mapper|/dev/net|/dev/shm|/dev/cciss|/dev/fd|/dev/ida|/dev/input|/dev/mapper|/dev/net|/dev/pts|/dev/rd|/dev/shm|/dev/usb|/dev/ataraid" +fi + dirs="/dev" # For Solaris but maintain compatibility with others # (in Solaris /dev/ are symlinks to devices in /devices/pseudo) @@ -110,17 +124,39 @@ do for file in $dir/[a-z0-9]* do - [ -f "$file" ] && \ - message WARN dev003w "" "File $file is a regular file in a device directory." - [ -d "$file" ] && \ - message WARN dev003w "" "The directory $file resides in a device directory." + + [ -f "$file" ] && { + eval "case \"$file\" in + $EXPECTEDFILES) + # Expected directories + ;; + *) + message WARN dev003w \"\" \"File $file is a regular file in a device directory.\" + ;; + esac" + } + + [ -d "$file" ] && { + eval "case \"$file\" in + $EXPECTEDDIRS) + # Expected directories + ;; + *) + message WARN dev003w \"\" \"The directory $file resides in a device directory.\" + ;; + esac" + } + case $file in /dev/pty*|/dev/tty*|/devices/pseudo/pts*) # Do not check for virtual terminals ;; - /dev/urandom|/dev/random|/dev/zero|/dev/full) + /dev/urandom|/dev/random|/dev/zero|/dev/full|/dev/null) # Same for some special devices ;; + /devices/pseudo/mm@0:null|/devices/pseudo/mm@0:zero|/devices/pseudo/random@0:random|/devices/pseudo/random@0:urandom) + # And for some devices in Solaris + ;; *) # Do not check directories or symbolic links if [ ! -d "$file" -a ! -h "$file" ] --- tiger-3.2.1.orig/scripts/check_embedded +++ tiger-3.2.1/scripts/check_embedded @@ -16,7 +16,8 @@ # Please see the file `COPYING' for the complete copyright notice. # # check_embedded - 06/29/93 -# +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) #----------------------------------------------------------------------------- # TigerInstallDir='.' @@ -79,7 +80,7 @@ $GREP -v '^#' "$EMBEDDEDLIST" | while read file do - eval echo $file | $AWK '{for(i=1;i<=NF;i++)print $i}' + eval echo "$file" | $AWK '{for(i=1;i<=NF;i++)print $i}' done } } | --- tiger-3.2.1.orig/scripts/check_exports +++ tiger-3.2.1/scripts/check_exports @@ -35,6 +35,8 @@ # #----------------------------------------------------------------------------- # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies # 05/01/2003 jfs Fixed dependancies, added note. # 05/30/99 ARC Fixed problems with IRIX and other false alarms @@ -188,7 +190,7 @@ # roothost is a magic variable name... don't change it. for roothost do - eval "case $dir in $casediskless esac" + eval "case \"$dir\" in $casediskless esac" done roothosts=` @@ -245,7 +247,7 @@ $SORT -u | while read client server filesys do - eval "case $server in + eval "case \"$server\" in $HOSTNAMESLIST) echo $filesys') case \\$roothost in --- tiger-3.2.1.orig/scripts/check_ftpusers +++ tiger-3.2.1/scripts/check_ftpusers @@ -20,6 +20,8 @@ # Analyses the system's /etc/ftpusers and determines if the administrative # users are in that file. # +# 03/31/2005 jfs Allow FTPUSERS to be customised (some OS have it +# in alternate locations) # 10/01/2003 jfs Removed passwd files if not used any longer. # # 07/25/2002 jfs Added a sanity check for password files. @@ -90,9 +92,13 @@ Tiger_Accounts_Trust = 999 export Tiger_Accounts_Trust } +FTPUSERS=/etc/ftpusers +if [ "$OS" = "SunOS" -a ! -e "$FTPUSERS" ] ; then + FTPUSERS=/etc/ftpd/ftpusers +fi # Do this only if ftpusers exists -if [ -f /etc/ftpusers ]; then +if [ -f "$FTPUSERS" ]; then if [ -n "$Tiger_PasswdFiles" ]; then [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$ @@ -111,14 +117,14 @@ # user=`echo $line | $AWK -F: '($3 <= $Tiger_Accounts_Trust) { print $1 }'` # Note: root is removed since it is checked for in check_root - [ -n "$user" -a "$user" != "root" ] && [ -z "`$GREP \"^$user\" /etc/ftpusers`" ] && - message FAIL netw018f "" "Administrative user $user allowed access in /etc/ftpusers" + [ -n "$user" -a "$user" != "root" ] && [ -z "`$GREP \"^$user\" $FTPUSERS`" ] && + message FAIL netw018f "" "Administrative user $user allowed access in $FTPUSERS" done [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src done else - message FAIL netw020f "" "There is no /etc/ftpusers file." + message FAIL netw020f "" "There is no $FTPUSERS file." fi --- tiger-3.2.1.orig/scripts/check_passwd +++ tiger-3.2.1/scripts/check_passwd @@ -41,6 +41,27 @@ # - empty password check (acc010a, acc011w) # - duplicate home directory check (acc015w) # 10/07/2003 jfs Delete temporary files +# 10/19/2003 jfs Patch from Nicolas François which uses EGREP instead of GREP +# in order to avoid Solaris problems. +# 10/11/2003 jfs Patch from Ryan Braderitch's to fix a WARN -> FAIL +# 01/18/2004 rbrad Applied Savannah patch: +# * 2466 - update list of shells to ignore. +# 01/21/2004 jfs Moved comment from check_accounts to here and expanded +# shcase definition to be equivalent to the one there. +# 03/03/2004 jfs Check if users do not have a shell defined +# 05/03/2004 jfs Define Tiger_Passwd_Hashes if not defined (Debian bug #246885) +# 12/27/2004 jfs Delete temporary passwd files only on exit (Debian bug #284899) +# 03/31/2005 jfs Recognise old xxxxxxxxxxxxx as a valid password hash +# Add /bin/true as valid shell as well as Solaris shells +# +#----------------------------------------------------------------------------- +# TODO: +# - Some 'valid' shells such as nologin or noshell might be listed under +# /etc/shells but are really invalid. The script should maybe check these +# cases or provide a way to define $NOSHELL in order to exclude these. +# Notice that the list of valid shells is derived from /etc/shells (a sane +# default is also used) but the way the 'case' segment is structured +# invalid shells listed are omitted. # #----------------------------------------------------------------------------- TigerInstallDir='.' @@ -78,7 +99,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds AWK CAT GEN_PASSWD_SETS GREP JOIN SORT UNIQ RM || exit 1 + haveallcmds AWK CAT GEN_PASSWD_SETS GREP EGREP JOIN SED SORT UNIQ RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." @@ -90,13 +111,12 @@ echo echo "# Performing check of passwd files..." -haveallcmds AWK CAT GEN_PASSWD_SETS GREP JOIN SED SORT UNIQ RM || exit 1 +haveallcmds AWK CAT GEN_PASSWD_SETS GREP EGREP JOIN SED SORT UNIQ RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 safe_temp "$WORKDIR/pass.list.$$" "$WORKDIR/p1name.$$" "$WORKDIR/p2name.$$" "$WORKDIR/p1uid.$$" "$WORKDIR/p2uid.$$" -trap 'delete "$WORKDIR/pass.list.$$" "$WORKDIR/p1name.$$" \ -"$WORKDIR/p2name.$$" "$WORKDIR/p1uid.$$" "$WORKDIR/p2uid.$$" ; exit 1' 1 2 3 15 +trap 'delete "$WORKDIR/pass.list.$$" "$WORKDIR/p1name.$$" "$WORKDIR/p2name.$$" "$WORKDIR/p1uid.$$" "$WORKDIR/p2uid.$$" ; exit 1;' 1 2 3 15 check_passwd_entries() { @@ -107,6 +127,7 @@ do # Check the password hash. + [ -z "$Tiger_Passwd_Hashes" ] && Tiger_Passwd_Hashes='crypt3|md5|xxxxxxxxxxxxx' eval "case \"$hash\" in \"\") message FAIL pass011f \"\" \"Username \\\`$login' has an empty password field.\" @@ -114,7 +135,7 @@ $Tiger_Passwd_Hashes|\*) ;; *) - message WARN pass013w \"\" \"Username \\\`$login' is not using an acceptable password hash ($passwd).\" + message WARN pass013w \"\" \"Username \\\`$login' is not using an acceptable password hash ($hash).\" ;; esac" @@ -127,7 +148,7 @@ eval "case \"$login\" in $Tiger_Admin_Accounts) [ \"$hash\" != '*' ] && { - message WARN pass018f \"\" \"Administrative user $login does not have an impossible password.\" + message FAIL pass018f \"\" \"Administrative user $login does not have an impossible password.\" } continue ;; @@ -138,18 +159,23 @@ message WARN pass016w "" "User $login has $home as home directory" } - # Assume a default shell, if shell is not specified. - [ x$shell = x ] && shell=/bin/sh + # Mark as an emptyshell, if shell is not specified. + [ "x$shell" = "x" -o "x$shell" = "x " ] && shell=emptyshell # Check for valid shells. + # TODO: The hardcoded list of shells could be user defined + # (i.e. in tigerrc) eval "case \"$shell\" in - /bin/false) + /bin/false|/usr/bin/false|/dev/null|/sbin/nologin|/bin/true) ;; $shcase) [ \"$hash\" = \* ] && { message WARN pass014w \"\" \"Login ($login) is disabled, but has a valid shell.\" } ;; + emptyshell) + message WARN pass015w \"\" \"Login ID $login has an empty shell.\" + ;; *) message WARN pass015w \"\" \"Login ID $login does not have a valid shell ($shell).\" ;; @@ -201,7 +227,11 @@ # Define shcase to be a list of valid shells, so we can check for # shell initilization files. -shcase='/bin/sh|/bin/csh' +shcase='/bin/sh|/bin/csh|/bin/bash|/bin/tcsh|/bin/ksh' +if [ "$OS" = "SunOS" ] ; then + shcase="$shcase|/sbin/sh|/usr/bin/bash" +fi + [ -n "$ETCSHELLS" -a -s "$ETCSHELLS" ] && { shells=`$GREP -v '^#' $ETCSHELLS` shcase=`echo $shells | $TR ' ' '|'` @@ -243,16 +273,14 @@ $UNIQ -c | while read times uid do - # Previous fix for Debian bug #117117, ARSC's fix is much better (jfs) - # times=`$GREP ":$uid:" $WORKDIR/p1uid.$$ | $AWK 'END { print NR }'` - [ $times -gt 1 ] && { +# Previous fix for Debian bug #117117, ARSC's fix is much better +# times=`$GREP ":$uid:" $WORKDIR/p1uid.$$ | $AWK 'END { print NR }'` + [ $times -gt 1 ] && \ message WARN pass002w "" "UID $uid exists multiple times ($times) in $source." - } done # Check for multiple entries with duplicate home directories. - admin_account_list=`echo $Tiger_Admin_Accounts | $SED -e 's/|/:|^/g'` - $GREP -Ev ^$admin_account_list: $WORKDIR/p1uid.$$ | + $EGREP -v "^($Tiger_Admin_Accounts):" $WORKDIR/p1uid.$$ | $AWK -F: '{print $6}' | $SORT | $UNIQ -c | @@ -263,7 +291,6 @@ } done - [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src done < $WORKDIR/pass.list.$$ # Check for conflicts. --- tiger-3.2.1.orig/scripts/check_inetd +++ tiger-3.2.1/scripts/check_inetd @@ -47,6 +47,12 @@ # for other problematic services/servers. Also checked 019 from FAIL # to ALERT # check_inetd - 10/07/2003 - jfs Removed temporary files +# check_inetd - 10/19/2003 - jfs Applied patch from Ryan Bradetich which +# adds the exec service to the 'rexd' check. +# check_inetd - 11/18/2003 - jfs Do not report the service is not protected +# if tcp wrappers are undefined (patch from Ryan Bradetich). +# check_inetd - 03/31/2005 - jfs Dont warn about tcp wrapper protection for +# internal services # # TODO # - This script needs to be improved to warn for some of the 'chatty' issues @@ -132,8 +138,8 @@ while read currservice s p t user currbinary parm1 parms do [ -z "$currservice" ] && continue - if [ "$currservice" = 'rexd' ]; then - message FAIL inet006f "" "'rexd' service is enabled, consider disabling it." + if [ "$currservice" = 'rexd' -o "$currservice" = 'exec' ]; then + message FAIL inet006f "" "'$currservice' service is enabled, consider disabling it." elif [ "$currservice" = 'sysstat' ]; then message WARN inet012w "" "'sysstat' service is enabled, consider disabling it." elif [ "$currservice" = 'netstat' ]; then @@ -158,11 +164,14 @@ message WARN inet025w "" "The 'chargen' udp server is enabled, consider disabling it" fi - if [ "$t" = "nowait" -a "$currbinary" != "$tcpdpath" ]; then + [ "$currbinary" = 'internal' ] && continue + + # Note: Does not make sense for the "small servers" services + # (discard, chargen, echo....) + if [ "$t" = "nowait" -a -n "$tcpdpath" -a "$currbinary" != "$tcpdpath" ]; then message WARN inet099w "" "'$currservice' is not protected by tcp wrappers." fi - [ "$currbinary" = 'internal' ] && continue if [ -n "`echo $currbinary | $GREP '?'`" ] ; then currbinary=`echo $currbinary | $SED -e "s/\?//"` --- tiger-3.2.1.orig/scripts/check_root +++ tiger-3.2.1/scripts/check_root @@ -17,6 +17,14 @@ # # check_root - 05/30/99 # +# 03/31/2005 jfs - Fixed call to grep +# 04/03/2004 rbrad - Fixed a bug with the PermitRootLogin ssh check where the +# check failed if PermitRootLogin was both present and commented out. +# 11/16/2003 jfs Applied patch from Nicolas François to work non-interactively +# even in SuSE (broken in previous patch) This problem has also +# been reported multiple times in Debian: #218056, #220924 +# 10/19/2003 jfs Applied patch from Ryan Bradetich which fixes mesg check +# in SuSE. Also fixed message on root logins in SSHD # 09/19/2003 jfs Applied patch from Nicolas François in order to properly # work non-interactively (MESG complains if not running in a tty) # 09/03/2003 jfs Use SSHD_CONFIG instead of SSHCONF @@ -128,11 +136,14 @@ echo } fi -[ -n "$MESG" ] && { - if $MESG 2>&1 | $GREP "is y" >/dev/null - then - message WARN root003w "" "Root user has message capability turned on." + +[ -n "$MESG" -a -x "$MESG" ] && { + tty 2>&1 > /dev/null && { + if $MESG | $GREP "is y" >/dev/null + then + message WARN root003w "" "Root user has message capability turned on." fi + } } [ -z "$SSHD_CONFIG" ] && { @@ -148,16 +159,14 @@ } [ -f "$SSHD_CONFIG" ] && { -rootssh=`$GREP PermitRootLogin $SSHD_CONFIG` +rootssh=`$GREP PermitRootLogin $SSHD_CONFIG | $GREP -v '^#'` if [ -n "$rootssh" ]; then - if [ ! "`echo $rootssh | $GREP \"^#\"`" ]; then if [ "`echo $rootssh | $GREP -i yes`" ]; then - message WARN root001w "" "Remote root login allowed in $path" + message WARN root001w "" "Remote root login allowed in $SSHD_CONFIG" fi if [ "`echo $rootssh | $GREP -i nopwd`" ]; then - message WARN root001w "" "root login without pwd allowed in $path" + message WARN root001w "" "root login without pwd allowed in $SSHD_CONFIG" fi - fi fi } --- tiger-3.2.1.orig/scripts/check_known +++ tiger-3.2.1/scripts/check_known @@ -16,7 +16,12 @@ # Please see the file `COPYING' for the complete copyright notice. # # check_known - 06/14/93 -# +# 06/15/2004 jfs Do not call LS directly with all files but use a for loop +# (Debian bug #246600) +# 01/15/2004 jfs Do not run the inetd code if inetd_sets is emtpy! +# 11/19/2003 jfs Linux: accurate, per interface, promiscuous mode detection +# Contributed by unspawn with some changes to make it POSIX +# correct. # 10/01/2003 jfs Do not delete passwd files if the Tiger_PasswdFiles is # defined, otherwise checks relying on it will break # 09/19/2003 jfs Fixed deletion of temporary files thanks to a patch @@ -102,15 +107,34 @@ { haveallcmds IFCONFIG && { - echo "# Testing for promiscuous interfaces" - promisc="`$IFCONFIG -a | $GREP -i PROMISC`" - if [ -n "$promisc" ]; then - message ALERT kis013a "" "One of the interfaces is set for promiscuous mode" - fi + # Note: This is Linux specific + # (maybe should be moved to systems/Linux/2/check_known) + [ ! -x "$IP" -o "$OS" != "Linux" ] && message INFO kisXXX "" "Using $IFCONFIG instead of $IP, promiscuous mode detection incomplete. Installing $IP adds libpcap/libnet-based sniffer detection capabilities." + + VER=`echo $REV | $CUT -f 2 -d .` + if [ -x "$IP" -a $VER -ge 4 ] + then + echo "# Testing for promiscuous interfaces with $IP" + $IP link show | + $EGREP '^[0-9].*PROMISC' | + # Alternative: + # $IP link show| + # $AWK '/^[0-9].*UP/{printf "Device \t%s promisc. \t%s\n", $2, $3}' + while read number intf flags other + do + message ALERT kis013a "" "Interface $intf set for promiscuous mode" + done + else + echo "# Testing for promiscuous interfaces with $IFCONFIG" + promisc="`$IFCONFIG -a | $GREP -i PROMISC`" + [ -n "$promisc" ] && message ALERT kis013a "" "One of the interfaces is set for promiscuous mode" + fi } echo "# Testing for backdoors in inetd.conf" inetd_sets=`$GEN_INETD_SETS` + if [ -n "$inetd_sets" ] + then # TODO inetd_sets should be appended with any non-option which # has been fed to the current running inetd (use PS to locate it) shcase='/bin/sh|/bin/csh|/bin/bash|/bin/tcsh|/bin/ksh' @@ -123,6 +147,7 @@ message ALERT kis014a "" "There is a shell defined in inetd.conf, the backdoor line is: '$backdoor'" fi delete $inetd_sets $inetd_sets.src + fi # Of if $inetd_sets file_list="/usr/spool/uucppublic/.hushlogin /usr/spool/secretmail/.l /tmp/a /usr/spool/secretmail/.log /usr/spool/secretmail/.tty @@ -170,7 +195,7 @@ }' | while read dir do - [ -d "$dir" ] && { + [ -d "$dir" -a -r "$dir" ] && { cd "$dir" files=`$FIND . -print | $SED -e 's%^./%%' -e '/^.$/d' -e '/^..$/d'` # On HP-UX change to: @@ -181,7 +206,11 @@ ` if [ -n "$alertfiles" ]; then message WARN kis004w "" "$dir contains possible non-fsck files:" - $LS -alR $alertfiles + # TODO: Consider not listing the files and just providing + # the raw numbers if the number of non-fsck files is very high. + for file in $alertfiles ; do + $LS -alR $file + done echo elif [ -n "$files" ]; then message WARN kis004w "Files: $alertfiles" "$dir is not empty:" --- tiger-3.2.1.orig/scripts/check_listeningprocs +++ tiger-3.2.1/scripts/check_listeningprocs @@ -27,7 +27,9 @@ # Improved temporary file creation. # check_listeningprocs - 09/19/2003 - jfs # Allow empty okprocess and okprocessuser with the patch -# provided by Nicolas François +# provided by Nicolas François +# check_listeningprocs - 05/15/2005 - jfs +# Proper check for processes in loopback (Debian Bug #307695) # # TODO: # - provide a way (based on the Linux version) to work with Netstat's @@ -142,7 +144,7 @@ message INFO lin002i "" "The process \`$proc' is listening on socket $socket ($type) on $address interface." ;; *) - [ "$address" != "127.0.0.1" ] && { + [ "$address" != "loopback" ] && { message WARN lin003w "" "The process \`$proc' is listening on socket $socket ($type on $address interface) is run by $user." } ;; --- tiger-3.2.1.orig/scripts/check_logfiles +++ tiger-3.2.1/scripts/check_logfiles @@ -35,6 +35,15 @@ # warn if LOGINLOG does not exist (as is the Linux case) # Also, file permissions in systems in which WTMP and UTMP # are group 'utmp' should be 664 +# check_logfiles - 10/19/2003 - jfs - based on patch from Ryan Bradetich fixed +# location of logfiles for HP-UX, btmp file check, and btmp +# location for Linux (previously undefined) +# check_logfiles - 11/19/2003 - jfs - Modified -r to -f +# (Checks should only determine wether the file exists, if its +# readable or not is irrelevant. As a matter of fact they might not be +# if running a user != root. We don't care since we are not checking +# file content) +# check_logfiles - 04/03/2004 - rbrad Added logfiles support for Tru64. # #----------------------------------------------------------------------------- # @@ -108,20 +117,44 @@ UTMP=/var/run/utmp LOGINLOG=/var/log/loginlog MESSAGES=/var/log/messages +SULOG="" if [ "$OS" = "SunOS" ] ; then WTMP=/var/adm/wtmpx UTMP=/var/adm/utmpx # Check: Note BTMP does not seem to exist -# And maybe also sulog and messages should be checked. + BTMP=/var/adm/btmp + LASTLOG=/var/adm/lastlog + LOGINLOG=/var/adm/loginlog + MESSAGES=/var/adm/messages + SULOG=/var/adm/sulog fi + if [ "$OS" = "Linux" ] ; then -# Loginlog and btmp do not exist +# Loginlog does not exist +# Btmp does exist (see lastb(1)) LOGINLOG="" +fi + +if [ "$OS" = "HPUX" ] ; then + WTMP=/var/adm/wtmp + BTMP=/var/adm/btmp + LASTLOG="" + UTMP=/etc/utmp + LOGINLOG="" + MESSAGES="" +fi + +if [ "$OS" = "Tru64" ]; then + WTMP=/var/adm/wtmp BTMP="" + LASTLOG="" + UTMP=/var/adm/utmp + LOGINLOG="" + MESSAGES="" fi -if [ ! -r "$WTMP" ] ; then +if [ ! -f "$WTMP" ] ; then #echo "...Warning: $WTMP does not exist" message FAIL logf001f "" "Log file $WTMP does not exist" else @@ -135,15 +168,27 @@ fi fi -[ -n "$BTMP" -a ! -r "$BTMP" ] && - #echo "...Warning: $BTMP does not exist" - message FAIL logf002f "" "Log file $BTMP does not exist" +if [ -n "$BTMP" ] ; then + if [ ! -f "$BTMP" ] ; then + #echo "...Warning: $BTMP does not exist" + message FAIL logf002f "" "Log file $BTMP does not exist" + else + group=`getpermit $BTMP | $AWK '{ print $3 }'` + if [ "$group" = "utmp" ] ; then + check_fileperm $BTMP 110110000 || + message FAIL logf005f "" "Log file $BTMP permission should be 660" + else + check_fileperm $BTMP 110000000 || + message FAIL logf005f "" "Log file $BTMP permission should be 600" + fi + fi +fi -[ ! -r "$LASTLOG" ] && +[ -n "$LASTLOG" -a ! -f "$LASTLOG" ] && #echo "...Warning: $LASTLOG does not exist" message FAIL logf003f "" "Log file $LASTLOG does not exist" -if [ ! -r "$UTMP" ] ; then +if [ ! -f "$UTMP" ] ; then #echo "...Warning: $UTMP does not exist" message FAIL logf004f "" "Log file $UTMP does not exist" else @@ -157,22 +202,33 @@ fi fi -[ -n "$LOGINLOG" ] && { -if [ ! -r "$LOGINLOG" ] ; then - #echo "...Warning: $LOGINGLOG does not exist" - message FAIL logf006f "" "Log file $LOGINLOG does not exist" -else - check_fileperm $LOGINLOG 110000000 || - message FAIL logf005f "" "Log file $LOGINLOG permission should be 600" +if [ -n "$LOGINLOG" ] ; then + if [ ! -f "$LOGINLOG" ] ; then + #echo "...Warning: $LOGINGLOG does not exist" + message FAIL logf006f "" "Log file $LOGINLOG does not exist" + else + check_fileperm $LOGINLOG 110000000 || + message FAIL logf005f "" "Log file $LOGINLOG permission should be 600" + fi +fi + +if [ -n "$SULOG" ] ; then + if [ ! -f "$SULOG" ] ; then + message FAIL logf006f "" "Log file $SULOG does not exist" + else + check_fileperm $SULOG 110000000 || + message FAIL logf005f "" "Log file $SULOG permission should be 600" + fi fi -} -if [ ! -r "$MESSAGES" ] ; then - #echo "...Warning: $MESSAGES does not exist" - message FAIL logf007f "" "Log file $MESSAGES does not exist" -else - check_fileperm $MESSAGES 110100000 || - message FAIL logf005f "" "Log file $MESSAGES permission should be 640" +if [ -n "$MESSAGES" ] ; then + if [ ! -f "$MESSAGES" ] ; then + #echo "...Warning: $MESSAGES does not exist" + message FAIL logf007f "" "Log file $MESSAGES does not exist" + else + check_fileperm $MESSAGES 110100000 || + message FAIL logf005f "" "Log file $MESSAGES permission should be 640" + fi fi exit 0 --- tiger-3.2.1.orig/scripts/check_netrc +++ tiger-3.2.1/scripts/check_netrc @@ -21,6 +21,7 @@ # complaining if users hold netrc files or if they are a a symbolic link # or directory. # +# 11/21/2004 jfs Quoted homedir usage # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies # 08/08/2003 jfs Improved temporary file creation. # 07/25/2002 jfs Added a sanity check for password files @@ -146,19 +147,19 @@ while read user homedir host do [ "$host" = "$HOSTNAME" -a -r "$homedir/.netrc" ] && { - if [ $TESTLINK $homedir/.netrc ]; then + if [ $TESTLINK "$homedir/.netrc" ]; then message WARN nrc003w "" "User $user's .netrc file is a symbolic link:" - $LS -l $homedir/.netrc - $LS $LSGROUP $LSLINK $homedir/.netrc + $LS -l "$homedir/.netrc" + $LS $LSGROUP $LSLINK "$homedir/.netrc" [ -s $homedir/.netrc ] && - check_file $user $homedir/.netrc - elif [ -d $homedir/.netrc ]; then + check_file $user "$homedir/.netrc" + elif [ -d "$homedir/.netrc" ]; then message ALERT nrc004a "" "User $user's .netrc file is a directory:" - $LS $LSGROUP -Rla $homedir/.netrc + $LS $LSGROUP -Rla "$homedir/.netrc" echo else message WARN nrc005w "" "User $user has a .netrc file" - check_file $user $homedir/.netrc + check_file $user "$homedir/.netrc" fi } done --- tiger-3.2.1.orig/scripts/check_xinetd +++ tiger-3.2.1/scripts/check_xinetd @@ -19,17 +19,18 @@ # # Checks which xinetd services are enabled or disabled. # +# 11/19/2003 - jfs - Added more verbose check if the configuration file +# does not exist. Fix syntax error. Thanks to Ryan Bradetich. # 08/19/2003 - jfs - Allow override of XINETDCONF and fix error # 08/12/2003 - jfs - Now write messages for disabled services too. Also # fixed some errors. -# 08/11/2003 - jfs - Fixed dependancies. Now uses XINETDFILE instead of +# 08/11/2003 - jfs - Fixed dependancies. Now uses XINETDCONF instead of # hardcoding the location. Added additional checks # to avoid errors and use message instead of echo. # #----------------------------------------------------------------------------- # TODO: # -# - write the messages for these warnings/information # - xinetd checks should determine if insecure services are active or # running as root when not needed. # - check if the xinetd configuration file is writable @@ -81,6 +82,8 @@ #------------------------------------------------------------------------ haveallcmds GREP AWK LS || exit 1 +# TODO add XINETDCONF to haveallfiles when it's defined in the config +# scripts for all systems haveallfiles BASEDIR || exit 1 echo @@ -92,29 +95,33 @@ $LS $xinetd_dir | while read file do - if [ "`$GREP -i 'disable' $file | $AWK '{print $NF}'`" = "no" ] ; + if [ "`$GREP -i 'disable' $xinetd_dir/$file | $AWK '{print $NF}'`" = "no" ] ; then service=`$GREP -w 'server' $file | $GREP '=' | $AWK '{print $NF}'` - message INFO xnet002i "Service $file is enabled using: $service." + message INFO xnet004i "Service $file is enabled using: $service." else - message INFO xnet002i "Service $file is disabled." + message INFO xnet005i "Service $file is disabled." fi done } [ -z "$XINETDCONF" ] && XINETDCONF="/etc/xinetd.conf" -if [ -r "$XINETDCONF" ] ; -then +if [ -r "$XINETDCONF" ] ; then $GREP 'includedir' $XINETDCONF | $AWK '{print $NF}' | while read xinetd_directory - if [ -d "$xinetd_directory" ] - then - check_xinetconfig $xinetd_directory - else - message FAIL xnet002f "The location included in $XINETDCONF is not a directory" - fi + do + if [ -d "$xinetd_directory" ] + then + check_xinetconfig $xinetd_directory + else + message ERROR xnet002e "The location included in $XINETDCONF is not a directory" + fi done else - message FAIL xnet001f "It appears that xinetd is not installed, cannot find file $XINETDCONF." + if [ ! -f "$XINETDCONF" ] ; then + message ERROR xnet001e "It appears that xinetd is not installed, cannot find file $XINETDCONF." + else + message ERROR xnet003e "Cannot read file $XINETDCONF." + fi fi --- tiger-3.2.1.orig/scripts/check_passwdformat +++ tiger-3.2.1/scripts/check_passwdformat @@ -29,6 +29,14 @@ # check and do not warn on lengths for locked users. # (fixes debian bug 211327). Finally, added missing # temporary files to removal and safe_temp calls +# 11/19/2003 - jfs - Removed shadow password check (per patch from Ryan +# Bradetich) and added note for other systems (non +# HPUX or Linux) +# 01/15/2004 - jfs - Fixed password definitions (Debian bug #227596) adding +# the sets 'g-Z' 'A-Z' and '.' +# 06/28/2004 - jfs - Modified to avoid duplicate error messages for the same +# stuff in passwd and shadow files +# 12/27/2004 - jfs - Maximum user and group length set to 32 (Debian bug #283446) # #----------------------------------------------------------------------------- # @@ -88,10 +96,12 @@ OUT=$WORKDIR/passwdcheck.$$ +USERCHECK=$WORKDIR/usercheck.$$ TMPFILE=$WORKDIR/passwdcheck.tmp.$$ -safe_temp $OUT $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 -trap 'delete $OUT $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 ; exit 1' 1 2 3 15 +safe_temp $OUT $USERCHECK $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 +trap 'delete $OUT $USERCHECK $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 ; exit 1' 1 2 3 15 +>$USERCHECK # # /etc/passwd check # @@ -110,12 +120,12 @@ printf("Line %d has an empty login field.\n", NR); else if ($1 !~ /^[A-Za-z0-9][A-Za-z0-9_\.-]*$/) printf("Login %s has non-alphanumeric characters.\n", $1); - if (length($1) > 8) - printf("Login %s has more than 8 characters.\n", $1); +# Consider removing this since many recent OS will not have any problems +# with this + if (length($1) > 32) + printf("Login %s has more than 32 characters.\n", $1); if ($2 == "") printf("Login %s has no password.\n", $1); - else if ($2 !~ /^[x*!]+$/) - printf("Login %s has a real password (it is not shadowed).\n", $1); #if ($2 != "" && length($2) != 13 && ($10 ~ /.*sh$/ || $10 == "") && # ($2 !~ /^\$[0-9a-f]+\$/)) { # if (system("test -d "$9" -a ! -r "$9"") == 0) @@ -136,24 +146,18 @@ printf("Login %s has a group id of 0 which should be reserved for root\n", $1); if ($4 == 1 && $1 != "bin" && $1 != "daemon" ) printf("Login %s has a group id of 1 which should be reserved for bin or daemon.\n", $1); -}' < $PW > $OUT +}' < $PW >>$USERCHECK -if [ -s "$OUT" ] ; then - $CAT "$OUT" | - while read message; do - message FAIL pass009e "" "$message" - done -fi $AWK -F: '{ print $1 }' $PW | $SORT | $UNIQ -d > $OUT if [ -s "$OUT" ] ; then - message FAIL pass001w "" "File $PW has duplicate user names" + message WARN pass001w "" "File $PW has duplicate user names" $COLUMN "$OUT" fi $AWK -F: '{ print $1 " " $3 }' $PW | $SORT -n +1 | $TEE ${TMPFILE}-1 | $UNIQ -d -f 1 | $AWK '{ print $2 }' > ${TMPFILE}-2 if [ -s "${TMPFILE}-2" ] ; then - message FAIL pass001w "" "File $PW has duplicate user ids:" + message WARN pass002w "" "File $PW has duplicate user ids:" while read uid; do $GREP -w $uid ${TMPFILE}-1 done < ${TMPFILE}-2 | $COLUMN @@ -162,6 +166,9 @@ # # /etc/shadow check # +# TODO: Since the shadow password check has been moved to %pass20w +# systems need to be updated to make this check in other scripts +# (in HPUX and Linux it's check_passwdspec) PW="/etc/shadow" [ -r $PW ] && { $AWK -F: '{ @@ -177,26 +184,22 @@ printf("Line %d has an empty login field.\n", NR); else if ($1 !~ /^[A-Za-z0-9][A-Za-z0-9_-]*$/) printf("Login %s has non-alphanumeric characters.\n", $1); - if (length($1) > 8) - printf("Login %s has more than 8 characters.\n", $1); + if (length($1) > 32) + printf("Login %s has more than 32 characters.\n", $1); if ($2 == "") printf("Login %s has no password.\n", $1); if ($2 != "" && length($2) != 13 && length($2) != 34 && - length($2) != 1 && $2 !~ /^\$[0-9a-f]+\$/ && $2 !~ /^!/ ) - printf("Login %s has an unsual password field length.\n", $1); + length($2) != 1 && $2 !~ /^\$[0-9a-zA-Z\.]+\$/ && $2 !~ /^!/ ) + printf("Login %s has an unusual password field length.\n", $1); if ($2 != "" && $2 !~ /^\$[0-9a-f]+\$/ && $2 !~ /^[!*]/ ) - printf("Login %s has an unsual password content.\n", $1); -}' < $PW > "$OUT" + printf("Login %s has an unusual password content.\n", $1); +}' < $PW >> "$USERCHECK" + +# NOTE: I've found some passwords with '/'. Is this common? -if [ -s "$OUT" ] ; then - $CAT "$OUT" | - while read message; do - message FAIL pass009e "" "$message" - done -fi $AWK -F: '{ print $1 }' $PW | $SORT | $UNIQ -d > $OUT if [ -s "$OUT" ] ; then - message FAIL pass001w "" "File $PW has duplicate user names:" + message WARN pass001w "" "File $PW has duplicate user names:" $COLUMN "$OUT" fi } @@ -216,8 +219,8 @@ printf("Line %d has the wrong number of fields.\n", NR); if ($1 !~ /^[A-za-z0-9][A-za-z0-9_-]*$/) printf("Group %s has non-alphanumeric characters.\n", $1); - if (length($1) > 8) - printf("Group %s has more than 8 characters.\n", $1); + if (length($1) > 32) + printf("Group %s has more than 32 characters.\n", $1); if ($3 !~ /[0-9]*/) printf("Login %s has a negative group id.\n", $1); if (length($4) > 0 && $3 < 3) @@ -227,17 +230,26 @@ if [ -s "$OUT" ] ; then $CAT "$OUT" | while read message; do - message FAIL pass009e "" "$message" + message FAIL pass009f "" "$message" done fi $AWK -F: '{ print $1 }' $GRP | $SORT | $UNIQ -d > $OUT if [ -s "$OUT" ] ; then - message FAIL pass010w "" "File $GRP has duplicate group ids:" + message WARN pass010w "" "File $GRP has duplicate group ids:" $COLUMN "$OUT" fi } -delete $OUT $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 +# Now output the results of the usercheck +# (removing duplicates) +if [ -s "$USERCHECK" ] ; then + $CAT "$USERCHECK" | $SORT | $UNIQ | + while read message; do + message FAIL pass009f "" "$message" + done +fi + +delete $OUT $USERCHECK $TMPFILE ${TMPFILE}-1 ${TMPFILE}-2 exit 0 --- tiger-3.2.1.orig/scripts/check_path +++ tiger-3.2.1/scripts/check_path @@ -17,6 +17,8 @@ # # check_path - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) # 10/07/2003 jfs Redirected LS error to /dev/null since dangling symlinks # will print errors. Properly cleaned temporary file. # 09/19/2003 jfs Use -L to check properly for symlinks (I've checked and @@ -112,7 +114,7 @@ } [ "$gw" = '1' -a -n "$okgroup" ] && { - eval "case $_group in + eval "case \"$_group\" in $okgroup) gw=0;; esac" } @@ -129,14 +131,14 @@ changelog "WARN : chmod : $__newmode : $_execfile" } if [ "$suid" = '0' ]; then - eval "case \$_owner in + eval "case \"\$_owner\" in $okown);; *) message WARN path002w \"\" \"$_execfile in $_user's PATH from $_srcfile is not owned by root (owned by $_owner).\" changelog \"WARN : chown : root : $_execfile\" ;; esac" else - eval "case $_owner in + eval "case \"$_owner\" in $okown);; *) message INFO path008i \"\" \"Setuid program $_execfile in $_user's PATH from $_srcfile is not owned by root (owned by $_owner).\";; esac" @@ -183,7 +185,7 @@ [ "$user" = 'root' -a "$comp" != '.' ] && checkcmds $user "$comp" "$file" done [ "$lastcomp" != '.' -a -n "$dotinpath" ] && { - message WARN path005w "" "'.' in PATH from $user's $file is not last." + message WARN path005w "" "'.' in PATH from $user's $file is not the last entry." } } @@ -364,7 +366,7 @@ haveallvars HOSTNAME && { { if [ -n "$Tiger_PasswdFiles" ]; then - [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$ + [ -f "$Tiger_PasswdFiles" ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$ else $GEN_PASSWD_SETS $WORKDIR/pass.list.$$ fi --- tiger-3.2.1.orig/scripts/check_printcap +++ tiger-3.2.1/scripts/check_printcap @@ -19,6 +19,9 @@ # # Checks the printer control file. # +# 01/21/2004 - rbrad - Make the check of the config file through haveallcmds +# 01/11/2004 - rbrad - Check for /etc/printcap before parseing. +# Bug reported by: Michael Schleif. # 05/01/2003 - jfs - Fixed dependancies # #----------------------------------------------------------------------------- @@ -54,13 +57,18 @@ . $BASEDIR/initdefs +# This generic definition should probably be moved to +# a configuration variable (PRINTCAP?) +src=/etc/printcap +infile=/etc/printcap + # # If run in test mode (-t) this will verify that all required # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { haveallcmds AWK CAT SED LS || exit 1 - haveallfiles BASEDIR WORKDIR || exit 1 + haveallfiles BASEDIR WORKDIR src infile || exit 1 haveallvars TESTLINK HOSTNAME echo "--CONFIG-- [init003c] $0: Configuration ok..." @@ -73,7 +81,7 @@ echo "# Checking printer configuration files..." haveallcmds AWK CAT LS SED || exit 1 -haveallfiles BASEDIR WORKDIR || exit 1 +haveallfiles BASEDIR WORKDIR src infile || exit 1 saveifs=$IFS realpath="$REALPATH -d" @@ -129,9 +137,6 @@ done } -src=/etc/printcap -infile=/etc/printcap - $SED -e 's/^#.*$//' -e '/^$/d' $infile | $AWK ' /\\$/ {printf("%s", substr($0, 1, length($0)-1));} --- tiger-3.2.1.orig/scripts/check_rhosts +++ tiger-3.2.1/scripts/check_rhosts @@ -20,6 +20,11 @@ # Checks rhosts files in order to see if user's configuration leaves the # system open to attack. # +# 05/14/2005 jfs Patch from Nicolas François which prints a warning +# for any host in .rhost +# 03/31/2005 jfs Printout rhosts accesses +# 10/19/2003 jfs Patch from Nicolas François which uses -f instead of -e +# in order to avoid Solaris problems. And also adds TESTLINK HOSTNAME # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies # 08/12/2003 jfs Added check for existance, permissions and owner of # rhosts files (permissions are redundant, however) @@ -27,7 +32,6 @@ # 07/25/2002 jfs Added a sanity check for password files # 04/28/93 dls Added '-L' option to 'ls' to get the permissions from the # file instead of the symbolic link. -# # Complain if the .rhosts is a symbolic link or directory. # #----------------------------------------------------------------------------- @@ -68,7 +72,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds AWK CAT EXPR GEN_PASSWD_SETS JOIN LS RM SED OUTPUTMETHOD || exit 1 + haveallcmds AWK CAT EXPR GEN_PASSWD_SETS HEAD JOIN LS RM SED OUTPUTMETHOD || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 @@ -80,8 +84,9 @@ echo echo "# Performing check of /etc/hosts.equiv and .rhosts files..." -haveallcmds AWK CAT EXPR GEN_PASSWD_SETS JOIN LS RM SED OUTPUTMETHOD || exit 1 +haveallcmds AWK CAT EXPR GEN_PASSWD_SETS HEAD JOIN LS RM SED OUTPUTMETHOD || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 +haveallvars TESTLINK HOSTNAME || exit 1 safe_temp "$WORKDIR/home.hosts.$$" "$WORKDIR/pass.list.$$" trap 'delete $WORKDIR/home.hosts.$$ $WORKDIR/pass.list.$$ ; exit 1' 1 2 3 15 @@ -99,12 +104,15 @@ else message FAIL rcmd002f "" "User $user's .rhosts file has a '+' for host field." fi - elif [ -n "$RHOST_SITES" ]; then + fi + if [ -n "$RHOST_SITES" ]; then note=1 - eval case $rhost in $rhostcase esac + eval case "$rhost" in $rhostcase esac [ $note = 1 ] && { message WARN rcmd003w "" "User $user's .rhosts file has host \`$rhost'." } + else + message WARN rcmd003w "" "User $user's .rhosts file provides access for user \`$ruser' at host \`$rhost'." fi if [ "$rhost" != '+' -a "$ruser" = '+' ]; then @@ -128,9 +136,7 @@ file="$2" # added #+@_ which should be valid characters. - $AWK '/^[#\+@_a-zA-Z0-9\.\-\t ]*$/ {print}' < "$file" | - # Bob Hall suggests the following for HP-UX - # $AWK '/^[-#\+@_a-zA-Z0-9\.\t ]*$/ {print}' < "$file" | + $AWK '/^[#\+@_a-zA-Z0-9\.\-\\\t ]*$/ {print}' < "$file" | { while read rhost ruser do @@ -139,7 +145,7 @@ } # added #+@_ which should be valid characters. - $AWK 'BEGIN {count = 0} !/^[#\+@_a-zA-Z0-9\.\-\t ]*$/ {count += 1} + $AWK 'BEGIN {count = 0} !/^[#\+@_a-zA-Z0-9\.\-\\\t ]*$/ {count += 1} END {print count}' < "$file" | { read count @@ -193,26 +199,26 @@ # [ "$homedir" = '/' -a "$user" != 'root' ] && continue [ "$host" = "$HOSTNAME" ] && { - if [ $TESTLINK $homedir/.rhosts ]; then + if [ $TESTLINK "$homedir/.rhosts" ]; then message WARN rcmd007w "" "User $user's .rhosts file is a symbolic link:" - $LS -l $homedir/.rhosts - $LS $LSGROUP $LSLINK $homedir/.rhosts - [ -s $homedir/.rhosts ] && { - check_file $user $homedir/.rhosts - if [ -r $homedir/.rhosts ]; then - scan_file $user $homedir/.rhosts + $LS -l "$homedir/.rhosts" + $LS $LSGROUP $LSLINK "$homedir/.rhosts" + [ -s "$homedir/.rhosts" ] && { + check_file $user "$homedir/.rhosts" + if [ -r "$homedir/.rhosts" ]; then + scan_file $user "$homedir/.rhosts" else message INFO read001i "" "Can not open $user's .rhosts file." fi } - elif [ -d $homedir/.rhosts ]; then + elif [ -d "$homedir/.rhosts" ]; then message ALERT rcmd008a "" "User $user's .rhosts file is a directory:" - $LS $LSGROUP -Rla $homedir/.rhosts + $LS $LSGROUP -Rla "$homedir/.rhosts" echo " " - elif [ -s $homedir/.rhosts ]; then - check_file $user $homedir/.rhosts - if [ -r $homedir/.rhosts ]; then - scan_file $user $homedir/.rhosts + elif [ -s "$homedir/.rhosts" ]; then + check_file $user "$homedir/.rhosts" + if [ -r "$homedir/.rhosts" ]; then + scan_file $user "$homedir/.rhosts" else message INFO read001i "" "Can not open $user's .rhosts file." fi @@ -225,20 +231,20 @@ { while read user userid homedir do - if [ -e $homedir/.rhosts ] + if [ -f "$homedir/.rhosts" ] then if [ "root" != "$user" ] ; then message WARN rcmd016w "" "User $user has a .rhosts file" else message ALERT rcmd017a "" "Root has a .rhosts file" fi - fileid=`$LS -anl $homedir/.rhosts | $AWK '{print $3}'` + fileid=`$LS -anl "$homedir/.rhosts" | $AWK '{print $3}'` # BUG: If no fileid is returned then there must be an error above # (notice we use userids instead of names here just like in the spool checks) [ -n "$fileid" ] && { - fowner=`$AWK -F: '$3 ~ /'$fileid'$/ { print $1 }' $passwd_set | $HEAD -1` - [ $userid -ne $fileid ] && \ - message ALERT rcmd017a "" "User $user's .rhosts file does not belong to him, belongs to the user $fowner (user id $fileid)" + fowner=`$AWK -F: '$3 ~ /^'$fileid'$/ { print $1 }' $passwd_set | $HEAD -1` + [ $userid -ne $fileid ] && \ + message ALERT rcmd017a "" "User $user's .rhosts file does not belong to him, belongs to the user $fowner (user id $fileid)" } fi done @@ -246,7 +252,8 @@ saveifs="$IFS" -rhostcase='*) NOTE=0;;' +# By default, a warning will be issued for any host in any .rhosts file. +rhostcase='*) note=1;;' [ -n "$RHOST_SITES" ] && { rhostcase= @@ -292,7 +299,7 @@ hosts="$hosts `$BASEDIR/util/getnetgroup $netgroup`" } [ -n "$hosts" ] && { - message INFO rcmd010i "" "/etc/hosts.equiv contents:" + message WARN rcmd010w "" "/etc/hosts.equiv contains the following hosts:" wildcard=0 saveifs=$IFS IFS=" --- tiger-3.2.1.orig/scripts/tripwire_run +++ tiger-3.2.1/scripts/tripwire_run @@ -102,7 +102,7 @@ while read filename do - message FAIL trip01 "" "Detected modified file $filename" + message FAIL trip01f "" "Detected modified file $filename" done < $tmplog delete $tmplog --- tiger-3.2.1.orig/scripts/check_rootdir +++ tiger-3.2.1/scripts/check_rootdir @@ -21,6 +21,16 @@ # Changed TigerInstallDir to . # check_rootdir - 06/21/2003 - jfs # Removed useless debug message (patch from Ryan Bradetich) +# check_rootdir - 11/18/2003 - Patch from Ryan Bradetich: +# * Add an ownership check for the root directory. +# * Add documentation for the ownership check. +# * Remove the mode variable (no longer used). +# * Comment updates. +# * Remove the check to make sure / is a directory. +# check_rootdir - 03/21/2005 - jfs +# Do not warn on the inode if the root filesystem is not ext2|3 +# (Debian Bug #298305) +# # #----------------------------------------------------------------------------- # @@ -60,7 +70,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds CAT SORT AWK LS RM || exit 1 + haveallcmds CAT SORT AWK LS RM GETFS GREP AWK || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 @@ -73,34 +83,35 @@ echo echo "# Performing check of root directory..." -haveallcmds CAT SORT AWK LS RM || exit 1 +haveallcmds CAT SORT AWK LS RM GETFS GREP AWK || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 # Checking to see if the root directory is on the correct INODE number inode=`$LS -di / | $AWK '{print $1}'` -[ $inode != 2 ] && +fstype=`$GETFS | $GREP " / " | $AWK -F " " '{ print $5;}'` +[ $inode != 2 ] && [ "$fstype" = "ext2" -o "$fstype" = "ext3" ] && message FAIL rootdir001f "" "Root directory on incorrect inode" -# Checking the permissions on the root directory is standard +# Verify the permissions on the root directory is standard -[ -d / ] && { - getpermit / | - while read file owner group ur uw ux gr gw gx or ow ox suid sgid sticky - do - [ "${gw}${ow}" != '00' ] && { - str="The root directory / has" - case "$gw$ow" in - 01) str="$str world write" - mode='o-w';; - 10) str="$str group \`$group' write" - mode='g-w';; - 11) str="$str group \`$group' and world write" - mode='go-w';; - esac - #echo FAIL "" "${str} access." - message FAIL rootdir002f "" "${str} access." - } - done -} +getpermit / | +while read file owner group ur uw ux gr gw gx or ow ox suid sgid sticky +do + # Verify the permissions on the root directory is standard + [ "${gw}${ow}" != '00' ] && { + str="The root directory / has" + case "$gw$ow" in + 01) str="$str world write";; + 10) str="$str group \`$group' write";; + 11) str="$str group \`$group' and world write";; + esac + #echo FAIL "" "${str} access." + message FAIL rootdir002f "" "${str} access." + } + + # Verify the ownership on on the root directory is standard + [ "$owner" != 'root' ] && + message FAIL rootdir003f "" "The root directory is owned by \`$owner', instead of root." +done --- tiger-3.2.1.orig/scripts/check_runprocs +++ tiger-3.2.1/scripts/check_runprocs @@ -22,6 +22,10 @@ # This is a lightweight software watchdog, I know :) # # 08/12/2003 - jfs - Fixed dependancies. +# 03/31/2005 - jfs - Use comm instead of fname so that the names of the +# processes are not truncated (Debian bug #288086) +# 04/15/2005 - jfs - Capture arguments in an extra value, use fname first +# and then check against comm # #----------------------------------------------------------------------------- TigerInstallDir='.' @@ -75,7 +79,7 @@ processes=$Tiger_Running_Procs [ -z "$processes" ] && { - message FAIL con009e "" "There are no running process configured. Please add the Tiger_Running_Procs variable to tigerrc." + message ERROR con009e "" "There are no running process configured. Please add the Tiger_Running_Procs variable to tigerrc." exit 1 } @@ -83,14 +87,17 @@ # amongst UNIX systems (see the ps(1) manpage) for proc in $processes do - $PS -eo pid,user,fname,state | +# NOTE: Command when used last should expand to the maximum COLUMN with +# (probably 80), if the command is longer than that we might need to set +# COLUMNS or use the -w switch (portable?) # TODO: I dislike spawning a 'ps' process per configured process # maybe this could be rewritten more optimally? (jfs) + $PS -eo pid,user,state,comm,command,args | $GREP $proc | { found="no" - while read pid user fname state + while read pid user state comm command args do - [ "$proc" = "$fname" -a "$state" != "T" -a "$state" != "Z" ] && found="yes" + [ "$proc" = "$comm" ] || [ "$proc" = "$command" ] && [ "$state" != "T" ] && [ "$state" != "Z" ] && found="yes" done [ "$found" = "no" ] && message FAIL misc020f "" "The process '$proc' has not been found running in the processes table." } --- tiger-3.2.1.orig/scripts/check_sendmail +++ tiger-3.2.1/scripts/check_sendmail @@ -21,6 +21,8 @@ # 05/01/2003 jfs Added notes on behaviour, this check will only run if # SENDMAILCF exists (after all, it's a sendmail-only check). # Fixed dependancies. +# 11/18/2003 jfs Fixed sintax problem which AIX choked on. +# Noticed by Dale Martin. # #----------------------------------------------------------------------------- # @@ -169,7 +171,7 @@ } if [ -r "$SENDMAILCF" ]; then - version = "`$GREP \"^O\ SmtpGreetingMessage=\$j\ Sendmail\ \$v\/\$Z\;\ \$b\" $SENDMAILCF`" + version="`$GREP \"^O\ SmtpGreetingMessage=\$j\ Sendmail\ \$v\/\$Z\;\ \$b\" $SENDMAILCF`" [ -n "$version" ] && message WARN netw019w "" "Sendmail avertises its version in $SENDMAILCF, current line: $version" --- tiger-3.2.1.orig/scripts/check_services +++ tiger-3.2.1/scripts/check_services @@ -21,6 +21,9 @@ # /etc/services) versus the ones that should be configured (in the # provided services file) # +# check_services - 10/18/2003 - jfs - Avoid misreports for services which +# are not defined in /etc/services but are generated by gen_services. +# Patch submitted by Dale Martin. # check_services - 08/14/2003 - jfs - Added OUTPUTMETHOD to dependancies also # incorporated tara's 3.0.3 changes # check_services - 08/09/2003 - jfs - Added RM to dependancies. @@ -122,6 +125,9 @@ serviceok="Y" fi done + # added to handle when /etc/services has less services than the + # reference file + if [ "$matches" = "" ]; then serviceok="Y"; fi if [ "$serviceok" = "N" ]; then message FAIL inet002f "" "Service $currservice is assigned to port $port which should be $currport." fi --- tiger-3.2.1.orig/scripts/check_signatures +++ tiger-3.2.1/scripts/check_signatures @@ -141,7 +141,3 @@ # exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/scripts/check_system +++ tiger-3.2.1/scripts/check_system @@ -55,8 +55,9 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds GREP || exit 1 - haveallfiles BASEDIR WORKDIR || exit 1 + haveallvars TESTEXEC || exit 1 + haveallcmds GREP LS || exit 1 + haveallfiles BASEDIR CONFIG_DIR SCRIPTDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." exit 0 @@ -66,24 +67,25 @@ echo echo "# Performing system specific checks..." -haveallfiles BASEDIR || exit 1 +haveallvars TESTEXEC || exit 1 +haveallcmds GREP LS || exit 1 +haveallfiles BASEDIR CONFIG_DIR SCRIPTDIR || exit 1 runtable() { - haveallcmds GREP && { - $GREP -v '^#' | - while read script - do - case "$script" in - /*) + $GREP -v '^#' | + while read script + do + case "$script" in + /*) if [ $TESTEXEC $script ]; then echo "# Running '$script'..." $script else - echo "--ERROR-- [misc005w] Can't find '$script'..." + echo "--ERROR-- [misc005e] Can't find '$script'..." fi ;; - *) + *) if [ $TESTEXEC $CONFIG_DIR/$script ]; then echo "# Running '$CONFIG_DIR/$script'..." $CONFIG_DIR/$script @@ -91,12 +93,11 @@ echo "# Running '$SCRIPTDIR/$script'..." $SCRIPTDIR/$script else - echo "--ERROR-- [misc005w] Can't find $script'..." + echo "--ERROR-- [misc005e] Can't find $script'..." fi ;; - esac - done - } + esac + done } for dir in $OS/$REL/$REV/$ARCH $OS/$REL/$REV $OS/$REL $OS @@ -107,10 +108,13 @@ } done -[ -r $BASEDIR/check.tbl ] && runtable < $BASEDIR/check.tbl - -for dir in $OS/$REL/$REV/$ARCH $OS/$REL/$REV $OS/$REL $OS +for dir in .. $OS/$REL/$REV/$ARCH $OS/$REL/$REV $OS/$REL $OS do - [ -r $BASEDIR/systems/$dir/check.tbl ] && - runtable < $BASEDIR/systems/$dir/check.tbl + [ -d $BASEDIR/systems/$dir/check.d/ ] && { + $LS $BASEDIR/systems/$dir/check.d/ 2>/dev/null | + while read file + do + runtable < $BASEDIR/systems/$dir/check.d/$file + done + } done --- tiger-3.2.1.orig/scripts/check_tcpd +++ tiger-3.2.1/scripts/check_tcpd @@ -22,6 +22,8 @@ # it also determines which services are running wrapped in tcp-wrappers. # (based on check_inetd) # +# check_tcpd 10/19/2003 jfs Patch from Nicolas François which uses -f +# instead of -e in order to avoid Solaris problems. # check_tcpd - 10/07/2003 - jfs - Remove temporary files # check_tcpd - 08/11/2003 - jfs # Check for the availability of TCPD and only run the checks on inetd @@ -181,16 +183,16 @@ [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath="echo" -[ -z "$TCPD" -o ! -e "$TCPD" ] && \ +[ -z "$TCPD" -o ! $TESTEXEC "$TCPD" ] && \ message FAIL inet021f "" "Tcp wrappers does not seem to be installed in this system." -if [ -z "$HOSTALLOW" -o ! -e "$HOSTALLOW" ] ; then +if [ -z "$HOSTALLOW" -o ! -f "$HOSTALLOW" ] ; then message FAIL inet022f "" "The hosts.allow file used by Tcp wrappers does not seem to be present in this system" else check_hfileperm $HOSTALLOW fi -if [ -z "$HOSTDENY" -o ! -e "$HOSTDENY" ] ; then +if [ -z "$HOSTDENY" -o ! -f "$HOSTDENY" ] ; then message FAIL inet022f "" "The hosts.deny file used by Tcp wrappers does not seem to be present in this system" else check_hfileperm $HOSTDENY --- tiger-3.2.1.orig/scripts/check_umask +++ tiger-3.2.1/scripts/check_umask @@ -21,9 +21,12 @@ # separated from check_logfiles since it's a broader check. The command # requirements have been modified to adjust to what it's really needed. # -# 05/01/2003 - jfs - Fixed dependancies +# 01/13/2004 - jfs - Fixed syntax error in the previous patch +# 10/19/2003 - jfs - Applied patch from Ryan Bradetich adding 077 umask +# to the valid list. # 08/09/2003 - jfs - Fixed the script so it does not grok if no valid # umask entries are available +# 05/01/2003 - jfs - Fixed dependancies # #----------------------------------------------------------------------------- # TODO @@ -107,7 +110,7 @@ | $CUT -d" " -f2` if [ "$UMASK1" != "" ] ; then - [ $UMASK1 != 002 -a $UMASK1 != 022 -a $UMASK1 != 027 ] && + [ $UMASK1 != 002 -a $UMASK1 != 022 -a $UMASK1 != 027 -a $UMASK1 != 077 ] && #echo "The umask setting in $file is insecure" message FAIL misc022f '' "The umask setting in $file is insecure" else @@ -128,13 +131,13 @@ | $CUT -d" " -f2` [ "$UMASK1" != "" -a "$UMASK2" != "" ] && \ - [ $UMASK1 != 002 -a $UMASK1 != 022 -a $UMASK1 != 027 -o $UMASK2 != 002 -a $UMASK2 != 022 -a $UMASK2 != 027 ] && + [ $UMASK1 != 002 -a $UMASK1 != 022 -a $UMASK1 != 027 -a $UMASK1 != 077 -o $UMASK2 != 002 -a $UMASK2 != 022 -a $UMASK2 != 027 -a $UMASK2 != 077 ] && #echo "The umask setting in $file is insecure" message FAIL misc022f '' "The umask setting in $file is insecure" else #echo "There are > 2 umask entries in the config file $file" message WARN misc023w '' "More than 2 umask entries in $file" - + fi } --- tiger-3.2.1.orig/scripts/crack_run +++ tiger-3.2.1/scripts/crack_run @@ -118,7 +118,7 @@ fi -# Tara (which this cod was derived from, has removed the following +# Tara (which this code was derived from, has removed the following # it is thus removed but the code below should be revised). Maybe # the REPORTER stuff is needed for older versions of Crack? #haveallcmds RM CRACK REPORTER || exit 1 --- tiger-3.2.1.orig/scripts/find_files +++ tiger-3.2.1/scripts/find_files @@ -17,6 +17,11 @@ # # find_files - 06/14/93 # +# 07/22/2005 jfs Fixed check of GET_MOUNTS +# +# 04/03/2004 rbrad Added GETDISKS to haveallcmds. +# Added exit 1 if haveallvars failes +# # 08/08/2003 jfs Improved creation of temporary files and removal. # # 04/29/93 dls Added support for 'tigerrc' file variable FS_FILES @@ -28,6 +33,17 @@ # some new filename patterns to search for. # #----------------------------------------------------------------------------- +# TODO: +# - There is not currently a way for admins to have find _not_ go through +# directories that might be too big or should not be reviewed, consider +# using the -prune option (in combination with the defined FINEPRUNEOPT +# in configuration) like this: +# -a \! -name NAME -prune -a \! -name "*REGEXP*" -prune +# +# - Alternative, allow the admin to restrict the depth of the test using +# -maxdepth +# +#----------------------------------------------------------------------------- # TigerInstallDir='.' @@ -67,7 +83,7 @@ [ "$Tiger_TESTMODE" = 'Y' ] && { haveallcmds AWK CAT EXPR FIND GETDISKS GREP RM SORT || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 - haveallvars WAIT + haveallvars WAIT || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." exit 0 @@ -75,9 +91,9 @@ #------------------------------------------------------------------------ -haveallcmds AWK CAT EXPR FIND GREP RM SORT || exit 1 +haveallcmds AWK CAT EXPR FIND GETDISKS GREP RM SORT || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 -haveallvars WAIT +haveallvars WAIT || exit 1 simple_wait() { @@ -257,7 +273,7 @@ # but better than banging the heads around. # echo "$FINDXDEV" - echo "`$GETMOUNTS`" + echo "`$GET_MOUNTS`" else echo "$FINDPRUNE" echo "/" @@ -284,7 +300,7 @@ # Not sure why we're cd'ing to /, but it breaks all relative paths # being used in the find options. Commented out --mlk # cd / - eval nice -5 $FIND $mountpt $findpruneopt $findopt -print 2>/dev/null + eval nice -5 $FIND "$mountpt" $findpruneopt $findopt -print 2>/dev/null done | nice -6 $output } & echo $! >> $pidlist --- tiger-3.2.1.orig/scripts/check_rootkit +++ tiger-3.2.1/scripts/check_rootkit @@ -17,8 +17,9 @@ # # check_rootkit - 05/15/2002 # -# Script to find systems which have been rootkited. It looks for +# Script to find systems which have been rootkited (sp?). It looks for # trojaned ls and find commands. +# # It also includes a wrapper to run CHKROOTKIT and format # the results in Tiger's message format. # @@ -26,6 +27,8 @@ # uses those defined in the path # # DATE (MM/DD/YYYY) NAME DESCRIPTION_OF_CHANGES +# 01/13/2004 jfs Avoid which error on stdout if it's not found +# 10/15/2003 jfs Make CHKROOTKIT check silent # 09/19/2003 jfs Removed unused temporary file creation # 08/14/2003 jfs Implemented usage of CHKROOTKIT if available # 08/13/2003 jfs Integrated into the Tiger tool @@ -132,15 +135,20 @@ # Chkrookit binary location|override + default check if [ -z "${Tiger_CHKROOTKIT_LOC_OVERRIDE}" ] then - CHKROOTKIT=`which chkrootkit` + CHKROOTKIT=`which chkrootkit 2>/dev/null` else CHKROOTKIT=${Tiger_CHKROOTKIT_LOC_OVERRIDE} fi -haveallcmds CHKROOTKIT && { +# Redirect to /dev/null to make it silent +# (maybe a warning should be issued) +haveallcmds CHKROOTKIT >/dev/null && { echo "# Running chkrootkit ($CHKROOTKIT) to perform further checks..." # TODO: This code does not show some of chkrootkit's messages (such as # suspicious files) +# TODO2: Consider sending output to /dev/null to avoid the +# 'warning, got bogus unix line' messages that netstat might output +# (See Debian Bug 223847) $CHKROOTKIT -q | # Note: we use the quiet mode to avoid parsing all the lines of # "Searching for..." things @@ -151,10 +159,10 @@ message WARN rootkit003w "" "Chkrootkit has detected a suspicious directory" echo $line ;; Possible*) - message WARN rootkit004f "" "Chkrootkit has detected a possible rootkit installation" + message WARN rootkit004w "" "Chkrootkit has detected a possible rootkit installation" echo $line ;; Warning:' 'Possible*) - message WARN rootkit004f "" "Chkrootkit has detected a possible rootkit installation" + message WARN rootkit004w "" "Chkrootkit has detected a possible rootkit installation" echo $line ;; Warning:' '*installed) message ALERT rootkit005a "" "Chkrootkit has detected a rootkit installation" --- tiger-3.2.1.orig/scripts/check_finddeleted +++ tiger-3.2.1/scripts/check_finddeleted @@ -27,6 +27,14 @@ # vulnerable. # # DATE NAME DESCRIPTION_OF_CHANGES +# 03/01/2004 - jfs - Fix error in lsof temporary file creation +# (Debian bug #235951) +# 02/25/2004 - jfs - Fix error in safe_temp call +# 02/24/2004 - jfs - Do not operate over 'CHR' file types to avoid false +# positives (Closes Debian bug #232704). +# Reduce verbosity by joining multiple messages into a +# single one (Closes Debian Bug #231148) +# Also simplify calls to improve performance. # 09/13/2003 - jfs - Applied patch from Nicholas François to fix an error # which might allow some rogue processes to slip by # 08/08/2003 - jfs - Avoided race conditions. @@ -34,6 +42,28 @@ # (http://www.hackinglinuxexposed.com/articles/20020507.html) # 04/17/2002 - jfs - Use safe delete() instead of $RM # +#----------------------------------------------------------------------------- +# +# TODO: +# - Consider generating one message per command instead of per file +# (better for reporting but worst for the .ignore mechanism) +# +# NOTES: +# +# A generic way to remove these messages for a given directory +# DIR of PROGRAM would be: +# +# Program PROGRAM .* is using a deleted file: .*DIR.* +# +# Add that line to your configuration's tiger.ignore file and the +# messages will not appear in the reports. +# +# Just for reference, there are a number of services that run with deleted +# files frequently, this includes (in Linux) things like gconfd-2, +# MozillaFirebird (stuff under the user's .phoenix dir) and +# some applications that make use of /dev/null or /dev/console +# (I don't know why lsof flags those as "deleted", but they have been removed +# from the script) # #----------------------------------------------------------------------------- # @@ -73,7 +103,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds GREP CAT LSOF PS CAT || exit 1 + haveallcmds GREP CAT LSOF PS CUT SORT AWK || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 @@ -85,48 +115,66 @@ echo echo "# Performing check of deleted files used by processes..." -haveallcmds GREP CAT LSOF PS CAT || exit 1 +haveallcmds GREP CAT LSOF PS CUT SORT AWK || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 -safe_temp "$WORKDIR/deleted.$$" -trap 'delete $WORKDIR/deleted.$$ ; exit 1' 1 2 3 15 +safe_temp "$WORKDIR/deleted.$$" "$WORKDIR/lsof.$$" +trap 'delete $WORKDIR/deleted.$$ $WORKDIR/lsof.$$ ; exit 1' 1 2 3 15 -$PS -A -o pid,ppid |$GREP -v PID | -while read pid ppid +# TODO: Use Lsof's -f option to only recover the data +# we need and also to provide some more data useful for us +# (such as PPID) +$LSOF -n >>$WORKDIR/lsof.$$ +# It can be deleted if name includes (deleted) or +# TYPE = DEL +$CAT $WORKDIR/lsof.$$ | $GREP "(deleted)" >>$WORKDIR/deleted.$$ +$CAT $WORKDIR/lsof.$$ | $GREP "DEL" >>$WORKDIR/deleted.$$ +delete $WORKDIR/lsof.$$ + +$CAT $WORKDIR/deleted.$$ | $SORT -u | +while read command npid user fd type device node name +# Note: Remove CHR file types also since this leads to false positives +# (i.e. /dev/null) do - # It can be deleted if name includes (deleted) or - # TYPE = DEL - $LSOF -np $pid | $GREP "(deleted)" >>$WORKDIR/deleted.$$ - $LSOF -np $pid | $GREP "DEL" >>$WORKDIR/deleted.$$ - - $CAT $WORKDIR/deleted.$$ | - while read command npid user fd type device other - # Other is composed of 'size node name', except if DEL is used - # (in this case size is 0) we use it to print details of the - # file - do - # It can be deleted if name includes (deleted) or - # TYPE = DEL, but SYSV 'files' are not considered - if [ -n "`echo $other | $GREP \"(deleted)\"`" ] || [ -z "`echo $other | $GREP SYSV`" -a "$type" = "DEL" ] ; then - # There can be servers either in the same process or - # its children - $PS -A -o pid,ppid,cmd | $GREP $npid | - while read pids ppid nameserv - do - if [ -n "`$LSOF -np $pids | $GREP \"(LISTEN)\"`" ]; then - if [ "$pids" != "$npid" ] ; then - message FAIL kis011f "" "The parent process of server $nameserv (pid $npid) is using deleted files" - else - message FAIL kis011f "" "Server $nameserv (pid $npid) is using deleted files" - fi - fi - done - message WARN kis012w "" "Program $command (pid $npid, parent $ppid) is using a deleted file: $other" +# It can be deleted if name includes (deleted) or +# TYPE = DEL, but SYSV or CHR 'files' are not considered + if [ -n "`echo $name | $GREP \"(deleted)\"`" -a "$type" != "CHR" ] || [ -z "`echo $name | $GREP SYSV`" -a "$type" = "DEL" ] ; then + ppid=`$PS -p $npid -o pid,ppid | $GREP -v PID |$AWK '{print $2}'` + if [ -n "$ppid" ] ; then + pname=`$PS -p $ppid -o pid,cmd | $GREP -v PID | $AWK '{print $2}'` + fi + mtype="WARN" + mval="kis012w" + pmessage="Program $command (pid $npid, parent $ppid) is using a deleted file: '$name'" + # TODO: This lsof calls should probably be possible + # using the lsof file created previously, doing so + # might avoid false positives or errors + # (if proceses disappear) + listenport=`$LSOF -np $npid | $GREP \(LISTEN\) | $SORT -u | $CUT -d : -f 2 | $AWK '{printf "%s ", $1}'` + if [ -n "$ppid" ] ; then + listenpport=`$LSOF -np $ppid | $GREP \(LISTEN\) | $SORT -u | $CUT -d : -f 2 | $AWK '{printf "%s, ", $1}'` fi - done - delete $WORKDIR/deleted.$$ + # TODO: + # There can be servers either in the same process or + # its children. This code has to be improved in + # order to make it possible to better report that fact. + # It currently does _not_ check children processes properly + if [ -n "$listenport" ]; then + mtype="FAIL" + mval="kis011f" + pmessage="$pmessage and is a a server listening on port(s) $listenport" + fi + if [ -n "$listenpport" ]; then + mtype="FAIL" + mval="kis011f" + pmessage="$pmessage and its parent process $pname is a server listening on port(s) $listenpport" + fi + message $mtype $mval "" "$pmessage." + fi done +delete $WORKDIR/deleted.$$ + exit 0 --- tiger-3.2.1.orig/scripts/check_ntp +++ tiger-3.2.1/scripts/check_ntp @@ -0,0 +1,102 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2003 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_ntp - NTP specific configuration checks. +# +# 11/02/2003 - rbradetich@uswest.net - first release +# +# TODO: +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallcmds AWK EGREP NETSTAT || exit 1 + haveallfiles BASEDIR || exit 1 + haveallvars NTPCONF || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ + +echo +echo "# Checking ntpd configuration..." + +haveallcmds AWK EGREP NETSTAT || exit 1 +haveallfiles BASEDIR || exit 1 +haveallvars NTPCONF || exit 1 + +# Is the ntpd process listening? +[ -z "`$NETSTAT -an 2>/dev/null | $EGREP '[.|:]123 '`" ] && exit + +[ ! -r "$NTPCONF" ] && { + message FAIL netw014f "" "$NTPCONF was not found." + exit +} + +var=`$AWK -F"#" '$1 ~ /server[ ]/ { server = 1 } + $1 ~ /restrict[ ]/ { restrict = 1 } + $1 ~ /manycastclient[ ]/ { bcast = 1 } + $1 ~ /broadcastclient[ ]/ { bcast = 1 } + $1 ~ /multicastclient[ ]/ { bcast = 1 } + END { printf("%d%d%d\n", server, restrict, bcast) }' $NTPCONF` + +[ ${var%??} = 0 ] && message FAIL netw042f "" "Remote NTP Server(s) must be specified!" + +var=${var#?} +[ ${var%?} = 0 ] && message FAIL netw043f "" "Remote NTP Server(s) must be restricted!" + +var=${var#?} +[ $var = 1 ] && message FAIL netw044f "" "NTP broadcast client not allowed!" + +exit 0 --- tiger-3.2.1.orig/scripts/check_omniback +++ tiger-3.2.1/scripts/check_omniback @@ -0,0 +1,91 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2003 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_omniback - Hewlett-Packard omniback configuration checks. +# +# 11/02/2003 - rbradetich@uswest.net - first release +# +# TODO: +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallcmds NETSTAT EGREP || exit 1 + haveallfiles BASEDIR || exit 1 + haveallvars OMNIBACK_CELLSERVER || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ + +echo +echo "# Checking omniback configuration..." + +haveallcmds NETSTAT EGREP || exit 1 +haveallfiles BASEDIR || exit 1 +haveallvars OMNIBACK_CELLSERVER || exit 1 + +# Is the omniback process listening? +[ -z "`$NETSTAT -an 2>/dev/null | $EGREP '[.|:]5555 .*LISTEN'`" ] && exit + +[ ! -r "$OMNIBACK_CELLSERVER" ] && { + message FAIL netw005f "" "Omniback service is listening, but the cell server is not specified in $OMNIBACK_CELLSERVER" + exit +} + +[ -n "`$EGREP '^[a-zA-Z_-]+' $OMNIBACK_CELLSERVER`" ] && { + message FAIL netw006f "" "Omniback cell server must be specified by IP address in $OMNIBACK_CELLSERVER" +} + +exit 0 --- tiger-3.2.1.orig/scripts/check_crontabs +++ tiger-3.2.1/scripts/check_crontabs @@ -19,6 +19,10 @@ # # Ideas from Dan Farmer's 'cron.chk' from COPS 1.04. # +# check_crontabs - 01/15/2004 - jfs Will only warn if neither cron.allow +# nor cron.deny exists (Debian bug #226362) +# check_crontabs - 11/19/2003 - jfs Introduce some more information on +# allow/deny checks as suggested by unspawn. # check_crontabs - 08/19/2003 - jfs Renamed to check_crontabs # check_crontabs - 08/14/2003 - jfs Added OUTPUTMETHOD to dependancies # incorporated changes from ARSC tara version 3.0.3 @@ -177,7 +181,29 @@ message WARN cron004w "" "Root crontab does not exist" # Check for existence of root cron.allow -[ ! -f /etc/cron.allow ] && +[ -z "$CRONALLOW" ] && CRONALLOW=/etc/cron.allow +[ -z "$CRONDENY" ] && CRONDENY=/etc/cron.deny +if [ -f "$CRONALLOW" ] +then + $CAT $CRONALLOW | + $GREP -v "^#" | + while read user + do + message WARN cron006w "User $user is allowed cron usage." + done +fi +if [ -f "$CRONDENY" ] +then + $CAT $CRONDENY | + $GREP -v "^#" | + while read user + do + message INFO cron007i "User $user is denied cron usage." + done +fi +if [ ! -f "$CRONALLOW" -a ! -f "$CRONDENY" ] +then message WARN cron005w "" "Use of cron is not restricted" +fi exit 0 --- tiger-3.2.1.orig/site-sample +++ tiger-3.2.1/site-sample @@ -86,4 +86,4 @@ # # Define where Integrit is installed (if you use it) # -#INTEGRIT=/usr/local/bin/aide +#INTEGRIT=/usr/local/bin/integrit --- tiger-3.2.1.orig/systems/AIX/3/CVS/Entries +++ tiger-3.2.1/systems/AIX/3/CVS/Entries @@ -1,15 +1,15 @@ /check_cron/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mount/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /mkshells/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// D/3.2//// /config/1.2/Fri Sep 19 14:01:21 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:15:15 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:15 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:16 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:15:16 2004// +/gen_services/1.2/Tue Feb 24 19:15:16 2004// +/gendlclients/1.2/Thu May 20 07:37:29 2004// --- tiger-3.2.1.orig/systems/AIX/3/gen_alias_sets +++ tiger-3.2.1/systems/AIX/3/gen_alias_sets @@ -28,7 +28,7 @@ echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ - [ -n "$YP" ] && { + [ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/AIX/3/gen_bootparam_sets +++ tiger-3.2.1/systems/AIX/3/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/AIX/3/gen_group_sets +++ tiger-3.2.1/systems/AIX/3/gen_group_sets @@ -26,7 +26,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/AIX/3/gen_passwd_sets +++ tiger-3.2.1/systems/AIX/3/gen_passwd_sets @@ -16,10 +16,22 @@ # Please see the file `COPYING' for the complete copyright notice. # # AIX/3/gen_passwd_sets - 06/14/93 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$SED" ] && SED=`which sed` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` +[ -z "$NISCAT" ] && NISCAT=`which niscat` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + local=0 passwordflag= @@ -90,7 +102,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/AIX/3/gen_services +++ tiger-3.2.1/systems/AIX/3/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/AIX/3/gendlclients +++ tiger-3.2.1/systems/AIX/3/gendlclients @@ -17,6 +17,9 @@ # # AIX/3/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -49,5 +52,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/AIX/4/CVS/Entries +++ tiger-3.2.1/systems/AIX/4/CVS/Entries @@ -1,15 +1,15 @@ /check_cron/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mount/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /mkshells/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// -/config/1.2/Fri Sep 19 14:02:05 2003// +/config/1.3/Tue Feb 24 19:15:17 2004// +/gen_alias_sets/1.2/Tue Feb 24 19:15:17 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:17 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:17 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:15:18 2004// +/gen_services/1.2/Tue Feb 24 19:15:18 2004// +/gendlclients/1.2/Thu May 20 07:37:30 2004// D --- tiger-3.2.1.orig/systems/AIX/4/config +++ tiger-3.2.1/systems/AIX/4/config @@ -16,6 +16,8 @@ # # AIX/4/config - 06/14/93 # +# 11/18/2003 - jfs - /usr/ucb references changed to /usr/bin. LSGROUP is +# now '-l'. Fixed DATECMD. Thanks to patches from Dale Martin. # 09/19/2003 - jfs - Added UUID definition or otherwise scripts will not # be run. #----------------------------------------------------------------------------- @@ -60,13 +62,13 @@ export FINDXDEV FINDPRUNE='! -fstype jfs -prune' export FINDPRUNE -FMT=/usr/ucb/fmt +FMT=/usr/bin/fmt export FMT GETHOSTNAME=/usr/bin/hostname export GETHOSTNAME -GREP=/usr/ucb/grep +GREP=/usr/bin/grep export GREP -GROUPSS=/usr/ucb/groups +GROUPSS=/usr/bin/groups export GROUPSS JOIN=/usr/bin/join export JOIN @@ -84,11 +86,11 @@ export SED SORT=/usr/bin/sort export SORT -STRINGS=/usr/ucb/strings +STRINGS=/usr/bin/strings export STRINGS -TAIL=/usr/ucb/tail +TAIL=/usr/bin/tail export TAIL -TR=/usr/ucb/tr +TR=/usr/bin/tr export TR UNAME=/usr/bin/uname export UNAME @@ -118,12 +120,12 @@ # # How to get different effects # -DATECMD="$DATE +%D" +DATECMD="$DATE +%d-%m-%y" TIMECMD="$DATE +%H:%M" export DATECMD TIMECMD SGREP="$EGREP -s" export SGREP -LSGROUP= +LSGROUP=-l export LSGROUP LSLINK=-L export LSLINK --- tiger-3.2.1.orig/systems/AIX/4/gen_alias_sets +++ tiger-3.2.1/systems/AIX/4/gen_alias_sets @@ -28,7 +28,7 @@ echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ - [ -n "$YP" ] && { + [ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/AIX/4/gen_bootparam_sets +++ tiger-3.2.1/systems/AIX/4/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/AIX/4/gen_group_sets +++ tiger-3.2.1/systems/AIX/4/gen_group_sets @@ -26,7 +26,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/AIX/4/gen_passwd_sets +++ tiger-3.2.1/systems/AIX/4/gen_passwd_sets @@ -16,10 +16,24 @@ # Please see the file `COPYING' for the complete copyright notice. # # AIX/3/gen_passwd_sets - 06/14/93 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$RM" ] && RM=`which rm` +[ -z "$SED" ] && SED=`which sed` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` +[ -z "$NISCAT" ] && NISCAT=`which niscat` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + + local=0 passwordflag= @@ -90,7 +104,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT"] && { $YPCAT passwd | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/AIX/4/gen_services +++ tiger-3.2.1/systems/AIX/4/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/AIX/4/gendlclients +++ tiger-3.2.1/systems/AIX/4/gendlclients @@ -17,6 +17,9 @@ # # AIX/3/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -49,5 +52,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/HPUX/CVS/Entries +++ tiger-3.2.1/systems/HPUX/CVS/Entries @@ -2,13 +2,9 @@ /fal.db/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// -/genaliases/1.1/Fri Jun 14 08:51:31 2002// /genbootparam/1.1/Fri Jun 14 08:51:31 2002// /genclients/1.1/Fri Jun 14 08:51:31 2002// /genexports/1.1/Fri Jun 14 08:51:31 2002// -/gengroups/1.1/Fri Jun 14 08:51:31 2002// -/genmounts/1.1/Fri Jun 14 08:51:31 2002// -/genservices/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// @@ -17,7 +13,13 @@ D/10//// D/11//// /check/1.4/Sat Aug 9 12:47:11 2003// -/check_passwdspec/1.1/Sat Aug 9 12:46:56 2003// /check_trusted/1.4/Sat Aug 9 10:15:11 2003// -/genpasswd/1.3/Thu Jun 26 14:36:33 2003// -/config/1.8/Fri Sep 19 13:53:22 2003// +/check_passwdspec/1.3/Tue Feb 24 19:15:18 2004// +/config/1.12/Tue Feb 24 19:15:19 2004// +/genaliases/1.2/Tue Feb 24 19:15:20 2004// +/gengroups/1.2/Tue Feb 24 19:15:29 2004// +/genmounts/1.2/Tue Feb 24 19:15:29 2004// +/genpasswd/1.4/Tue Feb 24 19:15:30 2004// +/genservices/1.2/Tue Feb 24 19:15:30 2004// +/getdisks/1.1/Mon Nov 24 18:44:38 2003// +/check_path/1.3/Thu May 20 07:37:31 2004// --- tiger-3.2.1.orig/systems/HPUX/10/CVS/Entries +++ tiger-3.2.1/systems/HPUX/10/CVS/Entries @@ -1,2 +1,2 @@ -/config/1.1/Tue Dec 10 14:29:25 2002// D/10.20//// +/config/1.7/Tue Feb 24 20:45:36 2004// --- tiger-3.2.1.orig/systems/HPUX/10/config +++ tiger-3.2.1/systems/HPUX/10/config @@ -15,7 +15,11 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# HPUX/config - 06/14/93 +# HPUX/10/config - 06/14/93 +# 11/18/2003 - jfs - Add EXPAND (patch from Ryan Bradetich) +# 11/19/2003 - jfs - Add REALPATH and SNEFRU (patch from Ryan Bradetich) +# 01/07/2004 - rbrad - Add NETSTAT +# 01/11/2004 - rbrad - Add OMNIBACK_CELLSERVER and NTPCONF # #----------------------------------------------------------------------------- # @@ -46,6 +50,7 @@ SORT=/bin/sort COMM=/usr/bin/comm TAIL=/bin/tail +HEAD=/bin/head MV=/bin/mv TR=/usr/bin/tr JOIN=/usr/bin/join @@ -58,6 +63,11 @@ CHMOD=/bin/chmod LN=/bin/ln WC=/bin/wc +TEE=/bin/tee +EXPAND=/usr/bin/expand +REALPATH=$BINDIR/realpath +SNEFRU=$BINDIR/snefru +NETSTAT=/usr/bin/netstat # # Disable diff because it doesn't support -D... so we can not # use diff... this will cause reports to be mailed as is... future @@ -67,10 +77,20 @@ MAILER=/usr/bin/mailx SENDMAILS="/usr/lib/sendmail" SENDMAILCF="/usr/lib/sendmail.cf" + +# For omniback server configuration +OMNIBACK_CELLSERVER="/etc/opt/omni/cell/cell_server" +export OMNIBACK_CELLSERVER + +# Location of the NTPCONF file +NTPCONF=/etc/ntp.conf +export NTPCONF + # export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED -export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ PASTE -export BASENAME CHOWN CHMOD LN DIFF MAILER WC +export SORT COMM TAIL HEAD MV TR JOIN GROUPSS FILECMD UNIQ PASTE +export BASENAME CHOWN CHMOD LN DIFF MAILER WC TEE EXPAND +export REALPATH SNEFRU NETSTAT # UNAME=/bin/uname GETHOSTNAME=/bin/hostname --- tiger-3.2.1.orig/systems/HPUX/11/CVS/Entries +++ tiger-3.2.1/systems/HPUX/11/CVS/Entries @@ -4,4 +4,4 @@ /ndd_parms/1.1/Sat Aug 9 10:24:12 2003// /ndd_parms_local/1.1/Sat Aug 9 10:24:12 2003// /check/1.1/Sat Aug 9 10:34:04 2003// -/config/1.3/Wed Sep 3 12:08:26 2003// +/config/1.9/Tue Feb 24 20:45:36 2004// --- tiger-3.2.1.orig/systems/HPUX/11/config +++ tiger-3.2.1/systems/HPUX/11/config @@ -15,13 +15,17 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# HPUX/config - 06/14/93 +# HPUX/11/config - 06/14/93 # 06/21/2003 - jfs - Applied a patch provided by Ryan Bradetich to support # PWCK properly # 06/26/2003 - jfs - Exported command to check for trusted mode and # also some variables which were defined but not exported. # Added GRPCK. # 08/09/2003 - jfs - Applied patch from Ryan Bradetich to include NDD support +# 11/18/2003 - jfs - Add EXPAND (patch from Ryan Bradetich) +# 11/19/2003 - jfs - Add REALPATH and SNEFRU (patch from Ryan Bradetich) +# 01/07/2004 - rbrad - Add NETSTAT +# 01/11/2004 - rbrad - Add OMNIBACK_CELLSERVER and NTPCONF # #----------------------------------------------------------------------------- # @@ -52,6 +56,7 @@ SORT=/bin/sort COMM=/usr/bin/comm TAIL=/bin/tail +HEAD=/bin/head MV=/bin/mv TR=/usr/bin/tr JOIN=/usr/bin/join @@ -64,10 +69,15 @@ CHMOD=/bin/chmod LN=/bin/ln WC=/bin/wc +TEE=/bin/tee MESG=/usr/bin/mesg ID=/usr/bin/id +EXPAND=/usr/bin/expand CUT=/usr/bin/cut +REALPATH=$BINDIR/realpath +SNEFRU=$BINDIR/snefru NDD=/usr/bin/ndd +NETSTAT=/usr/bin/netstat # Setup PWCK depending on the status of the system # (is it in trusted mode?) /usr/lbin/getprdef -r >/dev/null 2>/dev/null @@ -98,11 +108,21 @@ MAILER=/usr/bin/mailx SENDMAILS="/usr/lib/sendmail" SENDMAILCF="/usr/lib/sendmail.cf" + +# For omniback server configuration +OMNIBACK_CELLSERVER="/etc/opt/omni/cell/cell_server" +export OMNIBACK_CELLSERVER + +# Location of the NTPCONF file +NTPCONF=/etc/ntp.conf +export NTPCONF + # export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED -export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ PASTE -export BASENAME CHOWN CHMOD LN DIFF MAILER WC ID CUT NDD MESG PWCK GRPCK GETPRDEF -export SSHD_CONFIG SENDMAILS SENDMAILCF +export SORT COMM TAIL HEAD MV TR JOIN GROUPSS FILECMD UNIQ PASTE +export BASENAME CHOWN CHMOD LN DIFF MAILER WC TEE ID EXPAND CUT NDD MESG PWCK +export GRPCK GETPRDEF +export REALPATH SNEFRU SSHD_CONFIG SENDMAILS SENDMAILCF NETSTAT # UNAME=/bin/uname GETHOSTNAME=/bin/hostname --- tiger-3.2.1.orig/systems/HPUX/config +++ tiger-3.2.1/systems/HPUX/config @@ -16,6 +16,7 @@ # Please see the file `COPYING' for the complete copyright notice. # # HPUX/config - 06/14/93 +# 10/1/2003 - jfs - Applied a patch provided by Ryan Bradetich to add TEE # 09/03/2003 - jfs - Applied a patch provided by Ryan Bradetich to support # default locations of SSHD_CONFIG # 06/21/2003 - jfs - Applied a patch provided by Ryan Bradetich to support @@ -23,6 +24,8 @@ # 06/26/2003 - jfs - Exported command to check for trusted mode and # also some variables which were defined but not exported. # Added GRPCK. +# 11/18/2003 - jfs - Add EXPAND (patch from Ryan Bradetich) +# 11/19/2003 - jfs - Add REALPATH and SNEFRU (patch from Ryan Bradetich) # #----------------------------------------------------------------------------- # @@ -53,6 +56,7 @@ SORT=/bin/sort COMM=/usr/bin/comm TAIL=/bin/tail +HEAD=/bin/head MV=/bin/mv TR=/usr/bin/tr JOIN=/usr/bin/join @@ -65,9 +69,13 @@ CHMOD=/bin/chmod LN=/bin/ln WC=/bin/wc +TEE=/bin/tee MESG=/usr/bin/mesg ID=/usr/bin/id +EXPAND=/usr/bin/expand CUT=/usr/bin/cut +REALPATH=$BINDIR/realpath +SNEFRU=$BINDIR/snefru # Setup PWCK depending on the status of the system # (is it in trusted mode?) /usr/lbin/getprdef -r >/dev/null 2>/dev/null @@ -100,9 +108,10 @@ SENDMAILCF="/usr/lib/sendmail.cf" # export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED -export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ PASTE -export BASENAME CHOWN CHMOD LN DIFF MAILER WC ID CUT MESG PWCK GRPCK GETPRDEF -export SSHD_CONFIG SENDMAILS SENDMAILCF +export SORT COMM TAIL HEAD MV TR JOIN GROUPSS FILECMD UNIQ PASTE +export BASENAME CHOWN CHMOD LN DIFF MAILER WC TEE ID EXPAN CUT MESG +export PWCK GRPCK GETPRDEF +export REALPATH SNEFRU SSHD_CONFIG SENDMAILS SENDMAILCF # UNAME=/bin/uname GETHOSTNAME=/bin/hostname --- tiger-3.2.1.orig/systems/HPUX/genaliases +++ tiger-3.2.1/systems/HPUX/genaliases @@ -31,7 +31,7 @@ echo $WORKDIR/etc_aliases.$$ } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases 2>/dev/null >/dev/null && { $YPCAT -k aliases | $SED -e 's/ /:/' | --- tiger-3.2.1.orig/systems/HPUX/gengroups +++ tiger-3.2.1/systems/HPUX/gengroups @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/HPUX/genmounts +++ tiger-3.2.1/systems/HPUX/genmounts @@ -16,6 +16,8 @@ # Please see the file `COPYING' for the complete copyright notice. # # HPUX/genmounts - 06/14/93 +# HPUX/genmounts - 11/19/2003 - Applied patch from Ryan Bradetich which adds +# hfs and vxfs as valid local filesystems. # #----------------------------------------------------------------------------- # @@ -37,7 +39,8 @@ localfs() { LOCAL=1 - [ "$1" = "ufs" ] && LOCAL=0 + [ "$1" = "hfs" ] && LOCAL=0 + [ "$1" = "vxfs" ] && LOCAL=0 return $LOCAL } --- tiger-3.2.1.orig/systems/HPUX/genpasswd +++ tiger-3.2.1/systems/HPUX/genpasswd @@ -74,7 +74,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd | $SORT | $COMM -23 - $WORKDIR/etc_passwd.$$ > $WORKDIR/nis_passwd.$$ --- tiger-3.2.1.orig/systems/HPUX/genservices +++ tiger-3.2.1/systems/HPUX/genservices @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/HPUX/check_passwdspec +++ tiger-3.2.1/systems/HPUX/check_passwdspec @@ -18,9 +18,10 @@ # check_passwdspec: Perform system specific password checks here like # password aging checks, etc. # -# 07/10/2003 rbradetich@uswest.net - Initial release +# 11/19/2003 jfs - Patch from Ryan Bradetich changing acc016w to pass19w # 08/09/2003 jfs - Included in the Tiger release but changed its name to # check_passwdspec. Added safer temporary file creation. +# 07/10/2003 rbradetich@uswest.net - Initial release # #----------------------------------------------------------------------------- # @@ -100,13 +101,13 @@ [[ "$hash" != +([a-zA-Z0-9\./]) ]] && continue # Valid password hash without an password expiration date. - message WARN acc016w "" "Login ID $login does not have password aging enabled." + message WARN pass19w "" "Login ID $login does not have password aging enabled." continue } [[ "$hash" != [a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./],+([a-zA-Z0-9\./]) ]] && { # Valid password hash without an password expiration date. - message WARN acc016w "" "Login ID $login does not have password aging enabled." + message WARN pass19w "" "Login ID $login does not have password aging enabled." } done done < $WORKDIR/pass.list.$$ --- tiger-3.2.1.orig/systems/HPUX/check_path +++ tiger-3.2.1/systems/HPUX/check_path @@ -0,0 +1,461 @@ +#!/bin/bash +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_path - 06/14/93 +# +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# 11/19/2003 rbrad Reimplementation to handle additional methods for +# introducing directories into the PATH environment including +# $(/dev/null | + getpermit | + while read _execfile _owner _group ur uw ux gr gw gx or ow ox suid sgid stk + do + # Skip non-executable files. + [ "$ux$gx$ox" = '000' ] && continue + + # Do an embedded check here. + + + # Pretend the gw bit is not set if group in okgroup + [ "$gw" = '1' ] && { + eval "case \"$_group\" in + $okgroup) gw='0' + esac" + } + + # Check for group and world write permissions here. + case "$gw$ow" in + 00) msg='' + mode='' + ;; + 01) msg='world' + mode='o-w' + ;; + 10) msg="group \`$_group'" + mode='g-w' + ;; + 11) msg="group \`$_group' and world" + mode='go-w' + ;; + esac + + # Display the appropriate message if necessary. + [ -n "$msg" ] && { + + # Set the appropriate msgid for a directory or file. + if [ -d $_execfile ]; then + _execfile=${_execfile%/} + msgid="path006w" + else + msgid="path001w" + fi + + # Set the appropriate message for global and user PATH problems. + if [ -z "$user" -a -z "$srcfile" ]; then + msg="$_execfile is $msg writable in the global system PATH." + else + msg="$_execfile in $user's PATH from $srcfile is $msg writable." + fi + + message WARN $msgid "" "$msg" + changelog "WARN : chmod : $mode : $_execfile" + } + + + # Check the file ownership. + eval "case \"$_owner\" in + $okown) + msg='' + ;; + *) + msg=\"(owner: $_owner)\" + ;; + esac" + + [ -n "$msg" ] && { + # Check the SUID bit. + if [ "$suid" = '0' ]; then + lvl="WARN" + msgid="path002w" + + # Set the appropriate message for global and user PATH problems. + if [ -z "$user" -a -z "$srcfile" ]; then + msg="$_execfile does not have proper ownership in the global system PATH $msg." + else + msg="$_execfile in $user's PATH from $srcfile does not have proper ownership $msg." + fi + + changelog "WARN : chown : root : $_execfile" + else + lvl="INFO" + msgid="path008i" + + if [ -z "$user" -a -z "$srcfile" ]; then + msg="Setuid program $_execfile does not have proper ownership in the global system PATH $msg." + else + msg="Setuid program $_execfile in $user's PATH from $srcfile does not have proper ownership $msg." + fi + fi + + message $lvl $msgid "" "$msg" + } + done +} + +check_global_permissions() +{ + file=$1 + + while read dir + do + check_permissions $dir $Tiger_ROOT_PATH_OK_Owners $Tiger_ROOT_PATH_OK_Group_Write + done < $file +} + +# +# This function serves as an intelligent file grep command. +# +path_grep() +{ + file=$1 + val=$2 + + # Set the default tokens for sh and csh. + [ -z "$val" ] && val="^PATH=|^setenvPATH" + + path=`$SED -e 's/#.*$//' \ + -e 's/;/ /g' \ + -e 's/&&/ /g' \ + -e 's/||/ /g' \ + -e 's/[ ]//g' \ + $file | + $EGREP "$val" | + $SED -e 's/^PATH=//' \ + -e 's/^setenvPATH//' \ + -e 's/^$val//' \ + -e 's/["{}]//g'` + + echo $path | $TR ' ' ':' +} + +# +# This function parses either Bourne and CSH style initializaiton +# files and resolves the PATH into directories stored in the +# outfile. +# +parse_file() +{ + infile=$1 + outfile=$2 + sys_path=$3 + + path=`path_grep $infile` + + seen=":PATH:" + + while [ -n "$path" ] + do + token=${path%%:*} + path=${path##${token}} + path=${path##:} + + # Handle the $(...) and `...` tokens. + [[ "$token" = \$\\\(*\\\) ]] || [[ "$token" = \`*\` ]] && { + eval tmp_path=$token + path=`echo $tmp_path | $SED -e 's/["{}]//g'`:$path + continue + } + + # Handle the wildcard tokens. + [[ "$token" = \* ]] && { + tmp_path=`$LS -d $token` + path=`echo $tmp_path | $SED -e 's/["{}]//g' -e 's/ /:/g'`:$path + continue + } + + # Handle the $HOME environment variable + [[ "$token" = \$HOME* ]] && { + echo "~\$user/${token##\$HOME}" >> $outfile + continue + } + + # Handle . in PATH + [[ "$token" = \. ]] && { + message WARN path005w "" "'.' is included in PATH (source: $infile)." + continue + } + + # Handle the $ENV tokens. + [[ "$token" = \$* ]] && { + token=${token##$} + + [[ "$seen" = *:$token:* ]] && continue + seen=$seen:$token: + + path=`path_grep $infile $token=`:$path + continue + } + + # Handle the directory tokens. + $REALPATH "$token" >> $outfile + done +} + +# +# This function checks the files in the global system paths for problems. +# +check_global_paths() +{ + [ -z "$Tiger_Global_PATH" ] && return + + SYS_BSH_PATH=$WORKDIR/sys_bsh_path + SYS_CSH_PATH=$WORKDIR/sys_csh_path + + for file in $Tiger_Global_PATH + do + [ ! -r $file ] && continue + + case $file in + /etc/profile) + parse_file $file $SYS_BSH_PATH + ;; + + /etc/csh.login) + parse_file $file $SYS_CSH_PATH + ;; + + *) + message WARN path010w "" "Do not know how to parse global path file: $file. Skipping..." + ;; + esac + done + + # Verify the PATH is initilized for the Bourne style shells. + if [ -s $SYS_BSH_PATH ]; then + $CAT $SYS_BSH_PATH >> $SYS_PATH.$$ + else + message WARN path009w "" "The Bourne shell initialization file(s) does not export an initial setting for PATH." + fi + + # Verify the PATH is initilized for the C style shells. + if [ -s $SYS_CSH_PATH ]; then + $CAT $SYS_CSH_PATH >> $SYS_PATH.$$ + else + message WARN path009w "" "The C shell initialization file(s) does not export an initial setting for PATH." + fi + + # Seperate out the System Default Path into the proper format in the $SYS_PATH file. + echo "$SYSDEFAULTPATH" | + $TR ':' '\012' | + while read dir + do + $REALPATH $dir >> $SYS_PATH.$$ + done + + # Sort and uniq the generic $SYS_PATH file. + $SORT -u $SYS_PATH.$$ > $SYS_PATH + + # Clean up the temporary files. + delete $SYS_PATH.$$ $SYS_BSH_PATH $SYS_CSH_PATH + delete $SYS_BSH_PATH $SYS_CSH_PATH +} + +check_user() +{ + user="$1" + home="$2" + uid="$3" + + # Initialized the USR_PATH file. + USR_PATH=$WORKDIR/usr_path + >$USR_PATH + + # Check for ~ entries in the SYS_PATH (i.e. $HOME/bin) + $GREP '^~\$user' $SYS_PATH | + while read dir1 + do + eval dir=`echo "$dir1" | $SED -e 's/~\$user/$home/'` + $REALPATH $dir >> $USR_PATH + done + + # Check for PATH settings in these 'dot' files. + for file in .profile .cshrc .login .tcshrc .bash_profile .bashrc .kshrc + do + [ -s $home/$file ] && parse_file $home/$file $USR_PATH + done + + # Did we find a PATH for the user? + [ ! -s $USR_PATH ] && return + + # Sort and uniq the $USR_PATH file. + $SORT -u $USR_PATH | + $JOIN -j 1 -v 2 $SYS_PATH - | + while read dir + do + if [ $uid = '0' ]; then + check_permissions $dir $Tiger_ROOT_PATH_OK_Owners $Tiger_ROOT_PATH_OK_Group_Write + else + ownok="$Tiger_PATH_OK_Owners\|$user" + groupok="$Tiger_PATH_OK_Group_Write\|$user" + check_permissions $dir $ownok $groupok $user + fi + done + + # Cleanup + delete $USR_PATH +} + +SYS_PATH=$WORKDIR/sys_path +[ -z "$SYSDEFAULTPATH" ] && SYS="/bin:/usr/bin:/usr/sbin" + +check_global_paths +check_global_permissions $SYS_PATH + +{ + if [ "$Tiger_Check_PATHALL" = 'Y' ]; then + haveallcmds GEN_PASSWD_SETS && + haveallvars HOSTNAME && { + { + if [ -n "$Tiger_PasswdFiles" ]; then + [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$ + else + $GEN_PASSWD_SETS $WORKDIR/pass.list.$$ + fi + } + + while read passwd_set + do + echo + echo "# Checking accounts from `$CAT $passwd_set.src`..." + + $AWK -F: '{print $1, $6}' $passwd_set | + $SORT -u | + $BASEDIR/util/${GETFSHOST:=getfs-std} > $WORKDIR/home.hosts.$$ + + $AWK -F: '{print $1, $6, $3}' $passwd_set | + $SORT -u | + $JOIN -o 1.1 1.2 2.3 1.3 - $WORKDIR/home.hosts.$$ | + while read user homedir host uid + do + [ "$host" = "$HOSTNAME" ] && check_user $user $homedir $uid + done + [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src + delete $WORKDIR/home.hosts.$$ + done < $WORKDIR/pass.list.$$ + delete $WORKDIR/pass.list.$$ + } + else + echo "# Only checking user 'root'" + check_user root ~root 0 + fi +} | +$OUTPUTMETHOD + +delete $SYS_PATH + +exit 0 --- tiger-3.2.1.orig/systems/HPUX/getdisks +++ tiger-3.2.1/systems/HPUX/getdisks @@ -0,0 +1,25 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# getdisks - 06/24/93 +# +#----------------------------------------------------------------------------- +# + +$GET_MOUNTS local | +$AWK '{printf("%s ",$1)} +END {printf("\n")}' --- tiger-3.2.1.orig/systems/IRIX/4/CVS/Entries +++ tiger-3.2.1/systems/IRIX/4/CVS/Entries @@ -1,14 +1,8 @@ /check_cron/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// /suid_list/1.1/Fri Jun 14 08:51:31 2002// @@ -17,3 +11,9 @@ D/4.0.5H//// /gen_mounts/1.2/Fri May 9 23:41:14 2003// /config/1.2/Fri Sep 19 14:14:41 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:15:33 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:34 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:34 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:15:35 2004// +/gen_services/1.2/Tue Feb 24 19:15:35 2004// +/gendlclients/1.2/Thu May 20 07:37:44 2004// --- tiger-3.2.1.orig/systems/IRIX/4/gen_alias_sets +++ tiger-3.2.1/systems/IRIX/4/gen_alias_sets @@ -25,7 +25,7 @@ echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/IRIX/4/gen_bootparam_sets +++ tiger-3.2.1/systems/IRIX/4/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/IRIX/4/gen_group_sets +++ tiger-3.2.1/systems/IRIX/4/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/IRIX/4/gen_passwd_sets +++ tiger-3.2.1/systems/IRIX/4/gen_passwd_sets @@ -16,10 +16,23 @@ # Please see the file `COPYING' for the complete copyright notice. # # IRIX/4/gen_passwd_sets - 06/14/93 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$RM" ] && RM=`which rm` +[ -z "$SED" ] && SED=`which sed` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` +[ -z "$NISCAT" ] && NISCAT=`which niscat` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + local=0 for parm do @@ -34,7 +47,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd > $WORKDIR/nis_passwd.$$ echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile --- tiger-3.2.1.orig/systems/IRIX/4/gen_services +++ tiger-3.2.1/systems/IRIX/4/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/IRIX/4/gendlclients +++ tiger-3.2.1/systems/IRIX/4/gendlclients @@ -48,5 +48,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/IRIX/5/CVS/Entries +++ tiger-3.2.1/systems/IRIX/5/CVS/Entries @@ -1,18 +1,18 @@ /check_cron/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// /suid_list/1.1/Fri Jun 14 08:51:31 2002// /config/1.2/Fri Sep 19 14:17:44 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:15:36 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:36 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:37 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:15:37 2004// +/gen_services/1.2/Tue Feb 24 19:15:37 2004// +/gendlclients/1.2/Thu May 20 07:37:59 2004// D --- tiger-3.2.1.orig/systems/IRIX/5/gen_alias_sets +++ tiger-3.2.1/systems/IRIX/5/gen_alias_sets @@ -25,7 +25,7 @@ echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/IRIX/5/gen_bootparam_sets +++ tiger-3.2.1/systems/IRIX/5/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/IRIX/5/gen_group_sets +++ tiger-3.2.1/systems/IRIX/5/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/IRIX/5/gen_passwd_sets +++ tiger-3.2.1/systems/IRIX/5/gen_passwd_sets @@ -16,10 +16,21 @@ # Please see the file `COPYING' for the complete copyright notice. # # IRIX/4/gen_passwd_sets - 06/14/93 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$RM" ] && RM=`which rm` +[ -z "$SED" ] && SED=`which sed` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` + local=0 for parm do @@ -34,7 +45,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd > $WORKDIR/nis_passwd.$$ echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile --- tiger-3.2.1.orig/systems/IRIX/5/gen_services +++ tiger-3.2.1/systems/IRIX/5/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/IRIX/5/gendlclients +++ tiger-3.2.1/systems/IRIX/5/gendlclients @@ -17,6 +17,9 @@ # # IRIX/4/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -48,5 +51,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/IRIX/6/CVS/Entries +++ tiger-3.2.1/systems/IRIX/6/CVS/Entries @@ -1,14 +1,8 @@ /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// @@ -18,3 +12,9 @@ D/6.5//// /check_cron/1.2/Tue Aug 26 15:51:08 2003// /config/1.2/Fri Sep 19 14:17:48 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:15:38 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:38 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:39 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:15:39 2004// +/gen_services/1.2/Tue Feb 24 19:15:39 2004// +/gendlclients/1.2/Thu May 20 07:38:01 2004// --- tiger-3.2.1.orig/systems/IRIX/6/gen_alias_sets +++ tiger-3.2.1/systems/IRIX/6/gen_alias_sets @@ -25,7 +25,7 @@ echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/IRIX/6/gen_bootparam_sets +++ tiger-3.2.1/systems/IRIX/6/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/IRIX/6/gen_group_sets +++ tiger-3.2.1/systems/IRIX/6/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/IRIX/6/gen_passwd_sets +++ tiger-3.2.1/systems/IRIX/6/gen_passwd_sets @@ -15,11 +15,21 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# IRIX/4/gen_passwd_sets - 06/14/93 +# IRIX/6/gen_passwd_sets - 06/14/93 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$RM" ] && RM=`which rm` +[ -z "$SED" ] && SED=`which sed` + local=0 for parm do @@ -34,7 +44,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd > $WORKDIR/nis_passwd.$$ echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile --- tiger-3.2.1.orig/systems/IRIX/6/gen_services +++ tiger-3.2.1/systems/IRIX/6/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/IRIX/6/gendlclients +++ tiger-3.2.1/systems/IRIX/6/gendlclients @@ -17,6 +17,10 @@ # # IRIX/4/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# +# #----------------------------------------------------------------------------- # @@ -48,5 +52,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/Linux/0/CVS/Entries +++ tiger-3.2.1/systems/Linux/0/CVS/Entries @@ -1,16 +1,12 @@ /check/1.1/Fri Jun 14 08:51:31 2002// -/check.tbl/1.1/Fri Jun 14 08:51:31 2002// /check_cron/1.1/Fri Jun 14 08:51:31 2002// /config/1.2/Fri Aug 23 13:19:13 2002// /embedlist/1.1/Fri Jun 14 08:51:31 2002// /facl.strict/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// /gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// -/gen_cron.old/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// @@ -24,3 +20,5 @@ /services.save/1.1/Fri Jun 14 08:51:31 2002// /suid_list/1.1/Fri Jun 14 08:51:31 2002// D/0.99.12//// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:53 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:54 2004// --- tiger-3.2.1.orig/systems/Linux/0/gen_bootparam_sets +++ tiger-3.2.1/systems/Linux/0/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/Linux/0/gen_group_sets +++ tiger-3.2.1/systems/Linux/0/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $AWK '{print substr($0, 1, 255);}' | --- tiger-3.2.1.orig/systems/Linux/1/CVS/Entries +++ tiger-3.2.1/systems/Linux/1/CVS/Entries @@ -1,14 +1,11 @@ /check/1.1/Fri Jun 14 08:51:31 2002// -/check.tbl/1.1/Fri Jun 14 08:51:31 2002// /check_cron/1.1/Fri Jun 14 08:51:31 2002// /embedlist/1.1/Fri Jun 14 08:51:31 2002// /facl.strict/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// /gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// @@ -23,3 +20,5 @@ /suid_list/1.1/Fri Jun 14 08:51:31 2002// D/0.99.12//// /config/1.2/Tue Aug 26 15:59:55 2003// +/gen_bootparam_sets/1.2/Tue Feb 24 19:15:55 2004// +/gen_group_sets/1.2/Tue Feb 24 19:15:56 2004// --- tiger-3.2.1.orig/systems/Linux/1/gen_bootparam_sets +++ tiger-3.2.1/systems/Linux/1/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/Linux/1/gen_group_sets +++ tiger-3.2.1/systems/Linux/1/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $AWK '{print substr($0, 1, 255);}' | --- tiger-3.2.1.orig/systems/Linux/2/CVS/Entries +++ tiger-3.2.1/systems/Linux/2/CVS/Entries @@ -1,15 +1,8 @@ /check_cron/1.3/Mon Apr 21 07:41:09 2003// -/check_lilo/1.3/Mon Apr 21 07:41:09 2003// -/check_network_config/1.2/Mon Apr 21 07:36:10 2003// -/check_patches/1.3/Mon Apr 21 07:36:48 2003// -/check_single/1.3/Mon Apr 21 07:41:09 2003// /deb_checkadvisories/1.3/Mon Apr 21 07:39:27 2003// /facl.strict/1.2/Mon Apr 21 07:41:09 2003// /gen_alias_sets/1.2/Mon Apr 21 07:41:09 2003// -/gen_bootparam_sets/1.2/Mon Apr 21 07:41:09 2003// /gen_export_sets/1.2/Mon Apr 21 07:41:09 2003// -/gen_group_sets/1.2/Mon Apr 21 07:41:09 2003// -/gen_inetd/1.2/Mon Apr 21 07:41:09 2003// /gen_services/1.2/Mon Apr 21 07:41:09 2003// /gendlclients/1.2/Mon Apr 21 07:41:09 2003// /getdisks/1.2/Mon Apr 21 07:41:09 2003// @@ -18,28 +11,34 @@ /rel_file_exp_list/1.1/Fri Jun 14 08:51:31 2002// /retrieve-advisories.pl/1.3/Mon Apr 21 07:41:09 2003// /services/1.1/Fri Jun 14 08:51:31 2002// -/services.old/1.1/Fri Jun 14 08:51:31 2002// /update_advisories.sh/1.3/Mon Apr 21 07:41:09 2003// /rh7.3.baseline/1.1/Wed Apr 23 20:27:10 2003// -/check.tbl/1.4/Fri May 9 23:43:41 2003// -/debian_advisories/1.4/Sun May 11 19:49:55 2003// /read_services.sh/1.3/Wed May 14 19:47:41 2003// -/check_inittab/1.4/Sat Aug 9 13:43:00 2003// -/check_rcumask/1.5/Sat Aug 9 13:44:30 2003// /embedlist/1.2/Wed Aug 13 12:07:18 2003// /file_access_list/1.3/Wed Aug 13 01:27:08 2003// -/gen_mounts/1.3/Wed Aug 13 12:08:36 2003// /sgid_list/1.2/Tue Aug 12 23:35:59 2003// /signatures/1.2/Sat Aug 9 12:38:41 2003// /suid_list/1.2/Tue Aug 12 23:34:37 2003// -/check_passwdspec/1.2/Fri Aug 29 01:18:04 2003// -/check/1.11/Fri Aug 29 01:19:29 2003// -/gen_passwd_sets/1.7/Wed Sep 3 21:32:07 2003// -/deb_checkmd5sums/1.8/Fri Sep 19 00:01:24 2003// -/check_listeningprocs/1.6/Fri Sep 19 00:13:52 2003// -/config/1.17/Fri Sep 19 14:13:32 2003// -/deb_nopackfiles/1.9/Fri Sep 19 15:27:01 2003// -/gen_cron/1.5/Tue Sep 30 22:31:41 2003// -/check_release/1.4/Wed Oct 1 20:26:53 2003// -/check_neverlogin/1.3/Mon Oct 6 22:40:09 2003// +/check/1.12/Sun Oct 19 21:56:13 2003// +/check_inittab/1.5/Sun Oct 19 21:56:13 2003// +/gen_inetd/1.4/Tue Feb 24 19:16:28 2004// +/gen_bootparam_sets/1.4/Tue Feb 24 20:16:37 2004// +/check_rcumask/1.7/Wed Mar 3 12:23:40 2004// +/check_xinetd/1.6/Thu May 20 07:38:17 2004// +/check_neverlogin/1.4/Thu Mar 31 15:22:33 2005// +/check_patches/1.5/Thu Mar 31 15:22:33 2005// +/check_release/1.9/Thu Mar 31 15:22:33 2005// +/check_single/1.6/Thu Mar 31 15:22:33 2005// +/deb_nopackfiles/1.12/Thu Mar 31 15:22:33 2005// +/gen_cron/1.8/Thu Mar 31 15:22:40 2005// +/gen_group_sets/1.6/Thu Mar 31 15:22:40 2005// +/check_lilo/1.10/Thu Mar 31 15:25:39 2005// +/check_network_config/1.6/Sat Apr 16 22:26:32 2005// +/debian_advisories/1.10/Sat Apr 16 22:33:51 2005// +/check_listeningprocs/1.8/Sat May 14 10:52:44 2005// +/deb_checkmd5sums/1.17/Sat May 14 10:52:45 2005// +/config/1.28/Sat May 14 11:05:43 2005// +/check_passwdspec/1.10/Sat May 14 11:36:37 2005// +/gen_mounts/1.16/Fri Jul 22 16:07:53 2005// +/gen_passwd_sets/1.16/Thu Aug 4 17:16:36 2005// D --- tiger-3.2.1.orig/systems/Linux/2/check_xinetd +++ tiger-3.2.1/systems/Linux/2/check_xinetd @@ -0,0 +1,280 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2003 Michael Sconzo, Javier Fernandez-Sanguino Peña, +# Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_xinetd - 02/11/2003 +# +# Checks which xinetd services are enabled or disabled. +# +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# 01/15/2004 - jfs - Fixed syntax error (at least in RH 8) and added TODO +# 11/19/2003 - jfs - Linux-specific version based on patch from Ryan +# Bradetich which introduces many more checks for services and +# configuration (but still more is needed). Added many TODOs. +# 08/19/2003 - jfs - Allow override of XINETDCONF and fix error +# 08/12/2003 - jfs - Now write messages for disabled services too. Also +# fixed some errors. +# 08/11/2003 - jfs - Fixed dependancies. Now uses XINETDFILE instead of +# hardcoding the location. Added additional checks +# to avoid errors and use message instead of echo. +# +#----------------------------------------------------------------------------- +# TODO: +# +# - this script can emit false positives for services that are redirected +# (i.e. no 'server' flag but a 'redirect' flag) +# - it could warn for servers that are not restricted by TCP wrappers +# (nees to check if server = tcpd) +# - should check whether some services use log_on_failure or log_on_success +# - info for services that are chrooted (server = chroot) +# - do not warn for services which are bound to 127.0.0.1? +# - xinetd checks should determine if insecure services are active or +# running as root when not needed. +# - should check the server binaries it points to. Are they properly +# owned? +# - consider generating a file based on the xinetd.conf similar to +# how it's done with GEN_INETD_SERVICES +# - it could also check vs the tiger's provided operating system's +# XINETDFILE to determine changes in services just as check_inetd does +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} +. $basedir/config + +. $BASEDIR/initdefs +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallcmds LS || exit 1 + haveallfiles BASEDIR || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ +haveallcmds LS || exit 1 +haveallfiles BASEDIR || exit 1 + +echo +echo "# Performing check of 'xinetd' related services..." + +# Set the default location for xinetd.conf if not specified. +[ -z "$XINETDCONF" ] && XINETDCONF="/etc/xinetd.conf" + +check_file_perms() +{ + getpermit $1 | + while read _namefile _owner _group ur uw ux gr gw gx or ow ox suid sgid stk + do + eval "case \"$_owner\" in + $Tiger_ROOT_PATH_OK_Owners) + ;; + *) + message FAIL inet020f \"\" \"$_namefile does not have proper ownership (owned by $_owner).\" + ;; + esac" + + [ "$ur$uw$ux$gr$gw$gx$or$ow$ox" != '110000000' ] && \ + message WARN inet017w "" "$_namefile permissions are not 600." + + eval "case \"$_group\" in + $Tiger_ROOT_PATH_OK_Group_Write) + gw=0 + esac" + + [ "$gw" != '0' ] && \ + message WARN inet018w "" "$_namefile has non-administrative group ($_group) write access." + + [ "$ow" != '0' ] && \ + message ALERT inet019a "" "$_namefile public write access." + done +} + +parse_service_block() +{ + service=$1 + enabled='Y' + proto='all' + + while read line + do + line="${line%%\#*}" + [ -z "$line" ] && continue + + line=`echo $line` + attrib="${line%% *}" + + case "$attrib" in + flags) + for flag in $line + do + [ $flag = 'DISABLE' ] && enabled='N' + done + ;; + + disable) + [ "${line##* }" = 'yes' ] && enabled='N' + ;; + + protocol) + proto=${line#*= } + ;; + \}) + break + ;; + esac + done + + if [ "$service" = 'rexd' -a $enabled = 'Y' ]; then + message FAIL inet006f "" "'rexd' service is enabled, consider disabling it." + elif [ "$service" = 'exec' -a $enabled = 'Y' ]; then + message FAIL inet006f "" "'$service' service is enabled, consider disabling it." + elif [ "$service" = 'sysstat' -a $enabled = 'Y' ]; then + message WARN inet012w "" "'sysstat' service is enabled, consider disabling it." + elif [ "$service" = 'netstat' -a $enabled = 'Y' ]; then + message WARN inet013w "" "'netstat' service is enabled, consider disabling it." + elif [ "$service" = 'linuxconf' -a $enabled = 'Y' ]; then + message WARN inet026w "" "'linuxconf' service is enabled, consider disabling it." + elif [ "$service" = 'auth' -a $enabled = 'Y' ]; then + message WARN inet027w "" "The 'identd or auth' service is enabled, consider disabling it." + elif [ "$service" = 'telnet' -a $enabled = 'Y' ]; then + message WARN inet098w "" "The 'telnet' server is enabled, consider using ssh instead." + elif [ "$service" = 'ftp' -a $enabled = 'Y' ]; then + message WARN inet098w "" "The 'ftp' server is enabled, consider using ssh/sftp instead." + elif [ "$service" = 'login' -a $enabled = 'Y' ]; then + message WARN inet098w "" "The 'login' server is enabled, consider using ssh/sftp instead." + elif [ "$service" = 'shell' -a $enabled = 'Y' ]; then + message WARN inet098w "" "The 'rsh' server is enabled, consider using ssh/sftp instead." + elif [ "$service" = 'tftp' -a $enabled = 'Y' ]; then + message WARN inet022w "" "The 'tftpd' server is enabled, consider disabling it" + elif [ "$service" = 'finger' -a $enabled = 'Y' ]; then + message WARN inet023w "" "The 'finger' server is enabled, consider disabling it" + elif [ "$service" = 'rusers' -a $enabled = 'Y' ]; then + message WARN inet024w "" "The 'rusers' server is enabled, consider disabling it" + elif [ "$service" = 'echo' -a $proto = 'udp' -a $enabled = 'Y' ]; then + message WARN inet025w "" "The 'echo' udp server is enabled, consider disabling it" + elif [ "$service" = 'chargen' -a $proto = 'udp' -a $enabled = 'Y' ]; then + message WARN inet025w "" "The 'chargen' udp server is enabled, consider disabling it" + fi +} + +parse_defaults_block() +{ + logging='N' + + while read line + do + line="${line%%\#*}" + [ -z "$line" ] && continue + + line=`echo $line` + attrib="${line%% *}" + + case "$attrib" in + log_*) + logging='Y' + ;; + \}) + break; + ;; + esac + done + + [ $logging != 'Y' ] && + message WARN inet100w "" "xinetd is not configured with logging enabled." +} + +parse_file() +{ + file=$1 + + while read line + do + line="${line%%\#*}" + [ -z "$line" ] && continue + + line=`echo $line` + attrib="${line%% *}" + + case "$attrib" in + includedir) + [ $file = $XINETDCONF ] && dirs="$dirs ${line#* }" + continue + ;; + + defaults) + parse_defaults_block + continue + ;; + + service) + parse_service_block ${line#* } + continue + ;; + esac + done < $file +} + +# Does the XINETDCONF file exist? +[ ! -r "$XINETDCONF" ] && exit 0 + +check_file_perms $XINETDCONF +parse_file $XINETDCONF + +for dir in $dirs +do + [ ! -d "$dir/" ] && { + message FAIL xnet002f "The directory ($dir) included by $XINETDCONF is not a directory." + continue + } + + $LS $dir/ 2>/dev/null | + while read path + do + check_file_perms $dir/$path + parse_file $dir/$path + done +done --- tiger-3.2.1.orig/systems/Linux/2/check +++ tiger-3.2.1/systems/Linux/2/check @@ -19,6 +19,7 @@ # # Checks for Linux systems # +# Linux/2/check - 10/15/2003 - jfs - Removed bashishm (Debian bug #215896) # Linux/2/check - 04/23/2003 - jfs # Removed CC dependancy, added TODO # Debian specific checks moved into an if and check.tbl cleared @@ -133,7 +134,7 @@ # The following scripts have been added to provide new checks # specific to the Debian system, written by Javier Fernandez-Sanguino # -if [ "$LXDISTRIBUTION" == "debian" ]; then +if [ "$LXDISTRIBUTION" = "debian" ]; then # The following checks, for the moment, work only for Debian but # they could be generalised (there is a tigerrc variable for them) --- tiger-3.2.1.orig/systems/Linux/2/check_inittab +++ tiger-3.2.1/systems/Linux/2/check_inittab @@ -20,6 +20,7 @@ # 04.25.2001 # Javier Fernandez-Sanguino # +# 10/19/2003 - jfs - Fixed check to avoid false positives (Debian Bug #215872) # 08/09/2003 - jfs - Improved checked (might give false positives if comments # where used) # 07/25/2002 - jfs - Changed TigerInstallDir to . @@ -73,10 +74,13 @@ haveallfiles BASEDIR WORKDIR || exit 1 if [ -r /etc/inittab ] ; then - CTRALTDEL_STRING="^ctraltdel:/sbin/shutdown" - $GREP "$CTRALTDEL_STRING" /etc/inittab 1> /dev/null - if [ $? -eq 1 ] + $GREP shutdown /etc/inittab | $GREP -v ^# | $AWK -F : '{ print $2, $3, $4'} | + while read runlevels key command +# Inittab is made up of four fields: name, runlevels, key and command + do + if [ $key = "ctrlaltdel" -a -n "`echo $command |$GREP shutdown`" ] then - message FAIL lin007w "" "Normal users can reboot the system through ctrl+alt+del" + message FAIL lin007w "" "Normal users can reboot the system through ctrl+alt+del in runlevels $runlevels" fi + done fi --- tiger-3.2.1.orig/systems/Linux/2/check_lilo +++ tiger-3.2.1/systems/Linux/2/check_lilo @@ -24,6 +24,12 @@ # 07/25/2002 jfs # Changed TigerInstallDir to . # Changed -e to -r and 'find' to 'access' in the error msg. +# 10/19/2003 jfs - Applied patch from Ryan Bradetich to work in SuSE systems. +# 11/18/2003 jfs - Fixed typo (Debian bug #221470) +# 01/15/2004 jfs - Fixed dependancies +# 12/27/2004 jfs - Fixed grub.conf naming (Debian bug #286641) +# 03/21/2005 jfs Only run if running on the x86 architecture +# (Debian bug #288737) # #----------------------------------------------------------------------------- # @@ -60,15 +66,20 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds AWK CAT COMM GEN_INETD_SETS GEN_SERVICES_SETS GREP JOIN LS RM SORT TAIL UNIQ || exit 1 + haveallcmds GREP RM UNAME EGREP || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." exit 0 } #------------------------------------------------------------------------ -haveallcmds AWK CAT COMM GEN_INETD_SETS GEN_SERVICES_SETS GREP JOIN LS RM SORT TAIL UNIQ || exit 1 +haveallcmds GREP RM UNAME EGREP || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 + +machine=`$UNAME -m` +# Only applies to the x86 architecture: +[ -z "`echo $machine | $EGREP 'i.86$'`" ] && exit 0 + echo echo "# Checking boot loader file permissions..." found="N" @@ -104,8 +115,18 @@ fi -file=/boot/grub/grub.conf -if [ -r $file ] +if [ -r /etc/grub.conf ] ; then + # SuSE uses /etc/grub.conf. + file=/etc/grub.conf +elif [ -r /boot/grub/menu.lst ] ; then + # Debian uses /boot/grub/menu.lst + file=/boot/grub/menu.lst +else + # for other Linux systems + file=/boot/grub/grub.conf +fi + +if [ -r "$file" ] then found="Y" @@ -115,11 +136,11 @@ if [ $rgr -eq 1 -o $rgw -eq 1 -o $rgx -eq 1 ] then - message WARN boot02 "" "The configuration file grub.conf has group permissions. Should be 0600" + message WARN boot02 "" "The configuration file $file has group permissions. Should be 0600" fi if [ $ror -eq 1 -o $row -eq 1 -o $rox -eq 1 ] then - message FAIL boot02 "" "The configuration file grub.conf has world permissions. Should be 0600" + message FAIL boot02 "" "The configuration file $file has world permissions. Should be 0600" fi done @@ -130,5 +151,7 @@ fi [ "$found" != 'Y' ] && { - message WARN boot03 "" "Could not access lilo.conf or grub.conf" + message WARN boot03w "" "Could not access LILO's or Grub's configuration file" } + +exit 0 --- tiger-3.2.1.orig/systems/Linux/2/check_listeningprocs +++ tiger-3.2.1/systems/Linux/2/check_listeningprocs @@ -17,6 +17,9 @@ # # check_listeningprocs - 08/23/2001 # +# 05/15/2005 jfs Proper check for processes in loopback (Debian Bug #307695) +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) # 09/19/2003 - jfs - Allow empty okprocess and okprocessuser with the patch # provided by Nicolas François. Also added patch improving the # use of NETSTAT and LSOF. Information gathered by both is piped to @@ -160,11 +163,11 @@ # TODO This should change into a function since it's used twice in the # code [ -n "$okprocess" ] && \ - isokprocess=`eval "case $proc in ${okprocess}) echo \"yes\" ;; \ + isokprocess=`eval "case \"$proc\" in ${okprocess}) echo \"yes\" ;; \ *) echo \"no\" ;; esac"` # Probably redundant since this is done already at the top [ -n "$okprocessusers" ] && \ - isokuser=`eval "case $user in ${okprocessusers}) echo \"yes\" ;; \ + isokuser=`eval "case \"$user\" in ${okprocessusers}) echo \"yes\" ;; \ *) echo \"no\" ;; esac"` if [ "$isokprocess" = "no" ] ; then if [ "$isokuser" = "yes" ] ; then @@ -172,7 +175,7 @@ message WARN lin002i "" "The process \`$proc' is listening on socket $socket ($type) on $address interface." || \ message INFO lin002i "" "The process \`$proc' is listening on socket $socket ($type) on $address interface." else - [ "$address" != "127.0.0.1" ] && { + [ "$address" != "loopback" ] && { message WARN lin003w "" "The process \`$proc' is listening on socket $socket ($type on $address interface) is run by $user." } fi # of if okuser --- tiger-3.2.1.orig/systems/Linux/2/check_network_config +++ tiger-3.2.1/systems/Linux/2/check_network_config @@ -21,6 +21,11 @@ # 11/25/2002 jfs - Initial version derived from Hispasec's bulletin # (which is based on documentation online) # 15/04/2003 jfs - Changed ERROR into FAIL +# 10/15/2003 jfs - Return '1' instead of '-1' (Debian bug #215891) +# 04/16/2005 jfs - Fixed check of ICMP redirects (Debian bug #304957). +# Also fixed call to message so that everything appears +# in one line. +# 04/17/2005 jfs - Added check for local firewall rules # # References: # http://www.linuxsecurity.com/articles/network_security_article-4528.html @@ -88,9 +93,9 @@ read_if_exist() { # Reads a file if it exists -# Otherwise returns -1 +# Otherwise returns 1 file=$1 - value=-1 + value=1 [ -f $1 ] && value=`$CAT $file` return $value } @@ -140,32 +145,60 @@ # Now start checking and sending messages [ $icmp_echo_ignore -eq 0 ] && \ - message INFO lin009i "The system is configured to answer ICMP ECHO requests" + message INFO lin009i "" "The system is configured to answer ICMP ECHO requests" [ $icmp_broadcast_ignore -eq 0 ] && \ - message FAIL lin010f "The system is configured to answer to ICMP broadcasts" + message FAIL lin010f "" "The system is configured to answer to ICMP broadcasts" [ $icmp_bogus_error -eq 0 ] && \ - message FAIL lin011f "The system is configured to answer bogus errors" + message FAIL lin011f "" "The system is configured to answer bogus errors" -[ $icmp_redirect -eq 0 -o $icmp_redirect_def -eq 0 ] && \ - message WARN lin012w "The system accepts ICMP redirection messages" +[ $icmp_redirect -eq 1 -o $icmp_redirect_def -eq 1 ] && \ + message WARN lin012w "" "The system accepts ICMP redirection messages" [ $tcp_syncookies -eq 0 ] && \ - message FAIL lin013f "The system is not protected against Syn flooding attacks" + message FAIL lin013f "" "The system is not protected against Syn flooding attacks" [ $rp_filter_all -eq 0 -o $rp_filter_def -eq 0 ] && \ - message FAIL lin014f "The system permits the transmission of IP packets with invalid addresses" + message FAIL lin014f "" "The system permits the transmission of IP packets with invalid addresses" [ $ip_fwd -eq 1 ] && \ - message WARN lin015w "The system has IP forwarding enabled" + message WARN lin015w "" "The system has IP forwarding enabled" [ $ip_source_route_all -eq 1 -o $ip_source_route_def -eq 1 ] && \ - message FAIL lin016f "The system permits source routing from incoming packets" + message FAIL lin016f "" "The system permits source routing from incoming packets" [ $log_martian_all -eq 0 -o $log_martian_def -eq 0 ] && \ - message WARN lin017w "The system is not configured to log suspicious (martian) packets" + message WARN lin017w "" "The system is not configured to log suspicious (martian) packets" # TODO: add a test that is useful for post-2.2 kernels [ $ip_weak_end -eq 0 ] && \ - message WARN lin018w "The system implements weak end host RFC" + message WARN lin018w "" "The system implements weak end host RFC" + +# Check if there is (at least) and + +haveallcmds CMP IPTABLES && { + iptablesrules=$WORKDIR/ipt.$$ + iptablesempty=$WORKDIR/iptempt.$$ + safe_temp $iptablesrules $iptablesempty + trap 'delete $iptablesrules $iptablesempty; exit 1;' 1 2 3 15 + + $IPTABLES -nL 2>/dev/null >>$iptablesrules + if [ -s "$iptablesrules" ]; then + $CAT >>$iptablesempty < /dev/null $APT -s upgrade | $GREP "^Inst" | awk '{print $2}' > $tmplog if [ -s $tmplog ] then - message FAIL ptch02 "" "apt-get reports following packages not up to date:" + message FAIL ptch02f "" "apt-get reports following packages not up to date:" while read filename do echo " $filename" @@ -117,6 +117,6 @@ delete $tmplog fi else - message WARN ptch04 "" "Can't find patch management tool." + message WARN ptch04w "" "Can't find patch management tool." fi --- tiger-3.2.1.orig/systems/Linux/2/check_rcumask +++ tiger-3.2.1/systems/Linux/2/check_rcumask @@ -17,6 +17,9 @@ # # check_rcumask - Sat May 18 17:50:00 CEST 2002 # +# Check_rcumask - 10/15/2004 - jfs - Proper warning if no umask settings +# are defined (Debian bug #234661) +# Check_rcumask - 10/15/2003 - jfs - Removed bashishm (Debian bug #215896) # check_rcumask - 07/25/2002 - jfs # Changed TigerInstallDir to . # check_rcumask - 09/10/2002 - jfs @@ -112,7 +115,7 @@ message FAIL misc017f '' "The umask setting in $file for the init scripts is insecure" - elif [ $Occurance == 2 ]; then + elif [ "$Occurance" = 2 ]; then Foundumask=1 UMASK1=`$GREP umask $file \ | $EXPAND \ @@ -127,6 +130,8 @@ [ $UMASK1 != 002 -a $UMASK1 != 022 -o $UMASK2 != 002 -a $UMASK2 != 022 ] && message FAIL misc017f '' "The umask setting in $file for the init scripts is insecure" + elif [ "$Occurance" = 0 ]; then + message WARN misc021w "" "There are no umask entries in $file" else message WARN misc018w '' "There are more than 2 umask entries in $file" @@ -136,6 +141,6 @@ done -if [ $Foundumask -eq 0 ]; then +if [ "$Foundumask" -eq 0 ]; then message WARN misc019w "" "There are no umask settings for init.d scripts" fi --- tiger-3.2.1.orig/systems/Linux/2/check_release +++ tiger-3.2.1/systems/Linux/2/check_release @@ -20,6 +20,16 @@ # Paul Telford # 07/25/2002 jfs Changed TigerInstallDir to . # 10/01/2003 jfs Fixed message calls +# 11/09/2003 jfs Removed typeset bashism and updated RedHat versions so +# only 7.1 or greater are consider current (Debian Bug 219764) +# 01/15/2004 jfs Updated RedHat version (now it's 9 or greater), but +# added a note regarding Progeny support... +# 03/21/2005 jfs Use EGREP instead of grep -E +# +#----------------------------------------------------------------------------- +# TODO: +# - Support more distributions (SuSE, Mandrake...) +# - Add support to RedHat Enterprise distributions? # #----------------------------------------------------------------------------- # @@ -56,7 +66,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds AWK CAT CUT GEN_INETD_SETS GEN_SERVICES_SETS GREP JOIN LS RM SORT TAIL UNIQ || exit 1 + haveallcmds CUT EGREP RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." @@ -66,24 +76,34 @@ echo echo "# Checking OS release..." -haveallcmds AWK CAT CUT GREP JOIN LS RM SORT TAIL UNIQ || exit 1 +haveallcmds CUT EGREP RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 if [ -e /etc/redhat-release ] then REDHAT_VERSION=`$CUT -f5 -d' ' /etc/redhat-release` - typeset -i MAJOR=`echo $REDHAT_VERSION | $CUT -d. -f1` - typeset -i MINOR=`echo $REDHAT_VERSION | $CUT -d. -f2` - if [ $MAJOR -lt 6 ] - then - message FAIL osv001 "" "Out of date Redhat Linux version $REDHAT_VERSION" - - elif [ $MAJOR -eq 6 -a $MINOR -lt 2 ] - then - message FAIL osv001 "" "Out of date Redhat Linux version $REDHAT_VERSION" - return - fi - + $EGREP "[A-Za-z]" $REDHAT_VERSION 1> /dev/null + if [ $? -eq 1 ] + then + MAJOR=`echo $REDHAT_VERSION | $CUT -d. -f1` + MINOR=`echo $REDHAT_VERSION | $CUT -d. -f2` + # Note: RedHat 9 EOL is April 30th, 2004. + # Also notice that Progeny does provide official support + # for 7.2, 7.3, 8.0 and 9.0 starting January 1, 2004 + # (but only for x86) see http://transition.progeny.com/ + if [ $MAJOR -lt 9 ] + then + message FAIL osv001f "" "Out of date Redhat Linux version $REDHAT_VERSION" + +# elif [ $MAJOR -eq X -a $MINOR -lt X ] +# then +# message FAIL osv001f "" "Out of date Redhat Linux version $REDHAT_VERSION" +# return + fi + else + message WARN osv004w "" "Unreleased RedHat Linux version \`$REDHAT_VERSION'" + fi + # Debian seems to put either a number or a codename in their # version file so we have to check for both. elif [ -e /etc/debian_version ] @@ -91,29 +111,29 @@ # these are the codenames for the older debian releases # if we see any of them we know we fail right away DEBIAN_VERSION=`$CUT -f1 -d' ' /etc/debian_version` - $GREP -E "hamm|bo|rex|buzz" /etc/debian_version 2> /dev/null + $EGREP "hamm|bo|rex|buzz" /etc/debian_version 2> /dev/null if [ $? -eq 0 ] then - message FAIL osv002 "" "Out of date Debian GNU/Linux version" + message FAIL osv002f "" "Out of date Debian GNU/Linux version" else - $CUT -f1 -d' ' /etc/debian_version | $GREP -E "[A-Za-z]" 1> /dev/null + $CUT -f1 -d' ' /etc/debian_version | $EGREP "[A-Za-z]" 1> /dev/null if [ $? -eq 1 ] then - typeset -i MAJOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 1` - typeset -i MINOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 2` + MAJOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 1` + MINOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 2` if [ "$MAJOR" -lt 3 ] then - message FAIL osv002 "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'" + message FAIL osv002f "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'" elif [ "$MAJOR" -eq 3 -a "$MINOR" -lt 0 ] then - message FAIL osv002 "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'" + message FAIL osv002f "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'" fi else - message WARN osv004 "" "Unreleased Debian GNU/Linux version \`$DEBIAN_VERSION'" + message WARN osv004w "" "Unreleased Debian GNU/Linux version \`$DEBIAN_VERSION'" fi fi else - message WARN osv003 "" "This check only works for Redhat and Debian" + message WARN osv003w "" "This check only works for Redhat and Debian" fi --- tiger-3.2.1.orig/systems/Linux/2/check_single +++ tiger-3.2.1/systems/Linux/2/check_single @@ -21,6 +21,9 @@ # Paul Telford # 07/25/2002 jfs Changed -e lilo.conf to -r lilo.conf # Changed TigerInstallDir to . +# 01/15/2004 jfs Fixed dependancies +# 03/21/2005 jfs Only run if running on the x86 architecture +# (Debian bug #288737) # #----------------------------------------------------------------------------- # @@ -57,7 +60,7 @@ # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { - haveallcmds AWK CAT COMM GEN_INETD_SETS GEN_SERVICES_SETS GREP JOIN LS RM SORT TAIL UNIQ || exit 1 + haveallcmds GREP RM UNAME EGREP || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." @@ -65,10 +68,15 @@ } #------------------------------------------------------------------------ +haveallcmds GREP RM UNAME EGREP || exit 1 +haveallfiles BASEDIR WORKDIR || exit 1 + +machine=`$UNAME -m` +# Only applies to the x86 architecture: +[ -z "`echo $machine | $EGREP 'i.86$'`" ] && exit 0 + echo echo "# Checking for single user-mode password..." -haveallcmds AWK CAT COMM GEN_INETD_SETS GEN_SERVICES_SETS GREP JOIN LS RM SORT TAIL UNIQ || exit 1 -haveallfiles BASEDIR WORKDIR || exit 1 # if we find a boot-loader password, great. # If not, look for single-user mode password in inittab @@ -92,6 +100,6 @@ $GREP "$SULOGIN_STRING" /etc/inittab 1> /dev/null if [ $? -eq 1 ] then - message FAIL sum001 "" "Recommend addition to /etc/inittab: $SULOGIN_STRING" + message FAIL sum001f "" "Recommend addition to /etc/inittab: $SULOGIN_STRING" fi fi --- tiger-3.2.1.orig/systems/Linux/2/config +++ tiger-3.2.1/systems/Linux/2/config @@ -42,6 +42,12 @@ # for findcmd() to work # Linux/2/config - 09/19/2003 - jfs - Define UUID (otherwise the new check # of script permissions in initdefs will not work) +# Linux/2/config - 11/19/2003 - jfs - Define REALPATH and SNEFRU to $BINDIR +# and removed paths from findcmd() (patch from Ryan Bradetich) +# Linux/2/config - 01/11/2004 - rbrad - Add OMNIBACK_CELLSERVER and NTPCONF +# Linux/2/config - 01/15/2004 - jfs - Add XINETDCONF and INETDCONF +# Linux/2/config - 03/31/2005 - jfs - Changed GROUPC to GROUPSS +# Linux/2/config - 04/17/2005 - jfs - Added IPTABLES and CMP # #----------------------------------------------------------------------------- @@ -73,7 +79,7 @@ { CMD=$1 - SRCH=/usr/lib/tiger/bin:/usr/local/lib/tiger/bin:/bin:/usr/bin:/usr/sbin:/sbin:/usr/lib:/usr/lib/tiger/bin:/usr/local/bin:/usr/local/sbin + SRCH=/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin SAVEIFS=$IFS IFS=: @@ -112,6 +118,7 @@ WC=`findcmd wc` TEE=`findcmd tee` COLUMN=`findcmd column` +CMP=`findcmd cmp` GREP=`findcmd grep` EGREP=`findcmd egrep` @@ -123,11 +130,14 @@ HOSTALLOW=/etc/hosts.allow HOSTDENY=/etc/hosts.deny IFCONFIG=`findcmd ifconfig` +IP=`findcmd ip` +NETSTAT=`findcmd netstat` +IPTABLES=`findcmd iptables` HEAD=`findcmd head` MV=`findcmd mv` TR=`findcmd tr` JOIN=`findcmd join` -GROUPC=`findcmd groups` +GROUPSS=`findcmd groups` FILECMD=`findcmd file` UNIQ=`findcmd uniq` BASENAME=`findcmd basename` @@ -142,14 +152,19 @@ # send appropiate headers MAILER=`findcmd sendmail` [ -z "$MAILER" ] && MAILER=`findcmd mail` -DPKG=`findcmd dpkg` -NETSTAT=`findcmd netstat` LSOF=`findcmd lsof` MD5SUM=`findcmd md5sum` -REALPATH=`findcmd realpath` +if [ -f "$BINDIR/realpath" ]; then + REALPATH=$BINDIR/realpath +else + REALPATH=`findcmd realpath` +fi PWD=`findcmd pwd` -AUTORPM=`findcmd autorpm` +# Package management tools +DPKG=`findcmd dpkg` APT=`findcmd apt-get` +RPM=`findcmd rpm` +AUTORPM=`findcmd autorpm` # Silent grep SGREP="$EGREP -s" X=`$EGREP -s : /etc/passwd 2>&1 | $TAIL -1` @@ -160,7 +175,11 @@ SGREP="$BASEDIR/util/sgrep" } } -SNEFRU=`findcmd snefru` +if [ -f "$BINDIR/snefru" ]; then + SNEFRU=$BINDIR/snefru +else + SNEFRU=`findcmd snefru` +fi MD5=`findcmd md5` [ -z "$MD5" -a -n "$MD5SUM" ] && MD5=$MD5SUM PWCK=`findcmd pwck` @@ -172,23 +191,16 @@ LASTLOG=`findcmd lastlog` TEST=`findcmd test` -# Test which options should we use -__lsver=`$LS --version | $GREP fileutils | $SED -e "s/.*4\.\([[:digit:]]*\).*/\1/"` LSGROUP="-l" -[ -n "$__lsver" ] && [ $__lsver -lt 10 ] && { - # Since fileutils 4.10, -g doesn't show the owner. In GNU's ls the - # group is shown unless -G is used - LSGROUP="-lg" -} # -L to show file instead of symlink LSLINK="-L" export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED -export SORT COMM TAIL MV TR JOIN GROUPC FILECMD UNIQ BASENAME HEAD -export CHMOD CHOWN LN PASTE DPKG LSOF NETSTAT MD5SUM CUT +export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME HEAD +export CHMOD CHOWN LN PASTE LSOF MD5SUM CUT COLUMN CMP export SNEFRU MD5 REALPATH PWCK GRPCK CHAGE MESG DIFF WC -export PWD AUTORPM APT ID EXPAND LASTLOG TEST TEE COLUMN -export TCPD HOSTALLOW HOSTDENY IFCONFIG +export PWD DPKG RPM AUTORPM APT ID EXPAND LASTLOG TEST TEE +export TCPD HOSTALLOW HOSTDENY IFCONFIG IP IPTABLES NETSTAT UNAME=`findcmd uname` @@ -216,6 +228,10 @@ # Configuration files SENDMAILS="/usr/sbin/sendmail" SENDMAILCF="/etc/sendmail.cf" +if [ -f /etc/mail/sendmail.cf ] +then + SENDMAILCF="/etc/mail/sendmail.cf" +fi export SENDMAILS SENDMAILCF LOGINDEF="/etc/login.defs" @@ -234,6 +250,19 @@ fi # TODO: Check if all distributions use this configuration file +# Inet and xinet configuration files +INETDCONF="/etc/inetd.conf" +XINETDCONF="/etc/xinetd.conf" +export INETDCONF XINETDCONF + + +# For omniback server configuration +OMNIBACK_CELLSERVER="/usr/omni/config/cell/cell_server" +export OMNIBACK_CELLSERVER + +# Location of the NTPCONF file +NTPCONF=/etc/ntp.conf +export NTPCONF # For Yellow Pages services YPCAT=`findcmd ypcat` @@ -244,7 +273,11 @@ YPSERVER="NO" ($PS aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES" -export WAIT YPCAT YPSERVER + +# To check databases +GETENT=`findcmd getent` + +export WAIT YPCAT YPSERVER GETENT # Directories MAILSPOOL=/var/spool/mail @@ -260,8 +293,10 @@ fi # ETCSHELLS=/etc/shells +CRONALLOW=/etc/cron.allow +CRONDENY=/etc/cron.deny # -export MAILSPOOL CRONSPOOL ETCSHELLS +export MAILSPOOL CRONSPOOL ETCSHELLS CRONALLOW CRONDENY LOCFS=ext2 export LOCFS --- tiger-3.2.1.orig/systems/Linux/2/deb_checkmd5sums +++ tiger-3.2.1/systems/Linux/2/deb_checkmd5sums @@ -17,6 +17,24 @@ # # Linux/deb_checkmd5sums - 24/08/2001 # +# 04/29/2005 - jfs - Prevent issues with /usr/bin/[ by adjusting GREP calls +# (Debian bug #305484) +# 03/21/2005 - jfs - Do not warn if the md5 file is not present in the list file +# (Debian bug #299935) +# 09/13/2004 - jfs - Exclude usr/share/doc better (Debian bug 264111) +# 05/01/2004 - jfs - Fixed previous patch. +# 02/26/2004 - jfs - Included patch from Chung-chieh Shan which avoids failure +# on packages whose names contain "." +# (Debian bug 234811) +# 12/20/2003 - jfs - Included patch from Nicholas François which makes +# Tiger not warn on manpage files purged through localepurge +# (Debian bug 219728) +# 11/16/2003 - jfs - Applied patch from Philipp Weis to avoid giving +# warnings for /usr/bin/[ by using the -F switch (Debian bug 220946) +# 11/09/2003 - jfs - Avoid running into problems if the GREP calls to +# diversions or conffiles return more than one line. +# Also detect local diversion (Debian bug 219727) +# 10/15/2003 - jfs - Modify ERROR to FAIL # 09/19/2003 - jfs - Add patches provided by Nicolas François to # greatly improve the speed and add support for diversions # (Debian Bug #162589). @@ -90,38 +108,42 @@ if [ -f "$LOCALEPURGE" ] then LOCALENOPURGED=`for l in $($GREP ^[a-z] $LOCALEPURGE); do echo -n "$l\|"; done; echo -n "[^a-z].*"` - SED_REMOVE_LOCALES_PURGED="/ usr\/share\/locale\/\($LOCALENOPURGED\)\//p;/ usr\/share\/locale/d" + SED_REMOVE_LOCALES_PURGED="/ usr\/share\/locale\/\($LOCALENOPURGED\)\//p;/ usr\/share\/locale\//d;/ usr\/share\/man\/\($LOCALENOPURGED\|man[1-9]\)\//p;/ usr\/share\/man\//d" fi DIVERSIONS="/var/lib/dpkg/diversions" if [ -d /var/lib/dpkg/info ] then -for md5file in /var/lib/dpkg/info/*md5sums +for md5file in /var/lib/dpkg/info/*.md5sums do [ -f $md5file ] && [ ! -L $md5file ] && { # Note: We do not check things in /usr/share/doc # to speed things up - $GREP -v "/share/doc" "$md5file" | + $GREP -v " usr/share/doc/" "$md5file" | # Also don't check purged locales $SED -e "$SED_REMOVE_LOCALES_PURGED" | $SED -e "s/^\(.*\) \(.*\)/\1 \/\2/" | $MD5SUM -c 2>&1 | $SED -e "s/^.*md5sum: MD5 check failed for '\(.*\)'/DIFF \1/; s/^.*md5sum: can't open \(.*\)/ERR \1/" | { while read err file do - package=`echo "$md5file" | $CUT -f 1 -d "."` - package=`$BASENAME $package` + package=`$BASENAME "$md5file" ".md5sums"` case $err in DIFF) # don't check diverted now - [ -z `$GREP -x "$file" $DIVERSIONS` ] && + [ -z "`$GREP -sxF \"$file\" $DIVERSIONS`" ] && # and conffiles should not be checked either - [ -z `$GREP -sx "$file" /var/lib/dpkg/info/$package.conffiles` ] && - message ERROR lin005e "" "Installed file \`$file' checksum differs from installed package '$package'." + [ -z "`$GREP -sxF \"$file\" /var/lib/dpkg/info/$package.conffiles`" ] && + [ -n "`$GREP -sxF \"$file" /var/lib/dpkg/info/$package.list`" ] && + message FAIL lin005f "" "Installed file \`$file' checksum differs from installed package '$package'." # TODO: Consider including the MD5sum to this message # notice that some integrity checkers might do this already too. ;; ERR) - message ERROR lin006e "" "Cannot check file \"$file\" provided by \"$package\" since it does not exist" +# Check if this package + if $GREP -sqxF \"$file\" /var/lib/dpkg/info/$package.list ; then + + message FAIL lin006f "" "Cannot check file \"$file\" provided by \"$package\" since it does not exist" + fi ;; esac done @@ -131,7 +153,8 @@ # check diversions /usr/sbin/dpkg-divert --list | # extract the file diverted, the backup file and the diverter package -$SED -e 's/diversion of \(\/.*\) to \(\/.*\) by \(.*\)$/\1;\2;\3/' | { +$SED -e 's/diversion of \(\/.*\) to \(\/.*\) by \(.*\)$/\1;\2;\3/' \ + -e 's/local diversion of \(\/.*\) to \(\/.*\)$/\1;\2;LOCAL/' | { saveIFS=$IFS IFS=";" while read file tofile bypackage @@ -149,13 +172,13 @@ [ -f "/var/lib/dpkg/info/$2.md5sums" ] && { md5pck=`$GREP "$(echo "$file\$"|$CUT -c2-)" /var/lib/dpkg/info/$2.md5sums | $CUT -f 1 -d " "` [ -n "$md5pck" ] && { - if [ -f $currentfile ] + if [ -f "$currentfile" ] then md5sum=`$MD5SUM "$currentfile" | $CUT -f 1 -d " "` [ "$md5pck" != "$md5sum" ] && - message ERROR lin005e "" "Installed file \`$currentfile' checksum differs from installed packages." + message FAIL lin005f "" "Installed file \`$currentfile' checksum differs from installed packages." else - message ERROR lin006e "" "Cannot check file \"$currentfile\" provided by \"$2\" since it does not exist" + message FAIL lin006f "" "Cannot check file \"$currentfile\" provided by \"$2\" since it does not exist" fi } } --- tiger-3.2.1.orig/systems/Linux/2/deb_nopackfiles +++ tiger-3.2.1/systems/Linux/2/deb_nopackfiles @@ -17,6 +17,13 @@ # # Linux/deb_nopackfiles - 23/08/2001 # +# 03/21/2005 - jfs - Remove uneeded {} (Debian bug #297889). Also redirect +# find stderr to /dev/null +# 06/18/2004 - jfs - Made the dirlist variable so that directories which +# do not exist are not checked for (Debian bug #254574) +# Also fixed SED check so that only binary files (and not +# directories) are included in the list which should slightly +# improve performance. # 09/19/2003 - jfs - Applied patch from Nicolas François which enhances # speed by restricting the list of files to check to those that # will be, indeed, tested and improved DPKG dependancy. @@ -101,12 +108,32 @@ safe_temp $WORKDIR/dpkg-packages.list trap 'delete $WORKDIR/dpkg-packages.list ; exit 1' 1 2 3 15 +# NOTE: /usr/lib cannot be added here since quite a lot of packages +# will compile stuff there on installation which will result in a +# tremendous report... +dirlist="/bin/ /usr/bin/ /sbin/ /usr/sbin/ /lib/ /usr/X11R6/bin/" +okdirs="" +# Before using dirlist we are going to determine which values are ok +for dir in $dirlist ; do + if [ -d $dir ] ; then + if [ -n "$okdirs" ] ; then + okdirs="$dir $okdirs" + else + okdirs=$dir + fi + fi +done +dirlist=$okdirs +if [ -z "$dirlist" ]; then + message ERROR linxxxw "" "None of the configured directories are available" + exit 1 +fi # We have two options here, use dpkg (non-optimal but on the safe side) # or use grep (optimal but not on the safe side) if [ "$Tiger_DPKG_Optimize" = "N" ] then - $FIND /bin/ /usr/bin/ /sbin/ /usr/sbin/ /lib/ /usr/X11R6/bin/ -type f 2>/dev/null| + $FIND $dirlist -type f 2>/dev/null| # We are not using -maxdepth here, but we could... while read file do @@ -117,9 +144,10 @@ done else # Alternative (optimal but not following standard way) + seddirlist=`echo $dirlist | $SED -e 's/ /\\\\\|/g; s/\//\\\\\//g'` $FIND /var/lib/dpkg/info -name "*.list" -exec cat {} \; | - $SED -ne "/^\/\(bin\|usr\/bin\|sbin\|usr\/sbin\|lib\|usr\/X11R6\/bin\)/p" > $WORKDIR/dpkg-packages.list - $FIND /bin/ /usr/bin/ /sbin/ /usr/sbin/ /lib/ /usr/X11R6/bin/ -type f | + $SED -ne "/^\($seddirlist\)/p" > $WORKDIR/dpkg-packages.list + $FIND $dirlist -type f 2>/dev/null | # We are not using -maxdepth here, but we could... $GREP -x -F -v -f $WORKDIR/dpkg-packages.list | # To search for diversions @@ -130,3 +158,5 @@ done delete $WORKDIR/dpkg-packages.list fi + +exit 0 --- tiger-3.2.1.orig/systems/Linux/2/debian_advisories +++ tiger-3.2.1/systems/Linux/2/debian_advisories @@ -2924,149 +2924,149 @@ libpng2-dev 1.0.5-1.1 powerpc DSA-213-1 libpng 2002-12-19 libpng2 1.0.5-1.1 sparc DSA-213-1 libpng 2002-12-19 libpng2-dev 1.0.5-1.1 sparc DSA-213-1 libpng 2002-12-19 -kdict 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 alpha DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 arm DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 i386 DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 ia64 DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 hppa DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 m68k DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 mips DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 mipsel DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 powerpc DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 s390 DSA-214-1 kdnetwork 2002-12-20 -kdict 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -kit 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -klisa 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -kmail 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -knewsticker 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -knode 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -korn 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -kppp 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -ksirc 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -ktalkd 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -libkdenetwork1 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -libmimelib-dev 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 -libmimelib1 2.2.2-14.5 sparc DSA-214-1 kdnetwork 2002-12-20 +kdict 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 alpha DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 arm DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 i386 DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 ia64 DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 hppa DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 m68k DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 mips DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 mipsel DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 powerpc DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 s390 DSA-214-1 kdenetwork 2002-12-20 +kdict 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +kit 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +klisa 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +kmail 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +knewsticker 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +knode 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +korn 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +kppp 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +ksirc 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +ktalkd 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +libkdenetwork1 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +libmimelib-dev 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 +libmimelib1 2.2.2-14.5 sparc DSA-214-1 kdenetwork 2002-12-20 cyrus-admin 1.5.19-2.2 alpha DSA-215-1 cyrus-imapd 2002-12-23 cyrus-common 1.5.19-2.2 alpha DSA-215-1 cyrus-imapd 2002-12-23 cyrus-dev 1.5.19-2.2 alpha DSA-215-1 cyrus-imapd 2002-12-23 @@ -3217,67 +3217,259 @@ typespeed 0.4.1-2.1 powerpc DSA-217-1 typespeed 2002-12-27 typespeed 0.4.1-2.1 s390 DSA-217-1 typespeed 2002-12-27 typespeed 0.4.1-2.1 sparc DSA-217-1 typespeed 2002-12-27 +metrics 1.0-1.1 alpha DSA-279-1 metrics 2003-4-7 +metrics 1.0-1.1 arm DSA-279-1 metrics 2003-4-7 +metrics 1.0-1.1 i386 DSA-279-1 metrics 2003-4-7 +metrics 1.0-1.1 m68k DSA-279-1 metrics 2003-4-7 +metrics 1.0-1.1 powerpc DSA-279-1 metrics 2003-4-7 +metrics 1.0-1.1 sparc DSA-279-1 metrics 2003-4-7 +w3m 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 +w3m 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 +w3m-img 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 +w3m-ssl 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 +gkrellm-newsticker 0.3-3.1 alpha DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 arm DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 i386 DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 ia64 DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 hppa DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 m68k DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 mips DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 mipsel DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 powerpc DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 s390 DSA-294-1 gkrellm-newsticker 2003-4-23 +gkrellm-newsticker 0.3-3.1 sparc DSA-294-1 gkrellm-newsticker 2003-4-23 +kdict 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 +kdict 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +kit 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +klisa 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +kmail 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +knewsticker 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +knode 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +korn 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +kppp 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +ksirc 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +ktalkd 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +libkdenetwork1 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +libmimelib-dev 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +libmimelib1 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 +tcpdump 3.6.2-2.3 alpha DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 arm DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 i386 DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 ia64 DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 hppa DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 m68k DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 mips DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 mipsel DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 powerpc DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 s390 DSA-255-1 tcpdump 2003-2-27 +tcpdump 3.6.2-2.3 sparc DSA-255-1 tcpdump 2003-2-27 +libgtop-daemon 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 +libgtop-daemon 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 +libgtop-dev 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 +libgtop1 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 +imp 2.2.6-5.1 all DSA-229-1 imp 2003-1-15 squirrelmail 1.2.6-1.3 all DSA-220-1 squirrelmail 2003-1-2 -mhonarc 2.4.4-1.3 all DSA-221-1 mhonarc 2003-1-3 -mhonarc 2.5.2-1.3 all DSA-221-1 mhonarc 2003-1-3 -xpdf 0.90-8.1 alpha DSA-222-1 xpdf 2003-1-6 -xpdf 0.90-8.1 arm DSA-222-1 xpdf 2003-1-6 -xpdf 0.90-8.1 i386 DSA-222-1 xpdf 2003-1-6 -xpdf 0.90-8.1 m68k DSA-222-1 xpdf 2003-1-6 -xpdf 0.90-8.1 powerpc DSA-222-1 xpdf 2003-1-6 -xpdf 0.90-8.1 sparc DSA-222-1 xpdf 2003-1-6 -xpdf-common 1.00-3.1 all DSA-222-1 xpdf 2003-1-6 -xpdf 1.00-3.1 all DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 alpha DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 alpha DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 arm DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 arm DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 i386 DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 i386 DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 ia64 DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 ia64 DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 hppa DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 hppa DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 m68k DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 m68k DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 mips DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 mips DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 mipsel DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 mipsel DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 powerpc DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 powerpc DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 s390 DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 s390 DSA-222-1 xpdf 2003-1-6 -xpdf-reader 1.00-3.1 sparc DSA-222-1 xpdf 2003-1-6 -xpdf-utils 1.00-3.1 sparc DSA-222-1 xpdf 2003-1-6 -geneweb 4.06-2 alpha DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 alpha DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 arm DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 arm DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 i386 DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 i386 DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 ia64 DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 ia64 DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 hppa DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 hppa DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 m68k DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 m68k DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 mips DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 mips DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 mipsel DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 mipsel DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 powerpc DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 powerpc DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 s390 DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 s390 DSA-223-1 geneweb 2003-1-7 -geneweb 4.06-2 sparc DSA-223-1 geneweb 2003-1-7 -gwtp 4.06-2 sparc DSA-223-1 geneweb 2003-1-7 -xpdf-i 0.90-8.1 alpha DSA-226-1 xpdf-i 2003-1-10 -xpdf-i 0.90-8.1 arm DSA-226-1 xpdf-i 2003-1-10 -xpdf-i 0.90-8.1 i386 DSA-226-1 xpdf-i 2003-1-10 -xpdf-i 0.90-8.1 m68k DSA-226-1 xpdf-i 2003-1-10 -xpdf-i 0.90-8.1 powerpc DSA-226-1 xpdf-i 2003-1-10 -xpdf-i 0.90-8.1 sparc DSA-226-1 xpdf-i 2003-1-10 +pptpd 1.0.0-4.2 alpha DSA-295-1 pptpd 2003-4-30 +pptpd 1.0.0-4.2 arm DSA-295-1 pptpd 2003-4-30 +pptpd 1.0.0-4.2 i386 DSA-295-1 pptpd 2003-4-30 +pptpd 1.0.0-4.2 m68k DSA-295-1 pptpd 2003-4-30 +pptpd 1.0.0-4.2 powerpc DSA-295-1 pptpd 2003-4-30 +pptpd 1.0.0-4.2 sparc DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 alpha DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 arm DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 i386 DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 ia64 DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 hppa DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 m68k DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 mips DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 mipsel DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 powerpc DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 s390 DSA-295-1 pptpd 2003-4-30 +pptpd 1.1.2-1.4 sparc DSA-295-1 pptpd 2003-4-30 ldap-gateways 2.0.23-6.3 alpha DSA-227-1 openldap2 2003-01-13 ldap-utils 2.0.23-6.3 alpha DSA-227-1 openldap2 2003-01-13 libldap2 2.0.23-6.3 alpha DSA-227-1 openldap2 2003-01-13 @@ -3333,7 +3525,40 @@ libldap2 2.0.23-6.3 sparc DSA-227-1 openldap2 2003-01-13 libldap2-dev 2.0.23-6.3 sparc DSA-227-1 openldap2 2003-01-13 slapd 2.0.23-6.3 sparc DSA-227-1 openldap2 2003-01-13 -imp 2.2.6-5.1 all DSA-229-1 imp 2003-1-15 +sendmail-doc 8.12.3-6.6 all DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 alpha DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 alpha DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 arm DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 arm DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 i386 DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 i386 DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 ia64 DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 ia64 DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 hppa DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 hppa DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 m68k DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 m68k DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 mips DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 mips DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 mipsel DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 mipsel DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 powerpc DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 powerpc DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 s390 DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 s390 DSA-384-1 sendmail 2003-9-17 +libmilter-dev 8.12.3-6.6 sparc DSA-384-1 sendmail 2003-9-17 +sendmail 8.12.3-6.6 sparc DSA-384-1 sendmail 2003-9-17 +epic4 1.1.2.20020219-2.1 alpha DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 arm DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 i386 DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 ia64 DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 hppa DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 m68k DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 mips DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 mipsel DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 powerpc DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 s390 DSA-298-1 epic4 2003-5-2 +epic4 1.1.2.20020219-2.1 sparc DSA-298-1 epic4 2003-5-2 cupsys 1.0.4-12.1 alpha DSA-232-1 cupsys 2003-1-20 cupsys-bsd 1.0.4-12.1 alpha DSA-232-1 cupsys 2003-1-20 libcupsys1 1.0.4-12.1 alpha DSA-232-1 cupsys 2003-1-20 @@ -3424,2394 +3649,505 @@ cupsys-pstoraster 1.1.14-4.4 sparc DSA-232-1 cupsys 2003-1-20 libcupsys2 1.1.14-4.4 sparc DSA-232-1 cupsys 2003-1-20 libcupsys2-dev 1.1.14-4.4 sparc DSA-232-1 cupsys 2003-1-20 -cvs-doc 1.10.7-9.2 all DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 alpha DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 arm DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 i386 DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 m68k DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 powerpc DSA-233-1 cvs 2003-1-21 -cvs 1.10.7-9.2 sparc DSA-233-1 cvs 2003-1-21 -kcmlinuz 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -lilo-config 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 -kcmlinuz 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -kcron 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -kpackage 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -ksysv 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -kuser 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -kwuftpd 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -secpolicy 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 -kamera 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 -kamera 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kcoloredit 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kfract 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kghostview 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kiconedit 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kooka 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kpaint 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kruler 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -ksnapshot 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kview 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -libkscan-dev 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -libkscan1 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 -kdict 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 alpha DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 arm DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 i386 DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 ia64 DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 hppa DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 m68k DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 mips DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 mipsel DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 powerpc DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 s390 DSA-237-1 kdenetwork 2003-1-22 -kdict 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -kit 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -klisa 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -kmail 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -knewsticker 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -knode 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -korn 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -kppp 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -ksirc 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -ktalkd 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -libkdenetwork1 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -libmimelib-dev 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -libmimelib1 2.2.2-14.6 sparc DSA-237-1 kdenetwork 2003-1-22 -kandy 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 -kandy 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 -kdepim-dev 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 -kdepim-libs 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 -korganizer 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 -kpilot 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 -kapptemplate 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 -kdepalettes 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 -kdesdk-doc 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 -kdesdk-scripts 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 -kbabel 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kbabel-dev 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kdesdk 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kexample 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kmtrace 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kspy 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kstartperf 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -poxml 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 -kdecarddecks 2.2.2-2.2 all DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 -kabalone 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kasteroids 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -katomic 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kbackgammon 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kbattleship 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kblackbox 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kjezz 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kjumpingcube 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -klines 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kmahjongg 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kmines 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -konquest 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kpat 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kpoker 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kreversi 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ksame 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kshisen 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ksirtet 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ksmiletris 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ksnake 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ksokoban 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kspaceduel 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ktron 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ktuberling 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -kwin4 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -libkdegames 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -lskat 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 -ark 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 -ark 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kab 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -karm 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kcalc 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kcharselect 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kdepasswd 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kdf 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kedit 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kfind 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kfloppy 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -khexedit 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kjots 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -klaptopdaemon 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kljettool 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -klpq 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -klprfax 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -knotes 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kpm 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -ktimer 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 -kdebase-doc 2.2.2-14.2 all DSA-242-1 kdebase 2003-1-24 -kdewallpapers 2.2.2-14.2 all DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 -kate 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kdebase 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kdebase-audiolibs 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kdebase-dev 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kdebase-libs 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kdm 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -konqueror 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -konsole 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -kscreensaver 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -libkonq-dev 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -libkonq3 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 -artsbuilder 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 -artsbuilder 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -kdemultimedia-dev 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -kmid 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -kmidi 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -kmix 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -kscd 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -libarts-mpeglib 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -mpeglib 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -noatun 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 -noffle 1.0.1-1.1 alpha DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 arm DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 i386 DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 ia64 DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 hppa DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 m68k DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 mips DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 mipsel DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 powerpc DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 s390 DSA-244-1 noffle 2003-1-27 -noffle 1.0.1-1.1 sparc DSA-244-1 noffle 2003-1-27 -courier-authpostgresql 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 -courier-authpostgresql 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 -courier-imap-ssl 1.4.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 -courier-mta-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 -courier-pop-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 -courier-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 -hypermail 2.1.3-2.0 alpha DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 arm DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 i386 DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 ia64 DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 hppa DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 m68k DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 mips DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 mipsel DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 powerpc DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 s390 DSA-248-1 hypermail 2003-1-31 -hypermail 2.1.3-2.0 sparc DSA-248-1 hypermail 2003-1-31 -w3m 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 alpha DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 arm DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 i386 DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 hppa DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 m68k DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 mips DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 mipsel DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 powerpc DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 s390 DSA-251-1 w3m 2003-2-14 -w3m 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 -w3m-img 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 -w3m-ssl 0.3-2.4 sparc DSA-251-1 w3m 2003-2-14 -slocate 2.6-1.3.1 alpha DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 arm DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 i386 DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 ia64 DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 hppa DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 m68k DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 mips DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 mipsel DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 powerpc DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 s390 DSA-252-1 slocate 2003-2-21 -slocate 2.6-1.3.1 sparc DSA-252-1 slocate 2003-2-21 -traceroute-nanog 6.0-2.2 alpha DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.0-2.2 arm DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.0-2.2 i386 DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.0-2.2 m68k DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.0-2.2 powerpc DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.0-2.2 sparc DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 alpha DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 arm DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 i386 DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 ia64 DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 hppa DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 m68k DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 mips DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 mipsel DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 powerpc DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 s390 DSA-254-1 traceroute-nanog 2003-2-27 -traceroute-nanog 6.1.1-1.2 sparc DSA-254-1 traceroute-nanog 2003-2-27 -tcpdump 3.6.2-2.3 alpha DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 arm DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 i386 DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 ia64 DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 hppa DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 m68k DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 mips DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 mipsel DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 powerpc DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 s390 DSA-255-1 tcpdump 2003-2-27 -tcpdump 3.6.2-2.3 sparc DSA-255-1 tcpdump 2003-2-27 -sendmail 8.9.3-25 alpha DSA-257-1 sendmail 2003-3-4 -sendmail 8.9.3-25 arm DSA-257-1 sendmail 2003-3-4 -sendmail 8.9.3-25 i386 DSA-257-1 sendmail 2003-3-4 -sendmail 8.9.3-25 powerpc DSA-257-1 sendmail 2003-3-4 -sendmail 8.9.3-25 sparc DSA-257-1 sendmail 2003-3-4 -sendmail-doc 8.12.3-5 all DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 alpha DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 alpha DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 hppa DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 hppa DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 i386 DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 i386 DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 ia64 DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 ia64 DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 mips DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 mips DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 mipsel DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 mipsel DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 powerpc DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 powerpc DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 s390 DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 s390 DSA-257-1 sendmail 2003-3-4 -sendmail 8.12.3-5 sparc DSA-257-1 sendmail 2003-3-4 -libmilter-dev 8.12.3-5 sparc DSA-257-1 sendmail 2003-3-4 -tcpdump 3.6.2-2.4 alpha DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 arm DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 i386 DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 ia64 DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 hppa DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 m68k DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 mips DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 mipsel DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 powerpc DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 s390 DSA-261-1 tcpdump 2003-3-14 -tcpdump 3.6.2-2.4 sparc DSA-261-1 tcpdump 2003-3-14 -libnetpbm9 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 -libnetpbm9-dev 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 -netpbm 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 -lxr 0.3-3 alpha DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 arm DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 i386 DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 ia64 DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 hppa DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 m68k DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 mips DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 mipsel DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 powerpc DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 s390 DSA-264-1 lxr 2003-3-19 -lxr 0.3-3 sparc DSA-264-1 lxr 2003-3-19 -lpr 0.48-1.2 alpha DSA-267-1 lpr 2003-3-24 -lpr 0.48-1.2 arm DSA-267-1 lpr 2003-3-24 -lpr 0.48-1.2 i386 DSA-267-1 lpr 2003-3-24 -lpr 0.48-1.2 m68k DSA-267-1 lpr 2003-3-24 -lpr 0.48-1.2 powerpc DSA-267-1 lpr 2003-3-24 -lpr 0.48-1.2 sparc DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 alpha DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 arm DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 i386 DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 ia64 DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 hppa DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 m68k DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 mips DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 mipsel DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 powerpc DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 s390 DSA-267-1 lpr 2003-3-24 -lpr 2000.05.07-4.3 sparc DSA-267-1 lpr 2003-3-24 -mutt 1.3.28-2.1 alpha DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 alpha DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 arm DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 arm DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 i386 DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 i386 DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 ia64 DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 ia64 DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 hppa DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 hppa DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 m68k DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 m68k DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 mips DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 mips DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 mipsel DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 mipsel DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 powerpc DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 powerpc DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 s390 DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 s390 DSA-268-1 mutt 2003-3-25 -mutt 1.3.28-2.1 sparc DSA-268-1 mutt 2003-3-25 -mutt-utf8 1.3.28-2.1 sparc DSA-268-1 mutt 2003-3-25 -dietlibc-doc 0.12-2.5 all DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 alpha DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 arm DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 i386 DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 mips DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 mipsel DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 powerpc DSA-272-1 dietlibc 2003-3-28 -dietlibc-dev 0.12-2.5 sparc DSA-272-1 dietlibc 2003-3-28 -kerberos4kth-clients 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-docs 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 -kerberos4kth-services 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 -kerberos4kth-user 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 -kerberos4kth-x11 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 -kerberos4kth1 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-clients-x 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-dev-common 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-kdc 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-kip 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -kerberos4kth-servers-x 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -libacl1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -libkadm1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -libkdb-1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -libkrb-1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 -mutt 1.2.5-5.2 alpha DSA-274-1 mutt 2003-3-28 -mutt 1.2.5-5.2 arm DSA-274-1 mutt 2003-3-28 -mutt 1.2.5-5.2 i386 DSA-274-1 mutt 2003-3-28 -mutt 1.2.5-5.2 m68k DSA-274-1 mutt 2003-3-28 -mutt 1.2.5-5.2 powerpc DSA-274-1 mutt 2003-3-28 -mutt 1.2.5-5.2 sparc DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 alpha DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 alpha DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 arm DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 arm DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 i386 DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 i386 DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 ia64 DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 ia64 DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 hppa DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 hppa DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 m68k DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 m68k DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 mips DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 mips DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 mipsel DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 mipsel DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 powerpc DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 powerpc DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 s390 DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 s390 DSA-274-1 mutt 2003-3-28 -mutt 1.3.28-2.2 sparc DSA-274-1 mutt 2003-3-28 -mutt-utf8 1.3.28-2.2 sparc DSA-274-1 mutt 2003-3-28 -lpr-ppd 0.72-2.1 alpha DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 arm DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 i386 DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 ia64 DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 hppa DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 m68k DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 mips DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 mipsel DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 powerpc DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 s390 DSA-275-1 lpr-ppd 2003-4-2 -lpr-ppd 0.72-2.1 sparc DSA-275-1 lpr-ppd 2003-4-2 -apcupsd 3.8.5-1.1.1 alpha DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 arm DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 i386 DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 ia64 DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 hppa DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 m68k DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 mips DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 mipsel DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 powerpc DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 s390 DSA-277-1 apcupsd 2003-4-3 -apcupsd 3.8.5-1.1.1 sparc DSA-277-1 apcupsd 2003-4-3 -sendmail 8.9.3-26 alpha DSA-278-1 sendmail 2003-4-4 -sendmail 8.9.3-26 arm DSA-278-1 sendmail 2003-4-4 -sendmail 8.9.3-26 i386 DSA-278-1 sendmail 2003-4-4 -sendmail 8.9.3-26 m68k DSA-278-1 sendmail 2003-4-4 -sendmail 8.9.3-26 powerpc DSA-278-1 sendmail 2003-4-4 -sendmail 8.9.3-26 sparc DSA-278-1 sendmail 2003-4-4 -sendmail-doc 8.12.3-6.3 all DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 alpha DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 alpha DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 arm DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 arm DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 i386 DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 i386 DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 ia64 DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 ia64 DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 hppa DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 hppa DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 m68k DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 m68k DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 mips DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 mips DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 mipsel DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 mipsel DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 powerpc DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 powerpc DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 s390 DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 s390 DSA-278-1 sendmail 2003-4-4 -libmilter-dev 8.12.3-6.3 sparc DSA-278-1 sendmail 2003-4-4 -sendmail 8.12.3-6.3 sparc DSA-278-1 sendmail 2003-4-4 -metrics 1.0-1.1 alpha DSA-279-1 metrics 2003-4-7 -metrics 1.0-1.1 arm DSA-279-1 metrics 2003-4-7 -metrics 1.0-1.1 i386 DSA-279-1 metrics 2003-4-7 -metrics 1.0-1.1 m68k DSA-279-1 metrics 2003-4-7 -metrics 1.0-1.1 powerpc DSA-279-1 metrics 2003-4-7 -metrics 1.0-1.1 sparc DSA-279-1 metrics 2003-4-7 -samba-doc 2.0.7-5.1 all DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 -samba 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 -samba-common 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 -smbclient 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 -smbfs 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 -swat 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 -xftp 2.2-13.1 alpha DSA-281-1 moxftp 2003-4-8 -xftp 2.2-13.1 arm DSA-281-1 moxftp 2003-4-8 -xftp 2.2-13.1 i386 DSA-281-1 moxftp 2003-4-8 -xftp 2.2-13.1 m68k DSA-281-1 moxftp 2003-4-8 -xftp 2.2-13.1 powerpc DSA-281-1 moxftp 2003-4-8 -xftp 2.2-13.1 sparc DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 alpha DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 arm DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 i386 DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 ia64 DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 hppa DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 m68k DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 mips DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 mipsel DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 powerpc DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 s390 DSA-281-1 moxftp 2003-4-8 -xftp 2.2-18.1 sparc DSA-281-1 moxftp 2003-4-8 -glibc-doc 2.1.3-25 all DSA-282-1 glibc 2003-4-9 -i18ndata 2.1.3-25 all DSA-282-1 glibc 2003-4-9 -libnss1-compat 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 -libc6 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -libc6-dev 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -libc6-pic 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -libc6-prof 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 -libc6 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libc6-dev 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libc6-pic 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libc6-prof 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libnss1-compat 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 -libc6 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libc6-dev 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libc6-pic 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libc6-prof 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libnss1-compat 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 -libc6 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -libc6-dev 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -libc6-pic 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -libc6-prof 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 -libc6 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -libc6-dev 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -libc6-pic 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -libc6-prof 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -locales 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -nscd 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 -glibc-doc 2.2.5-11.5 all DSA-282-1 glibc 2003-4-9 -locales 2.2.5-11.5 all DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 alpha DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 ia64 DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 -libc6 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-dbg 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-dev 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-dev-sparc64 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-pic 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-prof 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -libc6-sparc64 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -nscd 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 -xfsdump 2.0.1-2 alpha DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 arm DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 i386 DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 ia64 DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 hppa DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 m68k DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 mips DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 mipsel DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 powerpc DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 s390 DSA-283-1 xfsdump 2003-4-11 -xfsdump 2.0.1-2 sparc DSA-283-1 xfsdump 2003-4-11 -kamera 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 -kamera 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kcoloredit 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kfract 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kghostview 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kiconedit 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kooka 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kpaint 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kruler 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -ksnapshot 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -kview 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -libkscan-dev 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -libkscan1 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 -lprng-doc 3.8.10-1.2 all DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 alpha DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 arm DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 i386 DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 ia64 DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 hppa DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 m68k DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 mips DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 mipsel DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 powerpc DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 s390 DSA-285-1 lprng 2003-4-14 -lprng 3.8.10-1.2 sparc DSA-285-1 lprng 2003-4-14 -epic 3.004-16.1 alpha DSA-287-1 epic 2003-4-15 -epic 3.004-16.1 arm DSA-287-1 epic 2003-4-15 -epic 3.004-16.1 i386 DSA-287-1 epic 2003-4-15 -epic 3.004-16.1 m68k DSA-287-1 epic 2003-4-15 -epic 3.004-16.1 powerpc DSA-287-1 epic 2003-4-15 -epic 3.004-16.1 sparc DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 alpha DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 arm DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 i386 DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 ia64 DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 hppa DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 m68k DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 mips DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 mipsel DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 powerpc DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 s390 DSA-287-1 epic 2003-4-15 -epic 3.004-17.1 sparc DSA-287-1 epic 2003-4-15 -rinetd 0.52-2.1 alpha DSA-289-1 rinetd 2003-4-17 -rinetd 0.52-2.1 arm DSA-289-1 rinetd 2003-4-17 -rinetd 0.52-2.1 i386 DSA-289-1 rinetd 2003-4-17 -rinetd 0.52-2.1 m68k DSA-289-1 rinetd 2003-4-17 -rinetd 0.52-2.1 powerpc DSA-289-1 rinetd 2003-4-17 -rinetd 0.52-2.1 sparc DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 alpha DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 arm DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 i386 DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 ia64 DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 hppa DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 m68k DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 mips DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 mipsel DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 powerpc DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 s390 DSA-289-1 rinetd 2003-4-17 -rinetd 0.61-1.1 sparc DSA-289-1 rinetd 2003-4-17 -ircii 20020322-1.1 alpha DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 arm DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 i386 DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 ia64 DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 hppa DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 m68k DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 mips DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 mipsel DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 powerpc DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 s390 DSA-291-1 ircii 2003-4-22 -ircii 20020322-1.1 sparc DSA-291-1 ircii 2003-4-22 -mime-support 3.9-1.3 all DSA-292-3 mime-support 2003-4-22,2003-4-30 -mime-support 3.18-1.3 all DSA-292-3 mime-support 2003-4-22,2003-4-30 -gkrellm-newsticker 0.3-3.1 alpha DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 arm DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 i386 DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 ia64 DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 hppa DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 m68k DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 mips DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 mipsel DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 powerpc DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 s390 DSA-294-1 gkrellm-newsticker 2003-4-23 -gkrellm-newsticker 0.3-3.1 sparc DSA-294-1 gkrellm-newsticker 2003-4-23 -pptpd 1.0.0-4.2 alpha DSA-295-1 pptpd 2003-4-30 -pptpd 1.0.0-4.2 arm DSA-295-1 pptpd 2003-4-30 -pptpd 1.0.0-4.2 i386 DSA-295-1 pptpd 2003-4-30 -pptpd 1.0.0-4.2 m68k DSA-295-1 pptpd 2003-4-30 -pptpd 1.0.0-4.2 powerpc DSA-295-1 pptpd 2003-4-30 -pptpd 1.0.0-4.2 sparc DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 alpha DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 arm DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 i386 DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 ia64 DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 hppa DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 m68k DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 mips DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 mipsel DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 powerpc DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 s390 DSA-295-1 pptpd 2003-4-30 -pptpd 1.1.2-1.4 sparc DSA-295-1 pptpd 2003-4-30 -kdebase-doc 2.2.2-14.4 all DSA-296-1 kdebase 2003-4-30 -kdewallpapers 2.2.2-14.4 all DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 -kate 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kdebase 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kdebase-audiolibs 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kdebase-dev 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kdebase-libs 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kdm 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -konqueror 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -konsole 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -kscreensaver 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -libkonq-dev 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -libkonq3 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 -epic4 1.1.2.20020219-2.1 alpha DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 arm DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 i386 DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 ia64 DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 hppa DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 m68k DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 mips DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 mipsel DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 powerpc DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 s390 DSA-298-1 epic4 2003-5-2 -epic4 1.1.2.20020219-2.1 sparc DSA-298-1 epic4 2003-5-2 -balsa 1.2.4-2.2 alpha DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 arm DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 i386 DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 ia64 DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 hppa DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 m68k DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 mips DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 mipsel DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 powerpc DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 s390 DSA-300-1 balsa 2003-5-6 -balsa 1.2.4-2.2 sparc DSA-300-1 balsa 2003-5-6 -libgtop-daemon 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 alpha DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 arm DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 i386 DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 ia64 DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 hppa DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 m68k DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 mips DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 mipsel DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 powerpc DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 s390 DSA-301-1 libgtop 2003-5-7 -libgtop-daemon 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 -libgtop-dev 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 -libgtop1 1.0.13-3.1 sparc DSA-301-1 libgtop 2003-5-7 -mysql-common 3.23.49-8.4 all DSA-303-1 mysql 2003-5-15 -mysql-doc 3.23.49-8.4 all DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 -libmysqlclient10 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 -libmysqlclient10-dev 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 -mysql-client 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 -mysql-server 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 -mysql-doc 3.22.32-6.4 all DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 alpha DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 alpha DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 arm DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 arm DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 i386 DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 i386 DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 m68k DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 m68k DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 powerpc DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 powerpc DSA-303-1 mysql 2003-5-15 -mysql-client 3.22.32-6.4 sparc DSA-303-1 mysql 2003-5-15 -mysql-server 3.22.32-6.4 sparc DSA-303-1 mysql 2003-5-15 -sendmail-doc 8.12.3-6.4 all DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 alpha DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 alpha DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 arm DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 arm DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 i386 DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 i386 DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 ia64 DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 ia64 DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 hppa DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 hppa DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 m68k DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 m68k DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 mips DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 mips DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 mipsel DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 mipsel DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 powerpc DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 powerpc DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 s390 DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 s390 DSA-305-1 sendmail 2003-5-15 -libmilter-dev 8.12.3-6.4 sparc DSA-305-1 sendmail 2003-5-15 -sendmail 8.12.3-6.4 sparc DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 alpha DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 arm DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 i386 DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 m68k DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 powerpc DSA-305-1 sendmail 2003-5-15 -sendmail 8.9.3-26.1 sparc DSA-305-1 sendmail 2003-5-15 -gzip 1.2.4-33.2 alpha DSA-308-1 gzip 2003-6-6 -gzip 1.2.4-33.2 arm DSA-308-1 gzip 2003-6-6 -gzip 1.2.4-33.2 i386 DSA-308-1 gzip 2003-6-6 -gzip 1.2.4-33.2 m68k DSA-308-1 gzip 2003-6-6 -gzip 1.2.4-33.2 powerpc DSA-308-1 gzip 2003-6-6 -gzip 1.2.4-33.2 sparc DSA-308-1 gzip 2003-6-6 +mysql-common 3.23.49-8.5 all DSA-381-1 mysql 2003-9-13 +mysql-doc 3.23.49-8.5 all DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 +libmysqlclient10 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 +libmysqlclient10-dev 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 +mysql-client 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 +mysql-server 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 +mah-jong 1.4-2 alpha DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 arm DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 i386 DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 ia64 DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 hppa DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 m68k DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 mips DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 mipsel DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 powerpc DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 s390 DSA-378-1 mah-jong 2003-9-7 +mah-jong 1.4-2 sparc DSA-378-1 mah-jong 2003-9-7 +libcgi-fast-perl 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 +perl-doc 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 +perl-modules 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 +libperl-dev 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 +perl 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 +perl-base 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 +perl-debug 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 +perl-suid 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 +glibc-doc 2.1.3-25 all DSA-282-1 glibc 2003-4-9 +i18ndata 2.1.3-25 all DSA-282-1 glibc 2003-4-9 +libnss1-compat 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 alpha DSA-282-1 glibc 2003-4-9 +libc6 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +libc6-dev 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +libc6-pic 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +libc6-prof 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 arm DSA-282-1 glibc 2003-4-9 +libc6 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libc6-dev 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libc6-pic 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libc6-prof 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libnss1-compat 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 i386 DSA-282-1 glibc 2003-4-9 +libc6 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libc6-dev 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libc6-pic 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libc6-prof 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libnss1-compat 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 m68k DSA-282-1 glibc 2003-4-9 +libc6 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +libc6-dev 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +libc6-pic 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +libc6-prof 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 powerpc DSA-282-1 glibc 2003-4-9 +libc6 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +libc6-dev 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +libc6-pic 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +libc6-prof 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +locales 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +nscd 2.1.3-25 sparc DSA-282-1 glibc 2003-4-9 +glibc-doc 2.2.5-11.5 all DSA-282-1 glibc 2003-4-9 +locales 2.2.5-11.5 all DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 alpha DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 arm DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 i386 DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 ia64 DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 hppa DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 m68k DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 mips DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 mipsel DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 powerpc DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 s390 DSA-282-1 glibc 2003-4-9 +libc6 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-dbg 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-dev 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-dev-sparc64 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-pic 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-prof 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +libc6-sparc64 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +nscd 2.2.5-11.5 sparc DSA-282-1 glibc 2003-4-9 +kerberos4kth-clients 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.0-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.0-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.0-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.0-2.2 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.0-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-docs 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 +kerberos4kth-services 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 +kerberos4kth-user 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 +kerberos4kth-x11 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 +kerberos4kth1 1.1-8-2.3 all DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 alpha DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 arm DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 i386 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 ia64 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 hppa DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 m68k DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 mips DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 mipsel DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 powerpc DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 s390 DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-clients-x 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-dev-common 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-kdc 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-kip 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +kerberos4kth-servers-x 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +libacl1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +libkadm1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +libkdb-1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +libkrb-1-kerberos4kth 1.1-8-2.3 sparc DSA-273-1 krb4 2003-3-28 +courier-authpostgresql 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 alpha DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 arm DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 i386 DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 ia64 DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 hppa DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 m68k DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 mips DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 mipsel DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 powerpc DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 s390 DSA-247-1 courier-ssl 2003-1-30 +courier-authpostgresql 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 +courier-imap-ssl 1.4.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 +courier-mta-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 +courier-pop-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 +courier-ssl 0.37.3-3.3 sparc DSA-247-1 courier-ssl 2003-1-30 +sendmail 8.9.3-26 alpha DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-26 arm DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-26 i386 DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-26 m68k DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-26 powerpc DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-26 sparc DSA-278-1 sendmail 2003-4-4 +sendmail-doc 8.12.3-6.3 all DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 alpha DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 alpha DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 arm DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 arm DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 i386 DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 i386 DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 ia64 DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 ia64 DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 hppa DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 hppa DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 m68k DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 m68k DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 mips DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 mips DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 mipsel DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 mipsel DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 powerpc DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 powerpc DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 s390 DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 s390 DSA-278-1 sendmail 2003-4-4 +libmilter-dev 8.12.3-6.3 sparc DSA-278-1 sendmail 2003-4-4 +sendmail 8.12.3-6.3 sparc DSA-278-1 sendmail 2003-4-4 +sendmail 8.9.3-25 alpha DSA-257-1 sendmail 2003-3-4 +sendmail 8.9.3-25 arm DSA-257-1 sendmail 2003-3-4 +sendmail 8.9.3-25 i386 DSA-257-1 sendmail 2003-3-4 +sendmail 8.9.3-25 powerpc DSA-257-1 sendmail 2003-3-4 +sendmail 8.9.3-25 sparc DSA-257-1 sendmail 2003-3-4 +sendmail-doc 8.12.3-5 all DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 alpha DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 alpha DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 hppa DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 hppa DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 i386 DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 i386 DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 ia64 DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 ia64 DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 mips DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 mips DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 mipsel DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 mipsel DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 powerpc DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 powerpc DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 s390 DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 s390 DSA-257-1 sendmail 2003-3-4 +sendmail 8.12.3-5 sparc DSA-257-1 sendmail 2003-3-4 +libmilter-dev 8.12.3-5 sparc DSA-257-1 sendmail 2003-3-4 +mhonarc 2.4.4-1.3 all DSA-221-1 mhonarc 2003-1-3 +mhonarc 2.5.2-1.3 all DSA-221-1 mhonarc 2003-1-3 cupsys 1.0.4-12.2 alpha DSA-317-1 cupsys 2003-6-11 cupsys-bsd 1.0.4-12.2 alpha DSA-317-1 cupsys 2003-6-11 libcupsys1 1.0.4-12.2 alpha DSA-317-1 cupsys 2003-6-11 @@ -5902,239 +4238,873 @@ cupsys-pstoraster 1.1.14-5 sparc DSA-317-1 cupsys 2003-6-11 libcupsys2 1.1.14-5 sparc DSA-317-1 cupsys 2003-6-11 libcupsys2-dev 1.1.14-5 sparc DSA-317-1 cupsys 2003-6-11 -typespeed 0.4.0-5.2 alpha DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.0-5.2 arm DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.0-5.2 i386 DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.0-5.2 m68k DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.0-5.2 powerpc DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.0-5.2 sparc DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 alpha DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 arm DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 i386 DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 ia64 DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 hppa DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 m68k DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 mips DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 mipsel DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 powerpc DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 s390 DSA-322-1 typespeed 2003-6-16 -typespeed 0.4.1-2.2 sparc DSA-322-1 typespeed 2003-6-16 -webfs 1.17.1 alpha DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 arm DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 i386 DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 ia64 DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 hppa DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 m68k DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 mips DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 mipsel DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 powerpc DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 s390 DSA-328-1 webfs 2003-6-19 -webfs 1.17.1 sparc DSA-328-1 webfs 2003-6-19 -tcptraceroute 1.2-2 alpha DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 arm DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 i386 DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 ia64 DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 hppa DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 m68k DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 mips DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 mipsel DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 powerpc DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 s390 DSA-330-1 tcptraceroute 2003-6-23 -tcptraceroute 1.2-2 sparc DSA-330-1 tcptraceroute 2003-6-23 +artsbuilder 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 alpha DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 arm DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 i386 DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 ia64 DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 hppa DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 m68k DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 powerpc DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 s390 DSA-243-1 kdemultimedia 2003-1-24 +artsbuilder 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +kdemultimedia-dev 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +kmid 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +kmidi 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +kmix 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +kscd 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +libarts-mpeglib 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +mpeglib 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 +noatun 2.2.2-8.2 sparc DSA-243-1 kdemultimedia 2003-1-24 mantis 0.17.1-3 all DSA-335-1 mantis 2003-6-28 -gtksee 0.5.0-6 alpha DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 arm DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 i386 DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 ia64 DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 hppa DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 m68k DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 mips DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 mipsel DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 powerpc DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 s390 DSA-337-1 gtksee 2003-6-29 -gtksee 0.5.0-6 sparc DSA-337-1 gtksee 2003-6-29 -traceroute-nanog 6.1.1-1.3 alpha DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 arm DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 i386 DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 ia64 DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 hppa DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 m68k DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 mips DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 mipsel DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 powerpc DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 s390 DSA-348-1 traceroute-nanog 2003-7-11 -traceroute-nanog 6.1.1-1.3 sparc DSA-348-1 traceroute-nanog 2003-7-11 -xfstt 1.2.1-3 alpha DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 arm DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 i386 DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 ia64 DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 hppa DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 m68k DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 mips DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 mipsel DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 powerpc DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 s390 DSA-360-1 xfstt 2003-8-1 -xfstt 1.2.1-3 sparc DSA-360-1 xfstt 2003-8-1 -libcgi-fast-perl 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 -perl-doc 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 -perl-modules 5.6.1-8.3 all DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 alpha DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 arm DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 i386 DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 ia64 DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 hppa DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 m68k DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 mips DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 mipsel DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 powerpc DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 s390 DSA-371-1 perl 2003-8-11 -libperl-dev 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 -perl 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 -perl-base 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 -perl-debug 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 -perl-suid 5.6.1-8.3 sparc DSA-371-1 perl 2003-8-11 -mah-jong 1.4-2 alpha DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 arm DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 i386 DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 ia64 DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 hppa DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 m68k DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 mips DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 mipsel DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 powerpc DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 s390 DSA-378-1 mah-jong 2003-9-7 -mah-jong 1.4-2 sparc DSA-378-1 mah-jong 2003-9-7 -libsane 1.0.7-4 alpha DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 alpha DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 arm DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 arm DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 i386 DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 i386 DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 ia64 DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 ia64 DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 hppa DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 hppa DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 m68k DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 m68k DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 mips DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 mips DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 mipsel DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 mipsel DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 powerpc DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 powerpc DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 s390 DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 s390 DSA-379-1 sane-backends 2003-9-11 -libsane 1.0.7-4 sparc DSA-379-1 sane-backends 2003-9-11 -libsane-dev 1.0.7-4 sparc DSA-379-1 sane-backends 2003-9-11 -mysql-common 3.23.49-8.5 all DSA-381-1 mysql 2003-9-13 -mysql-doc 3.23.49-8.5 all DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 alpha DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 arm DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 i386 DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 ia64 DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 hppa DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 m68k DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 mips DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 mipsel DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 powerpc DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 s390 DSA-381-1 mysql 2003-9-13 -libmysqlclient10 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 -libmysqlclient10-dev 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 -mysql-client 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 -mysql-server 3.23.49-8.5 sparc DSA-381-1 mysql 2003-9-13 -sendmail-doc 8.12.3-6.6 all DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 alpha DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 alpha DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 arm DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 arm DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 i386 DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 i386 DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 ia64 DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 ia64 DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 hppa DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 hppa DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 m68k DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 m68k DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 mips DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 mips DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 mipsel DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 mipsel DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 powerpc DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 powerpc DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 s390 DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 s390 DSA-384-1 sendmail 2003-9-17 -libmilter-dev 8.12.3-6.6 sparc DSA-384-1 sendmail 2003-9-17 -sendmail 8.12.3-6.6 sparc DSA-384-1 sendmail 2003-9-17 +epic 3.004-16.1 alpha DSA-287-1 epic 2003-4-15 +epic 3.004-16.1 arm DSA-287-1 epic 2003-4-15 +epic 3.004-16.1 i386 DSA-287-1 epic 2003-4-15 +epic 3.004-16.1 m68k DSA-287-1 epic 2003-4-15 +epic 3.004-16.1 powerpc DSA-287-1 epic 2003-4-15 +epic 3.004-16.1 sparc DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 alpha DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 arm DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 i386 DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 ia64 DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 hppa DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 m68k DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 mips DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 mipsel DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 powerpc DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 s390 DSA-287-1 epic 2003-4-15 +epic 3.004-17.1 sparc DSA-287-1 epic 2003-4-15 +hypermail 2.1.3-2.0 alpha DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 arm DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 i386 DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 ia64 DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 hppa DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 m68k DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 mips DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 mipsel DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 powerpc DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 s390 DSA-248-1 hypermail 2003-1-31 +hypermail 2.1.3-2.0 sparc DSA-248-1 hypermail 2003-1-31 +tcpdump 3.6.2-2.4 alpha DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 arm DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 i386 DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 ia64 DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 hppa DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 m68k DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 mips DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 mipsel DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 powerpc DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 s390 DSA-261-1 tcpdump 2003-3-14 +tcpdump 3.6.2-2.4 sparc DSA-261-1 tcpdump 2003-3-14 +slocate 2.6-1.3.1 alpha DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 arm DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 i386 DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 ia64 DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 hppa DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 m68k DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 mips DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 mipsel DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 powerpc DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 s390 DSA-252-1 slocate 2003-2-21 +slocate 2.6-1.3.1 sparc DSA-252-1 slocate 2003-2-21 +typespeed 0.4.0-5.2 alpha DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.0-5.2 arm DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.0-5.2 i386 DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.0-5.2 m68k DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.0-5.2 powerpc DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.0-5.2 sparc DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 alpha DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 arm DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 i386 DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 ia64 DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 hppa DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 m68k DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 mips DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 mipsel DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 powerpc DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 s390 DSA-322-1 typespeed 2003-6-16 +typespeed 0.4.1-2.2 sparc DSA-322-1 typespeed 2003-6-16 +libsane 1.0.7-4 alpha DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 alpha DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 arm DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 arm DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 i386 DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 i386 DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 ia64 DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 ia64 DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 hppa DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 hppa DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 m68k DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 m68k DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 mips DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 mips DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 mipsel DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 mipsel DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 powerpc DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 powerpc DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 s390 DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 s390 DSA-379-1 sane-backends 2003-9-11 +libsane 1.0.7-4 sparc DSA-379-1 sane-backends 2003-9-11 +libsane-dev 1.0.7-4 sparc DSA-379-1 sane-backends 2003-9-11 +xfstt 1.2.1-3 alpha DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 arm DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 i386 DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 ia64 DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 hppa DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 m68k DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 mips DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 mipsel DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 powerpc DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 s390 DSA-360-1 xfstt 2003-8-1 +xfstt 1.2.1-3 sparc DSA-360-1 xfstt 2003-8-1 +epic4 1.1.2.20020219-2.2 alpha DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 arm DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 i386 DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 ia64 DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 hppa DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 m68k DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 mips DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 mipsel DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 powerpc DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 s390 DSA-399-1 epic4 2003-11-10 +epic4 1.1.2.20020219-2.2 sparc DSA-399-1 epic4 2003-11-10 +kdebase-doc 2.2.2-14.2 all DSA-242-1 kdebase 2003-1-24 +kdewallpapers 2.2.2-14.2 all DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 alpha DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 arm DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 i386 DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 ia64 DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 hppa DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 m68k DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 mips DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 mipsel DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 powerpc DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 s390 DSA-242-1 kdebase 2003-1-24 +kate 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kdebase 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kdebase-audiolibs 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kdebase-dev 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kdebase-libs 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kdm 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +konqueror 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +konsole 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kscreensaver 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +libkonq-dev 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +libkonq3 2.2.2-14.2 sparc DSA-242-1 kdebase 2003-1-24 +kcmlinuz 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 alpha DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 arm DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +lilo-config 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 i386 DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 ia64 DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 hppa DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 m68k DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 mips DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 mipsel DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 powerpc DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 s390 DSA-234-1 kdeadmin 2003-1-22 +kcmlinuz 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +kcron 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +kpackage 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +ksysv 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +kuser 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +kwuftpd 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +secpolicy 2.2.2-7.2 sparc DSA-234-1 kdeadmin 2003-1-22 +lpr 0.48-1.2 alpha DSA-267-1 lpr 2003-3-24 +lpr 0.48-1.2 arm DSA-267-1 lpr 2003-3-24 +lpr 0.48-1.2 i386 DSA-267-1 lpr 2003-3-24 +lpr 0.48-1.2 m68k DSA-267-1 lpr 2003-3-24 +lpr 0.48-1.2 powerpc DSA-267-1 lpr 2003-3-24 +lpr 0.48-1.2 sparc DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 alpha DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 arm DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 i386 DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 ia64 DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 hppa DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 m68k DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 mips DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 mipsel DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 powerpc DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 s390 DSA-267-1 lpr 2003-3-24 +lpr 2000.05.07-4.3 sparc DSA-267-1 lpr 2003-3-24 +kdecarddecks 2.2.2-2.2 all DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 alpha DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 arm DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 i386 DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 ia64 DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 hppa DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 m68k DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 mips DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 mipsel DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 powerpc DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 s390 DSA-240-1 kdegames 2003-1-23 +kabalone 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kasteroids 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +katomic 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kbackgammon 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kbattleship 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kblackbox 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kjezz 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kjumpingcube 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +klines 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kmahjongg 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kmines 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +konquest 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kpat 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kpoker 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kreversi 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ksame 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kshisen 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ksirtet 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ksmiletris 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ksnake 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ksokoban 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kspaceduel 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ktron 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +ktuberling 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +kwin4 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +libkdegames 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +lskat 2.2.2-2.2 sparc DSA-240-1 kdegames 2003-1-23 +geneweb 4.06-2 alpha DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 alpha DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 arm DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 arm DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 i386 DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 i386 DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 ia64 DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 ia64 DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 hppa DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 hppa DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 m68k DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 m68k DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 mips DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 mips DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 mipsel DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 mipsel DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 powerpc DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 powerpc DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 s390 DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 s390 DSA-223-1 geneweb 2003-1-7 +geneweb 4.06-2 sparc DSA-223-1 geneweb 2003-1-7 +gwtp 4.06-2 sparc DSA-223-1 geneweb 2003-1-7 +kandy 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 alpha DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 arm DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 i386 DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 ia64 DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 m68k DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 mips DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 mipsel DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 powerpc DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 s390 DSA-238-1 kdepim 2003-1-23 +kandy 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 +kdepim-dev 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 +kdepim-libs 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 +korganizer 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 +kpilot 2.2.2-5.2 sparc DSA-238-1 kdepim 2003-1-23 +samba-doc 2.0.7-5.1 all DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 alpha DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 arm DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 i386 DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 m68k DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 powerpc DSA-280-1 samba 2003-4-7 +samba 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 +samba-common 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 +smbclient 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 +smbfs 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 +swat 2.0.7-5.1 sparc DSA-280-1 samba 2003-4-7 +noffle 1.0.1-1.1 alpha DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 arm DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 i386 DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 ia64 DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 hppa DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 m68k DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 mips DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 mipsel DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 powerpc DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 s390 DSA-244-1 noffle 2003-1-27 +noffle 1.0.1-1.1 sparc DSA-244-1 noffle 2003-1-27 +xfsdump 2.0.1-2 alpha DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 arm DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 i386 DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 ia64 DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 hppa DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 m68k DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 mips DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 mipsel DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 powerpc DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 s390 DSA-283-1 xfsdump 2003-4-11 +xfsdump 2.0.1-2 sparc DSA-283-1 xfsdump 2003-4-11 +libnetpbm9 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 alpha DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 arm DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 i386 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 ia64 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 hppa DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 m68k DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 mips DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 mipsel DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 powerpc DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 s390 DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 +libnetpbm9-dev 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 +netpbm 9.20-8.2 sparc DSA-263-1 netpbm-free 2003-3-17 kdebase-doc 2.2.2-14.7 all DSA-388-1 kdebase 2003-9-19 kdewallpapers 2.2.2-14.7 all DSA-388-1 kdebase 2003-9-19 kate 2.2.2-14.7 alpha DSA-388-1 kdebase 2003-9-19 @@ -6258,6 +5228,652 @@ kscreensaver 2.2.2-14.7 sparc DSA-388-1 kdebase 2003-9-19 libkonq-dev 2.2.2-14.7 sparc DSA-388-1 kdebase 2003-9-19 libkonq3 2.2.2-14.7 sparc DSA-388-1 kdebase 2003-9-19 +rsync 2.5.5-0.2 alpha DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 arm DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 i386 DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 ia64 DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 hppa DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 m68k DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 mips DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 mipsel DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 powerpc DSA-404-1 rsync 2003-12-4 +rsync 2.5.5-0.2 sparc DSA-404-1 rsync 2003-12-4 +hylafax-doc 4.1.1-3 all DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 alpha DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 alpha DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 arm DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 arm DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 i386 DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 i386 DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 ia64 DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 ia64 DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 hppa DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 hppa DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 m68k DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 m68k DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 powerpc DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 powerpc DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 s390 DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 s390 DSA-401-1 hylafax 2003-11-17 +hylafax-client 4.1.1-3 sparc DSA-401-1 hylafax 2003-11-17 +hylafax-server 4.1.1-3 sparc DSA-401-1 hylafax 2003-11-17 +tcptraceroute 1.2-2 alpha DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 arm DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 i386 DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 ia64 DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 hppa DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 m68k DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 mips DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 mipsel DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 powerpc DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 s390 DSA-330-1 tcptraceroute 2003-6-23 +tcptraceroute 1.2-2 sparc DSA-330-1 tcptraceroute 2003-6-23 +xftp 2.2-13.1 alpha DSA-281-1 moxftp 2003-4-8 +xftp 2.2-13.1 arm DSA-281-1 moxftp 2003-4-8 +xftp 2.2-13.1 i386 DSA-281-1 moxftp 2003-4-8 +xftp 2.2-13.1 m68k DSA-281-1 moxftp 2003-4-8 +xftp 2.2-13.1 powerpc DSA-281-1 moxftp 2003-4-8 +xftp 2.2-13.1 sparc DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 alpha DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 arm DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 i386 DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 ia64 DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 hppa DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 m68k DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 mips DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 mipsel DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 powerpc DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 s390 DSA-281-1 moxftp 2003-4-8 +xftp 2.2-18.1 sparc DSA-281-1 moxftp 2003-4-8 +apcupsd 3.8.5-1.1.1 alpha DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 arm DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 i386 DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 ia64 DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 hppa DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 m68k DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 mips DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 mipsel DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 powerpc DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 s390 DSA-277-1 apcupsd 2003-4-3 +apcupsd 3.8.5-1.1.1 sparc DSA-277-1 apcupsd 2003-4-3 +lxr 0.3-3 alpha DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 arm DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 i386 DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 ia64 DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 hppa DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 m68k DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 mips DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 mipsel DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 powerpc DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 s390 DSA-264-1 lxr 2003-3-19 +lxr 0.3-3 sparc DSA-264-1 lxr 2003-3-19 +traceroute-nanog 6.0-2.2 alpha DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.0-2.2 arm DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.0-2.2 i386 DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.0-2.2 m68k DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.0-2.2 powerpc DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.0-2.2 sparc DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 alpha DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 arm DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 i386 DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 ia64 DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 hppa DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 m68k DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 mips DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 mipsel DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 powerpc DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 s390 DSA-254-1 traceroute-nanog 2003-2-27 +traceroute-nanog 6.1.1-1.2 sparc DSA-254-1 traceroute-nanog 2003-2-27 +lpr-ppd 0.72-2.1 alpha DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 arm DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 i386 DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 ia64 DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 hppa DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 m68k DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 mips DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 mipsel DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 powerpc DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 s390 DSA-275-1 lpr-ppd 2003-4-2 +lpr-ppd 0.72-2.1 sparc DSA-275-1 lpr-ppd 2003-4-2 +mutt 1.3.28-2.1 alpha DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 alpha DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 arm DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 arm DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 i386 DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 i386 DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 ia64 DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 ia64 DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 hppa DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 hppa DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 m68k DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 m68k DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 mips DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 mips DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 mipsel DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 mipsel DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 powerpc DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 powerpc DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 s390 DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 s390 DSA-268-1 mutt 2003-3-25 +mutt 1.3.28-2.1 sparc DSA-268-1 mutt 2003-3-25 +mutt-utf8 1.3.28-2.1 sparc DSA-268-1 mutt 2003-3-25 +mutt 1.2.5-5.2 alpha DSA-274-1 mutt 2003-3-28 +mutt 1.2.5-5.2 arm DSA-274-1 mutt 2003-3-28 +mutt 1.2.5-5.2 i386 DSA-274-1 mutt 2003-3-28 +mutt 1.2.5-5.2 m68k DSA-274-1 mutt 2003-3-28 +mutt 1.2.5-5.2 powerpc DSA-274-1 mutt 2003-3-28 +mutt 1.2.5-5.2 sparc DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 alpha DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 alpha DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 arm DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 arm DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 i386 DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 i386 DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 ia64 DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 ia64 DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 hppa DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 hppa DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 m68k DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 m68k DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 mips DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 mips DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 mipsel DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 mipsel DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 powerpc DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 powerpc DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 s390 DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 s390 DSA-274-1 mutt 2003-3-28 +mutt 1.3.28-2.2 sparc DSA-274-1 mutt 2003-3-28 +mutt-utf8 1.3.28-2.2 sparc DSA-274-1 mutt 2003-3-28 +webfs 1.17.1 alpha DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 arm DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 i386 DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 ia64 DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 hppa DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 m68k DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 mips DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 mipsel DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 powerpc DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 s390 DSA-328-1 webfs 2003-6-19 +webfs 1.17.1 sparc DSA-328-1 webfs 2003-6-19 +balsa 1.2.4-2.2 alpha DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 arm DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 i386 DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 ia64 DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 hppa DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 m68k DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 mips DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 mipsel DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 powerpc DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 s390 DSA-300-1 balsa 2003-5-6 +balsa 1.2.4-2.2 sparc DSA-300-1 balsa 2003-5-6 +kapptemplate 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 +kdepalettes 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 +kdesdk-doc 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 +kdesdk-scripts 2.2.2-3.2 all DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 alpha DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 arm DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 i386 DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 ia64 DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 hppa DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 m68k DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 mips DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 mipsel DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 powerpc DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 s390 DSA-239-1 kdesdk 2003-1-23 +kbabel 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kbabel-dev 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kdesdk 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kexample 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kmtrace 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kspy 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +kstartperf 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +poxml 2.2.2-3.2 sparc DSA-239-1 kdesdk 2003-1-23 +xpdf-i 0.90-8.1 alpha DSA-226-1 xpdf-i 2003-1-10 +xpdf-i 0.90-8.1 arm DSA-226-1 xpdf-i 2003-1-10 +xpdf-i 0.90-8.1 i386 DSA-226-1 xpdf-i 2003-1-10 +xpdf-i 0.90-8.1 m68k DSA-226-1 xpdf-i 2003-1-10 +xpdf-i 0.90-8.1 powerpc DSA-226-1 xpdf-i 2003-1-10 +xpdf-i 0.90-8.1 sparc DSA-226-1 xpdf-i 2003-1-10 +kamera 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 alpha DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 arm DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 i386 DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 ia64 DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 hppa DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 m68k DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 mips DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 mipsel DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 powerpc DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 s390 DSA-235-1 kdegraphics 2003-1-22 +kamera 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kcoloredit 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kfract 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kghostview 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kiconedit 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kooka 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kpaint 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kruler 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +ksnapshot 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +kview 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +libkscan-dev 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +libkscan1 2.2.2-6.10 sparc DSA-235-1 kdegraphics 2003-1-22 +minimalist 2.2-4 all DSA-402-1 minimalist 2003-11-17 +mysql-common 3.23.49-8.4 all DSA-303-1 mysql 2003-5-15 +mysql-doc 3.23.49-8.4 all DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 alpha DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 arm DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 i386 DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 ia64 DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 hppa DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 m68k DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 mips DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 mipsel DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 powerpc DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 s390 DSA-303-1 mysql 2003-5-15 +libmysqlclient10 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 +libmysqlclient10-dev 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 +mysql-client 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 +mysql-server 3.23.49-8.4 sparc DSA-303-1 mysql 2003-5-15 +mysql-doc 3.22.32-6.4 all DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 alpha DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 alpha DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 arm DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 arm DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 i386 DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 i386 DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 m68k DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 m68k DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 powerpc DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 powerpc DSA-303-1 mysql 2003-5-15 +mysql-client 3.22.32-6.4 sparc DSA-303-1 mysql 2003-5-15 +mysql-server 3.22.32-6.4 sparc DSA-303-1 mysql 2003-5-15 +kdebase-doc 2.2.2-14.4 all DSA-296-1 kdebase 2003-4-30 +kdewallpapers 2.2.2-14.4 all DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 alpha DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 arm DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 i386 DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 ia64 DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 hppa DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 m68k DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 mips DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 mipsel DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 powerpc DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 s390 DSA-296-1 kdebase 2003-4-30 +kate 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kdebase 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kdebase-audiolibs 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kdebase-dev 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kdebase-libs 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kdm 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +konqueror 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +konsole 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +kscreensaver 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +libkonq-dev 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +libkonq3 2.2.2-14.4 sparc DSA-296-1 kdebase 2003-4-30 +gzip 1.2.4-33.2 alpha DSA-308-1 gzip 2003-6-6 +gzip 1.2.4-33.2 arm DSA-308-1 gzip 2003-6-6 +gzip 1.2.4-33.2 i386 DSA-308-1 gzip 2003-6-6 +gzip 1.2.4-33.2 m68k DSA-308-1 gzip 2003-6-6 +gzip 1.2.4-33.2 powerpc DSA-308-1 gzip 2003-6-6 +gzip 1.2.4-33.2 sparc DSA-308-1 gzip 2003-6-6 +ircii 20020322-1.1 alpha DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 arm DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 i386 DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 ia64 DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 hppa DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 m68k DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 mips DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 mipsel DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 powerpc DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 s390 DSA-291-1 ircii 2003-4-22 +ircii 20020322-1.1 sparc DSA-291-1 ircii 2003-4-22 +gtksee 0.5.0-6 alpha DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 arm DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 i386 DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 ia64 DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 hppa DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 m68k DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 mips DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 mipsel DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 powerpc DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 s390 DSA-337-1 gtksee 2003-6-29 +gtksee 0.5.0-6 sparc DSA-337-1 gtksee 2003-6-29 +sendmail-doc 8.12.3-6.4 all DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 alpha DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 alpha DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 arm DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 arm DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 i386 DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 i386 DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 ia64 DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 ia64 DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 hppa DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 hppa DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 m68k DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 m68k DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 mips DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 mips DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 mipsel DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 mipsel DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 powerpc DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 powerpc DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 s390 DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 s390 DSA-305-1 sendmail 2003-5-15 +libmilter-dev 8.12.3-6.4 sparc DSA-305-1 sendmail 2003-5-15 +sendmail 8.12.3-6.4 sparc DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 alpha DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 arm DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 i386 DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 m68k DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 powerpc DSA-305-1 sendmail 2003-5-15 +sendmail 8.9.3-26.1 sparc DSA-305-1 sendmail 2003-5-15 webfs 1.17.2 alpha DSA-392-1 webfs 2003-9-29 webfs 1.17.2 arm DSA-392-1 webfs 2003-9-29 webfs 1.17.2 i386 DSA-392-1 webfs 2003-9-29 @@ -6269,3 +5885,2314 @@ webfs 1.17.2 powerpc DSA-392-1 webfs 2003-9-29 webfs 1.17.2 s390 DSA-392-1 webfs 2003-9-29 webfs 1.17.2 sparc DSA-392-1 webfs 2003-9-29 +lprng-doc 3.8.10-1.2 all DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 alpha DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 arm DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 i386 DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 ia64 DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 hppa DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 m68k DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 mips DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 mipsel DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 powerpc DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 s390 DSA-285-1 lprng 2003-4-14 +lprng 3.8.10-1.2 sparc DSA-285-1 lprng 2003-4-14 +ark 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 alpha DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 arm DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 i386 DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 ia64 DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 hppa DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 m68k DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 mips DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 mipsel DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 powerpc DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 s390 DSA-241-1 kdeutils 2003-1-24 +ark 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kab 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +karm 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kcalc 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kcharselect 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kdepasswd 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kdf 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kedit 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kfind 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kfloppy 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +khexedit 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kjots 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +klaptopdaemon 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kljettool 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +klpq 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +klprfax 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +knotes 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +kpm 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +ktimer 2.2.2-9.2 sparc DSA-241-1 kdeutils 2003-1-24 +cvs-doc 1.10.7-9.2 all DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 alpha DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 arm DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 i386 DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 m68k DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 powerpc DSA-233-1 cvs 2003-1-21 +cvs 1.10.7-9.2 sparc DSA-233-1 cvs 2003-1-21 +rinetd 0.52-2.1 alpha DSA-289-1 rinetd 2003-4-17 +rinetd 0.52-2.1 arm DSA-289-1 rinetd 2003-4-17 +rinetd 0.52-2.1 i386 DSA-289-1 rinetd 2003-4-17 +rinetd 0.52-2.1 m68k DSA-289-1 rinetd 2003-4-17 +rinetd 0.52-2.1 powerpc DSA-289-1 rinetd 2003-4-17 +rinetd 0.52-2.1 sparc DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 alpha DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 arm DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 i386 DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 ia64 DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 hppa DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 m68k DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 mips DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 mipsel DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 powerpc DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 s390 DSA-289-1 rinetd 2003-4-17 +rinetd 0.61-1.1 sparc DSA-289-1 rinetd 2003-4-17 +xpdf 0.90-8.1 alpha DSA-222-1 xpdf 2003-1-6 +xpdf 0.90-8.1 arm DSA-222-1 xpdf 2003-1-6 +xpdf 0.90-8.1 i386 DSA-222-1 xpdf 2003-1-6 +xpdf 0.90-8.1 m68k DSA-222-1 xpdf 2003-1-6 +xpdf 0.90-8.1 powerpc DSA-222-1 xpdf 2003-1-6 +xpdf 0.90-8.1 sparc DSA-222-1 xpdf 2003-1-6 +xpdf-common 1.00-3.1 all DSA-222-1 xpdf 2003-1-6 +xpdf 1.00-3.1 all DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 alpha DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 alpha DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 arm DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 arm DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 i386 DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 i386 DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 ia64 DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 ia64 DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 hppa DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 hppa DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 m68k DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 m68k DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 mips DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 mips DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 mipsel DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 mipsel DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 powerpc DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 powerpc DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 s390 DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 s390 DSA-222-1 xpdf 2003-1-6 +xpdf-reader 1.00-3.1 sparc DSA-222-1 xpdf 2003-1-6 +xpdf-utils 1.00-3.1 sparc DSA-222-1 xpdf 2003-1-6 +traceroute-nanog 6.1.1-1.3 alpha DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 arm DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 i386 DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 ia64 DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 hppa DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 m68k DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 mips DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 mipsel DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 powerpc DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 s390 DSA-348-1 traceroute-nanog 2003-7-11 +traceroute-nanog 6.1.1-1.3 sparc DSA-348-1 traceroute-nanog 2003-7-11 +dietlibc-doc 0.12-2.5 all DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 alpha DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 arm DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 i386 DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 mips DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 mipsel DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 powerpc DSA-272-1 dietlibc 2003-3-28 +dietlibc-dev 0.12-2.5 sparc DSA-272-1 dietlibc 2003-3-28 +kamera 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 alpha DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 arm DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 i386 DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 ia64 DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 hppa DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 m68k DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 mips DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 mipsel DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 powerpc DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 s390 DSA-284-1 kdegraphics 2003-4-12 +kamera 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kcoloredit 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kfract 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kghostview 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kiconedit 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kooka 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kpaint 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kruler 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +ksnapshot 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +kview 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +libkscan-dev 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +libkscan1 2.2.2-6.11 sparc DSA-284-1 kdegraphics 2003-4-12 +mime-support 3.9-1.3 all DSA-292-3 mime-support 2003-4-22,2003-4-30 +mime-support 3.18-1.3 all DSA-292-3 mime-support 2003-4-22,2003-4-30 +htmlheadline 21.8-3 all DSA-622-1 htmlheadline 2005-1-3 +lintian 1.20.17.1 all DSA-630-1 lintian 2005-1-10 +bmv 1.2-14.2 i386 DSA-633-1 bmv 2005-1-11 +hylafax-doc 4.1.1-3.1 all DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 alpha DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 alpha DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 arm DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 arm DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 i386 DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 i386 DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 ia64 DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 ia64 DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 hppa DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 hppa DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 m68k DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 m68k DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 powerpc DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 powerpc DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 s390 DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 s390 DSA-634-1 hylafax 2005-1-11 +hylafax-client 4.1.1-3.1 sparc DSA-634-1 hylafax 2005-1-11 +hylafax-server 4.1.1-3.1 sparc DSA-634-1 hylafax 2005-1-11 +glibc-doc 2.2.5-11.8 all DSA-636-1 glibc 2005-1-12 +locales 2.2.5-11.8 all DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 alpha DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 arm DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 i386 DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 ia64 DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 hppa DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 m68k DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 mips DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 mipsel DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 powerpc DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 s390 DSA-636-1 glibc 2005-1-12 +libc6 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-dbg 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-dev 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-dev-sparc64 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-pic 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-prof 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +libc6-sparc64 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +nscd 2.2.5-11.8 sparc DSA-636-1 glibc 2005-1-12 +mysql-common 3.23.49-8.9 all DSA-647-1 mysql 2005-1-19 +mysql-doc 3.23.49-8.5 all DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 alpha DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 alpha DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 alpha DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 alpha DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 arm DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 arm DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 arm DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 arm DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 i386 DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 i386 DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 i386 DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 i386 DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 ia64 DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 ia64 DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 ia64 DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 ia64 DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 hppa DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 hppa DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 hppa DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 hppa DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 m68k DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 m68k DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 m68k DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 m68k DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 mips DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 mips DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 mips DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 mips DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 mipsel DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 mipsel DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 mipsel DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 mipsel DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 powerpc DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 powerpc DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 powerpc DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 powerpc DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 s390 DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 s390 DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 s390 DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 s390 DSA-647-1 mysql 2005-1-19 +libmysqlclient10 3.23.49-8.9 sparc DSA-647-1 mysql 2005-1-19 +libmysqlclient10-dev 3.23.49-8.9 sparc DSA-647-1 mysql 2005-1-19 +mysql-client 3.23.49-8.9 sparc DSA-647-1 mysql 2005-1-19 +mysql-server 3.23.49-8.9 sparc DSA-647-1 mysql 2005-1-19 +xpdf-common 1.00-3.4 all DSA-648-1 xpdf 2005-1-19 +xpdf 1.00-3.4 all DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 alpha DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 alpha DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 arm DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 arm DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 i386 DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 i386 DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 ia64 DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 ia64 DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 hppa DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 hppa DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 m68k DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 m68k DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 mips DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 mips DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 mipsel DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 mipsel DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 powerpc DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 powerpc DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 s390 DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 s390 DSA-648-1 xpdf 2005-1-19 +xpdf-reader 1.00-3.4 sparc DSA-648-1 xpdf 2005-1-19 +xpdf-utils 1.00-3.4 sparc DSA-648-1 xpdf 2005-1-19 +enscript 1.6.3-1.3 alpha DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 arm DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 i386 DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 ia64 DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 hppa DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 m68k DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 mips DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 mipsel DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 powerpc DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 s390 DSA-654-1 enscript 2005-1-21 +enscript 1.6.3-1.3 sparc DSA-654-1 enscript 2005-1-21 +libpam-radius-auth 1.3.14-1.3 alpha DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 arm DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 i386 DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 ia64 DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 hppa DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 m68k DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 mips DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 mipsel DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 powerpc DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 s390 DSA-659-1 libpam-radius-auth 2005-1-26 +libpam-radius-auth 1.3.14-1.3 sparc DSA-659-1 libpam-radius-auth 2005-1-26 +kdebase-doc 2.2.2-14.9 all DSA-660-1 kdebase 2005-1-26 +kdewallpapers 2.2.2-14.9 all DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 alpha DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 arm DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 i386 DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 ia64 DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 hppa DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 m68k DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 mips DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 mipsel DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 powerpc DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 s390 DSA-660-1 kdebase 2005-1-26 +kate 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kdebase 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kdebase-audiolibs 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kdebase-dev 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kdebase-libs 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kdm 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +konqueror 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +konsole 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +kscreensaver 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +libkonq-dev 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +libkonq3 2.2.2-14.9 sparc DSA-660-1 kdebase 2005-1-26 +f2c 20010821-3.2 alpha DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 arm DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 i386 DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 ia64 DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 hppa DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 m68k DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 mips DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 mipsel DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 powerpc DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 s390 DSA-661-2 f2c 2005-4-20 +f2c 20010821-3.2 sparc DSA-661-2 f2c 2005-4-20 +squirrelmail 1.2.6-3 all DSA-662-2 squirrelmail 2005-3-14 +emacs20-el 20.7-13.3 all DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 alpha DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 arm DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 i386 DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 ia64 DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 hppa DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 m68k DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 mips DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 mipsel DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 powerpc DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 s390 DSA-670-1 emacs20 2005-2-8 +emacs20 20.7-13.3 sparc DSA-670-1 emacs20 2005-2-8 +typespeed 0.4.1-2.3 alpha DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 arm DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 i386 DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 ia64 DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 hppa DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 m68k DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 mips DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 mipsel DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 powerpc DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 s390 DSA-684-1 typespeed 2005-2-16 +typespeed 0.4.1-2.3 sparc DSA-684-1 typespeed 2005-2-16 +kdict 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 alpha DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 arm DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 i386 DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 ia64 DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 hppa DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 m68k DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 mips DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 mipsel DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 powerpc DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 s390 DSA-692-1 kdenetwork 2005-3-8 +kdict 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +kit 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +klisa 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +kmail 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +knewsticker 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +knode 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +korn 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +kppp 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +ksirc 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +ktalkd 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +libkdenetwork1 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +libmimelib-dev 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +libmimelib1 2.2.2-14.7 sparc DSA-692-1 kdenetwork 2005-3-8 +luxman 0.41-17.2 i386 DSA-693-1 luxman 2005-3-14 +libcgi-fast-perl 5.6.1-8.9 all DSA-696-1 perl 2005-3-22 +perl-doc 5.6.1-8.9 all DSA-696-1 perl 2005-3-22 +perl-modules 5.6.1-8.9 all DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 alpha DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 alpha DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 alpha DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 alpha DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 alpha DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 arm DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 arm DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 arm DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 arm DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 arm DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 i386 DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 i386 DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 i386 DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 i386 DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 i386 DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 ia64 DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 ia64 DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 ia64 DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 ia64 DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 ia64 DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 hppa DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 hppa DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 hppa DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 hppa DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 hppa DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 m68k DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 m68k DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 m68k DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 m68k DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 m68k DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 mips DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 mips DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 mips DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 mips DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 mips DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 mipsel DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 mipsel DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 mipsel DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 mipsel DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 mipsel DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 powerpc DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 powerpc DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 powerpc DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 powerpc DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 powerpc DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 s390 DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 s390 DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 s390 DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 s390 DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 s390 DSA-696-1 perl 2005-3-22 +libperl-dev 5.6.1-8.9 sparc DSA-696-1 perl 2005-3-22 +perl 5.6.1-8.9 sparc DSA-696-1 perl 2005-3-22 +perl-base 5.6.1-8.9 sparc DSA-696-1 perl 2005-3-22 +perl-debug 5.6.1-8.9 sparc DSA-696-1 perl 2005-3-22 +perl-suid 5.6.1-8.9 sparc DSA-696-1 perl 2005-3-22 +mysql-common 3.23.49-8.11 all DSA-707-1 mysql 2005-4-13 +mysql-doc 3.23.49-8.5 all DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 alpha DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 alpha DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 alpha DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 alpha DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 arm DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 arm DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 arm DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 arm DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 i386 DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 i386 DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 i386 DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 i386 DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 ia64 DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 ia64 DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 ia64 DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 ia64 DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 hppa DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 hppa DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 hppa DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 hppa DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 m68k DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 m68k DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 m68k DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 m68k DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 mips DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 mips DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 mips DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 mips DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 mipsel DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 mipsel DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 mipsel DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 mipsel DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 powerpc DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 powerpc DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 powerpc DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 powerpc DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 s390 DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 s390 DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 s390 DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 s390 DSA-707-1 mysql 2005-4-13 +libmysqlclient10 3.23.49-8.11 sparc DSA-707-1 mysql 2005-4-13 +libmysqlclient10-dev 3.23.49-8.11 sparc DSA-707-1 mysql 2005-4-13 +mysql-client 3.23.49-8.11 sparc DSA-707-1 mysql 2005-4-13 +mysql-server 3.23.49-8.11 sparc DSA-707-1 mysql 2005-4-13 +gaim 0.58-2.5 alpha DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 alpha DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 alpha DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 arm DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 arm DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 arm DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 i386 DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 i386 DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 i386 DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 ia64 DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 ia64 DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 ia64 DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 hppa DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 hppa DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 hppa DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 m68k DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 m68k DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 m68k DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 mips DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 mips DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 mips DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 mipsel DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 mipsel DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 mipsel DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 powerpc DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 powerpc DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 powerpc DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 s390 DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 s390 DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 s390 DSA-716-1 gaim 2005-4-27 +gaim 0.58-2.5 sparc DSA-716-1 gaim 2005-4-27 +gaim-common 0.58-2.5 sparc DSA-716-1 gaim 2005-4-27 +gaim-gnome 0.58-2.5 sparc DSA-716-1 gaim 2005-4-27 +kerberos4kth-docs 1.1-8-2.4 all DSA-731-1 krb4 2005-6-2 +kerberos4kth-services 1.1-8-2.4 all DSA-731-1 krb4 2005-6-2 +kerberos4kth-user 1.1-8-2.4 all DSA-731-1 krb4 2005-6-2 +kerberos4kth-x11 1.1-8-2.4 all DSA-731-1 krb4 2005-6-2 +kerberos4kth1 1.1-8-2.4 all DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 alpha DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 arm DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 i386 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 ia64 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 hppa DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 m68k DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 mips DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 mipsel DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 powerpc DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 s390 DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-clients-x 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-dev-common 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-kdc 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-kip 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +kerberos4kth-servers-x 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +libacl1-kerberos4kth 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +libkadm1-kerberos4kth 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +libkdb-1-kerberos4kth 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +libkrb-1-kerberos4kth 1.1-8-2.4 sparc DSA-731-1 krb4 2005-6-2 +gaim-data 1.2.1-1.3 all DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 alpha DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 alpha DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 arm DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 arm DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 i386 DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 i386 DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 ia64 DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 ia64 DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 hppa DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 hppa DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 m68k DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 m68k DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 mips DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 mips DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 mipsel DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 mipsel DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 powerpc DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 powerpc DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 s390 DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 s390 DSA-734-1 gaim 2005-7-5 +gaim 1.2.1-1.3 sparc DSA-734-1 gaim 2005-7-5 +gaim-dev 1.2.1-1.3 sparc DSA-734-1 gaim 2005-7-5 +spamassassin 3.0.3-2 all DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 alpha DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 i386 DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 ia64 DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 m68k DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 mips DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 mipsel DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 powerpc DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 s390 DSA-736-1 spamassassin 2005-7-01 +spamc 3.0.3-2 sparc DSA-736-1 spamassassin 2005-7-01 +drupal 4.5.3-3 all DSA-745-1 drupal 2005-7-10 +libtiff-tools 3.5.5-7 alpha DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 alpha DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 alpha DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 arm DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 arm DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 arm DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 i386 DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 i386 DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 i386 DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 ia64 DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 ia64 DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 ia64 DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 hppa DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 hppa DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 hppa DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 m68k DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 m68k DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 m68k DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 mips DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 mips DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 mips DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 mipsel DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 mipsel DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 mipsel DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 powerpc DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 powerpc DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 powerpc DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 s390 DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 s390 DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 s390 DSA-755-1 tiff 2005-7-13 +libtiff-tools 3.5.5-7 sparc DSA-755-1 tiff 2005-7-13 +libtiff3g 3.5.5-7 sparc DSA-755-1 tiff 2005-7-13 +libtiff3g-dev 3.5.5-7 sparc DSA-755-1 tiff 2005-7-13 +squirrelmail 1.2.6-4 all DSA-756-1 squirrelmail 2005-7-13 +phppgadmin 3.5.2-5 all DSA-759-1 phppgadmin 2005-7-18 +affix 2.1.1-2 alpha DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 alpha DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 alpha DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 arm DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 arm DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 arm DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 i386 DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 i386 DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 i386 DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 ia64 DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 ia64 DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 ia64 DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 hppa DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 hppa DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 hppa DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 m68k DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 m68k DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 m68k DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 mips DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 mips DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 mips DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 mipsel DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 mipsel DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 mipsel DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 powerpc DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 powerpc DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 powerpc DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 s390 DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 s390 DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 s390 DSA-762-1 affix 2005-7-19 +affix 2.1.1-2 sparc DSA-762-1 affix 2005-7-19 +libaffix-dev 2.1.1-2 sparc DSA-762-1 affix 2005-7-19 +libaffix2 2.1.1-2 sparc DSA-762-1 affix 2005-7-19 +cacti 0.6.7-2.5 all DSA-764-1 cacti 2005-7-21 +mysql-common 3.23.49-8.8 all DSA-562-1 mysql 2004-10-11 +mysql-doc 3.23.49-8.5 all DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 alpha DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 alpha DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 alpha DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 alpha DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 arm DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 arm DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 arm DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 arm DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 i386 DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 i386 DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 i386 DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 i386 DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 ia64 DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 ia64 DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 ia64 DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 ia64 DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 hppa DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 hppa DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 hppa DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 hppa DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 m68k DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 m68k DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 m68k DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 m68k DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 mips DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 mips DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 mips DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 mips DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 mipsel DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 mipsel DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 mipsel DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 mipsel DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 powerpc DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 powerpc DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 powerpc DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 powerpc DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 s390 DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 s390 DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 s390 DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 s390 DSA-562-1 mysql 2004-10-11 +libmysqlclient10 3.23.49-8.8 sparc DSA-562-1 mysql 2004-10-11 +libmysqlclient10-dev 3.23.49-8.8 sparc DSA-562-1 mysql 2004-10-11 +mysql-client 3.23.49-8.8 sparc DSA-562-1 mysql 2004-10-11 +mysql-server 3.23.49-8.8 sparc DSA-562-1 mysql 2004-10-11 +libcgi-fast-perl 5.6.1-8.8 all DSA-620-1 perl 2004-12-30 +perl-doc 5.6.1-8.8 all DSA-620-1 perl 2004-12-30 +perl-modules 5.6.1-8.8 all DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 alpha DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 alpha DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 alpha DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 alpha DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 alpha DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 arm DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 arm DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 arm DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 arm DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 arm DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 i386 DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 i386 DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 i386 DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 i386 DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 i386 DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 ia64 DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 ia64 DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 ia64 DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 ia64 DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 ia64 DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 hppa DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 hppa DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 hppa DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 hppa DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 hppa DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 m68k DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 m68k DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 m68k DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 m68k DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 m68k DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 mips DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 mips DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 mips DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 mips DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 mips DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 mipsel DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 mipsel DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 mipsel DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 mipsel DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 mipsel DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 powerpc DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 powerpc DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 powerpc DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 powerpc DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 powerpc DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 s390 DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 s390 DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 s390 DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 s390 DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 s390 DSA-620-1 perl 2004-12-30 +libperl-dev 5.6.1-8.8 sparc DSA-620-1 perl 2004-12-30 +perl 5.6.1-8.8 sparc DSA-620-1 perl 2004-12-30 +perl-base 5.6.1-8.8 sparc DSA-620-1 perl 2004-12-30 +perl-debug 5.6.1-8.8 sparc DSA-620-1 perl 2004-12-30 +perl-suid 5.6.1-8.8 sparc DSA-620-1 perl 2004-12-30 +getmail 2.3.7-2 all DSA-553-1 getmail 2004-9-27 +xpdf-common 1.00-3.2 all DSA-581-1 xpdf 2004-11-2 +xpdf 1.00-3.2 all DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 alpha DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 alpha DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 arm DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 arm DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 i386 DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 i386 DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 ia64 DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 ia64 DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 hppa DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 hppa DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 m68k DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 m68k DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 mips DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 mips DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 mipsel DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 mipsel DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 powerpc DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 powerpc DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 s390 DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 s390 DSA-581-1 xpdf 2004-11-2 +xpdf-reader 1.00-3.2 sparc DSA-581-1 xpdf 2004-11-2 +xpdf-utils 1.00-3.2 sparc DSA-581-1 xpdf 2004-11-2 +lesstif-doc 0.93.18-5 all DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 alpha DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 alpha DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 alpha DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 alpha DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 arm DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 arm DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 arm DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 arm DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 i386 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 i386 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 i386 DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 i386 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 ia64 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 ia64 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 ia64 DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 ia64 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 hppa DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 hppa DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 hppa DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 hppa DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 m68k DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 m68k DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 m68k DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 m68k DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 mips DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 mips DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 mips DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 mips DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 mipsel DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 mipsel DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 mipsel DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 mipsel DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 powerpc DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 powerpc DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 powerpc DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 powerpc DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 s390 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 s390 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 s390 DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 s390 DSA-560-1 lesstif1-1 2004-10-7 +lesstif-bin 0.93.18-5 sparc DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dbg 0.93.18-5 sparc DSA-560-1 lesstif1-1 2004-10-7 +lesstif-dev 0.93.18-5 sparc DSA-560-1 lesstif1-1 2004-10-7 +lesstif1 0.93.18-5 sparc DSA-560-1 lesstif1-1 2004-10-7 +xine-ui 0.9.8-5.1 alpha DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 arm DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 i386 DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 ia64 DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 hppa DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 m68k DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 mips DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 mipsel DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 powerpc DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 s390 DSA-477-1 xine-ui 2004-4-6 +xine-ui 0.9.8-5.1 sparc DSA-477-1 xine-ui 2004-4-6 +bnc 2.6.4-3.3 alpha DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 arm DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 i386 DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 ia64 DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 hppa DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 m68k DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 mips DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 mipsel DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 powerpc DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 s390 DSA-595-1 bnc 2004-11-24 +bnc 2.6.4-3.3 sparc DSA-595-1 bnc 2004-11-24 +cyrus-admin 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 alpha DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 arm DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 i386 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 ia64 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 hppa DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 m68k DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 mips DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 mipsel DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 powerpc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 s390 DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-admin 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-common 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-dev 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-imapd 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-nntp 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +cyrus-pop3d 1.5.19-9.2 sparc DSA-597-1 cyrus-imapd 2004-11-25 +vbox3 0.1.7.1 alpha DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 arm DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 i386 DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 ia64 DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 hppa DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 m68k DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 mips DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 mipsel DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 powerpc DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 s390 DSA-418-1 vbox3 2004-1-7 +vbox3 0.1.7.1 sparc DSA-418-1 vbox3 2004-1-7 +super 3.16.1-1.2 alpha DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 arm DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 i386 DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 ia64 DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 hppa DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 m68k DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 mips DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 mipsel DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 powerpc DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 s390 DSA-522-1 super 2004-6-19 +super 3.16.1-1.2 sparc DSA-522-1 super 2004-6-19 +mpg321 0.2.10.2 alpha DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 arm DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 i386 DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 ia64 DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 hppa DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 m68k DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 mips DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 mipsel DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 powerpc DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 s390 DSA-411-1 mpg321 2004-1-5 +mpg321 0.2.10.2 sparc DSA-411-1 mpg321 2004-1-5 +tcpdump 3.6.2-2.7 alpha DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 arm DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 i386 DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 ia64 DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 hppa DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 m68k DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 mips DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.4 mipsel DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 powerpc DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 s390 DSA-425-1 tcpdump 2004-1-16 +tcpdump 3.6.2-2.7 sparc DSA-425-1 tcpdump 2004-1-16 +libcgi-fast-perl 5.6.1-8.6 all DSA-431-1 perl 2004-2-1 +perl-doc 5.6.1-8.6 all DSA-431-1 perl 2004-2-1 +perl-modules 5.6.1-8.6 all DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 alpha DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 alpha DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 alpha DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 alpha DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 alpha DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 arm DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 arm DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 arm DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 arm DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 arm DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 i386 DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 i386 DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 i386 DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 i386 DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 i386 DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 ia64 DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 ia64 DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 ia64 DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 ia64 DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 ia64 DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 hppa DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 hppa DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 hppa DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 hppa DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 hppa DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 m68k DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 m68k DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 m68k DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 m68k DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 m68k DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 mips DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 mips DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 mips DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 mips DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 mips DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 mipsel DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 mipsel DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 mipsel DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 mipsel DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 mipsel DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 powerpc DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 powerpc DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 powerpc DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 powerpc DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 powerpc DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 s390 DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 s390 DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 s390 DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 s390 DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 s390 DSA-431-1 perl 2004-2-1 +libperl-dev 5.6.1-8.6 sparc DSA-431-1 perl 2004-2-1 +perl 5.6.1-8.6 sparc DSA-431-1 perl 2004-2-1 +perl-base 5.6.1-8.6 sparc DSA-431-1 perl 2004-2-1 +perl-debug 5.6.1-8.6 sparc DSA-431-1 perl 2004-2-1 +perl-suid 5.6.1-8.6 sparc DSA-431-1 perl 2004-2-1 +pppoe 3.3-1.2 alpha DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 arm DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 i386 DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 ia64 DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 hppa DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 m68k DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 mips DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 mipsel DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 powerpc DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 s390 DSA-557-1 rp-pppoe 2004-10-4 +pppoe 3.3-1.2 sparc DSA-557-1 rp-pppoe 2004-10-4 +mysql-common 3.23.49-8.6 all DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 alpha DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 alpha DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 alpha DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 alpha DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 arm DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 arm DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 arm DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 arm DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 i386 DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 i386 DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 i386 DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 i386 DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 ia64 DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 ia64 DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 ia64 DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 ia64 DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 hppa DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 hppa DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 hppa DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 hppa DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 m68k DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 m68k DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 m68k DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 m68k DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 mips DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 mips DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 mips DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 mips DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 mipsel DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 mipsel DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 mipsel DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 mipsel DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 powerpc DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 powerpc DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 powerpc DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 powerpc DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 s390 DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 s390 DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 s390 DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 s390 DSA-483-1 mysql 2004-4-14 +libmysqlclient10 3.23.49-8.6 sparc DSA-483-1 mysql 2004-4-14 +libmysqlclient10-dev 3.23.49-8.6 sparc DSA-483-1 mysql 2004-4-14 +mysql-client 3.23.49-8.6 sparc DSA-483-1 mysql 2004-4-14 +mysql-server 3.23.49-8.6 sparc DSA-483-1 mysql 2004-4-14 +slocate 2.6-1.3.2 alpha DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 arm DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 i386 DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 ia64 DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 hppa DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 m68k DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 mips DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.1 mipsel DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 powerpc DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 s390 DSA-428-1 slocate 2004-1-20 +slocate 2.6-1.3.2 sparc DSA-428-1 slocate 2004-1-20 +kernel-image-apus 2.4.17-4 powerpc DSA-440-1 linux-kernel-2.4.17-powerpc-apus 2004-2-18 +kernel-image-apus 2.4.17-5 powerpc DSA-482-1 linux-kernel-2.4.17-apus+s390 2004-4-14 +squirrelmail 1.2.6-1.4 all DSA-535-1 squirrelmail 2004-8-2 +icecast-server 1.3.11-4.2 alpha DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 arm DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 i386 DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 ia64 DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 hppa DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 m68k DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 mips DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 mipsel DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 powerpc DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 s390 DSA-541-1 icecast-server 2004-8-24 +icecast-server 1.3.11-4.2 sparc DSA-541-1 icecast-server 2004-8-24 +sudo 1.6.6-1.3 alpha DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 arm DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 i386 DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 ia64 DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 hppa DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 m68k DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 mips DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 mipsel DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 powerpc DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 s390 DSA-596-2 sudo 2004-11-24 +sudo 1.6.6-1.3 sparc DSA-596-2 sudo 2004-11-24 +sendmail-doc 8.12.3-7.1 all DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 alpha DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 alpha DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 arm DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 arm DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 i386 DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 i386 DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 ia64 DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 ia64 DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 hppa DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 hppa DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 m68k DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 m68k DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 mips DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 mips DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 mipsel DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 mipsel DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 powerpc DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 powerpc DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 s390 DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 s390 DSA-554-1 sendmail 2004-9-27 +libmilter-dev 8.12.3-7.1 sparc DSA-554-1 sendmail 2004-9-27 +sendmail 8.12.3-7.1 sparc DSA-554-1 sendmail 2004-9-27 +l2tpd 0.67-1.1 alpha DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 arm DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 i386 DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 ia64 DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 hppa DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 m68k DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 mips DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 mipsel DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 powerpc DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 s390 DSA-530-1 l2tpd 2004-7-17 +l2tpd 0.67-1.2 sparc DSA-530-1 l2tpd 2004-7-17 +mysql-common 3.23.49-8.7 all DSA-540-1 mysql 2004-8-18 +mysql-doc 3.23.49-8.5 all DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 alpha DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 alpha DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 alpha DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 alpha DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 arm DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 arm DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 arm DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 arm DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 i386 DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 i386 DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 i386 DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 i386 DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 ia64 DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 ia64 DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 ia64 DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 ia64 DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 hppa DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 hppa DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 hppa DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 hppa DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 m68k DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 m68k DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 m68k DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 m68k DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 mips DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 mips DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 mips DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 mips DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 mipsel DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 mipsel DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 mipsel DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 mipsel DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 powerpc DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 powerpc DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 powerpc DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 powerpc DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 s390 DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 s390 DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 s390 DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 s390 DSA-540-1 mysql 2004-8-18 +libmysqlclient10 3.23.49-8.7 sparc DSA-540-1 mysql 2004-8-18 +libmysqlclient10-dev 3.23.49-8.7 sparc DSA-540-1 mysql 2004-8-18 +mysql-client 3.23.49-8.7 sparc DSA-540-1 mysql 2004-8-18 +mysql-server 3.23.49-8.7 sparc DSA-540-1 mysql 2004-8-18 +rsync 2.5.5-0.5 alpha DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 arm DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 i386 DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 ia64 DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 hppa DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 m68k DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 mips DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 mipsel DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 powerpc DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 s390 DSA-499-2 rsync 2004-6-2 +rsync 2.5.5-0.5 sparc DSA-499-2 rsync 2004-6-2 +log2mail 0.2.5.2 alpha DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 arm DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 i386 DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 ia64 DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 hppa DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 m68k DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 mips DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 mipsel DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 powerpc DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 s390 DSA-513-1 log2mail 2004-6-3 +log2mail 0.2.5.2 sparc DSA-513-1 log2mail 2004-6-3 +libnetpbm9 9.20-8.4 alpha DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 alpha DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 alpha DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 arm DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 arm DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 arm DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 i386 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 i386 DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 i386 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 ia64 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 ia64 DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 ia64 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.3 hppa DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.3 hppa DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.3 hppa DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 m68k DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 m68k DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 m68k DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 mips DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 mips DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 mips DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.3 mipsel DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.3 mipsel DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.3 mipsel DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 powerpc DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 powerpc DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 powerpc DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 s390 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 s390 DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 s390 DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9 9.20-8.4 sparc DSA-426-1 netpbm-free 2004-1-18 +libnetpbm9-dev 9.20-8.4 sparc DSA-426-1 netpbm-free 2004-1-18 +netpbm 9.20-8.4 sparc DSA-426-1 netpbm-free 2004-1-18 +rsync 2.5.5-0.6 alpha DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 arm DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 i386 DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 ia64 DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 hppa DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 m68k DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 mips DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 mipsel DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 powerpc DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 s390 DSA-538-1 rsync 2004-8-17 +rsync 2.5.5-0.6 sparc DSA-538-1 rsync 2004-8-17 +ssmtp 2.50.6.1 alpha DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 arm DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 i386 DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 ia64 DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 hppa DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 m68k DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 mips DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 mipsel DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 powerpc DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 s390 DSA-485-1 ssmtp 2004-4-14 +ssmtp 2.50.6.1 sparc DSA-485-1 ssmtp 2004-4-14 +tcpdump 3.6.2-2.8 alpha DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 arm DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 i386 DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 ia64 DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 hppa DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 m68k DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 mips DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 mipsel DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 powerpc DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 s390 DSA-478-1 tcpdump 2004-4-6 +tcpdump 3.6.2-2.8 sparc DSA-478-1 tcpdump 2004-4-6 +mah-jong 1.4-3 alpha DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 arm DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 i386 DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 ia64 DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 hppa DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 m68k DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 mips DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 mipsel DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 powerpc DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 s390 DSA-503-1 mah-jong 2004-5-13 +mah-jong 1.4-3 sparc DSA-503-1 mah-jong 2004-5-13 +gaim 0.58-2.4 alpha DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 alpha DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 alpha DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 arm DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 arm DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 arm DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 i386 DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 i386 DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 i386 DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 ia64 DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 ia64 DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 ia64 DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 hppa DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 hppa DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 hppa DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 m68k DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 m68k DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 m68k DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 mips DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 mips DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 mips DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 mipsel DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 mipsel DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 mipsel DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 powerpc DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 powerpc DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 powerpc DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 s390 DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 s390 DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 s390 DSA-434-1 gaim 2004-2-5 +gaim 0.58-2.4 sparc DSA-434-1 gaim 2004-2-5 +gaim-common 0.58-2.4 sparc DSA-434-1 gaim 2004-2-5 +gaim-gnome 0.58-2.4 sparc DSA-434-1 gaim 2004-2-5 +libapache-mod-dav 1.0.3-3.1 alpha DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 arm DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 i386 DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 ia64 DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 hppa DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 m68k DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 mips DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 mipsel DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 powerpc DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 s390 DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-dav 1.0.3-3.1 sparc DSA-558-1 libapache-mod-dav 2004-10-6 +libapache-mod-ssl-doc 2.8.9-2.4 all DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 arm DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 i386 DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 ia64 DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 hppa DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 m68k DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 mips DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 mipsel DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 powerpc DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 s390 DSA-532-2 libapache-mod-ssl 2004-7-27 +libapache-mod-ssl 2.8.9-2.4 sparc DSA-532-2 libapache-mod-ssl 2004-7-27 +oftpd 0.3.6-6 alpha DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 arm DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 i386 DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 ia64 DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 hppa DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 mips DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 mipsel DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 powerpc DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 s390 DSA-473-1 oftpd 2004-4-3 +oftpd 0.3.6-6 sparc DSA-473-1 oftpd 2004-4-3 +xpdf-common 1.00-3.3 all DSA-619-1 xpdf 2004-12-30 +xpdf 1.00-3.3 all DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 alpha DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 alpha DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 arm DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 arm DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 i386 DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 i386 DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 ia64 DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 ia64 DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 hppa DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 hppa DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 m68k DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 m68k DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 mips DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 mips DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 mipsel DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 mipsel DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 powerpc DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 powerpc DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 s390 DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 s390 DSA-619-1 xpdf 2004-12-30 +xpdf-reader 1.00-3.3 sparc DSA-619-1 xpdf 2004-12-30 +xpdf-utils 1.00-3.3 sparc DSA-619-1 xpdf 2004-12-30 +php4-dev 4.1.2-7 all DSA-531-1 php4 2004-7-20 +php4-pear 4.1.2-7 all DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 alpha DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 arm DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7.0.1 i386 DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 ia64 DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 hppa DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 m68k DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 mips DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 mipsel DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 powerpc DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 s390 DSA-531-1 php4 2004-7-20 +caudium-php4 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-cgi 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-curl 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-domxml 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-gd 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-imap 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-ldap 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-mcal 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-mhash 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-mysql 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-odbc 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-recode 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-snmp 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-sybase 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +php4-xslt 4.1.2-7 sparc DSA-531-1 php4 2004-7-20 +courier-doc 0.37.3-2.5 all DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 arm DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 i386 DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 ia64 DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 hppa DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 m68k DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 mips DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 mipsel DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 powerpc DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 s390 DSA-533-1 courier 2004-7-22 +courier-authdaemon 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-authmysql 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-base 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-debug 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-imap 1.4.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-ldap 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-maildrop 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-mlm 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-mta 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-pcp 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-pop 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +courier-webadmin 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 +sqwebmail 0.37.3-2.5 sparc DSA-533-1 courier 2004-7-22 --- tiger-3.2.1.orig/systems/Linux/2/gen_bootparam_sets +++ tiger-3.2.1/systems/Linux/2/gen_bootparam_sets @@ -15,11 +15,22 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# SunOS/4/gen_bootparam_sets - 06/14/93 +# Linux/2/gen_bootparam_sets - 06/14/93 +# +# 01/15/2004 - jfs - Modified to avoid yelling for systems with +# broken NIS configurations. Also added config +# to work if being called standalone (for testing purposes) # #----------------------------------------------------------------------------- # +# If run directly do this, just in case: +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$SED" ] && AWK=`which sed` +[ -z "$RM" ] && RM=`which rm` +[ -z "$YPCAT" ] && YPCAT=`which ypcat 2>/dev/null` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + [ -r /etc/bootparams ] && { $SED -e 's/#.*$//' /etc/bootparams | $SED -e '/^[ \t]*$/d' | @@ -32,8 +43,13 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { - $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ +[ -n "$YPCAT" ] && { + $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ 2>/dev/null + if [ $? -eq 0 ] ; then echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" + else + # Ypcat has not succeded, remove the temporary file + $RM $WORKDIR/nis_bootparams.$$ + fi } --- tiger-3.2.1.orig/systems/Linux/2/gen_cron +++ tiger-3.2.1/systems/Linux/2/gen_cron @@ -16,6 +16,7 @@ # Please see the file `COPYING' for the complete copyright notice. # # Linux/2/gen_cron - 06/14/93 +# 03/21/2005 - jfs - Fixed -a checks to be POSIX compatbile # 10/01/2003 - jfs - Added check to see if CRONSPOOL can be read, also # fixed the way the information is read since LS might be locale # dependant and it's cleaner to call FIND than to access the directory @@ -44,10 +45,10 @@ # First check the System's cron files (all in /etc) # these are output with just the cron owner and the file for dir in /etc/cron.hourly /etc/cron.daily /etc/cron.weekly /etc/cron.monthly +# TODO: consider using cron.* as suggested by unspawn instead of +# an explicit for do -# TODO (fix): this code will return sometimes errors if the directory -# is empty (that's why it's redirected). Maybe find should be used instead - if [ -d "$dir" -a -r "$dir" ]; then + if [ -d "$dir" ] && [ -r "$dir" ]; then $FIND "$dir" -type f -printf "%p %u\n" | while read file owner do @@ -61,7 +62,7 @@ # Then check the cron's spool (both of the system's and the user's) # TODO (fix): same as above -if [ -d $CRONSPOOL -a -r $CRONSPOOL ]; then +if [ -d $CRONSPOOL ] && [ -r $CRONSPOOL ]; then $FIND "$CRONSPOOL" -type f -printf "%p %u %f\n" | while read file owner name do @@ -88,3 +89,4 @@ esac done fi + --- tiger-3.2.1.orig/systems/Linux/2/gen_group_sets +++ tiger-3.2.1/systems/Linux/2/gen_group_sets @@ -15,23 +15,41 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# SunOS/4/gen_group_sets - 06/14/93 +# Linux/2/gen_group_sets - 06/14/93 (based on the SunOS) +# +# 01/15/2004 - jfs - Added some defaults to test the script standalon +# and avoid errors when using YPCAT even if its not defined. # #----------------------------------------------------------------------------- # +# If run directly do this, just in case: +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$SED" ] && SED=`which sed` +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$COMM" ] && COMM=`which comm` +[ -z "$RM" ] && RM=`which rm` +[ -z "$YPCAT" ] && YPCAT=`which ypcat 2>/dev/null` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + + $GREP -v '^[-+]' /etc/group | $SORT > $WORKDIR/etc_group.$$ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { - $YPCAT group | - $SORT | +[ -n "$YPCAT" ] && { + $YPCAT group >$WORKDIR/nis_group.orig.$$ 2>/dev/null + if [ $? -eq 0 ] ; then + $SORT < $WORKDIR/nis_group.orig.$$ | $AWK '{print substr($0, 1, 255);}' | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ echo "NIS" > $WORKDIR/nis_group.$$.src echo $WORKDIR/nis_group.$$ + fi + # Ypcat has not succeded (ouch), remove the temporary file + $RM $WORKDIR/nis_group.orig.$$ } [ "$SERVERCHECK" = "Y" ] && { --- tiger-3.2.1.orig/systems/Linux/2/gen_inetd +++ tiger-3.2.1/systems/Linux/2/gen_inetd @@ -15,12 +15,32 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# SunOS/4/gen_inetd - 06/14/93 +# Linux/2/gen_inetd - 06/14/93 +# +# Generates sets for Linux systems, based on the SunOS version. +# +# 01/15/2004 - jfs - Use XINETDCONF and INETDCONF instead +# 01/13/2004 - jfs - Do not use inetd.conf if it does not exist # #----------------------------------------------------------------------------- # +# TODO: +# - This script has to generate also proper sets for xinetd, notice +# that some checks (check_tcpd, check_rootkit) depend on this and they +# use the inetd format: +# +# This scripts needs to read in all the inetd configuration files +# (usually under /etc/xinetd.d/) and generate a new file, one line +# per service. +# +#----------------------------------------------------------------------------- -$GREP -v '^#' /etc/inetd.conf | +[ -n "$INETDCONF" ] && [ -f $INETDCONF ] && { +$GREP -v '^#' $INETDCONF | $SORT > $WORKDIR/etc_inetd.$$ -echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src +echo "$INETDCONF" > $WORKDIR/etc_inetd.$$.src echo $WORKDIR/etc_inetd.$$ +} + +#[ -n "$XINETDCONF" ] && [ -f $XINETDCONF ] && { +#} --- tiger-3.2.1.orig/systems/Linux/2/gen_mounts +++ tiger-3.2.1/systems/Linux/2/gen_mounts @@ -18,6 +18,20 @@ # Linux/1/gen_mounts - 04/20/99 # Linux/2/gen_mounts - 04/20/99 # Updated by Advanced Research Corporation (R) +# Linux/2/gen_mounts - 11/19/2003 - Added ext3 and reiserfs as valid +# local filesystems (patch from Ryan Bradetich), also added xfs and jfs. +# Linux/2/gen_mounts - 03/21/2005 - Warn if the filesystem is not recognised +# this is a fix for Tiger bug #7093 +# Linux/2/gen_mounts - 04/14/2005 - Add more filesystems and recognise the +# fact that users can define fallback filesystems (Debian Bug #304555 and +# #302646) +# Linux/2/gen_mounts - 04/18/2005 - Fix to previous patch which introduced typos +# Linux/2/gen_mounts - 05/14/2005 - Added auto (Debian bug #305670), udev when +# using on /dev (Debian bug #307802), capifs (Debian bug #307887), nfsd +# (Debian bug #308585) +# Linux/2/gen_mounts - 07/22/2005 - Changed extraction from mount command +# so it can cope with whitespaces in mount locations, added sanity check +# and fix a bug that mangled $fs (Debian bug #315435) # #----------------------------------------------------------------------------- # @@ -62,26 +76,108 @@ localfs() { - LOCAL=1 +# Determine which filesystem is local, for filesystems valid for Linux +# read the mount(5), fstab(5) or Documentation/filesystems in the Linux +# kernel + LOCAL=2 + # Valid local filesystems + [ "$1" = "ext" ] && LOCAL=0 [ "$1" = "ext2" ] && LOCAL=0 + [ "$1" = "ext3" ] && LOCAL=0 + [ "$1" = "auto" ] && LOCAL=0 + [ "$1" = "reiserfs" ] && LOCAL=0 + [ "$1" = "xfs" ] && LOCAL=0 + [ "$1" = "jfs" ] && LOCAL=0 [ "$1" = "minix" ] && LOCAL=0 [ "$1" = "xiafs" ] && LOCAL=0 - [ "$1" = "ext" ] && LOCAL=0 + [ "$1" = "sysv" ] && LOCAL=0 + [ "$1" = "ufs" ] && LOCAL=0 + [ "$1" = "coherent" ] && LOCAL=0 + [ "$1" = "xenix" ] && LOCAL=0 + [ "$1" = "hpfs" ] && LOCAL=0 + [ "$1" = "rootfs" ] && LOCAL=0 + [ "$1" = "shm" ] && LOCAL=0 + [ "$1" = "tmpfs" ] && LOCAL=0 + [ "$1" = "auto" ] && LOCAL=0 + # Filesystems of other OS [ "$1" = "msdos" ] && LOCAL=1 - + [ "$1" = "umsdos" ] && LOCAL=1 + [ "$1" = "vfat" ] && LOCAL=1 + [ "$1" = "ntfs" ] && LOCAL=1 + [ "$1" = "hfs" ] && LOCAL=1 + [ "$1" = "qnx4" ] && LOCAL=1 + [ "$1" = "udf" ] && LOCAL=1 + # Remotely mounted fs + [ "$1" = "nfs" ] && LOCAL=1 + [ "$1" = "nfs4" ] && LOCAL=1 + [ "$1" = "nfsd" ] && LOCAL=1 + [ "$1" = "ncpfs" ] && LOCAL=1 + [ "$1" = "smbfs" ] && LOCAL=1 + [ "$1" = "coda" ] && LOCAL=1 + [ "$1" = "rpc_pipefs" ] && LOCAL=1 + # Skip these as they are virtual filesystems + [ "$1" = "proc" ] && LOCAL=1 + [ "$1" = "devpts" ] && LOCAL=1 + [ "$1" = "usbfs" ] && LOCAL=1 + [ "$1" = "usbdevfs" ] && LOCAL=1 + [ "$1" = "devfs" ] && LOCAL=1 + [ "$1" = "sysfs" ] && LOCAL=1 + [ "$1" = "none" ] && LOCAL=1 + [ "$1" = "autofs" ] && LOCAL=1 + [ "$1" = "binfmt_misc" ] && LOCAL=1 + [ "$1" = "cramfs" ] && LOCAL=1 + [ "$1" = "ramfs" ] && LOCAL=1 + [ "$1" = "romfs" ] && LOCAL=1 + [ "$1" = "mqueue" ] && LOCAL=1 + [ "$1" = "sockfs" ] && LOCAL=1 + [ "$1" = "bdev" ] && LOCAL=1 + [ "$1" = "pipefs" ] && LOCAL=1 + [ "$1" = "eventpollfs" ] && LOCAL=1 + [ "$1" = "futexfs" ] && LOCAL=0 + # Other filesystems we don't support + [ "$1" = "adfs" ] && LOCAL=1 + [ "$1" = "affs" ] && LOCAL=1 + [ "$1" = "afs" ] && LOCAL=1 + [ "$1" = "efs" ] && LOCAL=1 + [ "$1" = "iso9660" ] && LOCAL=1 + [ "$1" = "capifs" ] && LOCAL=1 + # Some special filesystems + [ "$1" = "unknown" ] && [ "$2" = "/dev" ] && LOCAL=1 + # The rest we warn about + if [ "$LOCAL" -eq 2 ] ; then + echo "--CONFIG-- [con010c] Filesystem '$1' used by '$2' is not recognised as a local filesystem" >&2 + LOCAL=1 + fi return $LOCAL } # If run directly do this, just in case: [ -z "$GETFS" ] && GETFS=`which mount` +[ -z "$SED" ] && SED=`which sed` [ -z "$BASENAME" ] && BASENAME=`which basename` $GETFS | -while read fs o mtpoint t fstype opts +while read line do +# $fs on $mtpoint type $fstype ($opts) PRINT=1 + fs=`echo $line | sed -e 's/ on.*$//'` + mtpoint=`echo $line | sed -e 's/^.* on //' | sed -e 's/ type.*$//'` + # Indent spaces in case we found any in the mount point + mtpoint=`echo $mtpoint | sed -e 's/\([[:space:]]\)/\\\\\1/g'` + fstype=`echo $line | sed -e 's/.* type \(.*\) (.*/\1/'` + # Strip fallback filesystems + fstype=`echo $fstype | $SED -e 's/,.*$//'` + opts=`echo $line | sed -e 's/.* (\(.*\))$/\1/'` + # Sanity check, do not proceed if the values are empty or if + # we have not been able to parse the information properly + [ -z "$fs" ] || [ -z "$mtpoint" ] || [ -z "$fstype" ] || [ -z "$opts" ] || \ + [ "$fs" = "$line" ] || [ "$mtpoint" = "$line" ] || \ + [ "$fstype" = "$line" ] || [ "$opts" = "$line" ] && \ + continue + # TODO: warn in continuing? [ "$CHKRO" = "rw" ] && { ronly "$opts" && PRINT=0; } - [ "$LOCAL_ONLY" = "local" ] && { localfs "$fstype" || PRINT=0; } + [ "$LOCAL_ONLY" = "local" ] && { localfs "$fstype" "$fs" || PRINT=0; } [ "$PRINT" = "1" ] && { dir=`dirname $fs` file=`$BASENAME $fs` --- tiger-3.2.1.orig/systems/Linux/2/gen_passwd_sets +++ tiger-3.2.1/systems/Linux/2/gen_passwd_sets @@ -24,6 +24,29 @@ # Linux/2/gen_passwd_sets - 06/21/2003 - jfs # applied patch from Ryan Bradetich to identify which cryptographic # is used in the passwd format and simplify MD5 hashes check +# Linux/2/gen_passwd_sets - 11/18/2003 - jfs +# Fixed call to YPCAT (only do it if it has been found). Thanks to +# Dale Martin for the patch. +# Linux/2/gen_passwd_sets - 01/15/2004 - jfs +# YPCAT call to avoid errors in hosts that are not properly configured. +# (i.e. nsswitch.conf is defined to use NIS but there's no NIS host) +# Also, redirect error of ypcat's which to /dev/null since it's not +# a requirement of the script (others are) and many systems do not +# include it, specially in Debian (Debian bug #225910) +# Linux/2/gen_passwd_sets - 06/17/2004 - jfs +# Change to do proper extraction of users from passwd and shadow files +# avoiding conflicts when sorting lines with and without alphabetical +# characters (which might make some lines be swapped and some users +# not be accounted for properly) +# NOTE: This should be done in other systems too +# Linux/2/gen_passwd_sets - 06/27/2004 - jfs +# Fixed location of sort call which made duplicates appear, also +# define CAT if not defined (for local testing) +# Linux/2/gen_passwd_sets - 05/14/2005 - jfs +# Add LDAP password support with patch provided by Micha Kersloot +# (Debian bug #307505) +# Linux/2/gen_passwd_sets - 08/4/2005 - jfs +# Generate LDAP source file if using LDAP passwords # #----------------------------------------------------------------------------- # @@ -33,8 +56,11 @@ [ -z "$JOIN" ] && JOIN=`which join` [ -z "$GREP" ] && GREP=`which grep` [ -z "$AWK" ] && AWK=`which awk` +[ -z "$CAT" ] && CAT=`which cat` [ -z "$RM" ] && RM=`which rm` [ -z "$CP" ] && CP=`which cp` +[ -z "$YPCAT" ] && YPCAT=`which ypcat 2>/dev/null` +[ -z "$GETENT" ] && GETENT=`which getent 2>/dev/null` [ -z "$WORKDIR" ] && WORKDIR=/tmp local=0 @@ -98,9 +124,16 @@ then if [ -r /etc/shadow ] then - $SORT /etc/passwd > $WORKDIR/p.$$ - $SORT /etc/shadow | - $JOIN -t: -e " " -o 2.1 1.2 2.3 2.4 2.5 2.6 2.7 - $WORKDIR/p.$$ | + $CAT /etc/passwd /etc/shadow | + $AWK -F : '{ print $1 } ' | $SORT -u >$WORKDIR/u.$$ + >$WORKDIR/p.$$ + >$WORKDIR/s.$$ + $CAT $WORKDIR/u.$$ | + while read user; do + $GREP "^$user:" /etc/passwd >>$WORKDIR/p.$$ + $GREP "^$user:" /etc/shadow >>$WORKDIR/s.$$ + done + $JOIN -t: -e " " -o 2.1 1.2 2.3 2.4 2.5 2.6 2.7 $WORKDIR/s.$$ $WORKDIR/p.$$ | { if [ "$passwordflag" = 'Y' ]; then $CAT @@ -113,9 +146,11 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile } - $RM -f $WORKDIR/p.$$ + $RM $WORKDIR/u.$$ + $RM $WORKDIR/p.$$ + $RM $WORKDIR/s.$$ else - echo "--FAIL-- [run001e] The file /etc/shadow is available but not readable by the user running Tiger." + echo "--ERROR-- [run001e] The file /etc/shadow is available but not readable by the user running Tiger." fi else @@ -135,20 +170,41 @@ echo "--WARN-- [miscxxxx] The '+' key in the /etc/passwd file should only be used in nsswitch 'compat' mode." } - [ "$source" = compat ] && [ -n "$YP" ] && { - $YPCAT passwd > $WORKDIR/nis_passwd.$$ + [ "$source" = "compat" ] && [ -n "$YPCAT" ] && { + $YPCAT passwd > $WORKDIR/nis_passwd.$$ 2>/dev/null + if [ $? -eq 0 ] ; then echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile + else + # Ypcat has not succeeded, remove the temporary file + $RM $WORKDIR/nis_passwd.$$ + fi } ;; - nis) [ "$local" != 1 ] && { - $YPCAT passwd > $WORKDIR/nis_passwd.$$ + nis) [ "$local" != 1 ] && [ -n "$YPCAT" ] && { + $YPCAT passwd > $WORKDIR/nis_passwd.$$ 2>/dev/null + $YPCAT passwd > $WORKDIR/nis_passwd.$$ 2>/dev/null + if [ $? -eq 0 ] ; then echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile + else + # Ypcat has not succeeded, remove the temporary file + $RM $WORKDIR/nis_passwd.$$ + fi } ;; -# This is from SunOS, what do to do for Linux? + ldap) [ "$local" != 1 ] && [ -n "$GETENT" ] && { + $GETENT passwd > $WORKDIR/ldap_passwd.$$ 2>/dev/null + if [ $? -eq 0 ] ; then + echo "LDAP" > $WORKDIR/ldap_passwd.$$.src + echo $WORKDIR/ldap_passwd.$$ >> $outfile + else + $RM $WORKDIR/ldap_passwd.$$ + fi + } + ;; +# This is from SunOS, what should we do here for Linux? (if anything) # nisplus) [ "$local" != 1 ] && { # $NISCAT passwd.org_dir > $WORKDIR/nisplus_passwd.$$ # echo "NIS+" > $WORKDIR/nisplus_passwd.$$.src @@ -161,4 +217,4 @@ done - +exit 0 --- tiger-3.2.1.orig/systems/Linux/2/check_passwdspec +++ tiger-3.2.1/systems/Linux/2/check_passwdspec @@ -17,7 +17,14 @@ # # check_passwdspec: Perform system specific password checks here like # password aging checks, etc. -# +# +# 05/14/2005 jfs - Patch from Nicolas François which checks the user strictly +# 05/14/2005 jfs - Better fix for pwd=! (Debian bug #308141) +# 03/21/2005 jfs - Fixed password aging check. Separate all checks so that +# they prevent bugs if pwd="!" (Debian Bug #297889) +# 01/10/2004 cslater - Added logic to skip password aging check if the +# account is disabled (! or * in password) +# 11/19/2003 jfs - Patch from Ryan Bradetich changing acc016w to pass19w # 08/29/2003 jfs - CHAGE errors redirected to /dev/null and grep is now $GREP # 08/09/2003 jfs - Renamed to check_passwdspec and added CHAGE to dependancies. # 07/10/2003 rbradetich@uswest.net - Initial release @@ -71,16 +78,32 @@ echo echo "# Verifying system specific password checks..." +saveifs=$IFS +IFS=: # Check for password aging [ -r /etc/passwd ] && { - $CUT -d: -f1 /etc/passwd | - while read user - do - if $CHAGE -l $user 2>/dev/null | $GREP "Password Expires:" | $GREP Never >/dev/null 2>&1 - then - message WARN acc016w "" "Login ID $user does not have password aging enabled." - fi + $CUT -d: -f1,2 /etc/passwd | + while read user pwd + do + + [ "$Tiger_Check_PASSWD_SHADOW" = 'Y' ] && [ -s /etc/passwd ] && [ "x$pwd" != "xx" ] && { + message WARN pass20w "" "Login ID $user is not configured to use shadow passwords." + } + + # For expiration, pull the password string from /etc/shadow if it exists + [ -r /etc/shadow ] && { + pwd=`$GREP "^$user:" /etc/shadow | $CUT -d: -f2` + } + # Skip this check if the user account is locked + [ "x$pwd" != 'x!' ] && [ "x$pwd" != 'x*' ] && { + if $CHAGE -l $user 2>/dev/null | $GREP "Password Expires:" | $GREP Never >/dev/null 2>&1 + then + message WARN pass19w "" "Login ID $user does not have password aging enabled." + fi + } + done } +IFS=$saveifs exit 0 --- tiger-3.2.1.orig/systems/NeXT/3/CVS/Entries +++ tiger-3.2.1/systems/NeXT/3/CVS/Entries @@ -1,19 +1,13 @@ -/check.tbl/1.1/Fri Jun 14 08:51:31 2002// /check_cron/1.1/Fri Jun 14 08:51:31 2002// /config/1.1/Fri Jun 14 08:51:31 2002// /datecmd/1.1/Fri Jun 14 08:51:31 2002// /embedlist/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getdisks/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /rel_file_exp_list/1.1/Fri Jun 14 08:51:31 2002// @@ -23,3 +17,8 @@ D/3.0//// D/3.1//// D/3.3//// +/gen_alias_sets/1.2/Tue Feb 24 19:16:28 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:16:28 2004// +/gen_group_sets/1.2/Tue Feb 24 19:16:33 2004// +/gen_services/1.2/Tue Feb 24 19:16:34 2004// +/gendlclients/1.2/Thu May 20 07:38:22 2004// --- tiger-3.2.1.orig/systems/NeXT/3/gen_alias_sets +++ tiger-3.2.1/systems/NeXT/3/gen_alias_sets @@ -25,7 +25,7 @@ echo "/etc/sendmail/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/NeXT/3/gen_bootparam_sets +++ tiger-3.2.1/systems/NeXT/3/gen_bootparam_sets @@ -44,7 +44,7 @@ done } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { BOOTPARAM_SET=$WORKDIR/bootparam.set.nis.$$ $YPCAT bootparams > $BOOTPARAM_SET echo "NIS" > $BOOTPARAM_SET.src --- tiger-3.2.1.orig/systems/NeXT/3/gen_group_sets +++ tiger-3.2.1/systems/NeXT/3/gen_group_sets @@ -40,7 +40,7 @@ exit $COUNT ) -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/NeXT/3/gen_services +++ tiger-3.2.1/systems/NeXT/3/gen_services @@ -37,7 +37,7 @@ COUNT=$? -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { SERVICES_SET=$WORKDIR/services.set$COUNT.$$ $YPCAT services > $SERVICES_SET echo "NIS" > $SERVICES_SET.src --- tiger-3.2.1.orig/systems/NeXT/3/gendlclients +++ tiger-3.2.1/systems/NeXT/3/gendlclients @@ -17,6 +17,9 @@ # # NeXT/3/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -48,5 +51,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/SunOS/4/CVS/Entries +++ tiger-3.2.1/systems/SunOS/4/CVS/Entries @@ -3,15 +3,9 @@ /config/1.2/Fri Aug 23 13:19:13 2002// /embedlist/1.1/Fri Jun 14 08:51:31 2002// /facl.strict/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getdisks/1.1/Fri Jun 14 08:51:31 2002// /inetd/1.1/Fri Jun 14 08:51:31 2002// /rel_file_exp_list/1.1/Fri Jun 14 08:51:31 2002// @@ -23,5 +17,10 @@ D/4.1.3//// D/4.1.3C//// D/4.1.4//// -/check.tbl/1.2/Fri May 9 23:25:26 2003// /file_access_list/1.2/Tue Aug 12 21:40:20 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:16:35 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:16:36 2004// +/gen_group_sets/1.2/Tue Feb 24 19:16:36 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:16:37 2004// +/gen_services/1.2/Tue Feb 24 19:16:38 2004// +/gendlclients/1.2/Thu May 20 07:38:34 2004// --- tiger-3.2.1.orig/systems/SunOS/4/gen_alias_sets +++ tiger-3.2.1/systems/SunOS/4/gen_alias_sets @@ -25,7 +25,7 @@ echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/SunOS/4/gen_bootparam_sets +++ tiger-3.2.1/systems/SunOS/4/gen_bootparam_sets @@ -32,7 +32,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/SunOS/4/gen_group_sets +++ tiger-3.2.1/systems/SunOS/4/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $AWK '{print substr($0, 1, 255);}' | --- tiger-3.2.1.orig/systems/SunOS/4/gen_passwd_sets +++ tiger-3.2.1/systems/SunOS/4/gen_passwd_sets @@ -17,9 +17,20 @@ # # SunOS/4/gen_passwd_sets - 06/14/93 # +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. +# #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` + + local=0 for parm do @@ -45,7 +56,7 @@ [ $local -eq 1 ] && exit -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd | $SORT | $AWK -F: ' --- tiger-3.2.1.orig/systems/SunOS/4/gen_services +++ tiger-3.2.1/systems/SunOS/4/gen_services @@ -25,7 +25,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services | $SORT | $COMM -23 - $WORKDIR/etc_services.$$ > $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/SunOS/4/gendlclients +++ tiger-3.2.1/systems/SunOS/4/gendlclients @@ -17,6 +17,9 @@ # # SunOS/4/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -48,5 +51,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/SunOS/5/CVS/Entries +++ tiger-3.2.1/systems/SunOS/5/CVS/Entries @@ -10,22 +10,23 @@ /ndd_parms_local/1.1/Sat Aug 9 10:37:33 2003// D/5.9//// D/5.7//// -/check/1.2/Tue Aug 26 16:49:13 2003// -/check.tbl/1.1/Tue Aug 26 16:50:19 2003// -/config/1.4/Tue Aug 26 16:59:24 2003// /embedlist/1.1/Tue Aug 26 16:59:30 2003// /file_access_list/1.1/Tue Aug 26 16:59:37 2003// /rel_file_exp_list/1.1/Tue Aug 26 17:03:19 2003// /services/1.1/Tue Aug 26 17:03:27 2003// /testsuid.c/1.1/Tue Aug 26 17:03:35 2003// /check_cron/1.3/Tue Aug 26 17:16:08 2003// -/gen_alias_sets/1.3/Tue Aug 26 17:16:16 2003// -/gen_bootparam_sets/1.3/Tue Aug 26 17:16:22 2003// /gen_export_sets/1.4/Tue Aug 26 17:16:36 2003// /gen_group_sets/1.3/Tue Aug 26 17:16:41 2003// /gen_inetd/1.3/Tue Aug 26 17:16:47 2003// /gen_mounts/1.3/Tue Aug 26 17:16:51 2003// -/gen_passwd_sets/1.3/Tue Aug 26 17:16:57 2003// /gen_services/1.3/Tue Aug 26 17:17:02 2003// -/gendlclients/1.2/Tue Aug 26 17:16:29 2003// /getdisks/1.2/Tue Aug 26 17:17:08 2003// +/gen_alias_sets/1.4/Tue Feb 24 19:16:39 2004// +/gen_bootparam_sets/1.4/Tue Feb 24 19:16:39 2004// +/check/1.3/Thu May 20 07:38:44 2004// +/gendlclients/1.3/Thu May 20 07:38:45 2004// +/check_listeningprocs/1.1/Thu Mar 31 22:42:15 2005// +/check_patches/1.1/Thu Mar 31 22:42:15 2005// +/config/1.6/Sat Apr 16 20:18:38 2005// +/gen_passwd_sets/1.5/Sat Apr 16 20:18:38 2005// --- tiger-3.2.1.orig/systems/SunOS/5/config +++ tiger-3.2.1/systems/SunOS/5/config @@ -68,6 +68,7 @@ HEAD=/usr/bin/head RM=/usr/bin/rm AWK=/usr/bin/awk +# Note: grep does not support -E GREP=/usr/bin/grep EGREP=/usr/bin/egrep # Silent grep @@ -82,7 +83,6 @@ GROUPSS=/usr/ucb/groups FILECMD=/usr/bin/file IFCONFIG=/sbin/ifconfig -# Is this the proper location for ifconfig? UNIQ=/usr/bin/uniq BASENAME=/usr/bin/basename CHMOD=/usr/bin/chmod @@ -155,12 +155,12 @@ CRONSPOOL=/var/spool/cron/crontabs # ETCSHELLS=/etc/shells +export MAILSPOOL CRONSPOOL ETCSHELLS +# # egrep regex that defines a local filesystem LOCFS="(ufs|tmpfs)" export LOCFS # -export MAILSPOOL CRONSPOOL ETCSHELLS -# # System dev directories... # DEVDIRSYS="/dev/ /devices" --- tiger-3.2.1.orig/systems/SunOS/5/gen_alias_sets +++ tiger-3.2.1/systems/SunOS/5/gen_alias_sets @@ -65,7 +65,7 @@ } ;; nis) - [ -n "$YP" ] && { + [ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | @@ -75,9 +75,11 @@ } ;; nisplus) + [ -n "$NISCAT" ] && { $NISCAT mail_aliases.org_dir > $WORKDIR/nisplus_aliases.$$ echo "NIS+" > $WORKDIR/nisplus_passwd.$$.src echo "$WORKDIR/nisplus_passwd.$$" + } ;; *) ;; --- tiger-3.2.1.orig/systems/SunOS/5/gen_bootparam_sets +++ tiger-3.2.1/systems/SunOS/5/gen_bootparam_sets @@ -45,7 +45,7 @@ } ;; nis) - [ -n "$YP" ] && { + [ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/SunOS/5/gen_passwd_sets +++ tiger-3.2.1/systems/SunOS/5/gen_passwd_sets @@ -17,10 +17,23 @@ # # SunOS/5/gen_passwd_sets - 06/14/93 # Updated 10/10/01 for pam enabled passwords (ARC) +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$RM" ] && RM=`which rm` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` +[ -z "$NISCAT" ] && NISCAT=`which niscat` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + + local=0 for parm do @@ -81,13 +94,13 @@ } $RM -f $WORKDIR/p.$$ ;; - nis) [ "$local" != 1 ] && { + nis) [ "$local" != 1 ] && [ -n "$YPCAT" ] && { $YPCAT passwd > $WORKDIR/nis_passwd.$$ echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile } ;; - nisplus) [ "$local" != 1 ] && { + nisplus) [ "$local" != 1 ] && [ -n "$NISCAT" ] && { $NISCAT passwd.org_dir > $WORKDIR/nisplus_passwd.$$ echo "NIS+" > $WORKDIR/nisplus_passwd.$$.src echo "$WORKDIR/nisplus_passwd.$$" >> $outfile --- tiger-3.2.1.orig/systems/SunOS/5/gendlclients +++ tiger-3.2.1/systems/SunOS/5/gendlclients @@ -17,6 +17,9 @@ # # SunOS/5/gendlclients - 06/14/93 # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) +# #----------------------------------------------------------------------------- # @@ -48,5 +51,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/SunOS/5/5.5/sun4/CVS/Entries +++ tiger-3.2.1/systems/SunOS/5/5.5/sun4/CVS/Entries @@ -1,4 +1,3 @@ /config/1.1/Mon Apr 21 08:20:13 2003// /signatures/1.1/Mon Apr 21 08:20:13 2003// -/signatures.orig/1.1/Mon Apr 21 08:20:13 2003// D --- tiger-3.2.1.orig/systems/SunOS/5/5.5.1/sun4/CVS/Entries +++ tiger-3.2.1/systems/SunOS/5/5.5.1/sun4/CVS/Entries @@ -1,4 +1,3 @@ /config/1.1/Mon Apr 21 08:20:13 2003// /signatures/1.1/Mon Apr 21 08:20:13 2003// -/signatures.orig/1.1/Mon Apr 21 08:20:13 2003// D --- tiger-3.2.1.orig/systems/SunOS/5/5.8/CVS/Entries +++ tiger-3.2.1/systems/SunOS/5/5.8/CVS/Entries @@ -1,10 +1,10 @@ /check_listeningprocs/1.5/Mon Apr 21 11:21:08 2003// -/config/1.2/Mon Apr 21 11:06:49 2003// /inetd/1.1/Fri Aug 23 13:20:13 2002// -/patchdiag.xref/1.1/Fri Aug 23 13:20:13 2002// -/check_patches/1.2/Sat Aug 9 10:47:07 2003// -/check.tbl/1.1/Tue Aug 19 17:23:19 2003// /services/1.2/Tue Aug 26 16:43:25 2003// /signatures/1.1/Tue Aug 26 16:43:50 2003// /suid_list/1.1/Tue Aug 26 16:43:46 2003// +/config/1.3/Sun Oct 19 21:56:18 2003// +/check/1.1/Mon Feb 2 23:52:31 2004// +/patchdiag.xref/1.2/Tue Feb 24 19:17:12 2004// +/check_patches/1.3/Thu Mar 31 15:22:40 2005// D --- tiger-3.2.1.orig/systems/SunOS/5/5.8/check_patches +++ tiger-3.2.1/systems/SunOS/5/5.8/check_patches @@ -121,7 +121,7 @@ fi done else - message WARN sig022f "" "This system does not have a patchdiag.xref file (looked for it in $CONFIG_DIR)" + message FAIL sig022f "" "This system does not have a patchdiag.xref file (looked for it in $CONFIG_DIR)" fi delete $WORKDIR/showrev.$$ --- tiger-3.2.1.orig/systems/SunOS/5/5.8/config +++ tiger-3.2.1/systems/SunOS/5/5.8/config @@ -15,7 +15,7 @@ # # Please see the file `COPYING' for the complete copyright notice. # -# SunOS/4/config - 06/14/93 +# SunOS/5/5.8/config - 06/14/93 # #----------------------------------------------------------------------------- # @@ -73,7 +73,7 @@ NETSTAT=/usr/bin/netstat PFILES=/usr/bin/pfiles SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx" -SENDMAILCF="/etc/sendmail.cf" +SENDMAILCF="/etc/mail/sendmail.cf" # export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED CUT HEAD export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME --- tiger-3.2.1.orig/systems/SunOS/5/5.8/patchdiag.xref +++ tiger-3.2.1/systems/SunOS/5/5.8/patchdiag.xref @@ -1,4 +1,4 @@ -## PATCHDIAG TOOL CROSS-REFERENCE FILE AS OF Aug/06/02 ## +## PATCHDIAG TOOL CROSS-REFERENCE FILE AS OF Dec/26/03 ## ## ## Please note that certain patches which are listed in ## Sun's Quick Reference Section or other patch reference @@ -16,17 +16,17 @@ 100648|01|Jun/11/92| | | | |Unbundled|||PC-NFS/4.0a: Jumbo Patch 100701|03|Feb/17/93| | | | |Unbundled|sparc;|SUNWowbcp:1.8.1;SUNWowbcp:2.10;|OpenWindows 3.0.1;3.1: programs compiled under Solaris 1.x /usr/5b 100791|04|Apr/12/93| | |O| |Unbundled|||OBSOLETED by 100974 +100807|03|May/02/94| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 100807|04|Jul/07/94| | | | |Unbundled|sparc;|SPROswmgr:2.1.2.1;|Sparcworks 2.0.1: statically linking X11 library doesn't run on As +100811|01|Mar/17/93| | |O| |Unbundled|||OBSOLETED by 100967 100812|02|Jan/27/93| | | | |Unbundled|sparc;|SUNWowrqd:1.16.2;|OpenWindows 3.0.1: Binder as root with "-system" or "-network" doe 100824|03|Jun/29/93| | | | |Unbundled|sparc;|SUNWowrqd:2.10;|OpenWindows 3.1: fixes various bugs in xnews server 100830|01|Mar/12/93| | |O| |Unbundled|||OBSOLETED by 100861 100837|01|Jan/20/93| | | | |Unbundled|sparc;|SUNWowrqd:2.10.0.1;|OpenWindows 3.1: core dump in ras3,ras4,ras5 and install_check on 100843|01|Feb/05/93| | | | |Unbundled|||PC-NFS/4.0a: various, system or print server hangs under heavy loa 100849|01|Jan/20/93| | |O| |Unbundled|||OBSOLETED by 100964 -100852|02|Jul/01/93| | |O| |2.1|||OBSOLETED by BADPATCH +100852|02|Jul/01/93| | |O| |2.1|||OBSOLETED by WITHDRAWN 100860|01|Jan/26/93| | | | |Unbundled|||PC-NFS/v4.0a: FAILS TO ACKNOWLEDGE TCP PACKETS ON FTP -100861|02|Jun/21/93| | |O| |Unbundled|||SPARCompilers C 2.0.1: fixes to iropt, cg, fbe -100864|02|Apr/22/93| | |O| |2.1|||SunOS 5.1: improved version of libaio 100895|02|May/19/93| | | | |Unbundled|sparc;|SUNWowrqd:2.10;|OpenWindows 3.1: having your input focus set to clicktotype can ha 100951|03|Aug/28/96| | | | |Unbundled||100951-01|Open Boot Prom 2.0 - 2.5,2.6 - 2.10: diskless client boot net prob 100953|02|Jul/09/93| | | | |Unbundled|sparc;|SUNWowMIT:2.10;SUNWowrqd:2.10;|OpenWindows 3.1: xdm does not support xdmcp, nor local passwords @@ -34,7 +34,7 @@ 100973|01|Jun/09/93| | | | |Unbundled|sparc;|SUNWowrqd:2.10;|OpenWindows 3.1: incorrect script header generation done by owplac 100974|02|Mar/14/95| | | | |Unbundled|sparc;|SPROsw:2.1.0;|SparcWorks 2.0.1: dbx jumbo patch 100980|01|May/21/93| | |O| |Unbundled|||OBSOLETED by 101176 -100989|15|Sep/01/94| | | | |Unbundled|all;sparc;|SUNWowinc:3.2.9,REV=0.93.03.17;SUNWowrqd:3.2.9,REV=0.93.04.08;SUNWowslb:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: XView Library Jumbo Patch +100989|04|Sep/28/93| | |O| |Unbundled|||OBSOLETED by 101256 100997|02|Jul/29/94| | | | |Unbundled|sparc;101265-06;|SUNWdxlib:2.0.0,REV=1.9.0;|OpenWindows 3.2, Direct Xlib 2.0: mwm doesn't repaint window corre 101005|01|Jun/11/93| | | | |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: window height calculation is incorrect for Asian 101006|01|Jun/11/93| | | | |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: problem in Audiocontrol with window height and ov @@ -51,6 +51,7 @@ 101125|01|Jul/09/93| | |O| |Unbundled|||OBSOLETED by 101295 101127|03|Mar/15/94| | | | |Unbundled|||PCNFS/5.0: PC-NFS 5.0b Jumbo patch with Word6.0 fix 101128|04|Nov/18/94| | | | |Unbundled|||PC-NFS 5.0: Winsock jumbo patch rev. d +101130|13|Dec/24/98| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101130|16|May/07/99| | | | |Unbundled|sparc;|SUNWhsis:2.0;|HSI/S 2.0: Tacks on new bug fix to existing 2.0 patches 101135|02|Aug/27/93| | | | |Unbundled|sparc;|SUNWowMIT:3.2.9,REV=0.93.03.17;SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: xdm login window does not come back after 2 login 101150|01|Aug/02/93| | | | |Unbundled|sparc;|SUNWowrqd:2.10;SUNWowslb:2.10;|OpenWindows 3.1: xview 3.1 jumbo patch @@ -68,16 +69,14 @@ 101223|01|Aug/30/93| | | | |Unbundled|||PC-NFS 5.0: Repeated prints from MS Windows causes General Protect 101224|01|Sep/13/93| | | | |Unbundled|||PC-NFS 5.0: Telnetw can't login in 8 bit mode and scrolling is slo 101227|01|Oct/28/93| | | | |Unbundled|sparc;|SUNWtltk:3.2.9,REV=0.93.03.17;SUNWtltkd:3.2.9,REV=0.93.03.17;|OpenWindows 3.2: tt_open attempts to do a host lookup on an invali +101232|01|Sep/16/93| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101232|02|Oct/07/93| | |O| |Unbundled|||OBSOLETED by 101656 101235|01|May/02/95| |S|O| |2.3|||OBSOLETED by 101739 -101237|29|May/31/95| | |O| |Unbundled|101362-27;||XGL 3.0.2: XGL Jumbo Patch 101240|25|Oct/27/98| | | | |Unbundled|sparc;|SUNWphger:3.0.0.25;SUNWphgh:3.0.0.25;SUNWphgrt:3.0.0.25;|SunPHIGS 3.0: define a "pset_linewidth" so that 0.1 long 101242|13|Dec/23/97| | |O| |Unbundled|||OBSOLETED by 106529 -101244|13|Mar/15/95| | |O| |Unbundled|||NetISAM 1.1: Jumbo patch 101246|02|Nov/12/93| | | | |2.3|sparc;|SUNWlibCf:3.0,REV=93.11.11;|SunOS 5.2, 5.3: patch for libC.so.3 101250|01|Nov/01/93| | |O| |Unbundled|||OBSOLETED by 101657 101254|02|Aug/11/94| | | | |Unbundled|sparc;|SUNWjwsft:1.6,REV=1.0.25;|NeWSprint 2.5:build font directory for Japanese NeWSPrint -101256|01|Oct/28/93| | |O| |Unbundled|||OBSOLETED by 100989 101262|31|Aug/10/95| | | | |Unbundled|sparc;101362-27;|SUNWxgldg:4.0,REV=2.0.12;SUNWxglrt:4.0,REV=2.0.12;|XGL 3.0.2: XGL Jumbo Patch 101263|04|Dec/02/93| | | | |Unbundled|sparc;|SUNWhdlc:1.15;SUNWllc2a:1.15;SUNWx25a:1.15;SUNWx25b:1.15;|Sunlink X.25 8.0: JUMBO Patch 101265|06|Mar/17/94| | | | |Unbundled|sparc;101276-01;|SUNWowrqd:3.2.9,REV=0.93.04.08;SUNWowslb:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: xnews server & olwm window manager jumbo patch @@ -108,9 +107,9 @@ 101328|01|Nov/02/93| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: Automation script to properly setup tty ports prior to 101329|15|May/04/94| |S|O| |2.3|||OBSOLETED by 101318 101330|06|Aug/02/94| | | | |2.3|sparc;|SUNWdiag:4.2.0,REV=1.0.1;|SunOS 5.3: Sundiag jumbo patch +101331|01|Nov/09/93|R| |O| B|2.3|||OBSOLETED by WITHDRAWN 101331|08|Sep/03/97|R|S| |Y |2.3|sparc;|SUNWarc:11.5.0,REV=2.0.18;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: fixes for package utilities 101332|01|Mar/22/94| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: rpc.bootparamd returns the wrong domainname when servin -101340|01|Nov/02/93| | |O| |Unbundled|||XIL 1.1: XIL PhotoCD runtime patch 101342|02|Apr/22/94| | | | |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: Cannot print certain pages from AnswerBook2.2 to 101343|04|Sep/03/97| | | |Y |2.3|sparc;|SUNWdoc:11.5.0,REV=2.0.18;|SunOS 5.3: troff macro patch 101344|11|Sep/12/94| |S|O| |2.3|||OBSOLETED by 101318 @@ -123,10 +122,11 @@ 101357|01|Nov/22/93| | | | |Unbundled|sparc;|SUNWtris:3.0;|TRI/S 3.0: Token Ring multiple fixes patch 101359|10|Dec/14/98|R|S| | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWhea:11.5.0,REV=2.0.18;|SunOS 5.3: libresolv, in.named, named-xfer, nslookup & nstest patc 101362|51|Aug/13/97|R|S| | |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;SUNWowslb:3.3.18,REV=0.93.09.07;101262-22|OpenWindows 3.3: Server (Xsun) Patch +101363|07|Mar/08/95| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101363|09|Oct/30/95| | | | |Unbundled|sparc;|SUNWnskit:4.1.3.1;|NSkit 1.0: Jumbo Patch 101368|01|Jun/03/94| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWstatl:11.5.0,REV=2.0.18;|SunOS 5.3: rpc.bootparamd does not pick up the current entry from 101371|04|Feb/11/94| |S|O| |2.3|||OBSOLETED by 101739 -101376|01|Jan/07/94| | |O| |Unbundled|||SPARCclassic X 1.0: Xterminal hangs - out of mbufs. +101377|02|Jan/14/94| | |O| B|Unbundled|101066-01;||OBSOLETED by WITHDRAWN 101377|49|Jul/30/96| | | | |Unbundled|sparc;100989;|SUNWmotif:1.2.2;|Motif 1.2.2: libXm Patch 101378|18|Jan/17/96| | |O| |2.3|||OBSOLETED by 101318 101379|02|May/02/94| | |O| |2.3|||OBSOLETED by 101318 @@ -134,6 +134,7 @@ 101384|08|May/03/95| | | | |2.3|sparc;|SUNWadmap:6.0.9;SUNWadmfw:6.0.8;|SunOS 5.3: Admintool Jumbo patch 101388|01|Dec/08/93| | | | |2.3|sparc;|SUNWbnuu:11.5.0,REV=2.0.18;|SunOS 5.3: uucp fails to request files from remote 101389|01|Nov/17/93| | | | |2.3|sparc;|SUNWbtool:11.5.0,REV=2.0.18;|SunOS 5.3: nm/prof/gprof/dump/dis doesn't demangle C++ 4.0 symbols +101391|03|May/12/94| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101391|04|Jul/06/94| | |O| |Unbundled|||OBSOLETED by 102146 101392|04|May/24/94| | | | |Unbundled|all;sparc;|SUNWowinc:3.2.9,REV=0.93.03.17;SUNWowrqd:3.2.9,REV=0.93.04.08;SUNWowslb:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: OLIT (libXol) Jumbo Patch 101398|09|Oct/18/96| | | | |2.3|sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: stc driver fixes @@ -175,6 +176,7 @@ 101502|02|Mar/15/94| | | | |Unbundled|sparc;|SPROcpl:3.0.0.2;|SPARCompiler 3.0 C++: wide string literal L"...." doesn't work 101503|04|Jan/03/95| | | | |Unbundled|sparc;|SPROf77:3.0;SPROlang:3.0;SPROlib77:3.0;|SPARCompiler Fortran 3.0: Jumbo patch 101505|02|May/23/94| | | | |Unbundled|sparc;|SPROlang:3.0.0.2;|SPARCcompilers 3.0: iropt Segmentation Fault when -parallel is use +101512|42|Aug/07/97|R|S|O| B|2.3|||OBSOLETED by WITHDRAWN 101512|43|Feb/27/98|R|S| | |2.3|all;sparc;|SUNWowinc:3.3.18,REV=0.93.09.07;SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;SUNWowslb:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: XView patch 101513|17|Jul/11/00|R|S| |Y |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Calendar Manager patch 101514|10|Oct/20/97| | | |Y |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: filemgr patch @@ -219,6 +221,7 @@ 101627|02|May/12/95| | | | |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: iwscn driver fixes 101631|02|Oct/17/94|R|S| | |2.3|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: kd and ms fixes 101635|01|Mar/21/94| | | | |2.3|sparc;|SUNWjfpu:2.5,REV=1.0.25;|SunOS 5.3 (JFP): Patch for Japanese language input method library +101636|03|Mar/25/94| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101636|05|Oct/10/94| | | | |Unbundled|sparc;|SUNWsunpc:4.0.1;|SunPC 4.0.1: Jumbo patch 101637|01|Mar/10/94| | |O| |2.3|||OBSOLETED by 101318 101642|01|Apr/08/94| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: Jumbo mailx patch @@ -241,18 +244,19 @@ 101680|01|Apr/21/94| | |O| |2.3|||OBSOLETED by 102285 101681|01|May/06/94| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: telnet patch 101687|01|Apr/21/94| | |O| |2.3|||OBSOLETED by 101362 +101690|01|Apr/08/94| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101690|03|Jun/01/94| | | | |Unbundled|sparc;|SUNWspii:1.0;|SPARCprinter II 1.0: 600 dpi gray scale output looks very light. 101692|01|Jul/18/94| | |O| |2.3|||OBSOLETED by 101362 101694|01|Apr/25/94| | |O| |2.3|||OBSOLETED by 101318 -101697|03|May/25/94| | |O| |Unbundled|||SunNet Manager 2.2: Universal Jumbo Patch +101697|01|Apr/19/94| | |O| |Unbundled|||OBSOLETED by WITHDRAWN 101698|04|Apr/08/96| | | | |2.3|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: zsh driver fixes 101708|01|Jun/07/94| | | | |2.3|||OpenWindows 3.3: Japanese BDF font sources for GAIJI registration 101709|02|Sep/13/94| | |O| |2.3|||OBSOLETED by 102476 101712|01|Oct/28/94|R|S| | |2.3|sparc;|SUNWbnuu:11.5.0,REV=2.0.18;|SunOS 5.3: uucleanup isn't careful enough when sending mail +101714|03|Dec/08/94| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101714|07|Jan/19/96| | | | |Unbundled|sparc;|SUNWprsto:Dev;|Prestoserve 2.4.1: Jumbo Patch 101719|02|Sep/25/94| | | | |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5 Rev B: Lines display are thicker than NeWSprint 1.0, 101720|02|Jul/19/95| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ttymon fixes -101722|01|Apr/28/94| | |O| |Unbundled|101697;||SunNet Manager 2.2 multiple network interfaces or HA machine suppo 101726|01|Jun/22/94| | | | |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Unable to print certain AnswerBook pages to Laser 101729|01|May/25/94| | | | |2.3|sparc;|SUNWtoo:11.5.0,REV=2.0.18;|SunOS 5.3: savecore not dumping some symbols correctly 101730|04|Nov/02/95| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: zoneinfo update jumbo patch @@ -274,7 +278,6 @@ 101766|10|May/31/95| | | | |Unbundled|sparc;101318-70;101734-03;101945-23;102038-02;|SUNWnf:3.0;|SunLink FDDI/S 3.0: Jumbo Patch 101767|02|Sep/03/97| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/bin/passwd patch 101769|02|Feb/21/95| | | | |2.3|sparc;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: nisupdkeys fixes -101777|70|Jun/02/95| |S|O| |Unbundled|102113-01;||A+Edition 1.0: Jumbo patch for kernel (includes libc, lockd) 101778|08|Mar/25/96| | | | |Unbundled|sparc;|SUNWisdna:1.0;SUNWisdnb:1.0;|Sunlink ISDN 1.0, 1.0.1: JUMBO Patch 101782|03|Jun/16/98|R|S| | |2.3|sparc;101359-02;|SUNWcsr:11.5.0,REV=2.0.19;SUNWcsu:11.5.0,REV=2.0.18;SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/lib/sendmail patch 101785|04|Sep/13/96| | | | |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;SUNWcsu:11.5.0,REV=2.0.18;SUNWhea:11.5.0,REV=2.0.18;|SunOS 5.3: ISO-9660 cdrom fixes @@ -290,7 +293,6 @@ 101819|02|Nov/08/94| | | | |2.3|101692-01;||OpenWindows 3.3: Chinese/Taiwan F3 fonts fixes for Taiwan Solaris 101820|08|May/07/96| | | | |2.3|sparc;|SUNWbmac:1.1;SUNWbmac:1.5;|SunOS 5.3: SUNWbmac patch for Hardware: 5/94 and 8/94 releases 101821|01|Jul/06/94| | | | |Unbundled|sparc;|SUNWsteNP:2.5;|NeWsprint 2.5 RevB. supplied troff width files incorrectly. -101822|06|Feb/17/95| | |O| |2.3|||OBSOLETED by 102787 101827|01|Jun/17/94| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: quot command does not work for filesystems larger than 101829|01|Jul/22/94| | | | |Unbundled|sparc;|SUNWxildg:1.2,REV=3.4.0;|XIL 1.2: XIL uses too much memory when compressing JPEG images 101830|01|Jul/22/94| | | | |Unbundled|i386;|SUNWxildg:1.2,REV=3.4.0;|XIL 1.X: XIL uses too much memory when compressing JPEG images @@ -299,7 +301,6 @@ 101855|02|Feb/27/95| |S|O| |2.3|||OBSOLETED by 101318 101856|02|Apr/17/95| | | | |Unbundled|sparc;101458-03;|SUNWdniKR:8.0;|Sunlink DNI 8.0: Jumbo Patch 101857|01|Aug/01/94| | | | |2.3|sparc;|SUNWloc:11.5.0,REV=2.0.18;|SunOS 5.3: Wrong collation in Euopean locales -101858|02|Aug/17/94| | |O| |Unbundled|||Wabi 1.1: Wabi jumbo patch for sparc 101859|01|Feb/06/01| | |O| |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19,PATCH=118;|Obsoleted by: 101318-94 SunOS 5.3: socket lib in 2.3/2.2 have prob 101863|02|Aug/01/95| | | | |2.3|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWtcx:1.0.0,REV=3.7.3;SUNWtcxow:1.0.0,REV=3.7.3;|SunOS 5.3: 8/94 (A24/TCX framebuffer) multiple fixes patch 101865|02|Jan/26/95| | | | |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;SUNWowslb:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: Patch for libdps @@ -312,17 +313,21 @@ 101883|03|Feb/09/95| | | | |Unbundled|sparc;|SUNWmhs1b:8.0.1;SUNWmhs1c:8.0.1;|Sunlink X.400 8.0.1 Jumbo Patch 101884|04|Jan/26/95| | | | |Unbundled|sparc;|SUNWllc2a:1.19;SUNWx25a:1.19;SUNWx25b:1.19;|SunLink X25 8.0.1: Jumbo Patch 101885|01|Aug/11/94| | |O| |Unbundled|||OBSOLETED by 101910 +101886|01|Sep/01/94| | |O| B|2.3|||OBSOLETED by WITHDRAWN 101889|05|Apr/28/98|R|S| | |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: filemgr (ff.core) fixes 101890|15|May/04/99|R|S| | |2.4_x86|i386;|SUNWolinc:3.4.16,REV=0.94.06.23;SUNWolrte:3.4.17,REV=0.94.07.15;SUNWolslb:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: Xview Patch 101891|01|Sep/12/94| | | | |2.4_x86|i386;|SUNWxwmod:3.4.16,REV=0.94.06.22;|OpenWindows 3.4_x86: Open of /dev/mouse causes OW cursor to freeze 101892|15|Dec/21/99|R|S| |Y |2.4_x86|i386;103185-02;106674-01;106673-01;101890-14;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: Mailtool Patch 101895|01|Sep/30/94| | | | |Unbundled|sparc;|SUNWjxoft:1.1,REV=1.0.40;|NeWSprint 2.5:build font directory for Japanese NeWSPrint 101899|03|Jan/31/95| | |O| |2.4|||OBSOLETED by 106853 +101900|01|Sep/02/94| | |O| B|2.4|||OBSOLETED by WITHDRAWN +101901|01|Sep/02/94| | |O| B|2.4_x86|||OBSOLETED by WITHDRAWN 101902|09|Feb/19/97|R|S| | |2.4|sparc;sparc.sun4c;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: add_drv, drvconfig, pcfs, fdformat & fd fixes 101905|01|Sep/07/94| | | | |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: librac breaks authdes_seccreate on S494/Intel 101906|01|Sep/07/94| | | | |2.4_x86|i386;|SUNWarc:11.5.1,REV=94.07.18.19.02;SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: librac breaks authdes_seccreate on S494/Intel 101907|17|Mar/08/01|R|S| | |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10,PATCH=161;SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=397;SUNWvolu:11.5.1,REV=94.07.15.22.10,PATCH=18;|SunOS 5.4: usr/sbin/vold patch 101908|17|Mar/07/01|R|S| | |2.4_x86|i386;|SUNWarc:11.5.1,REV=94.07.18.19.02,PATCH=155;SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=374;SUNWvolu:11.5.1,REV=94.07.18.19.02,PATCH=18;|SunOS 5.4_x86: fixes to volume management +101909|03|Jan/10/95| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 101909|07|Mar/28/96| | | | |Unbundled|sparc;|SPROcc:3.0.1;SPROlang:3.0.1;|SPARCompiler C 3.0.1: C patch for Solaris 2.x 101910|14|Feb/09/96| | | | |Unbundled|sparc;106529;|SPROcpl:3.0.1;SPROlang:3.0.1;|SPARCompiler 3.0.1: C++ 4.0.1 patch for Solaris 2.x 101911|11|Mar/28/00| | | |Y |Unbundled|sparc;|SPROf77:3.0.1;SPROlang:3.0.1;SPROlib77:3.0.1;|SPARCompiler F77 3.0.1: Patch for FORTRAN 77 3.0.1 @@ -352,11 +357,9 @@ 101946|64|Jun/21/01|R|S| | |2.4_x86|i386;i386.i86pc;|SUNWarc:11.5.1,REV=94.07.18.19.02,PATCH=157;SUNWcar:11.5.1,REV=94.07.19.13.11,PATCH=127;SUNWcsr:11.5.1,REV=94.07.18.19.02,PATCH=144;SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=377;SUNWhea:11.5.1,REV=94.07.18.19.02,PATCH=140;SUNWkvm:11.5.1,REV=94.07.18.19.02,PATCH=53;SUNWs53:11.5.1,REV=94.07.18.19.02,PATCH=30;SUNWscpu:11.5.1,REV=94.07.18.19.02,PATCH=66;SUNWsra:11.5.1,REV=94.07.18.19.02,PATCH=42;|SunOS 5.4_x86: Kernel update 101950|01|Aug/24/94| | | | |2.4|sparc;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: mp output not structured PostScript, pages are re 101951|01|Sep/02/94| | | | |2.4_x86|i386;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: mp output not structured PostScript, pages pr -101956|02|Oct/31/94| | |O| |Unbundled|||SunNet Manager 2.2.2 Universal JUMBO Patch 101959|22|Jul/23/01|R|S| | |2.4|sparc;|SUNWlpr:11.5.1,REV=94.07.15.22.10,PATCH=22;SUNWlps:11.5.1,REV=94.07.15.22.10,PATCH=22;SUNWlpu:11.5.1,REV=94.07.15.22.10,PATCH=22;SUNWscpu:11.5.1,REV=94.07.15.22.10,PATCH=69;|SunOS 5.4: lp patch 101960|22|Aug/31/01|R|S| | |2.4_x86|i386;|SUNWlpr:11.5.1,REV=94.07.18.19.02,PATCH=22;SUNWlps:11.5.1,REV=94.07.18.19.02,PATCH=22;SUNWlpu:11.5.1,REV=94.07.18.19.02,PATCH=22;SUNWscpu:11.5.1,REV=94.07.18.19.02,PATCH=67;|SunOS 5.4_x86: lp patch 101961|13|Dec/22/95| | | | |Unbundled|sparc;|SPROdbgr:3.0.1;|SPARCworks 3.0.1: dbx core dumps at startup -101966|01|Aug/17/94| | |O| |Unbundled|||Wwabi 1.1: Wabi jumbo patch for i386 101967|01|Aug/22/94| | | | |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: pageview does not correctly install colormap 101968|02|Sep/12/94| | | | |2.3|sparc;|SUNWdoc:11.5.0,REV=2.0.18;|SunOS 5.3: eqn doesn't appear to handle bar properly 101969|05|Dec/02/94| | |O| |2.4|||OBSOLETED by 101945 @@ -384,6 +387,7 @@ 101998|02|Nov/18/94| | | | |Unbundled|||PC-NFS 5.0: "NET USE /MS" fails when server has libc patch install 102000|02|Sep/12/94| | | | |Unbundled|sparc;|SUNWllc2a:1.19;|SunLink LLC2 8.0.1 - Fixes for X25 and OSI. 102001|13|Apr/01/97| | | | |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: fixes for be, qe, le drivers +102002|02|Sep/29/94| | |O| B|2.4|||OBSOLETED by WITHDRAWN 102002|03|Feb/07/95| | |O| |2.4|||OBSOLETED by 102509 102003|03|Sep/22/95| | |O| |2.4|||OBSOLETED by 102001 102004|02|Apr/05/95| | |O| |2.4|||OBSOLETED by 102437 @@ -464,8 +468,10 @@ 102138|04|Dec/14/99| | | | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: cpio fixes 102139|01|Oct/19/94| | | | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: cpio returns end of medium on input, for truncated 102140|01|Oct/26/94| | | | |2.4|sparc;|SUNWoldcv:3.4.16,REV=0.94.06.23;|OpenWindows 3.4: docviewer print popup takes too long with many pr +102141|02|Dec/15/95| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +102141|03|Jun/27/96| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +102141|06|Dec/03/96| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 102141|08|Feb/26/98| | | | |Unbundled|sparc;|SUNWspii:1.0;|SPARCprinter II 1.0: jumbo patch -102145|01|Nov/04/94| | |O| |2.3|||OBSOLETED by 101822 102146|07|Jan/30/97| | | | |Unbundled|sparc;|SUNWrup2p:8.0;SUNWsnp2p:8.0;|Sunlink SNA P2P 8.0: Jumbo patch 102147|05|Jan/30/97| | | | |Unbundled|sparc;|SUNWscmmd:8.0;SUNWsdlc:8.0;|Sunlink SNA3270 and SNAP2P 8.0: SNA SDLC and snacommd 8.0 Jumbo Pa 102153|04|Mar/20/95| | | | |2.4|sparc;|SUNWadmap:6.4.16;SUNWadmfw:6.4.13;|SunOS 5.4: Admintool Jumbo patch @@ -501,14 +507,12 @@ 102224|10|Nov/26/96| | |O| |2.4|||OBSOLETED by 103935 102225|04|Jun/21/95| | |O| |2.4_x86|||OBSOLETED by 101946 102226|31|Feb/20/98|R| | | |Unbundled|sparc;|SUNWmfrun:1.2.3,REV=5.3;|Motif 1.2.3: libXm RunTime Kit Patch -102228|04|May/25/95| | |O| |Unbundled|||FDDI/S 2.0: Jumbo patch 102229|02|Dec/09/96| | | | |Unbundled|sparc;|SUNWllc2a:1.15;|SunLink SNA3270 & SNAP2P 8.0: Fixes for llc2 drive 102232|01|Dec/09/94| | | | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: quot fix 102235|01|Jan/25/95| | | | |Unbundled|sparc;|SUNWxt:2.0;|X Terminal 2.0: xtmgr core dumps running operations with 255 in I. 102238|02|Jan/28/97| | | | |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: fix for keyboard & mouse lock-up 102239|02|Mar/02/95| | | | |2.4|sparc;|SUNWcleu:5.8,REV=1.0.14;SUNWhleu:5.8,REV=1.0.20;SUNWkleu:5.8,REV=1.0.14;|SunOS 5.4: provide iconv modules to support XSH4. 102240|02|Mar/02/95| | | | |2.4_x86|i386;|SUNWcleu:5.8,REV=1.0.14;SUNWhleu:5.8,REV=1.0.20;SUNWkleu:5.8,REV=1.0.14;|SunOS 5.4_x86: iconv modules for zh/ko/zh_TW locale to support XSH -102245|24|Aug/05/98| | | | |Unbundled|sparc;|SUNWomgta:8.1;SUNWomgtb:8.1;SUNWomgte:8.1;|Sunlink CMIP (SDE) 8.1: patch for runtime and examples fixes 102251|01|Jan/24/95| | | | |Unbundled|sparc;|SUNWomgtb:8.0;|SunLink CMIP 8.0 : Various fixes in the Sunlink CMIP 8.0 packages 102254|01|Jan/06/95| | | | |Unbundled|sparc;|SUNWxildg:1.2,REV=3.4.0;|XIL 1.2: reading image from PhotoCD 102255|01|Jan/06/95| | | | |Unbundled|i386;|SUNWxildg:1.2,REV=3.4.0;|XIL 1.2: reading image from PhotoCD (x86 version) @@ -591,14 +595,13 @@ 102477|02|May/12/95| | | | |2.4|sparc;|SUNWjodst:1.1,REV=1.0.40;|OpenWindows 3.4 (JFP 2.4): fontmanager generates X_QueryColors err 102479|14|May/31/01|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=403;SUNWhea:11.5.1,REV=94.07.15.22.10,PATCH=139;|SunOS 5.4: libresolv, in.named, named-xfer, nslookup & nstest patc 102480|12|May/31/01|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=378;SUNWhea:11.5.1,REV=94.07.18.19.02,PATCH=141;|SunOS 5.4_x86: libresolv, in.named, named-xfer, nslookup, nstest p -102483|22|Apr/29/98| | | | |Unbundled|sparc;|SUNWomgta:8.1;SUNWomgtb:8.1;|Sunlink CMIP (RT) 8.1: Jumbo patch for runtime 102484|01|May/01/95| | | | |Unbundled|||PC-NFS 5.1a: Adds Point-to-Point Protocol to PC-NFS 5.1 and 5.1a 102485|01|Apr/04/95| | | | |Unbundled|||PC-NFSpro 1.1: email jumbo patch Ver. 1.8 102486|05|Aug/02/96| | | | |Unbundled|i386;102859-01;|SPROcc:3.0.1;SPROcpl:3.0.1;SPROlang:3.0.1;|ProCompiler 3.0.1_x86: C, C++ patch 102489|01|Apr/05/95| | | | |Unbundled|sparc;|SPROpmake:1.0.2;|SPARCworks 3.0.1: TeamWare 1.0.2, 1.0.3: dumps core with long file 102494|01|Jun/29/95| | | | |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: attaching debugger to xview/X11 causes kernel panic 102496|03|Sep/26/95|R| | | |Unbundled|i386;|SUNWmfrun:1.2.3,REV=5.3;|Motif 1.2.3_x86: libXm RunTime Kit Patch -102501|01|Jun/12/95| | |O| B|Unbundled|||OBSOLETED by BADPATCH +102501|01|Jun/12/95| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 102508|03|Mar/25/96| | | | |Unbundled|sparc;|SUNWisdna:1.0;SUNWisdnb:1.0;|Sunlink ISDN 1.0/1.0.1: JUMBO Patch (Japanese Certification Versio 102509|07|Feb/25/97| | |O| |2.4|||OBSOLETED by 101945 102518|01|May/23/95| | | | |Unbundled|i386;|SPROdbgr:3.0.1.01;|ProWorks 3.0.1: Jumbo patch @@ -617,6 +620,7 @@ 102565|02|Jun/29/95| | | | |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: eha: has data_overrun transport failure 102573|04|Mar/09/99| | | | |2.5.1_x86|i386;|SUNWos86r:1.0.0,REV=96.03.27.17.56;|SunOS 5.5.1_x86: pcplusmp patch 102578|01|Jun/14/95| | | | |Unbundled|||PC-NFSpro 1.1.1.0 - Com redirector strips 8 bit chars to 7 bits. +102580|06|Jan/17/96| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 102580|18|Nov/12/98| | | |Y |Unbundled|all;101945-32;|SUNWmd:4.0,REV=1.0;SUNWmdg:4.0,REV=1.0;|Solstice DiskSuite 4.0: various patch fixes 102587|01|Jul/19/95| |S| | |Unbundled|102629-01;||Firewall-1 1.0.7: filter doesn't load w/ 'failed to bind interface 102588|01|Aug/24/95| | | | |Unbundled|sparc;|SUNWxt:2.1;|X Terminal 2.1: xtmgr does not allow the use of underscores @@ -720,11 +724,8 @@ 102777|14|Feb/14/97| | | | |Unbundled|sparc;|SUNWemalb:1.1.1;SUNWemapp:1.1.1;SUNWemcpa:1.1.1;SUNWemmis:1.1.1;|Solstice Enterprise Manager 1.1.1: jumbo patch 102778|03|Sep/17/96|R|S| | |2.4_x86|i386;|SUNWarc:11.5.1,REV=94.07.18.19.02;SUNWbtool:11.5.1,REV=94.07.18.19.02;SUNWcsr:11.5.1,REV=94.07.18.19.02;SUNWcsu:11.5.1,REV=94.07.22.14.24;SUNWhea:11.5.1,REV=94.07.18.19.02;SUNWtoo:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: linker patch 102779|01|Sep/22/95| | | | |2.3|sparc;|JSatok7:1.2,REV=1.0.25;|SunOS 5.3 (JFP 2.3): atok7 hang when usr's dictionary was destroye -102781|02|Dec/19/95| | |O| |Unbundled|||Wabi 2.1: Jumbo patch -102782|02|Dec/19/95| | |O| |Unbundled|||Wabi 2.1: Jumbo patch 102783|01|Oct/11/95| | | | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: df: fix "Could not find mount point for xxxx" error 102785|01|Oct/04/95| | | | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: df: fix "Could not find mount point for xxxx" error -102787|07|Oct/24/97|R| | |Y |2.3|sparc;|SUNWsprot:3.0,REV=93.09.07;|SunOS 5.3: patch for sccs 102788|05|Jun/24/97|R| | |Y |2.4|sparc;|SUNWsprot:5.4,REV=94.05.11;SUNWxcu4t:5.5.1,REV=96.01.08;|SunOS 5.4: Patch for sccs 102789|04|Oct/24/97|R| | |Y |2.4_x86|i386;|SUNWsprot:5.4,REV=94.04.14;|SunOS 5.4_x86: Patch for sccs 102791|01|Mar/28/96| | | | |2.4|sparc;102303-04;|SUNWsprot:5.4,REV=94.05.11;|SunOS 5.4: libraries are handled differently by make in Solaris 2. @@ -732,9 +733,9 @@ 102812|02|Dec/19/95| | | | |2.4_x86|i386;|SUNWcsr:11.5.1,REV=95.07.27.05.09;SUNWcsu:11.5.1,REV=95.07.27.05.09;SUNWibcs2:11.5.1,REV=95.07.27.05.09;SUNWsyadm:11.5.2,REV=95.07.24.19.09;|SunOS 5.4_x86_SBS: Base Server jumbo patch for binary compatibilit 102813|01|Oct/14/95| | | | |Unbundled|||PC-NFSpro 1.1.1: Telnet HANGS when maximized via MS-Office toolbar 102816|01|Oct/13/95| | | | |2.3|sparc;|SUNWjfpu:2.5,REV=1.0.25;|SunOS 5.3 (JFP 2.3): jtops don't handle ^L correctly. -102817|01|Oct/09/95| | |O| |Unbundled|||Solstice CallTracker 1.0: Jumbo Patch 102820|01|Nov/20/95| | | | |2.4|sparc;|SUNWapppu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: aspppd fixes 102821|01|Nov/20/95| | | | |2.4_x86|i386;|SUNWapppu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: aspppd fixes +102832|03|Aug/01/97|R| |O| B|2.5|||OBSOLETED by WITHDRAWN 102832|07|Feb/22/99|R|S| | |2.5|sparc;|SUNWolinc:3.5.21,REV=0.95.08.23;SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Xview Patch 102833|04|Feb/22/99|R|S| | |2.5_x86|i386;|SUNWolinc:3.5.21,REV=0.95.08.23;SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Xview Patch 102835|07|Oct/20/97| | | |Y |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Filemgr Patch @@ -820,6 +821,8 @@ 102982|04|Nov/21/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/bin/csh Patch 102983|04|Nov/21/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/bin/csh Patch 102984|01|Jan/11/96|R| | | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: sd driver fix +103006|03|Apr/01/03| | |O| |Unbundled|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|Obsoleted by: 104849-09 AutoClient 1.1: allow disconnected CacheFS +103007|06|Apr/01/03| | |O| |Unbundled|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;|Obsoleted by: 104848-09 AutoClient 1.1: allow disconnected CacheFS 103008|01|Jan/19/96| | | | |Unbundled|sparc;|SUNWpcnet:1.5;SUNWpcpro:1.5;SUNWpcsnc:1.5;|PC-Admin 1.5: in NIS tbl, ini direc., logout unmounts home, %SNGRO 103009|03|May/07/96| | | | |2.5|sparc;|SUNWpppk:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: ppp fixes 103011|06|Mar/21/97| | | | |Unbundled|sparc;101318-71;101734-03;101945-27;102038-02;|SUNWnfr:4.0;|SunFDDI 4.0: System (SS1000E) can't connect to FDDI ring @@ -862,7 +865,7 @@ 103078|01|Mar/08/96| | | | |Unbundled|||WebScout 1.0: Netscape Navigator for Windows 1.2 points to nonexis 103082|02|Jun/05/00|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: patch usr/bin/tip 103086|01|Jan/25/96| | | | |Unbundled|||PC-NFS 5.1: lpr command print output of AutoCad plot files are gar -103088|02|Feb/01/96| | |O| B|2.5_x86|||OBSOLETED by BADPATCH +103088|02|Feb/01/96| | |O| B|2.5_x86|||OBSOLETED by WITHDRAWN 103089|01|Dec/19/95| | | | |Unbundled|||PC-NFS 5.1: Large model toolkit functions fail with bad file descr 103090|02|Dec/06/96| | | | |Unbundled|sparc;|SUNWpcnet:1.5.1.0;SUNWpcpro:1.5.1.0;SUNWpcsnc:1.5.1.0;|PC-Admin 1.5: Jumbo patch for PC components 103091|03|Jan/31/97| | | | |Unbundled|||PCNFSpro 2.0: Cannot launch & close TELNETW from MS-Office Toolbar @@ -878,8 +881,6 @@ 103142|03|Feb/22/96| | |O| |2.5|||OBSOLETED by 103247 103144|02|Feb/20/98| | | | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: kernel/strmod/timod fixes 103147|01|Feb/05/96| | | | |Unbundled|||PC-NFSPro 1.1, 1.1.1: National Replacement Character sets don't wo -103149|06|Jan/09/97| | | | |Unbundled|sparc;|SUNWomgta:8.1;SUNWomgtb:8.1;|Sunlink CMIP (SDE) 8.1: Jumbo patch -103150|06|Jan/09/97| | | | |Unbundled|sparc;|SUNWomgta:8.1;SUNWomgtb:8.1;|Sunlink CMIP (RT) 8.1: Jumbo patch 103153|17|Aug/25/97| | |O|Y |2.5|103093-04;||OBSOLETED by 103093 103154|17|Sep/08/97| | |O|Y |2.5_x86|103094-02;||OBSOLETED by 103094 103160|01|Jan/31/96| | | | |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: libgen jumbo patch @@ -910,8 +911,6 @@ 103213|01|Feb/07/96| | |O| |Unbundled|||OBSOLETED by 103860 103214|01|Feb/16/96| | | | |Unbundled|||PCNFSpro 1.1.1: S command causes error in SCO unix control file 103215|01|Feb/09/96| | | | |Unbundled|sparc;|SUNWpppu:3.0;|SunLink PPP 3.0: daemon dies with error process_ipd_msg -103217|01|Mar/22/96| | |O| |Unbundled|||Wabi 2.1: Jumbo patch -- INTERNATIONAL VERSION -103218|01|Mar/25/96| | |O| |Unbundled|||Wabi 2.1: Jumbo patch -- INTERNATIONAL VERSION 103219|06|Dec/17/96| | | | |Unbundled|sparc;|SPROf90:1.1;|SPARCompiler 4.0: Fortran 90 1.1 patch for Solaris 2.x 103221|01|Feb/02/96| | | | |Unbundled|||Keyboard buffering causes transposed function key sequence 103222|02|May/16/97| | | | |2.5|sparc;|SUNWarc:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/ccs/lib/libmalloc.a patch @@ -931,8 +930,10 @@ 103242|07|Sep/11/98|R|S| | |2.5|sparc;|SUNWarc:11.5.1,REV=95.10.27.15.23;SUNWbtool:11.5.1,REV=95.10.27.15.23;SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWhea:11.5.1,REV=95.10.27.15.23;SUNWtoo:11.5.1,REV=95.10.27.15.23;SUNWxcu4:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: linker patch 103243|07|Sep/11/98|R|S| | |2.5_x86|i386;|SUNWarc:11.5.1,REV=95.10.27.15.21;SUNWbtool:11.5.1,REV=95.10.27.15.21;SUNWcsr:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWhea:11.5.1,REV=95.10.27.15.21;SUNWtoo:11.5.1,REV=95.10.27.15.21;SUNWxcu4:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: linker patch 103244|03|Sep/12/96| | | | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWhea:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: le driver patch +103245|07|Oct/10/96|R|S|O| B|2.5_x86|||OBSOLETED by WITHDRAWN 103245|16|Jan/08/01|R|S| | |2.5_x86|i386;|SUNWadmap:6.5,REV=95.10.27.00.22;SUNWadmc:6.5,REV=95.10.26.23.34;SUNWsadml:6.5,REV=95.10.26.23.34;|SunOS 5.5_x86: admintool/launcher fixes + swmtool fixes & y2000 103246|03|Mar/26/96| | |O| |2.5|||OBSOLETED by 103210 +103247|02|Mar/20/96|R| |O| B|2.5|||OBSOLETED by WITHDRAWN 103247|16|Jan/04/01|R|S| | |2.5|sparc;|SUNWadmap:6.5,REV=95.10.26.23.37;SUNWadmc:6.5,REV=95.10.26.23.04;SUNWsadml:6.5,REV=95.10.26.23.04;|SunOS 5.5: admintool/launcher fixes + swmtool fixes & y2000 103250|01|Jan/23/95| | |O| |2.4|||OBSOLETED by 101902 103251|11|Apr/14/00|R|S| |Y |2.5|sparc;|SUNWoldcv:3.5.21,REV=0.95.08.23;SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: calendar manager patch @@ -994,7 +995,7 @@ 103341|01|Apr/01/96| | | | |Unbundled|i386;|SUNWnetA:2.0,REV=2.0;|Allows igs to find interfaces which prtconf misses in Solaris 2.5 103342|01|Apr/15/96| | | | |Unbundled|sparc;|SUNWjxf3:1.2,REV=1.0.79;|NeWSprint 2.5B: Build font directory to share it with J-OpenWindow 103344|04|Jun/02/98| | | | |Unbundled|sparc;|SUNWatm:2.0;SUNWatma:2.0;SUNWatmu:2.0;|SunATM 2.0: Patch -103346|29|Jun/29/01| | | | |Unbundled|||Hardware/PROM: Sun Enterprise 3x00/4x00/5x00/6x00 flashprom update +103346|30|Oct/30/02| | | | |Unbundled|||Hardware/PROM: Sun Enterprise 3x00/4x00/5x00/6x00 flashprom update 103348|03|Apr/28/97| | | | |Unbundled|sparc;|SUNWsnclt:1.1.1;|LAN Client 1.1: Jumbo patch. 103349|01|Apr/08/96| | | | |Unbundled|i386;|SUNWsnclt:1.1.1;|Solarnet LAN client 1.1 causes Solaris 2.5 panic with data fault 103351|02|May/15/96| | | | |Unbundled|sparc;|SUNWssadv:1.0;SUNWssadv:2.0;SUNWssadv:2.1,REV=1.0;SUNWssaop:1.0;SUNWssaop:2.0,REV=1.0;SUNWssaop:2.1,REV=1.0;|SPARCstorage Array 1.0, 2.0, 2.1, 2.1.1: Jumbo patch for Solaris 2 @@ -1082,7 +1083,7 @@ 103559|16|Jan/04/01|R|S| | |2.5.1_x86|i386;|SUNWadmap:6.5,REV=96.04.25.18.56;SUNWadmc:6.5,REV=96.04.25.18.04;SUNWsadml:6.5,REV=96.04.25.18.04;|SunOS 5.5.1_x86: admintool/launcher fixes + swmtool fixes & y2000 103560|02|Sep/04/96|R|S| | |2.5.1_ppc|||SunOS 5.5.1_ppc: admintool fixes for security/missing swmtool opti 103563|09|Jan/06/98| | | | |Unbundled|sparc;|SUNWpppk:3.0.1;SUNWpppr:3.0.1;SUNWppps:3.0.1;SUNWpppu:3.0.1;|SunLink PPP 3.0.1 Jumbo patch -103566|57|Aug/02/02|R|S| | |2.5.1|sparc;103640-40;|SUNWxwfnt:0.96.03.25;SUNWxwopt:0.96.03.25;SUNWxwplt:0.96.03.25;SUNWxwslb:0.96.03.25;|OpenWindows 3.5.1: Xsun patch +103566|57|Aug/02/02|R|S| | |2.5.1|sparc;103640-40;|SUNWxwfnt:3.5.27,REV=0.96.03.25;SUNWxwopt:3.5.27,REV=0.96.03.25;SUNWxwplt:3.5.27,REV=0.96.03.25;SUNWxwslb:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: Xsun patch 103568|01|Jun/20/96| | | | |2.4|sparc;|SUNWipx:1.1N;SUNWipxip:1.0.0,REV=1.1;|SunOS 5.4: IPX/SPX and IPX Gateway hangson heavy server load. 103569|01|Jun/20/96| | | | |Unbundled|sparc;|SUNWipxip:1.2,REV=1.0;|Webscout-NW 1.0: WebScout/NW does not work with connect/NW 2.0 103570|01|Sep/26/96| | | | |Unbundled|i386;|SUNWipxip:1.2,REV=1.0;|WebScout-NW 1.0: WebScout/NW does not work with connect/NW 2.0. @@ -1091,9 +1092,6 @@ 103581|24|Oct/20/99|R|S| | |2.5.1_x86|i386;103631-08;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: /kernel/drv/tcp and /usr/bin/netstat patch 103582|24|Oct/20/99|R|S| | |2.5.1|sparc;103630-08;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /kernel/drv/tcp and /usr/bin/netstat patch 103585|03|Mar/14/97| | |O| |Unbundled|||OBSOLETED by 104774 -103586|01|Jul/16/96| | |O| |Unbundled|||Sparc Wabi Jumbo patch -103587|01|Jul/16/96| | |O| |Unbundled|||Wabi jumbo patch for wabi 2.2 -103588|01|Jul/16/96| | |O| |Unbundled|||wabi jumbo patch for wabi 2.2 103591|09|Aug/26/97| | |O|Y |2.5.1|||OBSOLETED by 103640 103592|09|Sep/04/97| | |O|Y |2.5.1_x86|||OBSOLETED by 103641 103594|19|Jun/15/99|R|S| | |2.5.1|sparc;103663-01;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: sendmail fixes @@ -1131,8 +1129,8 @@ 103632|01|Jul/12/96|R| | | |2.5.1_ppc|ppc;|SUNWcsr:11.5.1,REV=96.05.02.20.57;SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: ip and ifconfig patch 103633|01|Jul/17/96| | | | |2.5.1_x86|i386;|SUNWpsdcr:1.0.0,REV=96.05.02.19.23;|SunOS 5.5.1_x86: kd: System panics during boot with no video card 103637|03|Feb/05/97| | | | |Unbundled|i386;|SUNWftamb:8.0.2;|Sunlink FTAM 8.0.2: Jumbo Patch -103640|40|Apr/16/02|R|S| | |2.5.1|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;|SUNWarc:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=97.02.21.21.14;SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWdrr:1.0.0,REV=97.02.21.21.14;SUNWfns:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;SUNWkvm:11.5.1,REV=96.05.02.21.09;SUNWkvm:11.5.1,REV=97.02.21.21.14;SUNWnisu:11.5.1,REV=96.05.02.21.09;SUNWscpu:11.5.1,REV=96.05.02.21.09;SUNWsra:11.5.1,REV=96.05.02.21.09;SUNWsutl:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: kernel, nisopaccess, & libthread patch -103641|40|Apr/16/02|R|S| | |2.5.1_x86|i386;i386.i86pc;|SUNWarc:11.5.1,REV=96.05.02.19.23;SUNWcar:11.5.1,REV=96.05.02.19.23;SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWfns:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;SUNWnisu:11.5.1,REV=96.05.02.19.23;SUNWscpu:11.5.1,REV=96.05.02.19.23;SUNWsra:11.5.1,REV=96.05.02.19.23;SUNWsutl:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: kernel update patch +103640|42|Dec/20/02|R|S| | |2.5.1|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;|SUNWarc:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=97.02.21.21.14;SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWdrr:1.0.0,REV=97.02.21.21.14;SUNWfns:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;SUNWkvm:11.5.1,REV=96.05.02.21.09;SUNWkvm:11.5.1,REV=97.02.21.21.14;SUNWnisu:11.5.1,REV=96.05.02.21.09;SUNWscpu:11.5.1,REV=96.05.02.21.09;SUNWsra:11.5.1,REV=96.05.02.21.09;SUNWsutl:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: kernel update patch +103641|42|Dec/20/02|R|S| | |2.5.1_x86|i386;i386.i86pc;|SUNWarc:11.5.1,REV=96.05.02.19.23;SUNWcar:11.5.1,REV=96.05.02.19.23;SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWfns:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;SUNWnisu:11.5.1,REV=96.05.02.19.23;SUNWscpu:11.5.1,REV=96.05.02.19.23;SUNWsra:11.5.1,REV=96.05.02.19.23;SUNWsutl:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: kernel update patch 103642|05|Feb/19/97| | | | |2.5.1_ppc|ppc;ppc.prep;|SUNWcar:11.5.1,REV=96.05.02.20.57;SUNWcsr:11.5.1,REV=96.05.02.20.57;SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: kernel patch 103643|04|Apr/29/97| | | | |2.5.1|sparc;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/nis/nisaddent fixes 103644|04|Apr/29/97| | | | |2.5.1_x86|i386;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/nis/nisaddent fixes @@ -1142,8 +1140,8 @@ 103658|02|Sep/17/96| | |O| |2.5.1|||OBSOLETED by 103640 103661|04|Dec/03/96| | | | |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: nisaddent patch 103662|04|Jun/19/97| | | | |2.5_x86|i386;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: nisaddent patch -103663|18|Jun/25/02|R|S| | |2.5.1|sparc;|SUNWcsr:96.05.02.21.09;SUNWcsu:96.05.02.21.09;SUNWhea:96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: libresolv, in.named, named-xfer, nslookup & nstest pa -103664|18|Jun/25/02|R|S| | |2.5.1_x86|i386;|SUNWcsr:96.05.02.19.23;SUNWcsu:96.05.02.19.23;SUNWhea:96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: libresolv,in.named,named-xfer,nslookup & nstest p +103663|19|Aug/12/02|R|S| | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: libresolv, in.named, named-xfer, nslookup & nstest pa +103664|19|Aug/12/02|R|S| | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: libresolv,in.named,named-xfer,nslookup & nstest p 103665|04|Jan/22/97|R|S| | |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;SUNWhea:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: libresolv,in.named,named-xfer,nslookup & nstest p 103667|12|Apr/25/01|R|S| | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWhea:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: libresolv, in.named, named-xfer, nslookup & nstest patc 103668|12|Apr/25/01|R|S| | |2.5_x86|i386;|SUNWcsr:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWhea:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: libresolv, in.named, named-xfer, nslookup&nstest pa @@ -1217,6 +1215,7 @@ 103789|06|May/22/97| | | | |Unbundled|||PC-NFSpro 2.0: NFSWNET.DRV patch - see bug descriptions 103790|01|Aug/08/96| | | | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: nss_nisplus.so.1 patch 103791|01|Aug/08/96| | | | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: nss_nisplus.so.1 patch +103792|08|Apr/01/98| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 103792|32|Jan/18/02| | | | |Unbundled|sparc;sparc.sun4u;|SUNWm64:1.2.0,REV=1.1.15;SUNWm64cf:1.2.0,REV=1.1.15;SUNWm64mn:1.2.0,REV=1.1.15;SUNWm64w:1.2.0,REV=1.1.15;|PGX 2.5.1: M64 Graphics Patch 103793|02|Nov/22/00| | | | |Unbundled|sparc;|SUNWtcxow:1.2.0,REV=1.1.0;|Solaris 2.5.1: TCX Graphics Patch 103794|05|Mar/24/98| | | | |Unbundled|sparc;|SUNWsx:1.2.0,REV=1.1.0;SUNWsxow:1.2.0,REV=1.1.0;SUNWsxxgl:1.2.0,REV=1.1.0;SUNWsxxil:1.2.0,REV=1.1.0;|SunOS 5.5.1: SX Graphics Patch @@ -1230,7 +1229,8 @@ 103808|02|Dec/22/98| | | | |Unbundled|i386;|SUNWdtbas:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtterm libDtTerm.so.1 patch 103810|04|Mar/13/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /usr/lib/libaio.so.1 patch 103811|03|Apr/30/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: libaio patch -103813|05|Mar/12/01|R|S| | B|2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=383;|BADPATCH SunOS 5.4: /usr/bin/rdist patch +103813|03|Oct/16/98|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/bin/rdist patch +103813|05|Mar/12/01|R|S| | B|2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=383;|WITHDRAWN SunOS 5.4: /usr/bin/rdist patch 103814|05|Mar/12/01|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=360;|SunOS 5.4_x86: /usr/bin/rdist patch 103815|03|Oct/16/98|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/bin/rdist patch 103816|03|Oct/16/98|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/rdist patch @@ -1269,14 +1269,19 @@ 103879|05|Mar/19/99|R|S| | |2.5.1|sparc;|SUNWkcspg:1.0.1,REV=1.0.5;SUNWkcsrt:1.0.1,REV=1.0.5;|OpenWindows 3.5.1: KCMS tools have security vulnerability 103880|05|Mar/19/99|R|S| | |2.5_x86|i386;|SUNWkcspg:1.0,REV=1.0.14;SUNWkcsrt:1.0,REV=1.0.14;|OpenWindows 3.5_x86: KCMS tools have security vulnerability 103881|05|Mar/19/99|R|S| | |2.5.1_x86|i386;|SUNWkcspg:1.0.1,REV=1.0.5;SUNWkcsrt:1.0.1,REV=1.0.5;|OpenWindows 3.5.1_x86: KCMS tools have security vulnerability +103882|01|Sep/11/96| |S|O| B|Unbundled|||OBSOLETED by WITHDRAWN 103882|16|Aug/08/00| |S| | |Unbundled|sparc;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtlogin patch +103884|01|Sep/11/96| |S|O| B|Unbundled|||OBSOLETED by WITHDRAWN 103884|10|Feb/29/00| |S| | |Unbundled|sparc;|SUNWdtdte:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtlogin patch +103885|01|Sep/09/96| |S|O| B|Unbundled|||OBSOLETED by WITHDRAWN 103885|10|Feb/29/00| |S| | |Unbundled|i386;|SUNWdtdte:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtlogin patch +103886|01|Sep/09/96| |S|O| B|Unbundled|||OBSOLETED by WITHDRAWN 103886|15|Aug/08/00| |S| | |Unbundled|i386;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtlogin patch 103891|08|Nov/08/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ksh and rksh patch 103892|08|Nov/06/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: ksh and rksh patch 103899|01|Oct/21/96|R|S| | |2.5|sparc;|SUNWowbcp:3.4.21,REV=0.94.12.02;|OpenWindows 3.5: XView Binary Compatibility Patch 103900|01|Oct/24/96|R| | | |2.5.1|sparc;|SUNWowbcp:3.4.38,REV=0.96.03.18;|OpenWindows 3.5.1: XView Binary Compatibility Patch +103901|07|Aug/05/97|R|S|O| B|2.5.1|||OBSOLETED by WITHDRAWN 103901|13|Jun/12/00|R|S| | |2.5.1|sparc;|SUNWolinc:3.5.30,REV=0.96.03.18;SUNWolrte:3.5.31,REV=0.96.03.18;SUNWolslb:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: Xview Patch 103903|06|Jul/27/99| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/le patch 103907|01|Sep/17/96| | | | |2.4|sparc;|SUNWbnuu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: uucp file forwarding does not work with Solaris 2.4, 2. @@ -1294,7 +1299,6 @@ 103934|19|Aug/10/01|R| | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/isp patch 103935|63|Jun/23/00| |S| |Y |2.4_CS6400|sparc;sparc.cray4d;|101945-41;CYRSdr:1.1.0,REV=94.12.22.23.36;CYRShea:1.1.0,REV=94.12.22.23.36;CYRSpartn:1.1.0,REV=94.12.22.23.36;SUNWarc:11.5.1,REV=94.07.15.22.10;SUNWbcp:11.5.1,REV=94.07.15.22.10;SUNWcar:11.5.1,REV=94.12.22.23.36;SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWhea:11.5.1,REV=94.07.15.22.10;SUNWkvm:11.5.1,REV=94.12.22.23.36;SUNWkvma:11.5.1,REV=94.12.22.23.36;SUNWscpu:11.5.1,REV=94.07.15.22.10;SUNWsra:11.5.1,REV=94.07.15.22.10;101945-41|SunOS 5.4 CS6400: kernel update 103936|03|Jun/03/97|R| | | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: kernel/drv/isp patch -103937|02|Nov/05/96| | |O| |Unbundled|||Japanese Wabi Jumbo Patch 103938|02|May/05/97| | |O| |Unbundled|||Wabi 2.2: x86 Japanese Wabi Jumbo Patch 103941|02|Sep/03/97| | | |Y |2.3|sparc;|SUNWaccu:11.5.0,REV=2.0.18;|SunOS 5.3: accounting patch 103942|02|Aug/29/97| | | |Y |2.4|sparc;|SUNWaccu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: accounting fixes @@ -1333,19 +1337,19 @@ 103990|03|Apr/04/97| | | | |2.5.1_x86|i386;|JSat8xw:1.3,REV=1.0.4;|SunOS 5.5.1_x86 (JFP 2.5.1): ATOK8 patch 103991|03|Apr/04/97| | | | |2.5.1_ppc|ppc;|JSat8xw:1.3,REV=1.0.4;|SunOS 5.5.1_ppc (Japanese): ATOK8 patch 103995|02|Jun/01/01| |S| | |2.5.1|sparc;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: rpc.nispasswdd patch -103996|02|Jun/19/01| |S| | |2.5.1_x86|i386;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: rpc.nispasswdd patch +103996|02|Jun/19/01|R|S| | |2.5.1_x86|i386;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: rpc.nispasswdd patch 104000|02|Apr/24/01|R|S| | |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/sbin/rpc.nispasswdd patch 104001|02|Apr/24/01| |S| | |2.5_x86|i386;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/sbin/rpc.nispasswdd patch 104002|02|Oct/16/96| | | | |2.5|sparc.sun4m;|SUNWcar:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: iommu fix 104003|02|Oct/16/96| | | | |2.5.1|sparc.sun4m;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: SS5: Data transfer with DVMA does not work correctly -104010|02|Jun/25/02|R|S| | |2.5.1|sparc;|SUNWvolu:96.05.02.21.09;|SunOS 5.5.1: VolMgt Patch -104011|02|Jun/25/02|R|S| | |2.5.1_x86|i386;|SUNWvolu:96.05.02.19.23;|SunOS 5.5.1_x86: VolMgt Patch +104010|02|Jun/25/02|R|S| | |2.5.1|sparc;|SUNWvolu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: VolMgt Patch +104011|02|Jun/25/02|R|S| | |2.5.1_x86|i386;|SUNWvolu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: VolMgt Patch 104012|01|Dec/23/96| |S| | |2.5.1_ppc|ppc;|SUNWvolu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: VolMgt Patch 104015|01|Dec/23/96|R|S| | |2.5|sparc;|SUNWvolu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: vold filemgr fixes 104016|01|Dec/23/96|R|S| | |2.5_x86|i386;|SUNWvolu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: vold filemgr fixes 104017|02|Jul/30/97| | | | |Unbundled|sparc;|SUNWipx:2.0.1,REV=1.0;|Solstice Connect/NW 2.0.1: Jumbo patch for Lotus Notes related iss -104018|09|Jun/13/02| | | | |Unbundled|sparc;|SUNWcccfg:1.2;SUNWcccfg:9;SUNWccrcv:1.2;SUNWccrcv:9;SUNWccsnd:1.2;SUNWccsnd:9;SUNWsnmag:2.3;SUNWsnmag:9;SUNWsnmct:2.3;SUNWsnmct:9;SUNWsnmpd:2.3;SUNWsnmpd:9;|Solstice Site/SunNet/Domain Manager 2.3 Rev B: jumbo patch -104019|10|Jun/18/02| | | | |Unbundled|i386;|SUNW86nma:10;SUNW86nma:2.3;SUNW86nmc:10;SUNW86nmc:2.3;SUNW86nmp:10;SUNW86nmp:2.3;SUNWcccfg:1.2;SUNWcccfg:10;SUNWccrcv:1.2;SUNWccrcv:10;SUNWccsnd:1.2;SUNWccsnd:10;|Solstice Site/SunNet/Domain Manager 2.3 Rev B: jumbo patch +104018|09|Jun/13/02| | | | |Unbundled|sparc;|SUNWcccfg:1.2,PATCH=9;SUNWccrcv:1.2,PATCH=9;SUNWccsnd:1.2,PATCH=9;SUNWsnmag:2.3,PATCH=9;SUNWsnmct:2.3,PATCH=9;SUNWsnmpd:2.3,PATCH=9;|Solstice Site/SunNet/Domain Manager 2.3 Rev B: jumbo patch +104019|10|Jun/18/02| | | | |Unbundled|i386;|SUNW86nma:2.3,PATCH=10;SUNW86nmc:2.3,PATCH=10;SUNW86nmp:2.3,PATCH=10;SUNWcccfg:1.2,PATCH=10;SUNWccrcv:1.2,PATCH=10;SUNWccsnd:1.2,PATCH=10;|Solstice Site/SunNet/Domain Manager 2.3 Rev B: jumbo patch 104021|01|Sep/20/96| | | | |Unbundled|||PC-NFS V5.1c: Incorrectly reports diskspace utilization 104029|01|Dec/23/96| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: utmpd daemon runs away consuming CPU resources 104030|01|Apr/30/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: utmpd daemon runs away consuming CPU resources @@ -1353,7 +1357,7 @@ 104038|03|Mar/03/97| |S| | |Unbundled|SPARC;|SUNWremon:1.0.1;|Reconfigure Modems for cleaner dialback 104042|05|Nov/26/97| |S| | |2.5_CS6400|sparc;sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5 CS6400: tcp patch 104055|03|Nov/02/01| | | | |2.5.1|sparc;103640-37;104849-01;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: kernel/fs/autofs patch -104056|02|Dec/09/97| | | | |2.5.1_x86|i386;103601-15;104848-01;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: kernel/fs/autofs patch +104056|03|Sep/04/02| | | | |2.5.1_x86|i386;104848-01;103641-40;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: kernel/fs/autofs patch 104058|02|Oct/23/96| | | | |Unbundled|sparc;|SUNWmfdev:1.2.3,REV=10.95.09.29;SUNWmfrun:1.2.6,REV=10.95.09.29;|Motif 1.2.3: UIL Compiler fixes for Solaris 2.5 104062|02|Jun/17/97| | | | |2.4_CS6400|sparc;sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4 CS6400: esp and isp fixes 104066|05|Mar/31/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/kernel/drv/audiocs patch @@ -1410,11 +1414,11 @@ 104167|05|Jun/19/01|R|S| | |2.5.1_x86|i386;104655-05;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/nfs/statd patch 104169|08|Mar/07/00| | | | |Unbundled|||Hardware/PROM: Ultra 2 Standalone Flash PROM Update 104170|05|Sep/22/97| | | | |Unbundled|sparc;|SUNWemalb:2.0;SUNWemapp:2.0;SUNWembc:2.0;SUNWemcpa:2.0;SUNWemdmn:2.0;SUNWemmis:2.0;SUNWemobj:2.0;|Solstice Enterprise Manager 2.0: Jumbo Patch +104172|11|Sep/18/98| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 104172|24|Dec/04/00| | | | |Unbundled|sparc;|SUNWmd:4.1-FCS,REV=6.0;SUNWmdg:4.1-FCS,REV=6.0;SUNWmdn:4.1-FCS,REV=6.0;|Solstice DiskSuite 4.1: Product patch -104173|23|Nov/14/00| | | | |Unbundled|i386;|SUNWmd:4.1-FCS,REV=6.0;SUNWmdg:4.1-FCS,REV=6.0;SUNWmdn:4.1-FCS,REV=6.0;|Solstice DiskSuite 4.1_x86: Product patch +104173|24|Jan/02/03| | | | |Unbundled|i386;|SUNWmd:4.1-FCS,REV=6.0;SUNWmdg:4.1-FCS,REV=6.0;SUNWmdn:4.1-FCS,REV=6.0;|Solstice DiskSuite 4.1_x86: Product patch 104174|02|Feb/11/97| |S|O| |Unbundled|||OBSOLETED by 104829 104178|04|Dec/27/99|R|S| | |Unbundled|sparc;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtmail fixes -104179|01|Sep/26/96| | |O| ||||Updated driver for 3Com EtherExpress 16 and 16TP Network Adapter 104180|01|Oct/29/96| | | | |Unbundled|sparc;103198-01;|SUNWsbuA:nfs1.0_fcs;|Netra NFS SmartServe 1.0: kernel coredump and sbu jumbo patch 104181|01|Oct/04/96| |S| | |Unbundled|103519-02;||PCNFS 5.1d: ping with mtu 1480 includes passwd in reply 104182|01|Nov/04/96| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: quotacheck patch @@ -1451,7 +1455,7 @@ 104236|01|Jan/29/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: in.routed finds packet from unknown router 104237|01|Apr/30/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: in.routed finds packet from unknown router 104239|02|Jun/01/98| | | | |Unbundled|sparc;|SUNWdial:3.2.0,REV=1.1.0;SUNWdialh:3.2.0,REV=1.1.0;|BD graphics 2.5.1: Buttons/Dials Patch -104241|23|Aug/06/02|R|S| | |2.5.1_x86|i386;103641-35;|SUNWxwfnt:0.96.03.25;SUNWxwopt:0.96.03.25;SUNWxwplt:0.96.03.25;SUNWxwslb:0.96.03.25;|OpenWindows 3.5.1_x86: Xsun Patch +104241|23|Aug/06/02|R|S| | |2.5.1_x86|i386;103641-35;|SUNWxwfnt:3.5.27,REV=0.96.03.25;SUNWxwopt:3.5.27,REV=0.96.03.25;SUNWxwplt:3.5.27,REV=0.96.03.25;SUNWxwslb:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: Xsun Patch 104242|08|Oct/22/01|R|S| | |2.5_x86|i386;|SUNWxwfnt:3.5.23,REV=0.95.09.22;SUNWxwopt:3.5.23,REV=0.95.09.22;SUNWxwplt:3.5.23,REV=0.95.09.22;SUNWxwslb:3.5.23,REV=0.95.09.22;|OpenWindows 3.5_x86: Server (Xsun, libX11, xterm) Patch 104243|01|Jan/21/97| | | | |Unbundled|sparc;|SUNWjws:1.0;|Java WorkShop 1.0: Patch for pkg install on Solaris 2.x 104245|04|Jun/23/97| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: esp driver patch @@ -1492,8 +1496,8 @@ 104327|01|Nov/14/96| | | | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: format patch 104331|08|Jun/01/01|R|S| | |2.5.1|sparc;103640-36;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/rpcbind patch 104332|08|Jun/19/01|R|S| | |2.5.1_x86|i386;103613-39;103641-35;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/rpcbind patch -104334|01|May/01/97|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: lockd patch -104335|01|May/02/97|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: lockd patch +104334|02|Dec/24/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: lockd patch +104335|02|Dec/24/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: lockd patch 104337|02|Jul/16/97|R|S| | |2.5|sparc;|SUNWxwplt:3.5.23,REV=0.95.09.22;SUNWxwslb:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: libXt patch 104338|03|Apr/12/00|R|S| | |2.5.1|sparc;|SUNWxwplt:3.5.27,REV=0.96.03.25;SUNWxwslb:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: libXt patch 104346|01|Nov/25/96| | | | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: PCI-PCI patch @@ -1533,6 +1537,7 @@ 104417|02|Dec/06/96| | | | |Unbundled|sparc;103189-02;|SUNWsnclt:1.1.1;|LanClient 1.1: lseek() normalized to read on a 512 byte boundary. 104426|02|Dec/09/96| | | | |Unbundled|104207-01;||PCNFSpro 2.0: Modem drops connection with Cisco Terminal Server 104427|01|Dec/11/96| | | | |Unbundled|||PC-NFSpro 2.0: Allows printing under French Telnet for PC-NFSpro 2 +104428|08|Dec/24/99|R|S|O| B|2.5|||OBSOLETED by WITHDRAWN 104428|12|Nov/09/01|R|S| | |2.5|sparc;103187-45;|SUNWtltk:3.6.0,REV=10.95.08.23;SUNWtltkd:3.6.0,REV=10.95.08.23;SUNWtltkm:3.6.0,REV=10.95.08.23;|OpenWindows 3.5: ToolTalk patch 104431|01|Jan/21/97| | | | |Unbundled|||Java WorkShop 1.0: Patch for tar install on Solaris 2.x 104432|01|Jan/21/97| | | | |Unbundled|||Java WorkShop 1.0: Patch for tar install on Solaris 2.x_x86 @@ -1558,8 +1563,8 @@ 104464|03|Oct/26/98| | | |Y |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWxcu4:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/date patch 104466|02|Aug/25/97| | | |Y |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWxcu4:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: usr/bin/date patch 104467|02|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWxcu4:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: usr/bin/date patch -104468|19|May/19/00| |S| |Y |Unbundled|all;sparc;|SUNWsacb:6.6,REV=96.11.18.00.42;SUNWsacd:6.6,REV=96.11.18.00.42;SUNWsaco:6.6,REV=96.11.18.00.43;SUNWsadma:6.6,REV=96.11.18.00.42;SUNWsadmb:6.6,REV=96.11.18.00.42;SUNWsadmc:6.6,REV=96.11.18.00.42;SUNWsadmm:6.6,REV=96.11.18.00.42;SUNWsadmo:6.6,REV=96.11.18.00.42;SUNWsadmp:6.6,REV=96.11.18.00.42;SUNWspapp:6.6,REV=96.11.18.00.42;|Solstice AdminSuite 2.3/AutoClient 2.1: y2000 NIS+ BSM -104469|18|Dec/24/99| |S| |Y |Unbundled|all;i386;|SUNWsacb:6.6,REV=96.11.18.00.32;SUNWsacd:6.6,REV=96.11.18.00.32;SUNWsaco:6.6,REV=96.11.18.00.33;SUNWsadma:6.6,REV=96.11.18.00.32;SUNWsadmb:6.6,REV=96.11.18.00.32;SUNWsadmc:6.6,REV=96.11.18.00.32;SUNWsadmm:6.6,REV=96.11.18.00.32;SUNWsadmo:6.6,REV=96.11.18.00.32;SUNWsadmp:6.6,REV=96.11.18.00.32;SUNWspapp:6.6,REV=96.11.18.00.32;|Solstice AdminSuite 2.3_x86/AutoClient 2.1_x86: y2000 NIS+ BSM +104468|20|Sep/09/02| |S| | |Unbundled|all;sparc;|SUNWsacb:6.6,REV=96.11.18.00.42;SUNWsacb:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsacd:6.6,REV=96.11.18.00.42;SUNWsacd:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsaco:6.6,REV=96.11.18.00.43;SUNWsaco:6.6,REV=96.11.18.00.43,PATCH=20;SUNWsadma:6.6,REV=96.11.18.00.42;SUNWsadma:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsadmb:6.6,REV=96.11.18.00.42;SUNWsadmb:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsadmc:6.6,REV=96.11.18.00.42;SUNWsadmc:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsadmm:6.6,REV=96.11.18.00.42;SUNWsadmm:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsadmo:6.6,REV=96.11.18.00.42;SUNWsadmo:6.6,REV=96.11.18.00.42,PATCH=20;SUNWsadmp:6.6,REV=96.11.18.00.42;SUNWsadmp:6.6,REV=96.11.18.00.42,PATCH=20;SUNWspapp:6.6,REV=96.11.18.00.42;SUNWspapp:6.6,REV=96.11.18.00.42,PATCH=20;|Solstice AdminSuite 2.3/AutoClient 2.1: y2000 NIS+ BSM +104469|20|Oct/15/02| |S| | |Unbundled|all;i386;|SUNWsacb:6.6,REV=96.11.18.00.32;SUNWsacb:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsacd:6.6,REV=96.11.18.00.32;SUNWsacd:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsaco:6.6,REV=96.11.18.00.33;SUNWsaco:6.6,REV=96.11.18.00.33,PATCH=20;SUNWsadma:6.6,REV=96.11.18.00.32;SUNWsadma:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsadmb:6.6,REV=96.11.18.00.32;SUNWsadmb:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsadmc:6.6,REV=96.11.18.00.32;SUNWsadmc:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsadmm:6.6,REV=96.11.18.00.32;SUNWsadmm:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsadmo:6.6,REV=96.11.18.00.32;SUNWsadmo:6.6,REV=96.11.18.00.32,PATCH=20;SUNWsadmp:6.6,REV=96.11.18.00.32;SUNWsadmp:6.6,REV=96.11.18.00.32,PATCH=20;SUNWspapp:6.6,REV=96.11.18.00.32;SUNWspapp:6.6,REV=96.11.18.00.32,PATCH=20;|Solstice AdminSuite 2.3_x86/AutoClient 2.1_x86: y2000 NIS+ BSM 104471|05|Dec/06/01| |S| | |Unbundled|sparc;|SUNWdtdte:1.0.2,REV=10.96.04.12;SUNWdtdte:1.0.2,REV=10.96.04.12,PATCH=05;|CDE 1.0.2: dtsession patch 104472|05|Dec/06/01| |S| | |Unbundled|i386;|SUNWdtdte:1.0.2,REV=10.96.04.12;SUNWdtdte:1.0.2,REV=10.96.04.12,PATCH=05;|CDE 1.0.2_x86: dtsession patch 104473|02|Aug/01/97| | | | |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: ypset patch @@ -1572,7 +1577,8 @@ 104483|01|Apr/23/97| | | | |2.5.1_x86|i386;|SUNWpppk:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/kernel/strmod/ppp patch 104484|01|Apr/23/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: fmli patch 104485|01|Apr/23/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: fmli patch -104489|14|Nov/09/01|R|S| | |2.5.1|sparc;103640-33;|SUNWtltk:3.6.0,REV=10.96.02.22;SUNWtltkd:3.6.0,REV=10.96.02.22;SUNWtltkm:3.6.0,REV=10.96.02.22;|OpenWindows 3.5.1: ToolTalk patch +104489|10|Dec/24/99|R|S|O| B|2.5.1|||OBSOLETED by WITHDRAWN +104489|15|Aug/29/02|R|S| | |2.5.1|sparc;103640-33;|SUNWtltk:3.6.0,REV=10.96.02.22;SUNWtltkd:3.6.0,REV=10.96.02.22;SUNWtltkm:3.6.0,REV=10.96.02.22;|OpenWindows 3.5.1: ToolTalk patch 104490|06|May/23/00|R|S|O|Y |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|Obsoleted by: 103640-35 SunOS 5.5.1: ufsdump and ufsrestore patch 104491|06|May/23/00|R|S|O|Y |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|Obsoleted by: 103641-35 SunOS 5.5.1_x86: ufsdump and ufsrestore pa 104492|02|Jan/21/97| | |O| |Unbundled|||OBSOLETED by 104840 @@ -1609,12 +1615,12 @@ 104574|03|Mar/24/97| | | | |Unbundled|sparc;|SUNWOosUs:1.0;|Openstep 1.0: Ultra-2 crash in /usr/openstep/etc/ospd 104576|01|Feb/28/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ccs/bin/m4 patch 104577|01|Apr/23/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/ccs/bin/m4 patch -104578|05|Jun/19/02|R|S| | |2.5.1|sparc;|SUNWcsu:96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: pkgadd/pkginstall & related utilities -104579|05|Jun/19/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: pkgadd/pkginstall & related utilities +104578|05|Jun/19/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: pkgadd/pkginstall & related utilities +104579|05|Jun/19/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: pkgadd/pkginstall & related utilities 104580|02|Apr/23/97| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/be patch 104589|01|Feb/19/97| | | | |2.5.1|sparc;|SUNWxwpsr:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: xgl draws over the overlapped window 104594|03|Jul/12/99| | |O| |2.5.1|||OBSOLETED by 103640 -104595|09|Dec/02/99|R| | | |2.5.1|sparc.sun4d;sparc.sun4u;sparc.sun4u1;|SUNWkvm:11.5.1,REV=96.05.02.21.09;SUNWkvm:11.5.1,REV=97.02.21.21.14;|SunOS 5.5.1: prtdiag patch +104595|10|Aug/26/02|R| | | |2.5.1|sparc.sun4d;sparc.sun4u;sparc.sun4u1;|SUNWkvm:11.5.1,REV=97.02.21.21.14;|SunOS 5.5.1: prtdiag patch 104596|14|Nov/15/01| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWpd:1.0,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/se, /etc/minor_perm & /etc/devlink.tab pa 104598|01|May/02/97| | | | |Unbundled|||Java Workshop 1.0.1: Patch for Win95 and NT 104601|02|Aug/01/97| | | | |Unbundled|sparc;|SUNWfwvpn:2.1;|Solstice FireWall-1 2.1c: (VPN) upgrade/jumbo patch @@ -1622,7 +1628,7 @@ 104604|04|Jul/18/97| | |O| |2.5.1|||OBSOLETED by 105004 104605|12|Jun/19/01|R| | | |2.5.1|sparc;|SUNWhea:11.5.1,REV=96.05.02.21.09;SUNWpd:1.0,REV=96.05.02.21.09;|SunOS 5.5.1: ecpp driver patch 104607|01|Mar/11/97| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: lebuffer driver patch -104608|04|Oct/02/98| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: qe driver patch +104608|05|Sep/16/02| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: qe driver patch 104609|01|Mar/10/97| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: qec driver patch 104611|01|Mar/13/97| | | | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: adb patch 104613|01|Feb/28/97|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/newsyslog patch @@ -1639,6 +1645,7 @@ 104635|01|Oct/02/97| | | | |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/nroff patch 104637|04|Mar/09/01|R|S| | |2.5.1|sparc;|SUNWarc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ccs/lib/libcurses.a patch 104638|04|Mar/09/01|R|S| | |2.5.1_x86|i386;|SUNWarc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/ccs/lib/libcurses.a patch +104641|05|Aug/05/97|R|S|O| B|2.5.1_x86|||OBSOLETED by WITHDRAWN 104641|13|Jun/13/00|R|S| | |2.5.1_x86|i386;|SUNWolinc:3.5.30,REV=0.96.03.18;SUNWolrte:3.5.31,REV=0.96.03.18;SUNWolslb:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: Xview Patch 104642|01|Feb/25/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/sttydefs patch 104643|01|Feb/25/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/sttydefs patch @@ -1664,7 +1671,7 @@ 104670|02|Oct/06/97|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: rlogin patch 104672|02|Apr/04/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/lib/fs/nfs/mount patch 104673|02|Apr/04/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/lib/fs/nfs/mount patch -104678|12|Mar/18/02|R| | | |Unbundled|i386;107734-09;|SUNWlibC:5.6,REV=97.03.05;|SunOS 5.6_x86: Shared library patch for C++ +104678|17|Jun/24/03|R| | | |Unbundled|i386;107734-09;|SUNWlibC:5.6,REV=97.03.05;|SunOS 5.6_x86: Shared library patch for C++ 104686|02|Apr/04/97| | | | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/lib/fs/nfs/mount patch 104687|02|Apr/04/97| | | | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/lib/fs/nfs/mount patch 104690|01|Jul/11/97|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/sbin/in.talkd patch @@ -1681,6 +1688,7 @@ 104705|01|Mar/14/97|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: in.tftpd patch 104706|01|Mar/11/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWxcu4:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/id and usr/xpg4/bin/id patch 104707|01|Apr/25/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWxcu4:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/bin/id and usr/xpg4/bin/id patch +104708|01|Mar/21/97|R| |O| B|2.5.1|||SunOS 5.5.1: ssd/pln patch 104708|21|Apr/20/01|R| | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;SUNWssadv:11.5.1,REV=96.05.02.21.09;SUNWssaop:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ssd, pln, soc, ssaadm and ssafirmware patch 104710|01|Mar/21/97| | |O| B|2.5.1|||OBSOLETED by 104708 104714|03|Jun/09/98| | | | |Unbundled|sparc;104452-05;|SUNWhaor:1.2,REV=1.1;|Solstice HA 1.2: SUNWhaor Patch @@ -1753,15 +1761,19 @@ 104833|02|Nov/25/97| | | | |Unbundled|sparc;|SUNWnfsA:NFS_1.1;SUNWntrpr:NFS_1.1;|NetraNFS SmartServe 1.1: performance patch 104834|02|Jan/08/98| | | | |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: kernel/sched/TS patch 104838|01|May/30/97| | | | |Unbundled|i386;103527-01;|SUNWnwsvr:2.0,REV=1.0;|Solstice NW Server 2.0: WP filesharing, Novell 32 bit client +104839|01|Jun/04/97| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +104839|03|Nov/13/97| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +104839|04|Jan/29/98| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 104839|06|Jun/06/01| | | | |Unbundled|||Hardware, 4.2GB Disks: Download program and ST15230 0764 firmware 104840|03|Oct/28/97| | | | |Unbundled|sparc;|SUNWccm:1.2,REV=1.2_FCS;SUNWccon:1.2,REV=1.2_FCS;SUNWclmon:1.2,REV=1.2_FCS;SUNWcmm:1.2,REV=1.2_FCS;SUNWdmond:1.2,REV=1.2_FCS;SUNWmond:1.2,REV=1.2_FCS;SUNWpdb:1.2,REV=1.2_FCS;SUNWpdbcf:1.2,REV=1.2_FCS;SUNWudlm:1.2,REV=1.2_FCS;|Ultra Enterprise Cluster PDB 1.2 jumbo patch 104841|06|Mar/08/01|R|S| | |2.5.1|sparc;103640-35;|SUNWvolu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/vold patch 104842|06|Mar/08/01|R|S| | |2.5.1_x86|i386;103641-35;|SUNWvolu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/vold patch 104844|06|Dec/14/98| | | | |Unbundled|sparc;|SPROesrt:1.0;SPROmktl:2.0;SPROws:4.0;|WorkShop IPE 4.0: Patch +104846|03|May/27/97| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 104846|12|Oct/13/98| | | | |Unbundled|sparc;|SUNWsspdf:3.0.0,REV=97.02.27.20.05;SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: bringup and power fixes 104847|03|Sep/08/97| | |O| |Unbundled|||OBSOLETED by 104846 -104848|01|Dec/09/97| | | | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: kernel/fs/cachefs patch -104849|08|Jul/23/99| | | | |2.5.1|sparc;103640-14;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /kernel/fs/cachefs patch +104848|09|Apr/01/03|R|S| | |2.5.1_x86|i386;103641-14;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWhea:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: /kernel/fs/cachefs patch +104849|09|Apr/01/03|R|S| | |2.5.1|sparc;103640-14;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: /kernel/fs/cachefs patch 104850|02|Aug/28/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: usr/sbin/disks and usr/lib/libdevinfo.so.1 patch 104852|01|May/08/97| | | | |Unbundled|||Solstice Network Client (SNC) 3.0: PC CacheFs causes GPF 104853|05|Apr/16/99| | | | |Unbundled|sparc;|SUNWsspob:3.0.0,REV=97.02.27.20.05;|SSP 3.0: OBP fixes @@ -1851,7 +1863,7 @@ 104972|01|Jun/13/97|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: chkey and newkey patch 104973|01|Jun/16/97|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: chkey and newkey patch 104974|01|Jun/17/97|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: chkey and newkey patch -104975|01|Aug/12/97| | | | |Unbundled|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0;|FTsparc 5.0: Multiple console and modem fixes +104975|02|Aug/27/03| | | | |Unbundled|||FTsparc 5.0: Multiple console and modem fixes 104976|08|Mar/08/02|R|S| | |2.5.1|sparc;103640-33;|SUNWoldcv:3.5.30,REV=0.96.03.18;SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: Calendar Manager patch 104977|01|Jun/12/97| | | |Y |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: perfmeter patch 104978|01|Jul/17/97| | |O| |Unbundled|||OBSOLETED by 104846 @@ -1879,7 +1891,7 @@ 105018|01|Aug/25/97| | | |Y |2.5|sparc;|SUNWarc:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/lib/libkrb.a & usr/lib/libkrb.so.1 patch 105019|01|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWarc:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/lib/libkrb.a & usr/lib/libkrb.so.1 patch 105020|01|Sep/16/97| | | |Y |2.3|sparc;|SUNWjbcp:1.4,REV=1.0.25;|SunOS 5.3 (JFP 2.3): Japanese BCP libc patch -105022|03|Dec/10/01| | | | |Unbundled|sparc;|SUNWfra:2.0.1,PATCH=3;SUNWfrb:2.0.1,PATCH=3;|Solstice Frame Relay 2.0.1 +105022|04|Mar/10/03| | | | |Unbundled|sparc;|SUNWfra:2.0.1,PATCH=4;SUNWfrb:2.0.1,PATCH=4;|Solstice Frame Relay 2.0.1 105024|01|Jul/07/97| | | | |Unbundled|sparc;|SUNWsspdr:3.0.0,REV=97.02.27.20.05;|System Service Processor (SSP) 3.0: drview fixes 105029|11|Mar/09/99| | | | |Unbundled|sparc;|SUNWapr:2.0.0,REV=97.02.21.16.57;SUNWapu:2.0.0,REV=97.02.21.16.57;|AP 2.0: ap driver fixes 105030|01|Jul/17/97| | | | |Unbundled|sparc;|SUNWsbus1:4.2.2;|Solstice Backup 4.2.2 fixes @@ -1887,6 +1899,7 @@ 105032|01|Jul/23/97| | |O| |Unbundled|||OBSOLETED by 105036 105033|01|Jul/23/97| | | | |Unbundled|sparc;|SUNWsbuc:4.2.2;|Solstice Backup 4.2.2: fixes 105036|03|Mar/22/99| | | |Y |Unbundled|sparc;|SUNWsbuc:4.2.6;SUNWsbus1:4.2.6;SUNWsbus2:4.2.6;|Solstice Backup 4.2.6: Product Patch and y2000 Fixes +105037|01|Oct/07/97| | |O| B|Unbundled|105036-02;||OBSOLETED by WITHDRAWN 105037|03|Jun/02/98| | | | |Unbundled|sparc;|SUNWsbuc:4.2.6;|Solstice Backup 4.2.6 fixes 105044|01|Aug/26/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/renice patch 105045|01|Sep/04/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/bin/renice patch @@ -1913,7 +1926,7 @@ 105079|03|Dec/15/99| | | | |Unbundled|sparc;|SUNWrk6:1.0;|Solstice RFC1006/TLI Module 1.0: Patch 105082|01|Jul/18/97| | | | |Unbundled|||Solstice FireWall-1 3.0a upgrade/jumbo patch "non" VPN 105083|01|Jul/18/97| | | | |Unbundled|||Solstice FireWall-1 3.0a: Windows NT 4.x: upgrade/jumbo patch VPN -105084|17|Jul/23/02| | | | |Unbundled|sparc;|SUNWllc2a:17;SUNWx25a:17;SUNWx25b:17;|Solstice X25 9.1 patch +105084|17|Jul/23/02| | | | |Unbundled|sparc;|SUNWllc2a:9.1,PATCH=17;SUNWx25a:9.1,PATCH=17;SUNWx25b:9.1,PATCH=17;|Solstice X25 9.1 patch 105086|01|Aug/14/97| | | | |Unbundled|sparc;|SUNWsye:1.4,REV=25;SUNWsyrt:1.4,REV=25;SUNWsys:1.4,REV=25;SUNWsyu:1.4,REV=25;|Symon 1.4: AIl errors and network hangs 105088|01|Aug/21/97| | | | |Unbundled|sparc;|SUNWpcdhc:1.5.1.0;|PC-Admin 1.5.1: IP fragmentation flags cause DHCP packet to discar 105090|02|Oct/22/97| | | | |Unbundled|||Solstice Network Client (SNC) 3.1: Pronto96.exe page faults @@ -1949,7 +1962,7 @@ 105127|05|Dec/21/99|R|S| |Y |2.5.1_x86|i386;104241-06;106665-01;106664-01;104641-11;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: mailtool patch 105128|01|Oct/01/97| | | |Y |2.5.1_x86|i386;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: perfmeter patch 105133|02|Jun/01/01| |S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/keyserv patch -105134|02|Jun/19/01| |S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/keyserv patch +105134|02|Jun/19/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/keyserv patch 105154|06|Feb/17/99| | | | |Unbundled|i386;|SPROesrt:1.0;SPROmktl:2.0;SPROws:4.0;|WorkShop IPE 4.0_x86: Patch 105158|01|Aug/14/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/disks patch 105160|14|Mar/08/01| | | | |2.6|sparc;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2: dtterm libDtTerm.so.1 patch @@ -1968,12 +1981,12 @@ 105177|01|Aug/11/97| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/lib/utmp_update patch 105178|01|Aug/14/97| | | | |Unbundled|sparc;|SPROprfan:4.0;|WorkShop IPE 4.0: Analyzer patch for Solaris 2.x 105180|01|Aug/15/97| | | | |Unbundled|sparc;|SUNWsspdr:3.0.0,REV=97.02.27.20.05;|SSP 3.0: libdr fixes -105181|32|May/31/02|R|S| | |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;106429-02;|FJSVhea:1998.09.24.13.46;SUNWarc:1997.07.15.21.46;SUNWcar:1997.07.15.21.46;SUNWcar:1998.01.23.18.28;SUNWcar:1998.09.28.10.46;SUNWcg6:1997.07.15.21.46;SUNWcg6:1998.09.24.13.46;SUNWcsr:1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;SUNWdrr:1998.01.23.18.28;SUNWhea:1997.07.15.21.46;SUNWhmd:1997.07.15.21.46;SUNWhmdu:1997.07.15.21.46;SUNWkvm:1997.07.15.21.46;SUNWkvm:1998.01.23.18.28;SUNWkvm:1998.09.24.13.46;SUNWnisu:1997.07.15.21.46;SUNWsrh:1997.07.15.21.46;SUNWssadv:1997.07.15.21.46;SUNWssaop:1997.07.15.21.46;|SunOS 5.6: Kernel update patch -105182|32|May/31/02|R|S| | |2.6_x86|i386;i386.i86pc;|SUNWarc:1997.07.16.00.21;SUNWcar:1997.07.16.00.21;SUNWcsr:1997.07.16.00.21;SUNWcsu:1997.07.16.00.21;SUNWhea:1997.07.16.00.21;SUNWnisu:1997.07.16.00.21;SUNWsrh:1997.07.16.00.21;|SunOS 5.6_x86: Kernel update patch +105181|35|Jul/28/03|R|S| |Y |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;|FJSVhea:1.0,REV=1998.09.24.13.46;SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcar:11.6.0,REV=1998.09.28.10.46;SUNWcg6:11.6.0,REV=1997.07.15.21.46;SUNWcg6:11.6.0,REV=1998.09.24.13.46;SUNWcsd:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWdrr:1.1.0,REV=1998.01.23.18.28;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWhmd:11.6.0,REV=1997.07.15.21.46;SUNWhmdu:11.6.0,REV=1997.07.15.21.46;SUNWkvm:11.6.0,REV=1997.07.15.21.46;SUNWkvm:11.6.0,REV=1998.01.23.18.28;SUNWkvm:11.6.0,REV=1998.09.24.13.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;SUNWsrh:11.6.0,REV=1997.07.15.21.46;SUNWssadv:11.6.0,REV=1997.07.15.21.46;SUNWssaop:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Kernel update patch +105182|35|Jul/28/03|R|S| |Y |2.6_x86|i386;i386.i86pc;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcar:11.6.0,REV=1997.07.16.00.21;SUNWcsd:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;SUNWsrh:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: kernel update patch 105185|01|Dec/09/97| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: etc/format.dat patch 105186|01|Dec/09/97| | | | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: etc/format.dat patch 105187|01|Sep/29/97| | | | |Unbundled|sparc;103356-01;|SUNWisdnk:1.0.3;|SunISDN 1.0.3: kernel module iscm fixes -105188|17|Jul/23/02| | | | |Unbundled|i386;|SUNWexpx:14;SUNWllc2a:17;SUNWx25a:17;SUNWx25b:17;|SunLink X25 9.1 patch_x86 +105188|17|Jul/23/02| | | | |Unbundled|i386;|SUNWexpx:1.1,PATCH=14;SUNWllc2a:9.1,PATCH=17;SUNWx25a:9.1,PATCH=17;SUNWx25b:9.1,PATCH=17;|SunLink X25 9.1 patch_x86 105189|03|May/18/98| | |O| |2.6|||OBSOLETED by 106040 105190|01|Dec/09/97| | | | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: kernel/drv/pci_pci patch 105191|07|Apr/01/99| | | | |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.97.06.12;|OpenWindows 3.6_x86: Updated ATI video support. @@ -1988,12 +2001,12 @@ 105206|01|Sep/30/97| | | | |Unbundled|sparc;|SUNWvmman:2.3;SUNWvxvm:2.3;|SPARCstorage Array Veritas 2.3: Patch for Veritas 105207|06|Nov/20/98| |S| | |Unbundled|i386;|SUNWdtdst:1.1,REV=10.97.06.18;SUNWdthev:1.1,REV=10.97.06.18;SUNWdtma:1.1,REV=10.97.06.18;|CDE 1.1_x86: dtmail patch 105208|04|Apr/13/98| | | | |Unbundled|sparc;|SUNWvmman:2.4;SUNWvxvm:2.4;|Sun Enterprise Volume Manager 2.4, Sun Enterprise Network Array -105210|47|Jun/11/02|R|S| | |2.6|sparc;105181-22;|SUNWarc:1997.07.15.21.46;SUNWcsr:1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;SUNWhea:1997.07.15.21.46;|SunOS 5.6: libaio, libc & watchmalloc patch -105211|49|Jun/12/02|R|S| | |2.6_x86|i386;105182-22;|SUNWarc:1997.07.16.00.21;SUNWcsr:1997.07.16.00.21;SUNWcsu:1997.07.16.00.21;SUNWhea:1997.07.16.00.21;|SunOS 5.6_x86: libaio, libc & watchmalloc patch +105210|51|Jan/30/03|R|S| | |2.6|sparc;105181-22;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libaio, libc & watchmalloc patch +105211|53|Apr/15/03|R|S| |Y |2.6_x86|i386;105182-22;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libaio, libc & watchmalloc patch 105214|01|Oct/02/97| | |O| |2.6|||OBSOLETED by 105181 105215|01|Oct/02/97| | |O| |2.6_x86|||OBSOLETED by 105182 -105216|04|Apr/14/00|R|S| | |2.6|sparc;105401-07;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/rpcbind patch -105217|04|Aug/21/00|R|S| | |2.6_x86|i386;105402-07;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/rpcbind patch +105216|05|Sep/19/02|R|S| | |2.6|sparc;105401-40;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/rpcbind patch +105217|05|Sep/23/02|R|S| | |2.6_x86|i386;105402-40;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/rpcbind patch 105221|01|Aug/18/97| | | |Y |Unbundled|sparc;|SUNWvts:2.0.1,REV=16.97.03.13;|SunVTS 2.0.1: Y2K compliance required 105222|03|May/28/98| | |O| |2.6|105181-05;||OBSOLETED by 105181 105223|05|Sep/18/98| | |O| |2.6|sparc;105181-05;|SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWssadv:11.6.0,REV=1997.07.15.21.46;SUNWssaop:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: pln/soc drivers & ssafirmware p @@ -2019,8 +2032,8 @@ 105271|01|Oct/20/97| | | |Y |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Perfmeter will not handle year properly on year 2 105272|13|Dec/16/99| |S| | |Unbundled|i386;|SUNWsds:1.0;|Sun Directory Services 1.0_x86: Patch 105277|03|Apr/13/99| | | |Y |Unbundled|sparc;|SUNWsbuc:4.2.6.a;SUNWsbus1:4.2.6.a;SUNWsbus2:4.2.6.a;|Solstice Backup 4.2.6.a: Product Patch -105284|49|Mar/19/02|R|S| | |Unbundled|sparc;|SUNWmfrun:1.2.7,REV=10.97.07.02;|Motif 1.2.7: Runtime library patch -105285|49|Mar/19/02|R|S| | |Unbundled|i386;|SUNWmfrun:1.2.7,REV=10.97.07.02;|Motif 1.2.7_x86: Runtime library patch +105284|50|Nov/21/02|R|S| | |Unbundled|sparc;|SUNWmfrun:1.2.7,REV=10.97.07.02;|Motif 1.2.7: Runtime library patch +105285|50|Nov/21/02|R|S| | |Unbundled|i386;|SUNWmfrun:1.2.7,REV=10.97.07.02;|Motif 1.2.7_x86: Runtime library patch 105287|01|Oct/01/97| | | |Y |2.4_x86|i386;|SUNWxwopt:3.4.15,REV=0.94.06.02;|OpenWindows 3.4_x86: xterm patch 105288|01|Oct/01/97| | |O|Y |2.5_x86|||OBSOLETED by 104242 105289|01|Oct/01/97| | |O|Y |2.5.1_x86|||OBSOLETED by 104241 @@ -2075,35 +2088,37 @@ 105353|01|Dec/24/97| | | | |2.5.1_x86|i386;103641-14;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: kernel/exec/elfexec patch 105354|04|Aug/02/01| |S| | |Unbundled|i386;|SUNWdtbas:1.0.2,REV=10.96.04.12;SUNWdtbas:1.0.2,REV=10.96.04.12,PATCH=04;|CDE 1.0.2_x86: libDtHelp.so.1 patch 105355|01|Nov/12/97| | | | |Unbundled|sparc;|SPROvisu:2.0;|Workshop Visual 2.0, 2.0.1: Patch for Solaris 2.x -105356|20|Jul/22/02|R| | | |2.6|sparc;|SUNWcsr:1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;SUNWhea:1997.07.15.21.46;SUNWssadv:1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ssd and /kernel/drv/sd patch +105356|23|Sep/15/03|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWssadv:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ssd and /kernel/drv/sd patch 105357|04|Jun/30/99|R| | | |2.6|sparc;|SUNWses:1.2,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ses patch -105360|42|Apr/17/02| | | | |Unbundled|sparc;sparc.sun4u;|SUNWffb:2.0.0,REV=1.0.29;SUNWffbcf:2.0.0,REV=1.0.29;SUNWffbw:2.0.0,REV=1.0.29;SUNWffbxg:2.0.0,REV=1.0.29;|Creator 2.6: FFB Graphics Patch +105360|43|Nov/25/02| | | | |Unbundled|sparc;sparc.sun4u;|SUNWffb:2.0.0,REV=1.0.29;SUNWffbcf:2.0.0,REV=1.0.29;SUNWffbw:2.0.0,REV=1.0.29;SUNWffbxg:2.0.0,REV=1.0.29;|Creator 2.6: FFB Graphics Patch 105361|11|Dec/02/99| | | | |Unbundled|sparc;|SUNWxilvl:2.0.0,REV=1.0.29;|VIS/XIL 2.6: Graphics Patch -105362|43|Jul/30/02| | | | |Unbundled|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:1.0.29;SUNWm64:1998.09.24.13.46;SUNWm64cf:1.0.29;SUNWm64w:1.0.29;|PGX 2.6: M64 Graphics Patch +105362|07|Apr/06/98| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +105362|45|Nov/27/02| | | | |Unbundled|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:2.0.0,REV=1.0.29;SUNWm64:2.0.0,REV=1998.09.24.13.46;SUNWm64cf:2.0.0,REV=1.0.29;SUNWm64w:2.0.0,REV=1.0.29;|PGX 2.6: M64 Graphics Patch 105363|38|Nov/13/01| | | | |Unbundled|sparc;sparc.sun4u;|SUNWafb:2.6.0,REV=1998.01.20;SUNWafbcf:2.6.0,REV=1998.01.20;SUNWafbgl:1.1.1,REV=1998.01.20;SUNWafbr:2.6.0,REV=1998.01.20;SUNWafbw:2.6.0,REV=1998.01.20;SUNWafbxg:2.6.0,REV=1998.01.20;SUNWxfb:2.6.0,REV=1998.01.20;|Elite3D 2.6: AFB Graphics Patch 105364|02|Nov/02/99| | | | |Unbundled|sparc;|SUNWsxow:2.0.0,REV=1.0.29;SUNWsxxgl:2.0.0,REV=1.0.29;SUNWxilcg:2.0.0,REV=1.0.29;|SunOS 5.6: SX Graphics Patch 105365|01|Oct/18/99| | | | |Unbundled|sparc;|SUNWleow:2.0.0,REV=1.0.29;|SunOS 5.6: ZX Graphics Patch 105366|01|Sep/12/97| | | | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/passmgmt fix 105367|01|Sep/12/97| | | | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/passmgmt fix 105373|03|Apr/09/98| | | | |Unbundled|sparc;|SUNWsnmct:2.2.3;|Solstice SunNet Manager 2.2.3: SNM dumps core on analyze_done_proc -105375|27|Jul/16/02|R| | | |2.6|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4u1;sparc.sun4us;|SUNWhea:1997.07.15.21.46;SUNWluxal:1997.07.15.21.46;SUNWluxdv:1997.07.15.21.46;SUNWluxdv:1998.01.23.18.28;SUNWluxdv:1998.09.24.13.46;SUNWluxop:1997.07.15.21.46;|SunOS 5.6: sf & socal driver patch +105375|11|Apr/28/99|R| |O| B|2.6|||OBSOLETED by WITHDRAWN +105375|29|Sep/23/02|R| | | |2.6|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4u1;sparc.sun4us;|SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWluxal:1.2,REV=1997.07.15.21.46;SUNWluxdv:1.2,REV=1997.07.15.21.46;SUNWluxdv:1.2,REV=1998.01.23.18.28;SUNWluxdv:1.2,REV=1998.09.24.13.46;SUNWluxop:1.2,REV=1997.07.15.21.46;|SunOS 5.6: sf & socal driver patch 105376|01|Sep/18/97| | | | |Unbundled|sparc;|SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: cb_reset only possible via le0 -105377|05|Apr/20/00| | | | |2.6|sparc;|SUNWbcp:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: BCP patch +105377|06|Apr/08/03|R|S| | |2.6|sparc;|SUNWbcp:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: BCP patch 105379|07|Nov/09/01|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/misc/nfssrv patch 105380|07|Nov/13/01|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/nfssrv patch 105390|02|Mar/02/98| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: SGML Manual Pages Patch 105393|07|Oct/21/98| |S|O|Y |2.6|105621-04;||OBSOLETED by 105621 105394|11|Oct/12/99| |S|O|Y |2.6_x86|105622-14;||OBSOLETED by 105622 -105395|07|Oct/18/01|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/sendmail patch -105396|07|Oct/18/01|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/sendmail patch +105395|09|Apr/08/03|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/sendmail patch +105396|09|Apr/08/03|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/sendmail patch 105397|02|Nov/26/97| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/passmgmt patch 105398|02|Nov/24/97| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/passmgmt patch 105399|01|Oct/17/97| | | | |Unbundled|sparc;|SUNWntr:NFS_1.1;SUNWsbuA:NFS_1.1;|Netra NFS SmartServe 1.1: sbu patch 105400|02|Feb/06/98| | | | |2.6|sparc;|SUNWplow1:1.0,REV=1997.06.16.18.02;SUNWxwplt:3.6.370,REV=0.97.07.09;|SunOS 5.6: Greek keyboard layout incorrect on Sparc -105401|37|May/14/02|R|S| | |2.6|sparc;105210-34;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWnisr:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libnsl and NIS+ commands patch -105402|37|May/14/02|R|S| | |2.6_x86|i386;105211-35;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWnisr:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libnsl and NIS+ commands patch -105403|04|Jun/19/01|R|S| | |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ypbind/ypserv patch -105404|04|Jun/19/01|R|S| | |2.6_x86|i386;|SUNWnisu:11.6.0,REV=1997.07.16.00.21;SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ypbind/ypserv patch +105401|47|Aug/19/03|R|S| | |2.6|sparc;105210-34;105564-05;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWnisr:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;SUNWsra:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libnsl and NIS+ commands patch +105402|47|Aug/21/03|R|S| | |2.6_x86|i386;105211-35;105565-05;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWnisr:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;SUNWsra:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libnsl and NIS+ commands patch +105403|04|Jun/19/01|R|S|O| |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;SUNWypu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 108890-02 SunOS 5.6: ypbind/ypserv patch +105404|04|Jun/19/01|R|S|O| |2.6_x86|i386;|SUNWnisu:11.6.0,REV=1997.07.16.00.21;SUNWypu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 108891-02 SunOS 5.6_x86: ypbind/ypserv patch 105405|03|Mar/09/01|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libcurses.a & libcurses.so.1 patch 105406|03|Mar/09/01|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libcurses.a & libcurses.so.1 patch 105407|01|Oct/22/97|R|S| | |2.6|sparc;|SUNWvolu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/volrmmount patch @@ -2130,7 +2145,7 @@ 105453|01|Oct/01/97| | | | |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Textedit -En option does not work 105454|07|Jul/06/98| | | | |Unbundled|sparc;|SUNWccd:2.0,REV=suncluster_sc_2_0;SUNWccm:2.0,REV=suncluster_sc_2_0;SUNWccon:2.0,REV=suncluster_sc_2_0;SUNWccp:2.0,REV=suncluster_sc_2_0;SUNWclmon:2.0,REV=suncluster_sc_2_0;SUNWcmm:2.0,REV=suncluster_sc_2_0;SUNWcsnmp:2.0,REV=suncluster_sc_2_0;SUNWmond:2.0,REV=suncluster_sc_2_0;SUNWpnm:2.0,REV=suncluster_sc_2_0;SUNWsc:2.0,REV=suncluster_sc_2_0;SUNWscch:2.0,REV=suncluster_sc_2_0;SUNWschtt:2.0,REV=suncluster_sc_2_0;SUNWsci:2.0,REV=suncluster_sc_2_0;SUNWscinf:2.0,REV=suncluster_sc_2_0;SUNWscman:2.0,REV=suncluster_sc_2_0;SUNWscor:2.0,REV=suncluster_sc_2_0;SUNWscsyb:2.0,REV=suncluster_sc_2_0;SUNWsma:2.0,REV=suncluster_sc_2_0;|Sun Cluster 2.0: Server software patch 105457|02|Mar/31/98| | | | |Unbundled|sparc;|SUNWvmdev:2.2;SUNWvmman:2.2;SUNWvxvm:vxvm2.2src/cvm2.2.1;|Sun Cluster 2.0: Patch for the Cluster Volume Manager -105458|21|Dec/19/01| |S| | |Unbundled|sparc;|SUNWccd:2.1,REV=2.1;SUNWccm:2.1,REV=2.1;SUNWccon:2.1,REV=2.1;SUNWccp:2.1,REV=2.1;SUNWclmon:2.1,REV=2.1;SUNWcmm:2.1,REV=2.1;SUNWcsnmp:2.1,REV=2.1;SUNWlit:4.;SUNWmond:2.1,REV=2.1;SUNWpnm:2.1,REV=2.1;SUNWsc:2.1,REV=2.1;SUNWsccf:2.1,REV=2.1;SUNWscch:2.1,REV=2.1;SUNWscdns:2.1,REV=2.1;SUNWschtt:2.1,REV=2.1;SUNWsci:2.1,REV=2.1;SUNWscinf:2.1,REV=2.1;SUNWscins:2.1,REV=2.1;SUNWscman:2.1,REV=2.1;SUNWscnsm:2.1,REV=2.1;SUNWscor:2.1,REV=2.1;SUNWscsyb:2.1,REV=2.1;SUNWsma:2.1,REV=2.1;SUNWudlm:2.1,REV=2.1;|Sun Cluster 2.1: Server/Client software +105458|23|Aug/13/03| |S| | |Unbundled|sparc;|SUNWccd:2.1,REV=2.1;SUNWccm:2.1,REV=2.1;SUNWccon:2.1,REV=2.1;SUNWccp:2.1,REV=2.1;SUNWclmon:2.1,REV=2.1;SUNWcmm:2.1,REV=2.1;SUNWcsnmp:2.1,REV=2.1;SUNWlit:4.0;SUNWmond:2.1,REV=2.1;SUNWpnm:2.1,REV=2.1;SUNWsc:2.1,REV=2.1;SUNWsccf:2.1,REV=2.1;SUNWscch:2.1,REV=2.1;SUNWscdns:2.1,REV=2.1;SUNWschtt:2.1,REV=2.1;SUNWsci:2.1,REV=2.1;SUNWscinf:2.1,REV=2.1;SUNWscins:2.1,REV=2.1;SUNWscman:2.1,REV=2.1;SUNWscnsm:2.1,REV=2.1;SUNWscor:2.1,REV=2.1;SUNWscsyb:2.1,REV=2.1;SUNWsma:2.1,REV=2.1;SUNWudlm:2.1,REV=2.1;|Sun Cluster 2.1: Server/Client software 105459|13|Feb/27/01| | | | |Unbundled|sparc;|SUNWvmdev:2.2;SUNWvmman:2.2;SUNWvxva:2.2.1;SUNWvxvm:vxvm2.2src/cvm2.2.1-sc2.1ga;|Sun Cluster 2.1: Patch for CVM 2.2.1 105461|01|Mar/06/98| | | | |2.6_x86|i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /platform/i86pc/kernel/drv/eisa patch 105462|01|Jun/22/98| | | | |Unbundled|sparc;|SPROsbe:4.0;|WorkShop IPE 4.0: Patch for Source Browser @@ -2140,7 +2155,7 @@ 105468|02|May/05/98| | | | |2.5.1|sparc;|SUNWcxfnt:1.9.1,REV=1.0.4;|SunOS 5.5.1: openwin/lib/locale/zh/X11/fonts/75dpi/fonts.alias 105469|02|May/05/98| | | | |2.5.1_x86|i386;|SUNWcxfnt:1.9.1,REV=1.0.4;|SunOS 5.5.1_x86: openwin/lib/locale/zh/X11/fonts/75dpi/fonts.alias 105470|03|Aug/26/98| | | | |Unbundled|sparc;|SUNWhsip:1.0;|HSI/P 1.0: Patch -105471|08|Feb/21/02| | | | |Unbundled|sparc;|SUNWcosia:8.1.1,PATCH=08;SUNWcosic:8.1.1,PATCH=08;SUNWcosid:8.1.1,PATCH=08;|Solstice OSI 8.1.1: Solstice Communication Platform (Stack) +105471|11|Dec/04/03| | | | |Unbundled|sparc;|SUNWcosia:8.1.1,PATCH=11;SUNWcosic:8.1.1,PATCH=11;SUNWcosid:8.1.1,PATCH=11;|Solstice OSI 8.1.1: Solstice Communication Platform (Stack) 105472|08|Jun/28/01|R| | | |2.6|sparc;|SUNWatfsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/autofs/automountd patch 105473|04|Sep/08/98|R| | | |2.6_x86|i386;|SUNWatfsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/autofs/automountd patch 105474|01|Oct/07/97| | | | |Unbundled|sparc;|SUNWfwdes:3.0;|Solstice FireWall-1 3.0b Sparc DES: Upgrade/Jumbo @@ -2160,16 +2175,18 @@ 105492|02|May/28/98| | |O| |2.6|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;105181-05;|SUNWcg6:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: cgsix driver patch 105493|01|Nov/21/97| | | | |Unbundled|sparc.sun4u;|SUNWtrip:3.01.17;|SunTRI/P v1.0: Token Ring driver patch 105494|01|Nov/26/97| | | | |Unbundled|sparc;|SUNWosar:6.01,REV=00.19;|RAID Manager 6.1: Non-sonoma devices allowed on RDAC-owned buses +105495|06|Dec/24/99|R|S|O| B|2.5_x86|||OBSOLETED by WITHDRAWN 105495|10|Nov/09/01|R|S| | |2.5_x86|i386;103188-45;|SUNWtltk:3.6.0,REV=10.95.08.23;SUNWtltkd:3.6.0,REV=10.95.08.23;SUNWtltkm:3.6.0,REV=10.95.08.23;|OpenWindows 3.5_x86: ToolTalk patch +105496|08|Dec/24/99|R|S|O| B|2.5.1_x86|||OBSOLETED by WITHDRAWN 105496|12|Nov/09/01|R|S| | |2.5.1_x86|i386;103641-33;|SUNWtltk:3.6.0,REV=10.96.02.22;SUNWtltkd:3.6.0,REV=10.96.02.22;SUNWtltkm:3.6.0,REV=10.96.02.22;|OpenWindows 3.5.1_x86: ToolTalk patch 105497|01|Oct/10/97| | | | |2.6|sparc;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: printtool patch 105498|01|Oct/10/97| | | | |2.6_x86|i386;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: printtool patch 105503|01|Nov/03/97| | | | |Unbundled|sparc;|SUNWqfed:1.0;|Sun Quad FastEthernet 2.0 driver fix 105504|01|Oct/29/97| | | | |Unbundled|sparc;|SUNWqfed:1.0;|Sun Quad FastEthernet 2.0: driver fix for Synoptics/Bay 28115/2811 -105505|11|May/04/01| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/st.conf and kernel/drv/st patch +105505|16|Jan/28/03|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/st.conf and /kernel/drv/st patch 105506|01|Oct/15/97| | | | |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/split patch -105510|08|Feb/21/02| | | | |Unbundled|i386;|SUNWcosia:8.1.1,PATCH=08;SUNWcosic:8.1.1,PATCH=08;SUNWcosid:8.1.1,PATCH=08;|Solstice OSI 8.1.1_x86: Solstice Communication Platform (Stack) -105515|28|Apr/17/01| | | | |Unbundled|sparc;|SUNWopcl:9.1;|SunLink 3270 Open Client 9.1: Patch 105515-28 +105510|11|Dec/04/03| | | | |Unbundled|i386;|SUNWcosia:8.1.1,PATCH=11;SUNWcosic:8.1.1,PATCH=11;SUNWcosid:8.1.1,PATCH=11;|Solstice OSI 8.1.1_x86: Solstice Communication Platform (Stack) +105515|30|Apr/02/03| | | | |Unbundled|sparc;|SUNWopcl:9.1;|SunLink 3270 Open Client 9.1: Patch 105515-30 105516|06|Mar/28/01| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/fs/ufs/fsck and mountall patch 105517|05|Dec/22/99| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/fs/ufs/fsck and mountall patch 105518|01|Nov/24/97| |S|O| |2.6|||OBSOLETED by 105395 @@ -2178,9 +2195,9 @@ 105521|01|Nov/24/97| |S|O| |2.5.1_x86|||OBSOLETED by 103595 105524|01|Dec/10/97| | |O| |2.6|||OBSOLETED by 105401 105525|01|Dec/10/97| | |O| |2.6_x86|||OBSOLETED by 105402 -105528|01|Oct/28/97| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/be patch -105529|14|Aug/02/02|R|S| | |2.6|sparc;|SUNWcsr:1997.07.15.21.46;SUNWhea:1997.07.15.21.46;|SunOS 5.6: /kernel/drv/tcp patch -105530|13|May/08/02|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/tcp patch +105528|02|Mar/28/03| |S| | |2.6|sparc;105181-34;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/be patch +105529|16|Jun/05/03|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/tcp patch +105530|16|Jun/05/03|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/tcp patch 105532|04|Aug/11/98| | | | |Unbundled|sparc;|SUNWqfed:1.1,REV=5.5.1;|Sun Quad FastEthernet 2.1: Patch for Solaris 2.5.1 qfe driver 105533|01|Nov/24/97|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: sendmail security problem with vacation program 105534|01|Nov/24/97|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: sendmail security problem with vacation program @@ -2204,12 +2221,12 @@ 105560|01|Dec/08/97| | | | |Unbundled|sparc.sun4u;|SUNWsmsr:2.0.1,REV=97.02.21;|SMC 2.0.1: SMC 2.0.1 Kernel Patch 105562|03|Jul/01/98|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: chkey and keylogin patch 105563|03|Jul/01/98|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: chkey and keylogin patch -105564|04|Oct/06/99| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/misc/rpcsec patch -105565|03|Sep/08/98| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/rpcsec patch +105564|05|Aug/23/02|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/misc/rpcsec patch +105565|05|Aug/23/02|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/rpcsec patch 105566|12|Apr/01/02|R|S| | |2.6|sparc;105401-28;|SUNWdtdmn:1.2,REV=10.97.07.02;SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: calendar manager patch 105567|13|Apr/01/02|R|S| | |2.6_x86|i386;105402-28;|SUNWdtdmn:1.2,REV=10.97.07.02;SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: calendar manager patch -105568|24|Feb/14/02|R| | | |2.6|sparc;105210-33;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/libthread.so.1 patch -105569|24|Feb/14/02|R| | | |2.6_x86|i386;105211-34;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/libthread.so.1 patch +105568|26|Sep/15/03|R| | | |2.6|sparc;105210-33;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/libthread.so.1 patch +105569|26|Sep/15/03|R| | | |2.6_x86|i386;105211-34;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/libthread.so.1 patch 105570|05|Jul/06/99| | | | |Unbundled|sparc;|SUNWrtvc:1.3,REV=6.1.23;SUNWrtvcl:1.3,REV=6.1.23;SUNWrtvcu:1.3,REV=6.1.23;|SunVideo 1.3: Patch 105572|11|Apr/13/99| | |O| |2.6|||OBSOLETED by 106625 105573|08|Jan/19/99| | |O| |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 106626-06 SunOS 5.6_x86: /kernel/fs/ufs patch @@ -2223,14 +2240,13 @@ 105584|14|Feb/04/99| | | | |2.6_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: bootconf patch 105585|20|Jul/27/99| |S| | |Unbundled|sparc;|TAS:5.0;|TotalNET Advanced Server 5.0: Patch 105586|20|Jul/27/99| |S| | |Unbundled|i386;|TAS:5.0;|TotalNET Advanced Server 5.0_x86: patch -105590|01|Nov/06/97| | |O| |Unbundled|104018-03;||Solstice Site/SunNet/Domain Manager 2.3: na.snmp-trap core dumps -105591|14|Mar/18/02|R| | | |Unbundled|sparc;107733-09;|SUNWlibC:5.6,REV=97.03.05;|Shared library patch for C++ +105591|19|Jul/10/03|R| | | |Unbundled|sparc;107733-09;|SUNWlibC:5.6,REV=97.03.05;|Shared library patch for C++ 105592|01|Nov/07/97| | | | |2.5.1|sparc;|SUNWxwopt:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: makedepend patch 105593|01|Nov/07/97| | | | |2.5.1_x86|i386;|SUNWxwopt:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: makedepend patch 105596|02|Jul/22/99| | | | |2.6_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: pcplusmp patch 105597|01|Nov/17/97| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/reboot patch 105600|19|Jun/22/00|R| |O| |2.6|sparc;105181-05;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/isp patch -105601|01|Mar/09/98| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/gld patch +105601|02|Mar/25/03| |S| | |2.6_x86|i386;105182-34;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/gld patch 105604|09|Mar/08/00| | |O| |2.6|105181-05;||OBSOLETED by 105181 105610|02|Mar/03/98| | |O| |2.6|||OBSOLETED by 105924 105615|09|Jan/10/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/nfs/mountd patch @@ -2247,16 +2263,17 @@ 105629|03|May/04/98| | | | |Unbundled|sparc;|SUNWo1kpu:1.0,REV=1.0.5;|SunVideo Plus 1.0: SunVideo Plus apps seg fault if device already 105630|03|Nov/01/00| | | | |2.6|sparc;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2: libDtWidget patch 105631|03|Nov/01/00| | | | |2.6_x86|i386;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2_x86: libDtWidget patch -105633|61|Jun/05/02|R|S| | |2.6|sparc;|SUNWxwcft:0.97.06.19;SUNWxwfnt:0.97.06.19;SUNWxwice:0.97.06.19;SUNWxwinc:0.97.06.19;SUNWxwplt:0.97.07.09;SUNWxwslb:0.97.03.26;|OpenWindows 3.6: Xsun patch -105634|11|Apr/06/01| | | | |2.6|sparc;|SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2: dtwm patch -105635|11|Apr/06/01| | | | |2.6_x86|i386;|SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtwm patch +105633|64|Nov/25/03|R|S| | |2.6|sparc;|SUNWxwcft:3.6.370,REV=0.97.06.19;SUNWxwfnt:3.6.370,REV=0.97.06.19;SUNWxwice:3.6.370,REV=0.97.06.19;SUNWxwinc:3.6.370,REV=0.97.06.19;SUNWxwplt:3.6.370,REV=0.97.07.09;SUNWxwslb:3.6.310,REV=0.97.03.26;|OpenWindows 3.6: Xsun patch +105634|04|Dec/01/98| | |O| |2.6|||OBSOLETED by 105634 +105634|12|Jan/22/03| | | | |2.6|sparc;|SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2: dtwm patch +105635|12|Jan/22/03| | | | |2.6_x86|i386;|SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtwm patch 105636|01|Mar/10/98| | |O| |2.6|||OBSOLETED by 105181 105637|01|Nov/19/97| | | | |2.6|sparc;|SUNWpmu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/power/powerd patch 105638|02|Dec/11/97|R|S| | |2.5.1_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=96.05.02.19.23;SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /platform/i86pc/kernel/misc/pdwa patch 105639|02|Dec/11/97|R|S| | |2.6_x86|i386;i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /platform/i86pc/kernel/misc/pdwa patch 105640|02|Dec/11/97|R|S| | |2.5_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=95.10.27.15.21;SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /platform/i86pc/kernel/misc/pdwa patch 105641|04|Mar/24/98| | | | |Unbundled|sparc;|SUNWnbora:3.0;SUNWnetbp:3.0;|Sun Enterprise NetBackup 3.0: NetBackup Database Extension for Ora -105642|10|Jun/25/02|R| | | |2.6|sparc.sun4u;sparc.sun4u1;sparc.sun4us;|SUNWkvm:1997.07.15.21.46;SUNWkvm:1998.01.23.18.28;SUNWkvm:1998.09.24.13.46;|SunOS 5.6: prtdiag patch +105642|10|Jun/25/02|R| | | |2.6|sparc.sun4u;sparc.sun4u1;sparc.sun4us;|SUNWkvm:11.6.0,REV=1997.07.15.21.46;SUNWkvm:11.6.0,REV=1998.01.23.18.28;SUNWkvm:11.6.0,REV=1998.09.24.13.46;|SunOS 5.6: prtdiag patch 105643|01|Jan/15/98| | | | |2.5.1|sparc;|SUNWfnspr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/fncreate_printer patch 105644|01|Jan/15/98| | | | |2.5.1_x86|i386;|SUNWfnspr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/fncreate_printer patch 105645|01|Dec/08/97| |S| | |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0: Sparc Patch (Non-VPN) @@ -2292,12 +2309,12 @@ 105687|02|Mar/10/98| |S|O|Y |2.6_x86|||OBSOLETED by 105622 105690|01|Dec/11/97| | | | |2.5|sparc;|SUNWxwopt:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: makedepend patch 105691|01|Dec/11/97| | | | |2.5_x86|i386;|SUNWxwopt:3.5.23,REV=0.95.09.22;|OpenWindows 3.5_x86: makedepend patch -105693|12|Dec/20/01|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: cachefs patch -105694|11|Sep/05/01|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: cachefs patch +105693|14|Jul/31/03|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: cachefs patch +105694|14|Aug/13/03|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: cachefs patch 105701|02|Jul/07/98| | | |Y |2.5.1|sparc;|SUNWadmap:6.5,REV=96.04.25.18.08;|SunOS 5.5.1: sysidsys unzip patch 105702|01|Jan/16/98| | | |Y |2.5.1_x86|i386;|SUNWadmap:6.5,REV=96.04.25.18.56;|SunOS 5.5.1_x86: /usr/sbin/sysidsys patch -105703|27|Apr/17/01|R|S| | |2.6|sparc;|SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2: dtlogin patch -105704|27|Apr/17/01|R|S| | |2.6_x86|i386;|SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2_x86: dtlogin patch +105703|28|Sep/24/03|R|S| | |2.6|sparc;|SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2: dtlogin patch +105704|28|Sep/24/03|R|S| | |2.6_x86|i386;|SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2_x86: dtlogin patch 105705|02|Mar/31/98| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/kernel/drv/audiocs patch 105706|02|Dec/10/97| | | | |Unbundled|sparc;|SUNWjasy:1.4,REV=13;|SyMON 1.4: (JFP) bad line in etc/ja/rultext_UEnterprise.tcl 105707|02|Dec/10/97| | | | |Unbundled|sparc;|SUNWjasy:1.4,REV=14;|SyMON 1.4: (JFP) bad line in etc/ja/rultext_UEnterprise.tcl @@ -2313,8 +2330,8 @@ 105717|06|Jun/30/99| |S|O| |Unbundled|||OBSOLETED by 108290 and 108364 105718|04|Dec/07/01| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/su patch 105719|04|Dec/07/01| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/su patch -105720|20|Jan/23/02|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/fs/nfs patch -105721|17|Jan/30/02|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/fs/nfs patch +105720|23|Apr/04/03|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/fs/nfs patch +105721|20|Mar/24/03|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/fs/nfs patch 105722|07|Apr/24/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/fs/ufs/ufsdump and ufsrestore patch 105723|07|Jun/13/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/fs/ufs/ufsdump and ufsrestore patch 105724|01|Feb/17/99| | |O| |2.6|||OBSOLETED by 105722 @@ -2324,19 +2341,19 @@ 105734|01|Jan/13/98| | | | |2.5|sparc;|SUNWfns:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/lib/libxfn.so.1 patch 105736|01|Mar/11/98| |S|O| |2.6|||OBSOLETED by 105395 105737|01|Mar/11/98| |S|O| |2.6_x86|||OBSOLETED by 105396 -105738|09|Apr/19/02| | | | |Unbundled|sparc;|SUNWftamb:8.0.3,PATCH=9;|Solstice FTAM 8.0.3 patch -105739|09|Apr/19/02| | | | |Unbundled|i386;|SUNWftamb:8.0.3,PATCH=9;|Solstice FTAM 8.0.3 patch +105738|10|May/09/03| | | | |Unbundled|sparc;|SUNWftamb:8.0.3,PATCH=10;|Solstice FTAM 8.0.3 patch +105739|10|May/09/03| | | | |Unbundled|i386;|SUNWftamb:8.0.3,PATCH=10;|Solstice FTAM 8.0.3 patch_x86 105741|09|May/09/01|R| | | |2.6|sparc;|SUNWpd:1.1,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ecpp patch 105742|05|Jul/27/99| | |O| |2.6|sparc;105181-05;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/le patch 105743|01|Jan/13/98| | |O| |2.6|||OBSOLETED by 107228 105744|01|Mar/10/98| | |O| |2.6_x86|||OBSOLETED by 107281 105745|01|Apr/30/98| | | | |Unbundled|||Java WorkShop 2.0a: Update Patch for pkg install for Solaris 2.x -105746|04|Jul/22/02| | | | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: /usr/bin/cpio patch -105747|04|Aug/06/02| | | | |2.6_x86|i386;|SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/cpio patch +105746|06|Sep/01/03| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/cpio patch +105747|06|Sep/01/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/cpio patch 105748|01|Apr/30/98| | | | |Unbundled|||Java WorkShop 2.0a_x86: Update Patch for pkg install for Solaris 2 105752|01|Feb/06/98| | | | |Unbundled|all;|SUNWjaadm:140.1.47;SUNWjabe:139.1.82;SUNWjabsd:141.1.43;|AnswerBook2 1.0: (Japanese) Table widths too narrow in Japanese AB -105755|11|Jun/25/02|R|S| | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: libresolv, in.named, named-xfer, nslookup, nstest patch -105756|11|Jun/25/02|R|S| | |2.6_x86|i386;|SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: libresolv, in.named, named-xfer, nslookup, nstest p +105755|13|Feb/25/03|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libresolv, in.named, named-xfer, nslookup, nstest patch +105756|13|Feb/25/03|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libresolv, in.named, named-xfer, nslookup, nstest p 105757|01|Dec/18/97| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/echo patch 105758|01|Mar/10/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/echo patch 105759|01|Feb/18/98| | |O| |Unbundled|104539-02;||OBSOLETED by 104539 @@ -2352,23 +2369,23 @@ 105783|01|Feb/24/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1: Visual Basic DLL fails to load 105784|05|Jul/13/00|R|S| | |2.5.1|sparc;|SUNWarc:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWnisu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: libbsm patch 105785|02|Jul/15/98|R|S| | |2.5.1_x86|i386;|SUNWarc:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: libbsm patch -105786|14|May/03/01|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ip driver patch +105786|15|Dec/11/02|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/ip patch 105787|13|May/03/01|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/ip dirver patch -105788|01|Feb/09/98| | | | |Unbundled|sparc;104018-03;|SUNWccsnd:1.2;|Cooperative Console 1.2: Receiver in EM doesn't receive status cha 105789|08|Oct/19/99| | | | |Unbundled|sparc;|SUNWvlxil:1.2.0,REV=1.1.0;|VIS/XIL 2.5.1: Graphics Patch 105790|23|Mar/30/00| |S| | |Unbundled|sparc;sparc.sun4u;|SUNWffb:1.2.0,REV=1.1.0;SUNWffbcf:1.2.0,REV=1.1.0;SUNWffbw:1.2.0,REV=1.1.0;SUNWffbxg:1.2.0,REV=1.1.1;|Creator 2.5.1: FFB Graphics Patch 105791|33|Dec/12/00| | | | |Unbundled|sparc;sparc.sun4u;|SUNWafb:2.5.1,REV=1998.02.05;SUNWafbcf:2.5.1,REV=1998.02.05;SUNWafbgl:1.1.1,REV=1998.02.05;SUNWafbw:2.5.1,REV=1998.02.05;SUNWafbxg:2.5.1,REV=1998.02.05;SUNWxfb:2.5.1,REV=1998.02.05;|Elite3D 2.5.1: AFB Graphics Patch -105792|07|Dec/07/01|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWsutl:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/tar patch -105793|07|Dec/07/01| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWsutl:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/tar patch +105792|09|Jul/07/03|R| | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWsutl:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: tar patch +105793|09|Jul/07/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWsutl:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: tar patch 105795|08|Jul/26/00| | |O| |2.6|sparc;105181-05;|SUNWhmd:11.6.0,REV=1997.07.15.21.46;SUNWhmdu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/hme patch 105796|01|Mar/17/98| | |O| |Unbundled|||OBSOLETED by 106241 105797|06|Mar/09/99| | |O| |2.6|||OBSOLETED by 105356 105798|04|Mar/20/02|R| | | |2.6|sparc.sun4m;sparc.sun4u;sparc.sun4u1;|SUNWcpr:11.6.0,REV=1997.07.15.21.46;SUNWcpr:11.6.0,REV=1998.01.23.18.28;|SunOS 5.6: cprboot patch 105799|01|Feb/02/98| | |O| |Unbundled|||OBSOLETED by 106528 -105800|07|Jan/04/01|R|S| | |2.6|sparc;106125-05;|SUNWadmap:6.5,REV=1997.07.02.15.44;SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6: /usr/bin/admintool, y2000 patch -105801|07|Jan/04/01|R|S| | |2.6_x86|i386;106126-05;|SUNWadmap:6.5,REV=1997.07.02.10.32;SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: /usr/bin/admintool, y2000 patch -105802|17|Mar/20/02|R|S| | |2.6|sparc;105401-28;|SUNWtltk:3.7.0,REV=10.97.06.27;SUNWtltkm:3.7.0,REV=10.97.06.27;|OpenWindows 3.6: ToolTalk patch -105803|19|Mar/20/02|R|S| | |2.6_x86|i386;105402-28;|SUNWtltk:3.7.0,REV=10.97.06.27;SUNWtltkm:3.7.0,REV=10.97.06.27;|OpenWindows 3.6_x86: ToolTalk patch +105800|08|Feb/18/03|R|S| | |2.6|sparc;106125-05;|SUNWadmap:6.5,REV=1997.07.02.15.44;SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6: /usr/bin/admintool, y2000 patch +105801|08|Feb/26/03|R|S| | |2.6_x86|i386;106126-05;|SUNWadmap:6.5,REV=1997.07.02.10.32;SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: /usr/bin/admintool, y2000 patch +105802|06|Sep/15/98|R|S|O| B|2.6|||OBSOLETED by WITHDRAWN +105802|19|Sep/11/02|R|S| | |2.6|sparc;105401-28;|SUNWtltk:3.7.0,REV=10.97.06.27;SUNWtltkm:3.7.0,REV=10.97.06.27;|OpenWindows 3.6: ToolTalk patch +105803|21|Sep/11/02|R|S| | |2.6_x86|i386;105402-28;|SUNWtltk:3.7.0,REV=10.97.06.27;SUNWtltkm:3.7.0,REV=10.97.06.27;|OpenWindows 3.6_x86: ToolTalk patch 105804|03|Apr/04/00| | | | |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/compress patch 105806|01|Dec/24/97| | | | |Unbundled|||Solstice Network Client (SNC) 3.0 3.1: del key isn't settable (ha7 105807|01|Dec/24/97| | | | |Unbundled|||Solstice Network Client (SNC) 3.0 3.1: del key isn't settable (ha6 @@ -2393,12 +2410,12 @@ 105843|01|Jan/16/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1.1: mount options not recognized 105845|01|Mar/10/98| |S|O| |2.6|||OBSOLETED by 105621 105846|01|Mar/10/98| |S|O| |2.6_x86|||OBSOLETED by 105622 -105847|13|Apr/02/02|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/st.conf and /kernel/drv/st patch +105847|14|Sep/11/02|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/st.conf and /kernel/drv/st patch 105849|02|Jan/29/01| | | | |Unbundled|sparc;|SUNWtmnt1:1.1,REV=19,PATCH=02;|TMN Agent Tester jumbo patch 105850|01|Mar/25/98| | | | |Unbundled|sparc;|SUNWlmon:1.00,REV=97.05.28;|Sun Enterprise Library Monitor 1.0: Provide Support for Solaris 2. 105857|01|Jan/29/98| | | | |2.6_x86|i386;|SUNWs53:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/kernel/fs/s5fs patch 105858|03|Feb/06/98| | | | |Unbundled|i386;|SUNWab2s:1.19,REV=3;SUNWab2s:1.20,REV=1;|AnswerBook2 1.0: (x86) Printing; table column widths, japanese str -105860|32|Apr/09/02| | | | |Unbundled|sparc;|SUNWlu62:9.1;|SunLink SNA Logical Unit Type 6.2, 9.1: Patch 105860-32 +105860|36|Nov/19/03| | | | |Unbundled|sparc;|SUNWlu62:9.1;|SunLink SNA Logical Unit Type 6.2, 9.1: Patch 105860-36 105867|01|Feb/10/98| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/tapes patch 105868|01|May/28/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/tapes patch 105870|01|Feb/02/98| | |O| |Unbundled|104018-03;||OBSOLETED by 105554 @@ -2411,7 +2428,8 @@ 105919|02|Nov/20/98| | | | |Unbundled|sparc;|SUNWssmi:4.4,REV=1;|SSMI 4.4: Export Controlled Version, Upgrade/Misc. fixes 105922|03|Nov/05/98| | | | |Unbundled|sparc;|SUNWssmi:4.4,REV=1;|SSMI 4.4: Upgrade/Misc. fixes 105923|02|Nov/20/98| | | | |Unbundled|sparc;|SUNWssmi:4.4,REV=1;|SSMI 4.4: Upgrade/Misc. fixes -105924|17|Jul/18/02| |S| | |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:1997.07.15.21.46;SUNWcar:1998.09.28.10.46;SUNWcsr:1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;SUNWpd:1997.07.15.21.46;|SunOS 5.6: kbd, se and zs drivers patch +105924|13|Oct/31/01| |S| | B|2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.09.28.10.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWpd:1.1,REV=1997.07.15.21.46;|WITHDRAWN SunOS 5.6: kbd, se and zs drivers patch +105924|19|Jun/16/03|R|S| | |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;105181-34;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.09.28.10.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWpd:1.1,REV=1997.07.15.21.46;|SunOS 5.6: kbd, se and zs drivers patch 105926|01|Jan/23/98|R| |O| |2.6|sparc;|SUNWsutl:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105792-06 SunOS 5.6: /usr/sbin/static/tar patch 105927|01|Mar/20/98| | |O| |2.6_x86|i386;|SUNWsutl:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105793-06 SunOS 5.6_x86: /usr/sbin/static/tar patch 105930|06|Sep/19/00| | | | |Unbundled|||Hardware/PROM: Ultra 30 Standalone Flash PROM Update @@ -2450,7 +2468,7 @@ 105996|01|Feb/19/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1.1: German needs translation for 105998|03|Oct/19/01|R|S| | |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/bdiff patch 105999|03|Oct/19/01|R|S| | |2.5.1_x86|i386;|SUNWesu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/bdiff patch -106000|08|Jan/26/00| | | | |Unbundled|||Solstice Enterprise Manager 2.1: Patch 8 +106000|10|Mar/12/03| | | | |Unbundled|sparc;|SUNWemalb:2.1;SUNWemapp:2.1;SUNWembc:2.1;SUNWemcpa:2.1;SUNWemdev:2.1;SUNWemdmn:2.1;SUNWemipa:2.1;SUNWemlog:2.1;SUNWemmis:2.1;SUNWemobj:2.1;SUNWemrdb:2.1;|Solstice Enterprise Manager 2.1 Patch 10 106001|01|Oct/24/00| | | | |Unbundled|||FTsparc 5.0 fix_prom package 106002|01|Sep/12/01| | | | |Unbundled|||FTsparc 4.1: fix_prom package 106003|01|Feb/27/98| | | | |Unbundled|sparc;|SUNWdtbas:1.1,REV=10.97.06.18;|CDE 1.1: libDtTerm.so.1 dtterm patch @@ -2466,8 +2484,8 @@ 106023|01|Apr/02/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/getopt patch 106025|01|Feb/23/98| | | | |2.6|sparc;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: sdtfprop patch for group permissions 106026|01|Feb/23/98| | | | |2.6_x86|i386;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: sdtfprop patch for group permissions -106027|10|Sep/25/01|R|S| | |Unbundled|sparc;106125-08;|SUNWdtma:1.2,REV=10.97.06.27;SUNWdtwm:1.2,REV=10.97.07.08;SUNWdtwm:1.3,REV=11.98.01.25;|CDE 1.2 / SDE 1.0: dtsession patch -106028|10|Sep/25/01|R|S| | |2.6_x86|i386;|SUNWdtma:1.2,REV=10.97.06.27;SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtsession patch +106027|12|Apr/10/03|R|S| | |Unbundled|sparc;106125-08;|SUNWdtma:1.2,REV=10.97.06.27;SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2 / SDE 1.0: dtsession patch +106028|12|Apr/14/03|R|S| | |2.6_x86|i386;|SUNWdtma:1.2,REV=10.97.06.27;SUNWdtwm:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtsession patch 106029|05|Nov/14/01| | | | |2.6|sparc;|SUNWsprot:5.6,REV=97.05.02;SUNWxcu4t:5.6,REV=97.05.02;|SunOS 5.6: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch 106030|05|Nov/14/01| | | | |2.6_x86|i386;|SUNWsprot:5.6,REV=97.06.27;SUNWxcu4t:5.6,REV=97.06.27;|SunOS 5.6_x86: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch 106031|02|Feb/27/98| | |O| |2.6|||OBSOLETED by 105181 @@ -2487,8 +2505,8 @@ 106045|02|Jul/12/00| | |O| |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105211-39 SunOS 5.6_x86: /usr/lib/nss_nisplus.so.1 p 106046|01|Feb/24/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1: Cannot access fonts in PC-Xware 106048|06|Jun/25/99| | |O| |2.6|105181-15;||OBSOLETED by 105181 -106049|04|Jan/18/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/in.telnetd patch -106050|04|Jan/29/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/in.telnetd patch +106049|05|Mar/31/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/in.telnetd patch +106050|05|May/07/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/in.telnetd patch 106052|01|Feb/11/98| | | | |Unbundled|||SSMDT 2.1.2: Patch Level 3 for 95/NT multiple bug fix 106058|01|Feb/27/98| | | | |2.6|sparc;|SUNWjxplt:1.3,REV=1.0.78;|OpenWindows 3.6: XIM XI18N patch for ja (EUC) locale 106059|01|Feb/27/98| | | | |2.6_x86|i386;|SUNWjxplt:1.3,REV=1.0.78;|OpenWindows 3.6_x86: XIM XI18N jumbo patch for ja (EUC) locale @@ -2541,11 +2559,11 @@ 106117|01|Jul/20/01| | | | |2.6|sparc;|SUNWkxplt:2.0,REV=1.0.38;|SunOS 5.6: Korean keyboard's input toggle key cannot be recognized 106119|01|Apr/28/98| | | | |Unbundled|105843-01;||SNC 3.1.1: Disable /opt/MSPolicy & add password sync. 106121|18|May/15/02| | | | |Unbundled|||Hardware/PROM: Ultra 5/10 Standalone Flash PROM Update -106122|10|Jun/19/02| | | | |Unbundled||106122-01 106122-02|Hardware/PROM: Enterprise 450 / Ultra 450 Standalone Flash PROM Up +106122|11|Dec/04/03| | | | |Unbundled|||Hardware/PROM: Enterprise 450 / Ultra 450 Standalone Flash PROM Up 106123|05|Jun/26/01|R|S| | |2.6|sparc;|SUNWdoc:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: sgml patch 106124|05|Jun/26/01|R|S| | |2.6_x86|i386;|SUNWdoc:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: sgml patch -106125|13|Apr/17/02|R|S| | |2.6|sparc;112542-01;|SUNWswmt:1.0,REV=1997.07.02.15.44;|SunOS 5.6: Patch for patchadd and patchrm -106126|13|Apr/17/02|R|S| | |2.6_x86|i386;112543-01;|SUNWswmt:1.0,REV=1997.07.02.10.32;|SunOS 5.6_x86: Patch for patchadd and patchrm +106125|16|Apr/07/03|R|S| | |2.6|sparc;112542-01;|SUNWswmt:1.0,REV=1997.07.02.15.44;|SunOS 5.6: Patch for patchadd and patchrm +106126|16|Apr/07/03|R|S| | |2.6_x86|i386;112543-01;|SUNWswmt:1.0,REV=1997.07.02.10.32;|SunOS 5.6_x86: Patch for patchadd and patchrm 106129|12|May/10/00| | |O| |Unbundled|||Obsoleted by: 109962-04 Hardware, 9GB Disks: Download program and 106131|02|Aug/02/00| | | | |2.6|sparc;|SUNWjfpu:2.8,REV=1.0.78;|SunOS 5.6: Japanese iconv patch 106132|01|Aug/02/00| | | | |2.6_x86|i386;|SUNWjfpu:2.8,REV=1.0.78;|SunOS 5.6_x86: Japanese iconv patch @@ -2554,9 +2572,9 @@ 106140|01|Mar/24/98| | | | |Unbundled|sparc;|SUNWvts:2.1.2,REV=13.98.01.27;|SunVTS 2.1.2: Update afbtest for Solaris 2.6 2/98 users. 106141|01|May/12/98| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/mkdir patch 106142|01|May/12/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/mkdir patch -106144|27|Nov/13/01| | | | |7|sparc;sparc.sun4u;106148-12;|SUNWafb:7.0.0,REV=1998.08.11;SUNWafbcf:7.0.0,REV=1998.08.11;SUNWafbw:7.0.0,REV=1998.08.18;SUNWafbx:7.0.0,REV=1998.08.11;SUNWafbxg:7.0.0,REV=1998.08.11;|SunOS 5.7: Elite3D AFB Graphics Patch -106145|26|Apr/17/02| | | | |7|sparc;sparc.sun4u;106148-14;|SUNWffb:7.0.0,REV=1998.08.11;SUNWffbcf:7.0.0,REV=1998.08.11;SUNWffbw:7.0.0,REV=1998.08.18;SUNWffbx:7.0.0,REV=1998.08.11;SUNWffbxg:7.0.0,REV=1998.08.11;|SunOS 5.7: Creator 7 FFB Graphics Patch -106146|27|Jul/29/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:1998.08.11;SUNWm64:1999.01.07.15.30;SUNWm64cf:1998.08.11;SUNWm64w:1998.08.11;SUNWm64x:1998.08.11;SUNWm64x:1998.11.16.20.05;|SunOS 5.7: M64 Graphics Patch +106144|28|Feb/21/03| | | | |7|sparc;sparc.sun4u;|SUNWafb:7.0.0,REV=1998.08.11;SUNWafbcf:7.0.0,REV=1998.08.11;SUNWafbw:7.0.0,REV=1998.08.18;SUNWafbx:7.0.0,REV=1998.08.11;SUNWafbxg:7.0.0,REV=1998.08.11;|SunOS 5.7: Elite3D: AFB Graphics Patch +106145|29|Dec/23/03| | | | |7|sparc;sparc.sun4u;|SUNWffb:7.0.0,REV=1998.08.11;SUNWffbcf:7.0.0,REV=1998.08.11;SUNWffbw:7.0.0,REV=1998.08.18;SUNWffbx:7.0.0,REV=1998.08.11;SUNWffbxg:7.0.0,REV=1998.08.11;|SunOS 5.7: Creator and Creator3D: FFB Graphics Patch +106146|31|Jan/22/03| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:7.0.0,REV=1998.08.11;SUNWm64:7.0.0,REV=1999.01.07.15.30;SUNWm64cf:7.0.0,REV=1998.08.11;SUNWm64w:7.0.0,REV=1998.08.11;SUNWm64x:7.0.0,REV=1998.08.11;SUNWm64x:7.0.0,REV=1998.11.16.20.05;|SunOS 5.7: M64 Graphics Patch 106147|06|Dec/02/99| | | | |7|sparc;|SUNWxilvl:7.0.0,REV=1998.08.11;|SunOS 5.7: VIS/XIL Graphics Patch 106148|14|Apr/17/02| | | | |7|sparc.sun4u;|SUNWxfb:7.0.0,REV=1998.08.11;SUNWxfbx:7.0.0,REV=1998.08.11;|SunOS 5.7: XFB Graphics Patch 106149|09|Nov/13/98| |S| | |Unbundled|sparc;|SUNWsadmi:1.2,REV=1997.12.18.16.31;|SEA 1.0.2: DMI Server provider @@ -2572,8 +2590,11 @@ 106159|02|Jul/30/99| | | | |Unbundled|sparc;|SUNWpexcl:4.0,REV=1.0.5;SUNWpexsv:4.0,REV=1.0.5;|PEX 3.0.2: PEX Patch 106160|02|Dec/13/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/login patch 106161|02|Dec/13/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/login patch -106162|38|Apr/09/02| | | | |Unbundled|sparc;|SUNWpu21:9.1;|SunLink SNA Physical Unit Type 2.1, 9.1: Patch 106162-38 +106162|22|Sep/15/99| | |O| B|Unbundled|105860;106164;106165;||OBSOLETED by WITHDRAWN +106162|32|Apr/17/01| | | | B|Unbundled|sparc;105860;106164;106165;105860;106164;106165;|SUNWpu21:9.1;|WITHDRAWN SunLink SNA Physical Unit Type 2.1, 9.1: Patch 106162-32 +106162|42|Nov/19/03| | | | |Unbundled|sparc;|SUNWpu21:9.1;|SunLink SNA Physical Unit Type 2.1, 9.1: Patch 106162-42 106163|02|Mar/12/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1.1: When uid > 65535 owner shows +106164|18|Jan/24/01| | | | B|Unbundled|sparc;105860-05;106162-07;106165-02;105860-05;106162-07;106165-02;|SUNWgman:9.1;|WITHDRAWN SunLink SNA GMAN Gateway Manager, 9.1: Patch 106164-18 106164|21|Jan/29/02| | | | |Unbundled|sparc;|SUNWgman:9.1;|SunLink SNA GMAN Gateway Manager, 9.1: Patch 106164-21 106165|12|Apr/17/01| | | | |Unbundled|sparc;|SUNWgmi:9.1;|SunLink SNA GMI Graphical Interface, 9.1: Patch 106165-12 106168|02|May/28/98| | |O| |2.6|sparc;sparc.sun4u;sparc.sun4u1;105181-05;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: dma driver patch @@ -2591,6 +2612,7 @@ 106185|01|Mar/13/98| | | | |Unbundled|sparc;|SUNWsspop:3.0.0,REV=97.02.27.20.05;|System Service Processor (SSP) 3.0: bringup of domain A arbstopped 106186|01|Mar/20/98| | | | |2.5.1|sparc;|SUNWvolu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/kernel/drv/vol patch 106187|01|Mar/20/98| | | | |2.5.1_x86|i386;|SUNWvolu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/kernel/drv/vol patch +106190|07|Jul/13/99| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 106190|08|Dec/03/99| | | | |Unbundled|sparc;|SUNWsspdo:3.1.0,REV=97.11.17.17.04;SUNWsspob:3.1.0,REV=97.11.17.17.04;SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: bringup/obp_helper fixes 106191|01|Apr/03/98| | |O| |Unbundled||105463-04|OBSOLETED by 105463 106193|06|Jun/21/01|R|S| | |2.6|sparc;|SUNWadmap:6.5,REV=1997.07.02.15.44;|SunOS 5.6: Patch for Taiwan timezone @@ -2611,9 +2633,9 @@ 106223|01|Apr/28/98|R|S| | |2.6_x86|i386;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: filemgr (ff.core) fixes 106224|01|Apr/28/98|R|S| | |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: filemgr (ff.core) fixes 106225|01|Apr/29/98|R|S| | |2.5.1_x86|i386;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: filemgr (ff.core) fixes -106226|03|Jun/11/02|R| | | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: /usr/sbin/format patch -106235|10|Apr/01/02|R|S| | |2.6|sparc;|SUNWpcu:13.1,REV=1997.07.15.21.46;SUNWpsf:13.1,REV=1997.07.15.21.46;SUNWpsu:13.1,REV=1997.07.15.21.46;SUNWscplp:13.1,REV=1997.07.15.21.46;|SunOS 5.6: lp patch -106236|10|Apr/10/02|R|S| | |2.6_x86|i386;|SUNWpcu:13.1,REV=1997.07.16.00.21;SUNWpsf:13.1,REV=1997.07.16.00.21;SUNWpsu:13.1,REV=1997.07.16.00.21;SUNWscplp:13.1,REV=1997.07.16.00.21;|SunOS 5.6_x86: lp patch +106226|03|Jun/11/02|R| | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/format patch +106235|14|Aug/20/03|R|S| | |2.6|sparc;|SUNWpcu:13.1,REV=1997.07.15.21.46;SUNWpsf:13.1,REV=1997.07.15.21.46;SUNWpsu:13.1,REV=1997.07.15.21.46;SUNWscplp:13.1,REV=1997.07.15.21.46;|SunOS 5.6: lp patch +106236|13|Jul/17/03|R|S| | |2.6_x86|i386;|SUNWpcu:13.1,REV=1997.07.16.00.21;SUNWpsf:13.1,REV=1997.07.16.00.21;SUNWpsu:13.1,REV=1997.07.16.00.21;SUNWscplp:13.1,REV=1997.07.16.00.21;|SunOS 5.6_x86: lp patch 106238|01|Apr/08/98| | | | |2.6|sparc;|SUNWcleu:6.0,REV=1.0.39;|OpenWindows 3.6: Multilanguage environment library patch 106239|01|Apr/10/98| | | | |2.6_x86|i386;|SUNWcleu:6.0,REV=1.0.39;|OpenWindows 3.6_x86: Multilanguage environment library patch 106241|05|May/12/99| | | | |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: Sometime ssp fails to start daemons @@ -2623,12 +2645,12 @@ 106245|02|Mar/30/98| | |O| |Unbundled|104018-03;||OBSOLETED by 104018 106246|01|Mar/30/98| | | | |Unbundled|||Network Client 3.1.1: mult copies from UNIX box ignored by PC LPD 106247|01|Mar/31/98| | | | |Unbundled|sparc;|SUNWvts:2.1.1,REV=07.97.10.08;|SunVTS 2.1.1: nvtest causes core dump -106248|46|Jun/05/02|R|S| | |2.6_x86|i386;|SUNWxwcft:0.97.06.18;SUNWxwfnt:0.97.06.18;SUNWxwice:0.97.06.18;SUNWxwinc:0.97.06.18;SUNWxwplt:0.97.07.09;SUNWxwslb:0.97.06.06;|OpenWindows 3.6_x86: Xsun patch +106248|49|Nov/06/03|R|S| | |2.6_x86|i386;|SUNWxwcft:3.6.370,REV=0.97.06.18;SUNWxwfnt:3.6.370,REV=0.97.06.18;SUNWxwice:3.6.370,REV=0.97.06.18;SUNWxwinc:3.6.370,REV=0.97.06.18;SUNWxwplt:3.6.370,REV=0.97.07.09;SUNWxwslb:3.6.360,REV=0.97.06.06;|OpenWindows 3.6_x86: Xsun patch 106250|01|Mar/30/98| | | | |Unbundled|sparc;|SUNWvts:2.1,REV=37.97.06.27;106114-01|SunVTS 2.1: Add blocksize argument to Tandberg QIC options to supp 106251|01|Mar/31/98| | | | |2.5.1|sparc;|SUNWploc:2.0,REV=15.0;|SunOS 5.5.1: Updated Swedish Collation sequence 106255|01|Apr/24/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/ckitem patch -106257|06|Jan/30/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/passwd and /usr/lib/libpam.so.1 patch -106258|06|Jan/30/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/passwd and /usr/lib/libpam.so.1 patch +106257|07|Nov/26/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/passwd and /usr/lib/libpam.so.1 patch +106258|07|Nov/26/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/passwd and /usr/lib/libpam.so.1 patch 106260|01|Nov/17/98| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch for ffbconfig.1m 106261|01|Nov/17/98| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch cfgadm.1m config_admin.3x libcfgadm. 106262|01|Nov/17/98| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch for qfe.7d @@ -2650,14 +2672,15 @@ 106286|03|Feb/15/00| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/sys/msgsys patch 106287|01|Apr/28/98| | | | |Unbundled|sparc;|SUNWrte:3.0;|HPC 2.0: reauth doesn't return to normal mode after connection to 106288|07|Feb/16/01| | | | |Unbundled|sparc;|SUNWemalb:2.0.1;SUNWemapp:2.0.1;SUNWemcpa:2.0.1;SUNWemdmn:2.0.1;SUNWemmis:2.0.1;SUNWemobj:2.0.1;|Solstice Enterprise Manager 2.0.1 Patch -106292|13|Jun/13/02|R|S| | |2.6|sparc;|SUNWarc:1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;|SunOS 5.6: pkgadd/pkginstall & related utilities -106293|12|Jun/13/02|R|S| | |2.6_x86|i386;|SUNWarc:1997.07.16.00.21;SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: pkgadd/pkginstall & related utilities +106292|14|Jan/07/03|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: pkgadd/pkginstall & related utilities +106293|13|Jan/07/03|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: pkgadd/pkginstall & related utilities 106294|03|Dec/23/98| | | | |2.5.1|sparc;|SUNWpcmci:1.0,REV=96.05.02.21.09;SUNWspcic:1.0,REV=97.02.11.02.56;|SunOS 5.5.1: Forced the mapping of the window memory to 4K boundar -106300|16|Jul/08/02|R| | | |Unbundled|sparc;106327-15;|SUNWlibCx:1998.07.17;|64-Bit Shared library patch for C++ -106301|04|Oct/15/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/in.ftpd patch -106302|04|Oct/15/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/in.ftpd patch -106303|03|Aug/08/01|R|S| | |2.6|sparc;106271-07;106257-06;|SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/netsvc/yp/rpc.yppasswdd patch -106304|03|Sep/05/01|R|S| | |2.6_x86|i386;106272-07;106258-06;|SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/netsvc/yp/rpc.yppasswdd patch +106300|19|Apr/14/03|R| | | B|Unbundled|sparc;106327-18;106327-18;|SUNWlibCx:5.7,REV=1998.07.17;|WITHDRAWN PATCH 64-Bit Shared library patch for C++ +106300|21|Jul/10/03|R| | | |Unbundled|sparc;106327-20;|SUNWlibCx:5.7,REV=1998.07.17;|64-Bit Shared library patch for C++ +106301|06|Jul/09/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/in.ftpd patch +106302|06|Sep/24/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/in.ftpd patch +106303|04|Mar/21/03|R|S| | |2.6|sparc;106257-06;|SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/netsvc/yp/rpc.yppasswdd patch +106304|04|Mar/11/03|R|S| | |2.6_x86|i386;106258-07;|SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/netsvc/yp/rpc.yppasswdd patch 106305|01|May/29/98| | |O| |2.6|||OBSOLETED by 106152 106306|01|May/29/98| | |O| |2.6_x86|||OBSOLETED by 106153 106307|01|May/29/98| | |O| |2.6|||OBSOLETED by 106154 @@ -2671,32 +2694,34 @@ 106319|01|Apr/16/98| | |O| |Unbundled|||OBSOLETED by 104019 106323|01|May/29/98| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /etc/inet/services patch 106324|01|May/29/98| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /etc/inet/services patch -106327|15|Jul/08/02|R| | | |Unbundled|sparc;106950-13;|SUNWlibC:98.08.14;|32-Bit Shared library patch for C++ -106328|14|Jul/09/02|R| | | |Unbundled|i386;106951-13;|SUNWlibC:98.07.17;|Shared library patch for C++ _x86 +106327|07|Apr/19/00|R| |O| B|Unbundled|||OBSOLETED by WITHDRAWN +106327|18|Apr/14/03|R| | | B|Unbundled|sparc;106950-13;106950-13;|SUNWlibC:5.7,REV=98.08.14;|WITHDRAWN PATCH 32-Bit Shared library patch for C++ +106327|20|Jul/10/03|R| | | |Unbundled|sparc;106950-13;|SUNWlibC:5.7,REV=98.08.14;|32-Bit Shared library patch for C++ +106328|18|Jul/10/03|R| | | |Unbundled|i386;106951-13;|SUNWlibC:5.7,REV=98.07.17;|Shared library patch for C++ _x86 106329|02|Sep/03/99| | | | |2.5.1|sparc;|SUNWxwinc:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: X Window Include Files Patch 106330|02|Sep/03/99| | | | |2.5.1_x86|i386;|SUNWxwinc:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: X Window Include Files Patch -106331|04|Feb/22/99| | | | |2.6|sparc;|SUNWolinc:3.5.46,REV=0.97.06.23;SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6: Xview Patch +106331|05|Nov/11/02|R|S| | |2.6|sparc;|SUNWolinc:3.5.46,REV=0.97.06.23;SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6: Xview Patch 106335|01|May/18/98| | | | |Unbundled|sparc;|SUNWsadmi:1.2,REV=1997.12.18.16.31;|SEA 1.0.2: Compilation with the SEA libraries generate memory init 106336|02|Jul/22/98| | | | |Unbundled|sparc;|SUNWosar:6.01,REV=00.19;|Sun RSM Array 2000 2.0: Patch 103622-09 causes DR problems 106337|05|Nov/13/98| |S| | |Unbundled|i386;|SUNWsadmi:1.2,REV=1997.12.19.09.26;|SEA1.0.2 _x86: DMI See Problem Description 106339|02|Jun/30/98| | | | |2.5.1|sparc;105784-02;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/praudit patch 106340|02|Jul/15/98| | | | |2.5.1_x86|i386;105785-02;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/praudit patch -106341|03|Aug/27/99| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: init patch +106341|04|Mar/03/03| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: init patch 106343|01|Jun/08/98| | | | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /sbin/init and /usr/sbin/init patch 106345|04|Nov/29/99| | | | |Trusted_Solaris_2.5|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=97.06.25.03.09;SUNWcsr:11.5.1,REV=97.06.25.03.09;SUNWtsolp:2.5.0,REV=97.06.25.03.09;SUNWtsolr:2.5.0,REV=97.06.25.03.09;|Trusted Solaris 2.5: Cumulative Kernel Patch 106346|01|Apr/30/98| | |O| |Unbundled|||OBSOLETED by 107523 106348|01|Apr/30/98| | | | |Unbundled|||SNC 3.1.1 _x86: SNC with DHCP use wrong hostname in NLM_FREEALL 106349|01|Jun/17/98| | |O| |Unbundled|||OBSOLETED by 106646 -106353|04|Feb/22/99| | | | |2.6_x86|i386;|SUNWolinc:3.5.46,REV=0.97.06.23;SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6_x86: Xview Patch +106353|05|Nov/21/02|R|S| | |2.6_x86|i386;|SUNWolinc:3.5.46,REV=0.97.06.23;SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6_x86: Xview Patch 106356|01|May/07/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/fs/ufs/edquota patch -106361|14|Feb/01/02|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: csh/jsh/ksh/rksh/rsh/sh patch -106362|14|Feb/01/02|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: csh/jsh/ksh/rksh/rsh/sh patch +106361|15|Feb/07/03|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: csh/jsh/ksh/rksh/rsh/sh patch +106362|15|Feb/07/03|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: csh/jsh/ksh/rksh/rsh/sh patch 106363|02|Feb/22/99|R| | |Y |2.6_x86|i386;|SUNWxwman:3.6.370,REV=0.97.06.18;SUNWxwopt:3.6.370,REV=0.97.06.18;|OpenWindows 3.6_x86: multiple xterm fixes 106364|01|Jul/09/98| | |O| |Unbundled|||OBSOLETED by 106854 106365|03|Jul/16/98| | |O| |Unbundled|||OBSOLETED by 106037 106366|02|Nov/17/99| | | | |2.6|sparc;106193-02;|SUNWsibi:6.5,REV=1998.04.07.19.15;|SunOS 5.6: ttinstall sysid patch on HW598 106367|02|Nov/17/99| | | | |2.6_x86|i386;106194-02;|SUNWsibi:6.5,REV=1998.04.07.19.20;|SunOS 5.6_x86: ttinstall sysidsys patch on HW598 -106381|05|Apr/16/01| | | | |2.6|sparc.sun4u1;|SUNWcvc:1.1.0,REV=1998.01.23.18.28;|SunOS 5.6: /platform/sun4u1/kernel/drv/cvc patch +106381|06|Mar/06/03| | | | |2.6|sparc.sun4u1;|SUNWcvc:1.1.0,REV=1998.01.23.18.28;|SunOS 5.6: /platform/sun4u1/kernel/drv/cvc patch 106382|01|May/18/98|R|S| | |2.5.1|sparc;|SUNWvolu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/rmmount patch 106384|01|May/18/98|R|S| | |2.5|sparc;|SUNWvolu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/sbin/rmmount fix 106387|05|Jul/20/00| |S| | |Unbundled|sparc;105633-22;|SUNWodu:2.1.3,REV=06.98.04.17;SUNWvts:2.1.3,REV=06.98.04.17;|SunVTS 2.1.3: security,Sheffield support,pmem panic, test fixed an @@ -2707,8 +2732,8 @@ 106392|02|Mar/10/99| | | | |Unbundled|sparc;|SUNW5smt:1.0,REV=08.27.1998;SUNWcsmt:1.0,REV=08.27.1998;SUNWdesmt:1.0,REV=08.27.1998;SUNWessmt:1.0,REV=08.27.1998;SUNWfrsmt:1.0,REV=08.27.1998;SUNWgsmt:1.0,REV=08.27.1998;SUNWhsmt:1.0,REV=08.27.1998;SUNWitsmt:1.0,REV=08.27.1998;SUNWjasmt:1.0,REV=08.27.1998;SUNWjpsmt:1.0,REV=08.27.1998;SUNWjusmt:1.0,REV=08.27.1998;SUNWkosmt:1.0,REV=08.27.1998;SUNWkusmt:1.0,REV=08.27.1998;SUNWsmtvh:1.1,REV=08.27.1998;SUNWsmtvr:1.2.1,REV=08.27.1998;SUNWsmtvt:1.2.1,REV=08.27.1998;SUNWsmtvu:2.0.5,REV=08.27.1998;SUNWsvsmt:1.0,REV=08.27.1998;|ShowMe TV 1.2.1: ShowMe TV application patch 106394|08|May/04/00| | | | |Unbundled|sparc;|SUNWxgldg:5.0,REV=97.06.02;SUNWxglh:5.0,REV=97.06.02;SUNWxglrt:5.0,REV=97.06.02;|XGL 3.3: XGL Patch (unstripped version) 106395|08|May/05/00| | | | |Unbundled|sparc;|SUNWxgldg:5.0,REV=97.06.02;SUNWxglh:5.0,REV=97.06.02;SUNWxglrt:5.0,REV=97.06.02;|XGL 3.3: XGL Patch (stripped version) -106396|02|Jun/19/02|R|S| | |2.5.1|sparc;|SUNWcsu:96.05.02.21.09;|SunOS 5.5.1: /usr/lib/saf/ttymon patch -106397|02|Jun/19/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/saf/ttymon patch +106396|02|Jun/19/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/saf/ttymon patch +106397|02|Jun/19/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/saf/ttymon patch 106400|01|May/18/98| | | | |Unbundled|||Solstice Network Client (SNC) 3.1.1: 16 Bit winsock.dll patch 106404|01|Jun/02/98| | | | |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;SUNWxwslb:3.6.310,REV=0.97.03.26;|OpenWindows 3.6: libXext patch 106406|01|Jun/09/98| | |O| |Unbundled|||OBSOLETED by 106282 @@ -2722,17 +2747,17 @@ 106414|04|Mar/10/99| | | | |2.5_x86|i386;|SUNWxwopt:3.5.23,REV=0.95.09.22;|OpenWindows 3.5_x86: X Display Manager patch 106415|04|Mar/09/01|R|S| | |2.6|sparc;|SUNWxwopt:3.6.370,REV=0.97.06.19;|OpenWindows 3.6: xdm patch 106416|04|Mar/09/01|R|S| | |2.6_x86|i386;|SUNWxwopt:3.6.370,REV=0.97.06.18;|OpenWindows 3.6_x86: xdm patch -106429|02|Feb/08/01|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/mm patch -106430|01|Jun/24/98| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/drv/mm patch +106429|02|Feb/08/01|R| |O| |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-33 SunOS 5.6: /kernel/drv/mm patch +106430|01|Jun/24/98| | |O| |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-33 SunOS 5.6_x86: /kernel/drv/mm patch 106431|01|Jun/17/98| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/netsvc/rusers/rpc.rusersd patch 106435|01|Jul/09/98| | | | |2.6|sparc;|SUNWpmu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/kernel/drv/pm patch 106436|01|Jul/09/98| | | | |2.6_x86|i386;|SUNWpmu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/kernel/drv/pm patch -106437|03|Feb/01/00|R|S| | |2.6|sparc;105669-06;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: Print Manager Patch -106438|03|Feb/01/00|R|S| | |2.6_x86|i386;105670-08;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: Print Manager Patch -106439|11|Jun/27/02|R| | | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: /usr/sbin/syslogd patch -106440|12|Jun/27/02|R| | | |2.6_x86|i386;|SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/syslogd patch +106437|04|Dec/03/03|R|S| | |2.6|sparc;105669-06;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: Print Manager Patch +106438|04|Dec/03/03|R|S| | |2.6_x86|i386;105670-08;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: Print Manager Patch +106439|13|May/28/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/syslogd patch +106440|14|May/28/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/syslogd patch 106441|02|Jan/27/99| |S| | |Unbundled|sparc;106602-01;|SUNWdtdte:1.1,REV=10.97.06.18;|CDE 1.1: dtappgather patch -106442|02|Jan/27/99| |S| | |Unbundled|i386;106603-01;|SUNWdtdte:1.1,REV=10.97.02.20;|CDE 1.1_x86: dtappgather patch +106442|02|Jan/27/99|R|S| | |Unbundled|i386;106603-01;|SUNWdtdte:1.1,REV=10.97.02.20;|CDE 1.1_x86: dtappgather patch 106443|01|Jun/02/98| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/sbin/whodo fix 106445|01|Jun/15/98| | | | |Unbundled|||SNC 3.1.1 _x86: Script Interpreter appends '~1' to server name 106446|01|Jul/15/98|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/ping patch @@ -2766,45 +2791,49 @@ 106491|01|Jul/01/98| | | | |2.5.1|sparc;|SUNWxi18n:1.3.1,REV=1.0.5;|SunOS 5.5.1: xlibi18n.so.1 patch 106492|01|Jul/01/98| | | | |2.5.1_x86|i386;|SUNWxi18n:1.3.1,REV=1.0.5;|SunOS 5.5.1_x86: xlibi18n.so.1 patch 106493|02|Jul/30/98| | |O| |Unbundled|104018-03;||OBSOLETED by 104018 -106495|02|Jun/05/02|R| | | |2.6|sparc;|SUNWesu:1997.07.15.21.46;SUNWtoo:1997.07.15.21.46;|SunOS 5.6: truss & truss support library patch -106496|02|Jun/05/02|R| | | |2.6_x86|i386;|SUNWesu:1997.07.16.00.21;SUNWtoo:1997.07.16.00.21;|SunOS 5.6_x86: truss & truss support library patch +106495|03|Sep/24/02|R| | | |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;SUNWtoo:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: truss & truss support library patch +106496|03|Sep/27/02|R| | | |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;SUNWtoo:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: truss & truss support library patch 106497|01|Jul/06/98| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch for ldap 106498|01|Jul/06/98| | | | |2.6_x86|i386;|SUNWman:39.0,REV=16;|SunOS 5.6_x86: Manual Pages Patch for ldap 106500|07|Aug/08/01| | | | |2.5.1|sparc;sparc.sun4u;|SUNWkmp2r:1.20,REV=97.10.02.22.14;SUNWscpu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ucblinks and su driver patch 106501|16|Mar/11/99| | | | |Unbundled|sparc;|TAS:5.1;|TAS 5.1: Patch 106502|14|Aug/04/98| | | | |Unbundled|i386;|TAS:5.1;|TAS 5.1: Unable to recover MAC-Realm -106503|07|Jun/19/02| | | | |Unbundled||106503-01 106503-02 106503-03|Hardware/PROM: Enterprise 250 Standalone Flash PROM Update +106503|09|Dec/03/03| | | | |Unbundled|||Hardware/PROM: Enterprise 250 Standalone Flash PROM Update 106504|01|Jul/14/98| | | | |2.6|sparc.sun4u;|SUNWw250:11.6,REV=1998.04.01.16.31;|SunOS 5.6: /platform/SUNW,Ultra-250/kernel/drv/envctrltwo patch 106507|02|Jul/20/00| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/cat patch 106508|02|Jul/20/00| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/cat patch 106511|06|Nov/11/99| | | | |Unbundled|sparc;|SUNWapr:2.1.0,REV=98.04.13.19.07;|AP 2.1: ap_dmd driver fixes -106513|07|Oct/18/00| | | | B|Unbundled|sparc;|SUNWosafw:6.01,REV=01.11;SUNWosau:6.01,REV=01.11;108555-02|BADPATCH RM 6.1.1: generic Raid Manager 6.1.1 update +106513|04|Jan/25/00| | | | |Unbundled||SUNWosafw:6.01,REV=01.11;SUNWosau:6.01,REV=01.11;|RAID Manager 6.1.1: RM6.1.1 status chk, TX chip support, data erro +106513|06|Oct/03/00| | |O| B|Unbundled|sparc;|SUNWosafw:6.01,REV=01.11;SUNWosau:6.01,REV=01.11;108555-02|WITHDRAWN Obsoleted by: 106513-07 RM 6.1.1: generic Raid Manager 6 +106513|07|Oct/18/00| | | | B|Unbundled|sparc;|SUNWosafw:6.01,REV=01.11;SUNWosau:6.01,REV=01.11;108555-02|WITHDRAWN RM 6.1.1: generic Raid Manager 6.1.1 update 106514|10|May/11/00| |S| | |Unbundled|all;sparc;|SUNWbbmta:3.5,REV=1998.08.28.00.06;SUNWimadm:3.5,REV=1998.08.28.00.06;SUNWimcom:3.5,REV=1998.08.28.00.06;SUNWimha:3.5,REV=1998.08.28.00.06;SUNWimimm:3.5,REV=1998.08.28.00.06;SUNWimims:3.5,REV=1998.08.28.00.06;SUNWimimu:3.5,REV=1998.08.28.00.06;SUNWimmta:3.5,REV=1998.08.28.00.06;SUNWimsdk:3.5,REV=1998.08.28.00.04;|Sun Internet Mail Server 3.5: Misc. fixes 106515|10|May/11/00| |S| | |Unbundled|all;i386;|SUNWbbmta:3.5,REV=1998.08.28.00.06;SUNWimadm:3.5,REV=1998.08.28.00.06;SUNWimcom:3.5,REV=1998.08.28.00.06;SUNWimha:3.5,REV=1998.08.28.00.06;SUNWimimm:3.5,REV=1998.08.28.00.06;SUNWimims:3.5,REV=1998.08.28.00.06;SUNWimimu:3.5,REV=1998.08.28.00.06;SUNWimmta:3.5,REV=1998.08.28.00.06;SUNWimsdk:3.5,REV=1998.08.28.00.09;|Sun Internet Mail Server 3.5_x86: Misc. fixes 106516|01|Jun/30/98| | |O| |Unbundled|104018-03;||OBSOLETED by 104018 106517|02|Nov/03/98| | | | |2.5|sparc;106839-01;|SUNWpinst:1.0,REV=7.0;SUNWploc:2.0,REV=9.0;SUNWploc1:1.0,REV=11.0;SUNWplow:1.0,REV=11.0;SUNWplow1:1.0,REV=11.0;|SunOS 5.5: Addition of euro currency support/locales 106518|03|Apr/05/99| | | | |2.5.1|sparc;106840-01;|SUNWpinst:1.0,REV=9.0;SUNWploc:2.0,REV=15.0;SUNWploc1:1.0,REV=14.0;SUNWplow:1.0,REV=19.0;SUNWplow1:1.0,REV=19.0;|SunOS 5.5.1: Addition of euro currency support/locales -106522|04|May/19/00|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/ftp patch -106523|04|May/19/00|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/ftp patch +106522|05|Feb/18/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/ftp patch +106523|05|Feb/18/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/ftp patch 106524|01|Aug/07/98| | | | |2.6_x86|i86pc;|SUNWkleu:6.0,REV=1.0.39;|SunOS 5.6_x86 (KLE): 'total' in 'ls -l' command not localized 106526|02|Aug/14/98| | | | |Unbundled|||SNC 3.2 _x86: install hangs when installing 3c905b network card 106528|03|Jun/09/00| |S| | |Unbundled|sparc;|SUNWodu:2.1.1,REV=07.97.10.06;SUNWvts:2.1.1,REV=07.97.10.08;|SunVTS 2.1.1: Add env2test and gemtest, fix security, msg in local 106529|08|Jul/31/01|R| | | |Unbundled|sparc;|SUNWlibC:5.5.1,REV=96.02.20;|SunOS 5.5.1: Shared library patch for C++ 106530|07|Jun/20/00|R| | | |Unbundled|i386;|SUNWlibC:5.5.1,REV=96.02.29;|SunOS 5.5.1_x86: Shared library patch for C++ -106531|07|Jun/19/02| | | | |Unbundled|sparc;|SUNWqfed:3.1,REV=5.5.1.98.04.03;SUNWqfedu:3.1,REV=5.5.1.98.04.03;|Sun Quad FastEthernet 2.2: Patch for Solaris 2.5 qfe driver -106532|11|May/23/02| | | | |Unbundled|sparc;|SUNWqfed:3.1,REV=5.6.98.04.03;SUNWqfedu:3.1,REV=5.6.98.04.03;|Sun Quad FastEthernet 2.2: Patch for Solaris 2.6 qfe driver +106531|11|Apr/17/03| | | | |Unbundled|sparc;|SUNWqfed:3.1,REV=5.5.1.98.04.03;SUNWqfedu:3.1,REV=5.5.1.98.04.03;|Sun Quad FastEthernet 2.2: Patch for Solaris 2.5 qfe driver +106532|08|May/21/01| | | | B|Unbundled|sparc;|SUNWqfed:3.1,REV=5.6.98.04.03;SUNWqfedu:3.1,REV=5.6.98.04.03;|WITHDRAWN Sun Quad FastEthernet 2.2: Patch for Solaris 2.6 qfe dri +106532|15|Mar/13/03| | | | |Unbundled|sparc;|SUNWqfed:3.1,REV=5.6.98.04.03;SUNWqfedu:3.1,REV=5.6.98.04.03;|Sun Quad FastEthernet 2.2: Patch for Solaris 2.6 qfe driver 106533|11|Apr/01/02| | | | |2.6|sparc;sparc.sun4u;|SUNWscpu:11.6.0,REV=1997.07.15.21.46;SUNWsior:1.5,REV=1998.04.06.12.45;106994-01|SunOS 5.6: ucblinks and su driver patch 106536|01|Jul/17/98| | | | |Unbundled|sparc;|SUNWsasdk:1.2;|SEA 1.0.2: x86 Bugfix for SEA 1.0.2 snmp/dmi toolkit SUNWsasdk 106537|01|Jul/27/98| | |O| |2.6_x86|||OBSOLETED by 107277 106538|03|Mar/24/99| |S|O| |Unbundled|106048-04;||OBSOLETED by 106596 106539|05|Jun/20/00| | | | |Unbundled|sparc;|SUNWlibC:5.5,REV=95.9.9;|SunOS 5.5: Shared library patch for C++ 106540|05|Jun/20/00| | | | |Unbundled|i386;|SUNWlibC:5.5,REV=95.10.02;|SunOS 5.5_x86: Shared library patch for C++ -106541|21|Jun/17/02|R|S| | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;107544-02;107834-02;|FJSVhea:1998.11.16.20.05;SUNWarc:1998.09.01.04.16;SUNWarcx:1998.09.01.04.16;SUNWatfsr:1998.09.01.04.16;SUNWcar:1998.09.01.04.16;SUNWcar:1999.01.11.15.30;SUNWcarx:1998.09.01.04.16;SUNWcarx:1998.11.30.15.02;SUNWcpr:1998.09.01.04.16;SUNWcpr:1998.11.16.20.05;SUNWcprx:1998.09.01.04.16;SUNWcprx:1998.11.16.20.05;SUNWcsl:1998.09.01.04.16;SUNWcslx:1998.09.01.04.16;SUNWcsr:1998.09.01.04.16;SUNWcsu:1998.10.06.00.59;SUNWcsxu:1998.09.01.04.16;SUNWcvc:1998.09.01.04.16;SUNWcvcx:1998.09.01.04.16;SUNWdpl:1998.09.01.04.16;SUNWdplx:1998.09.01.04.16;SUNWdrr:1999.03.09.04.51;SUNWdrrx:1999.03.09.04.51;SUNWesu:1998.09.01.04.16;SUNWesxu:1998.09.01.04.16;SUNWhea:1998.09.01.04.16;SUNWipc:1998.09.01.04.16;SUNWkvm:1998.09.01.04.16;SUNWkvm:1999.01.11.15.30;SUNWkvmx:1998.09.01.04.16;SUNWkvmx:1998.11.16.20.05;SUNWnisu:1998.09.01.04.16;SUNWpcmci:1998.09.01.04.16;SUNWpcmcu:1998.09.01.04.16;SUNWpcmcx:1998.09.01.04.16;SUNWscpu:1998.09.01.04.16;SUNWssad:1998.09.01.04.16;SUNWssadx:1998.09.01.04.16;SUNWsxr:1998.09.01.04.16;SUNWtnfc:1998.09.01.04.16;SUNWtnfcx:1998.09.01.04.16;SUNWtoo:1998.09.01.04.16;SUNWtoox:1998.09.01.04.16;SUNWvolr:1998.09.01.04.16;SUNWvolu:1998.09.01.04.16;SUNWypu:1998.09.01.04.16;|SunOS 5.7: Kernel update patch -106542|21|Jun/17/02|R|S| | |7_x86|i386;i386.i86pc;107545-02;|SUNWarc:1998.09.01.04.53;SUNWatfsr:1998.09.01.04.53;SUNWcar:1998.09.01.04.53;SUNWcsl:1998.09.01.04.53;SUNWcsr:1998.09.01.04.53;SUNWcsu:1998.10.06.01.22;SUNWdpl:1998.09.01.04.53;SUNWesu:1998.09.01.04.53;SUNWhea:1998.09.01.04.53;SUNWipc:1998.09.01.04.53;SUNWkvm:1998.09.01.04.53;SUNWnisu:1998.09.01.04.53;SUNWpcmci:1998.09.01.04.53;SUNWpcmcu:1998.09.01.04.53;SUNWscpu:1998.09.01.04.53;SUNWtnfc:1998.09.01.04.53;SUNWtoo:1998.09.01.04.53;SUNWvolr:1998.09.01.04.53;SUNWvolu:1998.09.01.04.53;SUNWypu:1998.09.01.04.53;|SunOS 5.7_x86: kernel update patch +106541|30|Dec/16/03|R|S| | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;107544-02;107834-02;|FJSVhea:1.0,REV=1998.11.16.20.05;SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWarcx:11.7.0,REV=1998.09.01.04.16;SUNWatfsr:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcpr:11.7.0,REV=1998.09.01.04.16;SUNWcpr:11.7.0,REV=1998.11.16.20.05;SUNWcprx:11.7.0,REV=1998.09.01.04.16;SUNWcprx:11.7.0,REV=1998.11.16.20.05;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWcvc:11.7.0,REV=1998.09.01.04.16;SUNWcvcx:11.7.0,REV=1998.09.01.04.16;SUNWdpl:11.7.0,REV=1998.09.01.04.16;SUNWdplx:11.7.0,REV=1998.09.01.04.16;SUNWdrr:11.7.0,REV=1999.03.09.04.51;SUNWdrrx:11.7.0,REV=1999.03.09.04.51;SUNWesu:11.7.0,REV=1998.09.01.04.16;SUNWesxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWipc:11.7.0,REV=1998.09.01.04.16;SUNWkvm:11.7.0,REV=1998.09.01.04.16;SUNWkvm:11.7.0,REV=1999.01.11.15.30;SUNWkvmx:11.7.0,REV=1998.09.01.04.16;SUNWkvmx:11.7.0,REV=1998.11.16.20.05;SUNWnisu:11.7.0,REV=1998.09.01.04.16;SUNWpcmci:11.7.0,REV=1998.09.01.04.16;SUNWpcmcu:11.7.0,REV=1998.09.01.04.16;SUNWpcmcx:11.7.0,REV=1998.09.01.04.16;SUNWscpu:11.7.0,REV=1998.09.01.04.16;SUNWscpux:11.7.0,REV=1998.09.01.04.16;SUNWssad:11.7.0,REV=1998.09.01.04.16;SUNWssadx:11.7.0,REV=1998.09.01.04.16;SUNWsxr:11.7.0,REV=1998.09.01.04.16;SUNWtnfc:11.7.0,REV=1998.09.01.04.16;SUNWtnfcx:11.7.0,REV=1998.09.01.04.16;SUNWtoo:11.7.0,REV=1998.09.01.04.16;SUNWtoox:11.7.0,REV=1998.09.01.04.16;SUNWvolr:11.7.0,REV=1998.09.01.04.16;SUNWvolu:11.7.0,REV=1998.09.01.04.16;SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: Kernel Update Patch +106542|30|Dec/15/03|R|S| | |7_x86|i386;i386.i86pc;107545-02;114286-01;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWatfsr:11.7.0,REV=1998.09.01.04.53;SUNWcar:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWdpl:11.7.0,REV=1998.09.01.04.53;SUNWesu:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWipc:11.7.0,REV=1998.09.01.04.53;SUNWkvm:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;SUNWpcmci:11.7.0,REV=1998.09.01.04.53;SUNWpcmcu:11.7.0,REV=1998.09.01.04.53;SUNWscpu:11.7.0,REV=1998.09.01.04.53;SUNWtnfc:11.7.0,REV=1998.09.01.04.53;SUNWtoo:11.7.0,REV=1998.09.01.04.53;SUNWvolr:11.7.0,REV=1998.09.01.04.53;SUNWvolu:11.7.0,REV=1998.09.01.04.53;SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: Kernel Update Patch 106543|01|Jul/17/98| | | | |Unbundled|sparc;|SUNWsspdr:3.1.0,REV=97.11.17.17.04;|SSP 3.1: tcl script error on "drain" from drview then "hang" 106544|01|Jul/16/98| | |O| |Unbundled|||OBSOLETED by 107806 106548|02|Dec/08/98| | | | |2.5.1|sparc;|SUNWxwfs:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: Font Server patch 106549|02|Dec/08/98| | | | |2.5.1_x86|i386;|SUNWxwfs:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: Font Server patch +106552|02|Mar/03/99| | |O| B|Unbundled||106707-01|OBSOLETED by WITHDRAWN 106552|04|Mar/27/00| | | | |Unbundled|sparc;106513;|SUNWosamn:6.01,REV=01.11;SUNWosar:6.01,REV=01.11;SUNWosau:6.01,REV=01.11;106707-01|RAID Manager 6.1.1: Driver patch only for Solaris 7 support 106553|02|Aug/10/98| | | | |2.6|sparc;|SUNW5ddst:1.1,REV=1.0.40;SUNWcddst:1.1,REV=1.0.40;SUNWhddst:1.1,REV=1.0.40;SUNWkddst:1.1,REV=1.0.40;SUNWkudda:1.1,REV=1.0.40;|CDE 1.2: dtmail vacation give "Cant get the 'at' job id from stder 106554|02|Aug/10/98| | | | |2.6_x86|i386;|SUNW5ddst:1.1,REV=1.0.40;SUNWcddst:1.1,REV=1.0.40;SUNWhddst:1.1,REV=1.0.40;SUNWkddst:1.1,REV=1.0.40;SUNWkudda:1.1,REV=1.0.40;|CDE 1.2_x86: dtmail vacation msg, Cant get the 'at' job id fr stde @@ -2825,14 +2854,16 @@ 106570|01|Sep/16/98|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libauth.a & libauth.so.1 patch 106571|01|Aug/26/98| | | | |Unbundled|sparc;|SUNWdat:1.0.0,REV=6.0;|SunForum 1.0: Patch for SunForum 1.0 106581|01|Feb/08/99| | | | |Unbundled|sparc;|SUNWnbfsh:3.1.1;|Sun Enterprise Netbackup 3.1.1: Patch +106592|04|Sep/05/01|R|S| | B|2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|WITHDRAWN SunOS 5.6: /usr/lib/nfs/statd patch 106592|05|May/14/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/nfs/statd patch +106593|04|Sep/05/01|R|S| | B|2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|WITHDRAWN SunOS 5.6_x86: /usr/lib/nfs/statd patch 106593|05|May/14/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/nfs/statd patch 106594|02|Aug/19/98| | | | |2.6_x86|i386;|SUNWciu8:6.0,REV=1.0.38;|SunOS 5.6_x86: bad iso-2022-cn string cause crash in iconv problem 106595|02|Aug/18/98| | | | |2.6|sparc;|SUNWtdbas:1.0,REV=1.0.0;SUNWtddst:1.0,REV=1.0.0;SUNWtddte:1.0,REV=1.0.1;SUNWtdft:1.0,REV=1.0.0;SUNWtdwm:1.0,REV=1.0.0;SUNWtiu8:1.0,REV=1.0.0;SUNWtleu:1.0,REV=1.0.0;SUNWtxfnt:1.0,REV=1.0.0;SUNWtxplt:1.0,REV=1.0.0;|SunOS 5.6: Titlebar, CompoundText exchange & Dtwm background fixes 106596|06|Oct/05/00| | | | |Unbundled|sparc;|SUNWapr:2.1.0,REV=98.04.13.19.07;SUNWapu:2.1.0,REV=98.04.13.19.07;|AP 2.1: BAD TRAP panic mether_rarp mutex_panic chksumming 106600|02|Nov/13/98| |S| | |Unbundled|i386;|SUNWmibii:1.2,REV=1997.12.19.09.26;SUNWsacom:1.2,REV=1997.12.19.09.26;SUNWsasnm:1.2,REV=1997.12.19.09.26;|Solstice Enterprise Agent 1.0.2 _x86: SNMP 106602|01|Sep/22/98| |S| | |Unbundled|sparc;|SUNWdtdte:1.1,REV=10.97.06.18;|CDE 1.1: dtlogin patch for login vulnerabilities -106603|01|Sep/22/98| |S| | |Unbundled|i386;|SUNWdtdte:1.1,REV=10.97.02.20;|CDE 1.1_x86: dtlogin patch for security vulnerabilities +106603|01|Sep/22/98|R|S| | |Unbundled|i386;|SUNWdtdte:1.1,REV=10.97.02.20;|CDE 1.1_x86: dtlogin patch for security vulnerabilities 106604|02|Jan/21/00| | | |Y |Unbundled|||SNC 3.2, 3.1.1: x86: Pronto96.exe y2k and page fault fix. 106606|04|Aug/08/00| | | | |Unbundled|sparc;|SUNWvmman:2.6,REV=2.5.3;SUNWvmsa:2.6,REV=1.0.1;SUNWvxva:2.6,REV=2.5.0;SUNWvxvm:2.6,REV=2.5.3;|Sun StorEdge Volume Manager 2.6: Sun Enterprise Network Array 106613|03|Aug/02/00| | | | |2.6|sparc;|SUNWjiu8:1.0,REV=1.0.60;|SunOS 5.6: Japanese UTF-8 iconv patch @@ -2844,17 +2875,19 @@ 106621|10|Dec/17/01| | | | |Unbundled|sparc;|SUNWsds:3.1;SUNWsdsc:3.1;|Sun Directory Services 3.1 patch 106622|09|May/30/01| | | | |Unbundled|i386;|SUNWsds:3.1;SUNWsdsc:3.1;|Sun Directory Services 3.1 patch_x86 106623|01|Aug/12/98| | |O| |2.5.1|||OBSOLETED by 103640 -106625|13|Nov/02/01|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libsec.a, libsec.so.1 and /kernel/fs/ufs patch -106626|13|Nov/02/01|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libsec.a, libsec.so.1 and /kernel/fs/ufs patch -106627|17|Jul/18/02| | | | |Unbundled|sparc;|..:1998.02.09.12.47.28;..:1998.14.09.08.19.32;|Solstice DiskSuite 4.2: Product Patch -106628|17|Jul/22/02| | | | |Unbundled|i386;|..:1998.02.09.12.48.14;..:1998.14.09.08.20.39;|Solstice DiskSuite 4.2_x86: Product patch +106625|14|Jul/11/03|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: libsec.a, libsec.so.1 and /kernel/fs/ufs patch +106626|14|Jul/11/03|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: libsec.a, libsec.so.1 and /kernel/fs/ufs patch +106627|18|Sep/16/02| | | | B|Unbundled|sparc;|SUNWmd:4.2,REV=1998.02.09.12.47.28;SUNWmdg:4.2,REV=1998.14.09.08.19.32;SUNWmdn:4.2,REV=1998.02.09.12.47.28;|WITHDRAWN PATCH Solstice DiskSuite 4.2: Product Patch +106627|19|Feb/11/03| | | | |Unbundled|sparc;|SUNWmd:4.2,REV=1998.02.09.12.47.28;SUNWmdg:4.2,REV=1998.14.09.08.19.32;SUNWmdn:4.2,REV=1998.02.09.12.47.28;|Solstice DiskSuite 4.2: Product Patch +106628|18|Sep/16/02| | | | B|Unbundled|i386;|SUNWmd:4.2,REV=1998.02.09.12.48.14;SUNWmdg:4.2,REV=1998.14.09.08.20.39;SUNWmdn:4.2,REV=1998.02.09.12.48.14;|WITHDRAWN PATCH Solstice DiskSuite 4.2_x86: Product patch +106628|19|Feb/28/03| | | | |Unbundled|i386;|SUNWmd:4.2,REV=1998.02.09.12.48.14;SUNWmdg:4.2,REV=1998.14.09.08.20.39;SUNWmdn:4.2,REV=1998.02.09.12.48.14;|Solstice DiskSuite 4.2_x86: Product patch 4GB 106629|23|Dec/22/00| |S| | |2.6|sparc;sparc.sun4d6;|SUNWcar:11.6.0,REV=1998.06.29.15.55;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;105181-08|SunOS 5.6: CS6400 kernel update patch 106633|01|Aug/14/98| | | | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/bin/tail patch 106634|01|Aug/14/98| | | | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/bin/tail patch 106637|01|Jun/01/99| | | | |Unbundled|sparc;|SUNWsbuc:5.1;|Solstice Backup 5.1: nsrfile patch 106638|01|Aug/13/98| | | | |Unbundled|||SNC 3.1: x86: displays a confusing error message during failing lo -106639|06|Jul/31/01|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/strmod/rpcmod patch -106640|06|Jul/31/01| |S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/strmod/rpcmod patch +106639|08|Apr/09/03|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: rpcmod patch +106640|07|Sep/05/02|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: rpcmod patch 106641|01|Sep/08/98| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/fs/nfs/mount patch 106642|01|Sep/08/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/fs/nfs/mount patch 106643|01|Aug/27/98| | | | |Unbundled|||SNC 3.2: x86: SNC cannot change password in NIS passwd.adjunct map @@ -2864,16 +2897,16 @@ 106647|03|Dec/09/99|R|S| | |Unbundled|i386;|SUNWpcnfd:1.2;|SNC 3.2: rpc.pcnfsd has security problem, also hangs and dumps cor 106648|01|Sep/02/98|R|S| | |2.6|sparc;|SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6: libce suid/sgid security fix 106649|01|Sep/02/98|R|S| | |2.6|sparc;|SUNWolrte:3.5.48,REV=0.97.06.23;|OpenWindows 3.6: libdeskset patch -106650|04|Dec/21/99|R|S| | |2.6|sparc;106648-01;106649-01;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: mailtool attachment security patch +106650|05|Nov/11/02|R|S| | |2.6|sparc;106648-01;106649-01;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: mailtool attachment security patch 106651|01|Aug/20/98| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/netsvc/rstat/rpc.rstatd patch 106652|01|Aug/20/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/netsvc/rstat/rpc.rstatd patch 106653|01|Aug/20/98| | |O| |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 106818-02 SunOS 5.6: /usr/lib/sa/sadc patch 106654|01|Aug/20/98| | |O| |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 106819-02 SunOS 5.6_x86: /usr/lib/sa/sadc patch -106655|04|Jan/02/01| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: iostat/mpstat/vmstat patch -106656|02|Feb/23/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: iostat/mpstat/vmstat patch +106655|05|Jun/10/03| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: iostat/mpstat/vmstat patch +106656|05|Jun/10/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: iostat/mpstat/vmstat patch 106657|01|Sep/02/98|R|S| | |2.6_x86|i386;|SUNWolrte:3.5.48,REV=0.97.06.23;SUNWolslb:3.5.46,REV=0.97.06.23;|OpenWindows 3.6_x86: libce suid/sgid security fix 106658|01|Sep/02/98|R|S| | |2.6_x86|i386;|SUNWolrte:3.5.48,REV=0.97.06.23;|OpenWindows 3.6_x86: libdeskset patch -106659|04|Dec/21/99|R|S| | |2.6_x86|i386;106657-01;106658-01;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: mailtool attachment security patch +106659|05|Nov/11/02|R|S| | |2.6_x86|i386;106657-01;106658-01;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: mailtool attachment security patch 106660|03|May/26/99| | | | |2.6|sparc;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtdte:1.2,REV=10.97.07.02;SUNWdthe:1.2,REV=10.97.06.27;|CDE 1.2: Actions patch 106661|14|Apr/12/01| | | | |Unbundled|sparc;106660-01;106125-08;|SUNWdtdte:1.3,REV=11.98.01.25;SUNWdtdte:1.3,REV=11.98.04.17;SUNWdtezt:1.3,REV=11.98.01.25;SUNWdtmaz:1.3,REV=11.98.01.25;SUNWdtwm:1.3,REV=11.98.01.25;|SDE 1.0: Solaris Desktop Extensions patch 106662|01|Sep/02/98|R|S| | |2.5.1|sparc;|SUNWolrte:3.5.31,REV=0.96.03.18;SUNWolslb:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: libce suid/sgid security fix @@ -2914,16 +2947,16 @@ 106712|01|Nov/02/98| | | | |2.5.1_x86|i386;103500-11;|SUNWpinst:1.0,REV=9.0;SUNWploc:2.0,REV=16.0;SUNWploc1:1.0,REV=15.0;SUNWplow:1.0,REV=19.0;SUNWplow1:1.0,REV=19.0;|SunOS 5.5.1_x86: Addition of euro currency support/locales 106718|01|Sep/10/98| |S| | |Unbundled|sparc;|SICGkeymg:1.1.1;|SunScreen SKIP for Solaris 1.1.1: patch for /etc mode in packaging 106719|01|Sep/10/98| |S| | |Unbundled|i86pc;|SICGkeymg:1.1.1;|SunScreen SKIP for Solaris 1.1.1: x86 patch for /etc mode in packa -106723|14|Apr/09/02| | | | |Unbundled|sparc;|SUNWappc:9.1;|SunLink SNA Peer-to-Peer API 9.1: CPIC header compilation error Pa -106725|02|Dec/21/99|R|S| | |7|sparc;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1: mailtool vacation security patch +106723|16|Apr/02/03| | | | |Unbundled|sparc;|SUNWappc:9.1;|SunLink SNA Peer-to-Peer API 9.1: CPIC header compilation error Pa +106725|03|Nov/11/02|R|S| | |7|sparc;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1: mailtool vacation security patch 106729|01|Aug/03/99| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/makedbm patch 106733|07|Dec/07/99| | | | |7|sparc;|SUNWadmc:11.7,REV=1998.09.10.19.57;SUNWsibi:11.7,REV=1998.09.14.14.10;|SunOS 5.7: Create a patch analyzer 106734|07|Dec/07/99| | | | |7_x86|i386;|SUNWadmc:11.7,REV=1998.09.10.20.02;SUNWsibi:11.7,REV=1998.09.14.14.51;|SunOS 5.7_x86: Create a patch analyzer 106735|18|Dec/19/00| | | | |Unbundled|sparc;|SUNWafbgl:1.1.2,REV=1998.08.26;SUNWffbgl:1.1.2,REV=1998.08.26;SUNWgleg:1.1.2,REV=1998.08.26;SUNWglh:1.1.2,REV=1998.08.26;SUNWglrt:1.1.2,REV=1998.08.26;SUNWglrtu:1.1.2,REV=1998.08.26;SUNWifbgl:1.1.2,REV=1998.08.26;|OpenGL 1.1.2: OpenGL Patch for Solaris 2.5.1/2.6 106736|02|Jan/26/99| | | | |Unbundled|sparc;|SUNWsbuc:5.1.1;SUNWsbun:5.1.1;SUNWsbus1:5.1.1;|Solstice Backup 5.1.1: Product Patch -106737|03|Dec/21/99|R|S| | |7_x86|i386;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1_x86: mailtool vacation security patch -106738|09|Jul/31/02| | | | |Unbundled|sparc;|SUNWnfd:1998.09.01;SUNWnfh:1998.09.01;SUNWnfm:1998.09.01;SUNWnfu:1998.09.01;|SunFDDI SBus 6.0 AP failure, panic, stat -106739|12|May/21/01| | | | |Unbundled|sparc;|SUNWpfd:2.0,REV=1998.09.01;SUNWpfh:2.0,REV=1998.09.01;SUNWpfm:2.0,REV=1998.09.01;SUNWpfu:2.0,REV=1998.09.01;|SunFDDI/P 2.0: Enhancements +106737|04|Nov/11/02|R|S| | |7_x86|i386;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1_x86: mailtool vacation security patch +106738|10|May/12/03| | | | |Unbundled|sparc;|SUNWnfd:6.0,REV=1998.09.01;SUNWnfh:6.0,REV=1998.09.01;SUNWnfm:6.0,REV=1998.09.01;SUNWnfu:6.0,REV=1998.09.01;|SunFDDI SBus 6.0 AP failure, panic, stat +106739|13|Oct/03/02| | | | |Unbundled|sparc;|SUNWpfd:2.0,REV=1998.09.01;SUNWpfh:2.0,REV=1998.09.01;SUNWpfm:2.0,REV=1998.09.01;SUNWpfu:2.0,REV=1998.09.01;|SunFDDI/P 2.0: Enhancements 106740|01|Sep/18/98| | | | |Unbundled|||SNC 3.2: x86: SUNWamdnt.exe exception access violation after reboo 106742|01|Oct/05/98| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: /usr/sbin/crash patch 106743|01|Nov/11/98| | | | |2.6|sparc;|SUNWjddst:1.2,REV=1.0.78;SUNWjdhe:1.2,REV=1.0.78;SUNWjpdst:1.2,REV=1.0.78;SUNWjphe:1.2,REV=1.0.78;|CDE 1.2: Actions patch for Japanese locales @@ -2943,9 +2976,9 @@ 106760|02|Feb/28/01| |S| | |Unbundled|sparc;|SUNWpppk:3.0.1;SUNWpppkx:3.0.1;SUNWpppm:3.0.1;SUNWpppr:3.0.1;SUNWppps:3.0.1;SUNWpppu:3.0.1;|PPP 3.0.1: 64-bit clean code, /var permissions 106761|02|Feb/28/01| |S| | |Unbundled|i386;|SUNWpppk:3.0.1;SUNWpppm:3.0.1;SUNWpppr:3.0.1;SUNWppps:3.0.1;SUNWpppu:3.0.1;|PPP 3.0.1_x86: 64-bit clean code; /var permissions fixed 106764|09|Jun/03/02| | | | |Unbundled|sparc;|SUNWged:2.0,REV=5.6.98.09.01;|Sun Gigabit Ethernet 2.0: Patch for Solaris 2.6 ge driver -106765|09|Jun/03/02| | | | |Unbundled|sparc;|SUNWged:2.0,REV=5.7.98.09.01;|Sun Gigabit Ethernet 2.0: Patch for Solaris 7 ge driver +106765|11|Sep/12/03| | | | |Unbundled|sparc;|SUNWged:2.0,REV=5.7.98.09.01;|Sun Gigabit Ethernet 2.0: Patch for Solaris 7 ge driver 106786|01|Jan/29/99| | | | |Unbundled|sparc;|SUNWsbuc:4.2.6;|Solstice Backup 4.2.6: Collapsing nwbackup selections nwrecover -106787|18|May/31/02| |S| | |Unbundled|sparc;|SUNWmibii:1998.09.08.15.08;SUNWsacom:1998.09.08.15.08;SUNWsadmi:1998.09.08.15.08;SUNWsasnm:1998.09.08.15.08;|Solstice Enterprise Agent 1.0.3: SNMP. +106787|19|Apr/10/03| |S| | |Unbundled|sparc;|SUNWmibii:1.3,REV=1998.09.08.15.08;SUNWsacom:1.3,REV=1998.09.08.15.08;SUNWsadmi:1.3,REV=1998.09.08.15.08;SUNWsasnm:1.3,REV=1998.09.08.15.08;|Solstice Enterprise Agent 1.0.3: SNMP. 106788|02|Dec/03/98| | |O| |Unbundled|||OBSOLETED by 107709 106789|01|Nov/05/98| | |O| |Unbundled|||Obsoleted by: 108437-04 Hardware, Tape: ETL 4/1000, 4/1800, 7/3500 106793|07|Mar/26/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ufsdump and ufsrestore patch @@ -2965,11 +2998,11 @@ 106814|01|Nov/29/99|R|S| | |Trusted_Solaris_2.5.1|106815-01;||Trusted Solaris 2.5.1: OpenWindows mailtool is vulnerable to some 106815|01|Nov/29/99|R|S| | |Trusted_Solaris_2.5.1|106814-01;||Trusted Solaris 2.5.1: OpenWindows mailtool is vulnerable to some 106817|04|May/11/00| | | | |Unbundled|||Hardware, 9GB Disks: Download program and ST39173W 4315 firmware -106818|07|Jun/03/02| | | | |2.6|sparc;|SUNWaccu:1997.07.15.21.46;|SunOS 5.6: /usr/sbin/sar patch +106818|07|Jun/03/02| | | | |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/sar patch 106819|07|May/09/02| | | | |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/sar patch 106820|01|Oct/05/98| | |O| |Unbundled|104018-03;||OBSOLETED by 104018 106821|03|Mar/11/99| | | | |7_x86|i386;|SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: ctl print utility patch -106822|09|Aug/02/02| | | | |Unbundled|sparc;|SUNWomgta:9;SUNWomgtb:9;SUNWomgte:9;104190|Solstice CMIP 8.2.1 : patch for runtime and examples fixes +106822|12|Jun/03/03| | | | |Unbundled|sparc;|SUNWomgta:8.2.1,PATCH=12;SUNWomgtb:8.2.1,PATCH=12;SUNWomgte:8.2.1,PATCH=12;104190|Solstice CMIP 8.2.1 : patch for runtime and examples fixes 106828|01|Oct/29/98|R| | |Y |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/date patch 106829|01|Oct/29/98|R| | |Y |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/date patch 106832|02|Mar/11/99| |S|O| |7|||OBSOLETED by 107117 @@ -2996,12 +3029,12 @@ 106863|01|Nov/03/98| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /etc/cron.d/logchecker patch 106864|01|Nov/03/98| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /etc/cron.d/logchecker patch 106868|01|Oct/16/98| | | | |Unbundled|||SNC 3.2: _x86: Cachefs prevents access to cd-rom on NT -106872|18|May/31/02| |S| | |Unbundled|i386;|SUNWmibii:1998.09.08.16.12;SUNWsacom:1998.09.08.16.12;SUNWsadmi:1998.09.08.16.12;SUNWsasnm:1998.09.08.16.12;|Solstice Enterprise Agent 1.0.3: SNMP. +106872|18|May/31/02| |S| | |Unbundled|i386;|SUNWmibii:1.3,REV=1998.09.08.16.12;SUNWsacom:1.3,REV=1998.09.08.16.12;SUNWsadmi:1.3,REV=1998.09.08.16.12;SUNWsasnm:1.3,REV=1998.09.08.16.12;|Solstice Enterprise Agent 1.0.3: SNMP. 106874|02|Jul/13/00| | |O| |Unbundled|sparc;|SUNWsadmi:1.3,REV=1998.09.08.15.08;|Obsoleted by: 106787-14 SEA 1.0.3: DMI Server provider , See Probl 106879|01|Nov/05/98| | | | |Unbundled|sparc;|SUNWpmowu:2.3,REV=98.08.03.17.17;|SunOS 5.7: sys-suspend patch 106880|03|Nov/29/99|R|S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: dtsession dtwm patch -106882|02|Aug/28/00|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/nfs/nfsd patch -106883|01|Jul/07/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/nfs/nfsd patch +106882|02|Aug/28/00|R|S|O| |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-33 SunOS 5.6: /usr/lib/nfs/nfsd patch +106883|01|Jul/07/99| | |O| |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-33 SunOS 5.6_x86: /usr/lib/nfs/nfsd patch 106887|02|Jul/06/99| | | | |Unbundled|sparc;|SUNWrtvcl:1.4,REV=1998.08.11;|SunOS 5.7: SunVideo 1.4 Patch 106888|02|Mar/31/00| | | | |7|sparc;|SUNWdialh:7.0.0,REV=1998.08.11;|SunOS 5.7: Buttons/Dials Patch 106892|02|Jul/13/00| | |O| |Unbundled|i386;|SUNWsadmi:1.3,REV=1998.09.08.16.12;|Obsoleted by: 106872-15 Solstice Enterprise Agent 1.0.3 _x86: DMI, @@ -3022,7 +3055,7 @@ 106907|01|Jan/04/99|R|S| | |2.5|sparc;|SUNWdoc:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: catman/whatis/man/apropros patch 106908|01|Jan/04/99|R|S| | |2.5_x86|i386;|SUNWdoc:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: catman/whatis/man/apropros patch 106909|01|Nov/24/98| |S| | |Unbundled|sparc;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1: dtfile patch -106910|01|Nov/24/98| |S| | |Unbundled|i386;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1_x86: dtfile patch +106910|01|Nov/24/98|R|S| | |Unbundled|i386;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1_x86: dtfile patch 106911|01|Jan/04/99|R|S| | |2.3|sparc;|SUNWdoc:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/apropos patch 106912|01|Jan/04/99|R|S| | |2.4|sparc;|SUNWdoc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/bin/apropos patch 106913|03|May/11/99| | | | |2.6_x86|i386;|SUNWjeudc:1.0,REV=1.0.78;SUNWjpudc:1.0,REV=1.0.78;SUNWudct:1.0,REV=1.0.78;|CDE 1.2_x86 (JFP 2.6): sdtudctool and sdtudc_extract patch @@ -3033,9 +3066,9 @@ 106918|01|Mar/11/99| | | | |7_x86|i386;|SUNWciu8:7.0,REV=1.0.21;|SunOS 5.7_x86: when view mails change charset, dtmail dump core. 106920|02|Dec/27/99|R|S| | |Unbundled|sparc;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1: dtmail fixes 106921|02|Dec/27/99|R|S| | |Unbundled|i386;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1_x86: dtmail fixes -106922|13|May/16/02| | | | |Unbundled|sparc;|SUNWhsip:2.0,REV=1998.10.22;SUNWhsipm:2.0,REV=1998.10.22;SUNWhsipu:2.0,REV=1998.10.22;|SunHSI/P 2.0: HSIP driver, test hardness, multiboard, loopback +106922|17|May/02/03| | | | |Unbundled|sparc;|SUNWhsip:2.0,REV=1998.10.22;SUNWhsipm:2.0,REV=1998.10.22;SUNWhsipu:2.0,REV=1998.10.22;|SunHSI/P 2.0: HSIP driver, test hardness, multiboard, loopback 106923|01|Dec/04/98| | |O| |Unbundled|||OBSOLETED by 101130 -106924|09|Apr/19/02|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: isp driver Patch +106924|11|Nov/18/02|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: isp driver Patch 106925|09|Feb/27/02|R| | | |7|sparc;|SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWpd:11.7.0,REV=1998.09.01.04.16;SUNWpdu:11.7.0,REV=1998.09.01.04.16;SUNWpdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: glm Driver Patch 106926|10|Apr/09/01| | | | |7|sparc;|SUNWjeudc:1.1,REV=1.0.47;SUNWjpudc:1.1,REV=1.0.47;SUNWjuudc:1.1,REV=1.0.47;SUNWudct:1.1,REV=1.0.47;|SunOS 5.7: sdtudctool, sdtudc_register and sdtudc_extract patch 106927|10|Apr/06/01| | | | |7_x86|i386;|SUNWjeudc:1.1,REV=1.0.47;SUNWjpudc:1.1,REV=1.0.47;SUNWjuudc:1.1,REV=1.0.47;SUNWudct:1.1,REV=1.0.47;|SunOS 5.7_x86: sdtudctool, sdtudc_register and sdtudc_extract pat @@ -3048,24 +3081,26 @@ 106935|04|Dec/07/01|R|S| | |7_x86|i386;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3_x86: libDtSvc Patch 106936|01|Mar/11/99| | | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /etc/cron.d/logchecker patch 106937|01|Mar/11/99| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /etc/cron.d/logchecker patch -106938|05|Jun/26/02|R|S| | |7|sparc;|SUNWcsl:1998.09.01.04.16;SUNWcslx:1998.09.01.04.16;|SunOS 5.7: libresolv patch -106939|05|Jun/26/02|R|S| | |7_x86|i386;|SUNWcsl:1998.09.01.04.53;|SunOS 5.7_x86: libresolv patch +106938|07|Feb/26/03|R|S| | |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWarcx:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWscpux:11.7.0,REV=1998.09.01.04.16;SUNWsra:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libresolv, in.named, libadm, & nslookup patch +106939|07|Feb/26/03|R|S| | |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWsra:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libresolv, in.named, libadm, & nslookup patch 106940|01|Mar/11/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/makedbm patch 106941|01|Mar/11/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/makedbm patch -106942|20|Apr/29/02|R|S| | |7|sparc;106541-13;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWnisr:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libnsl, rpc.nisd and nis_cachemgr Patch -106943|20|May/09/02|R|S| | |7_x86|i386;106542-13;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWnisr:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libnsl, rpc.nisd and nis_cachemgr Patch +106942|15|Feb/28/01|R|S| | B|7|sparc;106541-13;106541-13;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;|WITHDRAWN SunOS 5.7: libnsl, rpc.nisd and nis_cachemgr patch +106942|28|Aug/12/03|R|S| | |7|sparc;106541-13;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWnisr:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;SUNWscpu:11.7.0,REV=1998.09.01.04.16;SUNWscpux:11.7.0,REV=1998.09.01.04.16;SUNWsra:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libnsl, rpc.nisd and nis_cachemgr Patch +106943|28|Aug/26/03|R|S| | |7_x86|i386;106542-13;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWnisr:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;SUNWscpu:11.7.0,REV=1998.09.01.04.53;SUNWsra:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libnsl, rpc.nisd and nis_cachemgr Patch 106944|03|Jul/19/00| |S| | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/fs/fifofs and /kernel/fs/sparcv9/fifofs patch 106945|03|Aug/09/00|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/fs/fifofs patch -106946|07|Dec/11/01| | | | |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/sar Patch -106947|05|Nov/05/01| | | | |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/sar patch -106948|01|Mar/11/99| | | | |7|sparc;sparc.sun4u;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/drv/qe and /kernel/drv/sparcv9/qe patch -106949|01|Mar/11/99| | | | |7|sparc;|SUNWbcp:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: BCP (binary compatibility) patch -106950|18|Mar/01/02|R| | | |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWbtool:11.7.0,REV=1998.09.01.04.16;SUNWbtoox:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWosdem:11.7.0,REV=1998.09.01.04.16;SUNWtoo:11.7.0,REV=1998.09.01.04.16;SUNWtoox:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: Linker Patch -106951|18|Mar/01/02|R| | | |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWbtool:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWosdem:11.7.0,REV=1998.09.01.04.53;SUNWtoo:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: Linker Patch +106946|08|Dec/24/02| | | | |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/sar Patch +106947|08|Dec/24/02| | | | |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/sar Patch +106948|02|Mar/24/03| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/drv/qe and /kernel/drv/sparcv9/qe patch +106949|03|May/01/03|R|S| | |7|sparc;|SUNWbcp:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: BCP (binary compatibility) patch +106950|14|Sep/11/01|R| |O| B|7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWbtool:11.7.0,REV=1998.09.01.04.16;SUNWbtoox:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWosdem:11.7.0,REV=1998.09.01.04.16;SUNWtoo:11.7.0,REV=1998.09.01.04.16;SUNWtoox:11.7.0,REV=1998.09.01.04.16;|WITHDRAWN Obsoleted by: 106950-15 SunOS 5.7: Linker patch +106950|24|Oct/22/03|R|S| | |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWbtool:11.7.0,REV=1998.09.01.04.16;SUNWbtoox:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWosdem:11.7.0,REV=1998.09.01.04.16;SUNWtoo:11.7.0,REV=1998.09.01.04.16;SUNWtoox:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: Linker Patch +106951|25|Dec/10/03|R|S| | |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWbtool:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWosdem:11.7.0,REV=1998.09.01.04.53;SUNWtoo:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: Linker Patch 106952|03|Nov/05/01|R|S| | |7|sparc;|SUNWbnuu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/uux patch 106953|03|Nov/05/01|R|S| | |7_x86|i386;|SUNWbnuu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/uux patch 106954|01|Apr/05/99| | | | |2.6|sparc.sun4u;|SUNWensqr:2.0,REV=1998.03.22.11.08;|SunOS 5.6: Last portion of audio file gets chopped or repeats -106955|06|Jul/31/02| | | | |Unbundled|sparc;|SUNWsaip:2.0,REV=1998.10.19;SUNWsaipu:2.0,REV=1998.10.19;|SunSAI/P 2.0: fixes and enhancements +106955|07|Dec/13/02| | | | |Unbundled|sparc;|SUNWsaip:2.0,REV=1998.10.19;SUNWsaipu:2.0,REV=1998.10.19;|SunSAI/P 2.0: fixes and enhancements 106956|05|Oct/20/99| | | | |Unbundled|sparc;106787-04;|SUNWsasdk:1.3;|Solstice Enterprise Agent 1.0.3: For SNMP and DMI Toolkit SUNWsasd 106957|01|Nov/18/98| | | | |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: fstobdf core dumps with 2-byte fonts 106958|01|Nov/18/98| | | | |2.6_x86|i386;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6_x86: fstobdf core dumps with 2-byte fonts @@ -3085,13 +3120,13 @@ 106973|01|Jan/05/99| | | | |7|sparc;|SUNWcleu:7.0,REV=1.0.22.9;|SunOS 5.7: Correct translation error in zh locale 106978|12|Jul/23/01|R|S| | |7|sparc;107456-01;|SUNWadmap:11.7,REV=1998.09.10.20.16;SUNWadmc:11.7,REV=1998.09.10.19.57;SUNWsibi:11.7,REV=1999.03.15.18.10;|SunOS 5.7: sysid patch 106979|12|Jul/23/01|R|S| | |7_x86|i386;107457-01;|SUNWadmap:11.7,REV=1998.09.10.20.17;SUNWadmc:11.7,REV=1998.09.10.20.02;SUNWsibi:11.7,REV=1999.03.15.18.12;|SunOS 5.7_x86: sysid patch -106980|19|Jun/12/02|R| | | |7|sparc;106541-09;|SUNWcsl:1998.09.01.04.16;SUNWcslx:1998.09.01.04.16;SUNWhea:1998.09.01.04.16;|SunOS 5.7: libthread patch -106981|19|Feb/14/02|R| | | |7_x86|i386;106542-09;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libthread patch +106980|23|Jun/24/03|R| | | |7|sparc;106541-09;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libthread patch +106981|23|Apr/25/03|R| | | |7_x86|i386;106542-09;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libthread patch 106982|01|Nov/18/98| | | | |7|sparc;|SUNWhmd:11.7.0,REV=1998.09.01.04.16;SUNWhmdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/drv/fas and /kernel/drv/sparcv9/fas patch 106985|01|Nov/20/98| | | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/uadmin and /sbin/uadmin patch 106986|01|Nov/20/98| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/uadmin and /sbin/uadmin patch -106987|04|Feb/05/02| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWsutl:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/tar Patch -106988|04|Feb/01/02| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWsutl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/tar Patch +106987|07|Nov/14/03| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWsutl:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: tar Patch +106988|06|Jul/07/03| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWsutl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: tar Patch 106989|01|Jan/04/99|R|S| | |2.3|sparc;|SUNWbnuu:11.5.0,REV=2.0.18;|SunOS 5.3: uux has buffer overflow problems 106990|01|Jan/04/99|R|S| | |2.4|sparc;|SUNWbnuu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: uux has buffer overflow problems 106991|01|Jan/04/99|R|S| | |2.4_x86|i386;|SUNWbnuu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: uux has buffer overflow problems @@ -3110,13 +3145,13 @@ 107012|01|Nov/17/98| | | | |7_x86|i386;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3_x86: sdtwebclient patch 107013|02|Oct/19/99| | | | |Unbundled|sparc;|SUNWxildh:1.3,REV=97.06.26;SUNWxilow:1.3,REV=97.06.26;SUNWxilrl:1.3,REV=97.06.26;|XIL 1.3: Deskset Loadable Pipeline Libraries pgx24 and snapshot pa 107014|02|Jun/29/99| | | | |Unbundled|sparc;|SUNWxildh:1.4,REV=98.07.27;SUNWxilow:1.4,REV=98.07.27;SUNWxilrl:1.4,REV=98.07.27;|XIL 1.4: Deskset Loadable Pipeline Libraries Patch -107015|06|Sep/18/00| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: sd bug fixes. +107015|06|Sep/18/00| | |O| |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|Obsoleted by: 110328-02 SunOS 5.7_x86: sd bug fixes. 107016|01|Mar/11/99| | | | |7_x86|i386;|NCRos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: NCR pcplusmp patch 107017|01|Mar/11/99| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: SPWR Patch -107018|03|May/03/01|R|S| | |7|sparc;106938-01;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/in.named patch -107019|03|Apr/25/01|R|S| | |7_x86|i386;106939-01;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/in.named patch +107018|03|May/03/01|R|S|O| |7|sparc;106938-01;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|Obsoleted by: 106938-07 SunOS 5.7: /usr/sbin/in.named patch +107019|03|Apr/25/01|R|S|O| |7_x86|i386;106939-01;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|Obsoleted by: 106939-07 SunOS 5.7_x86: /usr/sbin/in.named patch 107020|01|Dec/03/98| |S| | |Unbundled|sparc;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1: sdtcm_convert patch -107021|01|Dec/03/98| |S| | |Unbundled|i386;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1_x86: sdtcm_convert patch +107021|01|Dec/03/98|R|S| | |Unbundled|i386;|SUNWdtdst:1.1,REV=10.97.06.18;|CDE 1.1_x86: sdtcm_convert patch 107022|08|May/04/01|R|S| | |7|sparc;108374-01;|SUNWdtdmn:1.3,REV=10.98.09.12;SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: Calendar Manager patch 107023|08|May/02/01|R|S| | |7_x86|i386;108375-01;|SUNWdtdmn:1.3,REV=10.98.09.12;SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: Calendar Manager patch 107025|02|Nov/13/00| | | | |7_x86|i386;|SUNWpsdir:1.1.0,REV=1998.08.31.17.03;|SunOS 5.7_x86: ata patch @@ -3146,11 +3181,11 @@ 107053|01|Nov/24/98| | | | |Unbundled|sparc;|OMRONWnn6:2.12;|Wnn6 2.12: dpkeyserv denies access from a remote host 107054|01|Nov/24/98| | | | |Unbundled|sparc;|OMRONWnn6:2.13;|Wnn6 2.13: dpkeyserv denies access from a remote host 107056|03|Aug/09/00| | | | |Unbundled|i386;106872-05;|SUNWsasdk:1.3;|Solstice Enterprise Agent 1.0.3: For SNMP and DMI Toolkit SUNWsasd -107058|01|Jan/13/99| | | | |7|sparc;|SUNWsprot:5.7,REV=1998.04.28.15.05;|SunOS 5.7: Patch for assembler +107058|02|Sep/03/03| |S| | |7|sparc;|SUNWsprot:5.7,REV=1998.04.28.15.05;|SunOS 5.7: Patch for assembler 107059|01|Jan/04/99| | | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/sort and /usr/xpg4/bin/sort patch 107060|01|Jan/20/99| | | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/sort and /usr/xpg4/bin/sort patch 107063|01|Dec/14/98| | |O| |7|sparc;|SUNWtleux:7.0,REV=1.0.21.1;|Obsoleted by: 111190-02 SunOS 5.7: Thai engine crashes in 64bit mo -107064|04|Jul/31/02| | | | |2.6|sparc;|SUNWploc:97.05.30.12.47;SUNWploc1:1997.06.14.16.13;SUNWploc1:1997.07.14.15.26;|SunOS 5.6: Cultural settings update for European locales +107064|04|Jul/31/02| | | | |2.6|sparc;|SUNWploc:2.0,REV=97.05.30.12.47;SUNWploc1:1.0,REV=1997.07.14.15.26;|SunOS 5.6: Cultural settings update for European locales 107066|02|Dec/11/01| | | | |Unbundled|i386;|SUNWsasdk:1.3;|Solstice Enterprise Agent 1.0.3_x86: SNMP and DMI Toolkit SUNWsasd 107068|01|Dec/24/98| | | | |2.6|sparc;|SUNWvolu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Ejecting a cdrom when still accessing causes panics 107070|01|May/14/99| | | | |Unbundled|sparc;|SUNWlmon:2.0,REV=98.09.14;|Sun StorEdge Library Monitor 2.0: L280, L11000 libraries (localize @@ -3162,8 +3197,8 @@ 107077|01|Mar/12/99| | | | |7_x86|i386;|SUNWvolu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/drv/vol patch 107078|18|Sep/17/99| | |O| |7|||OBSOLETED by 108376 107079|17|Dec/06/99| | |O| |7_x86|||OBSOLETED by 108377 -107081|50|Aug/02/02|R|S| | |Unbundled|sparc;108374-07;107656-09;|SUNWdtbax:10.98.09.11;SUNWmfrun:10.98.09.12;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 7 -107082|50|Aug/02/02| |S| | |Unbundled|i386;108375-07;107657-07;|SUNWmfrun:10.98.09.12;|Motif 1.2.7_x86 and 2.1.1_x86: Runtime library patch for Solaris 7 +107081|55|Dec/23/03|R|S| | |Unbundled|sparc;107656-09;|SUNWdtbax:1.3,REV=10.98.09.11;SUNWmfrun:2.1.1,REV=10.98.09.12;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 7 +107082|55|Dec/23/03| |S| | |Unbundled|i386;107657-07;|SUNWmfrun:2.1.1,REV=10.98.09.12;|Motif 1.2.7_x86 and 2.1.1_x86: Runtime library patch for Solaris 7 107084|02|Jun/15/99| | | | |Unbundled|sparc;|SUNWlldap:11.6.0,REV=1998.04.03.09.54;|libldap 1.0: Product patch 107085|02|Jun/15/99| | | | |Unbundled|i386;|SUNWlldap:11.6.0,REV=1998.04.03.09.54;|libldap 1.0_x86: Product patch 107094|12|Mar/12/01| | | | |7|sparc;107081-07;|SUNWdtbas:1.3,REV=10.98.09.12;SUNWdtbax:1.3,REV=10.98.09.11;|CDE 1.3: dtterm libDtTerm.so.2 Patch @@ -3172,8 +3207,8 @@ 107100|01|Dec/23/98| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/fs/ufs/quota patch 107104|13|Dec/19/00| | | | |Unbundled|sparc;|SUNWafbgl:1.1.2,REV=1998.08.26;SUNWffbgl:1.1.2,REV=1998.08.26;SUNWgleg:1.1.2,REV=1998.08.26;SUNWglh:1.1.2,REV=1998.08.26;SUNWglrt:1.1.2,REV=1998.09.15;SUNWglrtu:1.1.2,REV=1998.08.26;SUNWifbgl:1.1.2,REV=1998.08.26;|OpenGL 1.1.2: OpenGL Patch for Solaris 7/8 (32-bit) 107105|13|Dec/19/00| | | | |Unbundled|sparc;107104-13;|SUNWafbgx:1.1.2,REV=1998.08.26;SUNWffbgx:1.1.2,REV=1998.08.26;SUNWglrtx:1.1.2,REV=1998.08.26;SUNWifbgx:1.1.2,REV=1998.08.26;|OpenGL 1.1.2: OpenGL Patch for Solaris 7/8 (64-bit) -107115|10|Apr/02/02|R|S| | |7|sparc;|SUNWpcu:13.1,REV=1998.09.01.04.16;SUNWpsf:13.1,REV=1998.09.01.04.16;SUNWpsu:13.1,REV=1998.09.01.04.16;SUNWscplp:13.1,REV=1998.09.01.04.16;|SunOS 5.7: LP Patch -107116|10|Apr/10/02|R|S| | |7_x86|i386;|SUNWpcu:13.1,REV=1998.09.01.04.53;SUNWpsf:13.1,REV=1998.09.01.04.53;SUNWpsu:13.1,REV=1998.09.01.04.53;SUNWscplp:13.1,REV=1998.09.01.04.53;|SunOS 5.7_x86: LP Patch +107115|13|Jul/17/03|R|S| | |7|sparc;|SUNWpcu:13.1,REV=1998.09.01.04.16;SUNWpsf:13.1,REV=1998.09.01.04.16;SUNWpsu:13.1,REV=1998.09.01.04.16;SUNWscplp:13.1,REV=1998.09.01.04.16;|SunOS 5.7: LP Patch +107116|13|Jul/17/03|R|S| | |7_x86|i386;|SUNWpcu:13.1,REV=1998.09.01.04.53;SUNWpsf:13.1,REV=1998.09.01.04.53;SUNWpsu:13.1,REV=1998.09.01.04.53;SUNWscplp:13.1,REV=1998.09.01.04.53;|SunOS 5.7_x86: LP Patch 107117|05|Sep/03/99| |S|O| |7|||OBSOLETED by 106541 107118|05|Jun/28/99| |S|O| |7_x86|||OBSOLETED by 106542 107119|06|Jan/17/01| | | | |7|sparc;|SUNWjeman:1.1,REV=1.0.47;SUNWjman:1.1,REV=1.0.47;SUNWjpman:1.1,REV=1.0.47;SUNWjuman:1.1,REV=1.0.47;|SunOS 5.7: JFP manpages patch @@ -3192,6 +3227,7 @@ 107132|01|Feb/02/99| | | |Y |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8): Upgrade Patch (Non-VPN) 107133|01|Dec/15/98| | | | |Unbundled|||SSMDT 2.2.1: Patch Level 4 for Win 95/NT Global Version, upgrade 107134|01|Dec/15/98| | | | |Unbundled|||SSMDT 2.2.1: Patch Level 4 for Win 95/NT Export Controled Version +107135|01|Dec/21/98| | |O| |Unbundled||106387-02|OBSOLETED by 106387 107135|02|May/17/99| | |O| |Unbundled||106387-03|OBSOLETED by 106387 107136|01|Jan/07/99| | | | |7|sparc;|SUNWkddst:7.0,REV=1.0.23.1;SUNWkuddt:7.0,REV=1.0.23.1;|SunOS 5.7: Fixed Dtmail Shortcuts to be consistent with English 107137|01|Jan/07/99| | | | |7_x86|i386;|SUNWkddst:7.0,REV=1.0.23.1;SUNWkuddt:7.0,REV=1.0.23.1;|SunOS 5.7_x86: Fixed Dtmail Shortcuts to be consistent with Englis @@ -3216,26 +3252,27 @@ 107167|01|Feb/04/99| | | |Y |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8)_x86: patch (VPN+DES) 107168|01|Feb/04/99| | | |Y |Unbundled|sparc;|SUNWfwgui:3.0;|Solstice FireWall-1 3.0b (Service Pack 8): Upgrade patch (Non-VPN) 107169|01|Feb/04/99| | | |Y |Unbundled|sparc;|SUNWfwgui:3.0;|Solstice FireWall-1 3.0b (Service Pack 8): Upgrade patch (VPN) -107171|10|Apr/17/02|R|S| | |7|sparc;112590-01;|SUNWswmt:11.7,REV=1998.09.10.20.16;|SunOS 5.7: Fixes for patchadd and patchrm -107172|10|Apr/17/02|R|S| | |7_x86|i386;112591-01;|SUNWswmt:11.7,REV=1998.09.10.20.17;|SunOS 5.7_x86: Fixes for patchadd and patchrm +107171|13|Apr/07/03|R|S| | |7|sparc;112590-01;|SUNWswmt:11.7,REV=1998.09.10.20.16;|SunOS 5.7: Fixes for patchadd and patchrm +107172|13|Apr/07/03|R|S| | |7_x86|i386;112591-01;|SUNWswmt:11.7,REV=1998.09.10.20.17;|SunOS 5.7_x86: Fixes for patchadd and patchrm 107175|01|Feb/09/99| | | | |7|sparc;|SUNWman:40.0,REV=23;|SunOS 5.7: Manual page for date.1 107176|01|Feb/05/99| | | | |7_x86|i386;|SUNWman:40.0,REV=23;|SunOS 5.7_x86: Manual page for date.1 107177|01|Jan/05/99| | | |Y |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: sys_id -m doesn't work in year 2000 or after (Y2K 107178|02|Aug/03/01| |S| | |7|sparc;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3: libDtHelp.so.1 patch 107179|02|Aug/03/01| |S| | |7_x86|i386;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3_x86: libDtHelp.so.1 patch -107180|29|Jun/28/02|R|S| | |7|sparc;108376-18;|SUNWdtdte:10.98.09.12;|CDE 1.3: dtlogin patch -107181|29|Jun/28/02|R|S| | |7_x86|i386;108377-18;|SUNWdtdte:10.98.09.12;|CDE 1.3_x86: dtlogin patch +107180|30|Sep/24/03|R|S| | |7|sparc;108376-18;|SUNWdtdte:1.3,REV=10.98.09.12;|CDE 1.3: dtlogin patch +107181|30|Sep/24/03|R|S| | |7_x86|i386;108377-18;|SUNWdtdte:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtlogin patch 107182|01|Mar/09/99| | | | |Unbundled|sparc;106514-03;|SUNWimadm:3.5,REV=1998.08.28.00.06;|Solstice Internet Mail Server 3.5: Command Line Utilities 107183|01|Mar/09/99| | | | |Unbundled|i386;106515-03;|SUNWimadm:3.5,REV=1998.08.28.00.06;|Solstice Internet Mail Server 3.5_x86: Command Line Utilities 107184|02|Jan/26/99| | | | |7_x86|i386;|SUNWi8rf:2.0,REV=3.0.1;|SunOS 5.7_x86: Updated Lucida Hebrew Fonts for Solaris 7 107185|01|Jan/27/99| | | | |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: Miscellaneous Russian KOI8-R problems -107187|02|Jan/31/00| | | | |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: Miscellaneous Eastern European locale problems +107187|07|Aug/09/02| | | | |7|sparc;111663-01;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: Misc. locales problems incl. CTYPE 107188|02|Apr/09/99| | | | |7_x86|i386;|SUNWploc1:1.0,REV=1998.09.11.21.36;SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: Miscellaneous Eastern European locale problems 107195|01|Mar/09/99| | | |Y |Unbundled|sparc;|SUNWmdja:4.1,REV=1.0;|Solstice DiskSuite 4.1: Japanese localization update patch 107196|01|Mar/09/99| | | |Y |Unbundled|i386;|SUNWmdja:4.1,REV=1.0;|Solstice DiskSuite 4.1_x86: Japanese localization update patch 107197|03|Aug/18/99| | | | |Unbundled|||ChorusOS r3.1.4: Patch for Rio 8062 (host Solaris) -107200|15|Apr/12/02|R|S| | |7|sparc;108374-01;107887-08;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: dtmail patch -107201|15|Apr/12/02|R|S| | |7_x86|i386;108375-01;107888-08;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtmail patch +107200|11|Dec/27/99|R|S|O| B|7|108374-01;107887-08;||OBSOLETED by WITHDRAWN +107200|16|Mar/11/03|R|S| | |7|sparc;108374-01;107887-08;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: dtmail patch +107201|16|Mar/11/03|R|S| | |7_x86|i386;108375-01;107888-08;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtmail patch 107215|01|May/17/99| | |O| |7|||OBSOLETED by 106942 107217|03|May/04/99| | | | |2.5.1|sparc;|SUNWploc:2.0,REV=15.0;SUNWploc1:1.0,REV=14.0;|SunOS 5.5.1: Updated european collation sequences 107219|02|Jun/21/99| |S|O| |7|106934-02;||OBSOLETED by 107885 @@ -3243,8 +3280,8 @@ 107221|01|Jan/20/99| | | | |2.6_x86|||SunOS 5.6_x86: bootconf, invalid device ID and node name, Compaq A 107224|02|Feb/09/00| | | | |Unbundled|sparc;|SUNWwa:1.0,REV=1998.08.07.10.33;|Web Access 1.0: Misc. fixes 107225|02|Feb/09/00| | | | |Unbundled|i386;|SUNWwa:1.0,REV=1998.08.07.11.16;|Web Access 1.0_x86: Misc. fixes -107226|18|Aug/08/01| | | | |7|sparc;108374-02;108376-18;|SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3: dtwm patch -107227|18|Aug/08/01| | | | |7_x86|i386;108375-02;108377-18;|SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtwm patch +107226|19|Jan/22/03| | | | |7|sparc;108374-02;108376-18;|SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3: dtwm patch +107227|19|Jan/22/03| | | | |7_x86|i386;108375-02;108377-18;|SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtwm patch 107228|03|Oct/05/00| | | | |2.6|sparc;|SUNWfns:11.6.0,REV=1997.07.15.21.46;SUNWfnsx5:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Federated Naming System Libraries fixes 107231|01|Jan/29/99| | |O| |Unbundled|104018-03;||OBSOLETED by 104018 107233|01|Mar/10/99| | | | |7|sparc;|SUNWxwopt:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1: xterm patch @@ -3258,25 +3295,26 @@ 107248|02|Nov/30/99| | | | |7|sparc;108374-01;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: sdtaudio patch 107249|02|Nov/30/99| | | | |7_x86|i386;108375-01;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: sdtaudio patch 107250|02|Mar/19/99| | | | |7|sparc;|SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1: libsv8.so.1 Patch -107259|04|Jun/28/02|R|S| | |7|sparc;|SUNWvolu:1998.09.01.04.16;|SunOS 5.7: /usr/sbin/vold patch -107260|04|Jun/28/02|R|S| | |7_x86|i386;|SUNWvolu:1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/vold patch -107264|01|Feb/19/99| | |O| B|2.6_x86|106913-01;||OBSOLETED by BADPATCH +107255|01|Jun/04/03| | | | |2.5.1_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.5.1_x86: I/O APIC not shutdown on reboot on 2.5.1 Solaris +107259|04|Jun/28/02|R|S| | |7|sparc;|SUNWvolu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/vold patch +107260|04|Jun/28/02|R|S| | |7_x86|i386;|SUNWvolu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/vold patch +107264|01|Feb/19/99| | |O| B|2.6_x86|106913-01;||OBSOLETED by WITHDRAWN 107271|01|Apr/22/99| | | | |Unbundled|sparc;|SUNWjdt:1.1.4;|HotJava Views 1.1.4: HotJava Views Patch 107272|02|Jun/22/99| | | | |2.6|sparc;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtma:1.2,REV=10.97.06.27;|CDE 1.2: sdtaudio patch 107273|02|Jun/22/99| | | | |2.6_x86|i386;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtma:1.2,REV=10.97.06.27;|CDE 1.2_x86: sdtaudio patch -107274|02|Jul/31/02| | | | |2.6_x86|i386;|SUNWcsr:1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/gld_v2 Patch +107274|02|Jul/31/02| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/misc/gld_v2 Patch 107277|02|Nov/23/99| | | | |2.6_x86|i386;107274;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: iprb performance enhancements 107278|01|Feb/01/99| | |O| |Unbundled|104539-07;||OBSOLETED by 104539 107280|08|Feb/13/01| | | | |Unbundled|sparc;|SUNWifp:11.6,REV=1998.03.09.22.27;SUNWifph:11.6,REV=1998.03.09.22.27;|Sun StorEdge PCI FC-100 Host Adapter 1.0: /kernel/drv/ifp patch 107281|03|Oct/05/00| | | | |2.6_x86|i386;|SUNWfns:11.6.0,REV=1997.07.16.00.21;SUNWfnsx5:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Federated Naming System Libraries fixes 107283|07|Oct/24/00| | | | |Unbundled|sparc;|SUNWical:1.0,REV=98.12.18;|Sun Calendar Server 1.0: Misc. Fixes 107284|07|Oct/24/00| | | | |Unbundled|i386;|SUNWical:1.0,REV=98.12.18;|Sun Calendar Server 1.0_x86: Misc. Fixes -107285|08|Jul/25/02|R|S| | |7|sparc;|SUNWcsl:1998.09.01.04.16;SUNWcslx:1998.09.01.04.16;SUNWcsu:1998.10.06.00.59;SUNWhea:1998.09.01.04.16;SUNWnisu:1998.09.01.04.16;|SunOS 5.7: passwd & pam Library Patch -107286|08|Jul/25/02|R|S| | |7_x86|i386;|SUNWcsl:1998.09.01.04.53;SUNWcsu:1998.10.06.01.22;SUNWhea:1998.09.01.04.53;SUNWnisu:1998.09.01.04.53;|SunOS 5.7_x86: passwd & pam Library Patch +107285|09|Nov/26/02|R|S| | |7|sparc;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: passwd & pam Library Patch +107286|09|Nov/26/02|R|S| | |7_x86|i386;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: passwd & pam Library Patch 107289|05|Jan/07/00| | | | |Unbundled|sparc;107357-05;|SPROcc:5.0;|C 5.0: Patch for C 5.0 compiler 107290|03|Jul/20/99| | | | |Unbundled|i386;|SPROcc:5.0;|C 5.0_x86: Patch for C 5.0 compiler 107291|02|Mar/10/99| | | | |7_x86|||SunOS 5.7_x86: boot diskette for Symbios symhisl driver -107292|08|Aug/15/01| | | | |7|sparc;|SUNWifp:11.7.0,REV=1998.09.01.04.16;SUNWifph:11.7.0,REV=1998.09.01.04.16;SUNWifpx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ifp driver patch +107292|09|Apr/23/03| | | | |7|sparc;|SUNWifp:11.7.0,REV=1998.09.01.04.16;SUNWifph:11.7.0,REV=1998.09.01.04.16;SUNWifpx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ifp driver patch 107293|01|Aug/17/99| | | | |7|sparc;|SUNWgss:11.7.0,REV=1998.09.01.04.16;SUNWgssx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libgss.so.1 and gsscred patch 107294|01|Aug/17/99| | | | |7_x86|i386;|SUNWgss:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libgss.so.1 and gsscred patch 107295|02|Sep/01/00| | | | |Unbundled|sparc;|SPROesrt:2.0;SPROws:5.0;|WorkShop IPE 5.0: Patch for WorkShop IPE 5.0 @@ -3287,11 +3325,11 @@ 107300|01|Feb/22/99| | |O| |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 106292-12 SunOS 5.6: misuse of isspace() in libadm f 107304|02|Feb/04/00| |S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: user manger patch 107305|01|May/11/99| | | | |Unbundled|sparc;|SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: sys_id fix for hostid limit -107306|06|Jun/04/02| | | | |7|sparc;106934-03;|SUNWdtdst:10.98.09.12;|CDE 1.3: dtfile patch -107307|06|Jun/04/02| | | | |7|i386;106935-03;|SUNWdtdst:10.98.09.12;|CDE 1.3_x86: dtfile patch +107306|06|Jun/04/02| | | | |7|sparc;106934-03;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3: dtfile patch +107307|06|Jun/04/02| | | | |7|i386;106935-03;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtfile patch 107310|01|Apr/12/99| | | |Y |Unbundled|Solaris/SPARC;|iscan:2.0;|InterScan VirusWall 2.0: Year 2000 compliance -107311|18|Jun/19/02| | | | |Unbundled|sparc;107357-10;|SPROcpl:5.0;SPROgc:5.0;SPROlgc:5.0;SPROscl:5.0;SPROtlbn7:5.0;SPROtll7:5.0;|C++ 5.0: Patch for C++ 5.0 compiler -107312|18|Jun/19/02| | | | |Unbundled|i386;107830-02;|SPROcpl:5.0;SPROgc:5.0;SPROlgc:5.0;SPROscl:5.0;SPROtlbn7:5.0;SPROtll7:5.0;|C++ 5.0_x86: Patch for C++ 5.0 compiler +107311|19|Oct/30/02| | | | |Unbundled|sparc;107357-10;|SPROcpl:5.0;SPROgc:5.0;SPROlgc:5.0;SPROscl:5.0;SPROtlbn7:5.0;SPROtll7:5.0;|C++ 5.0: Patch for C++ 5.0 compiler +107312|19|Oct/30/02| | | | |Unbundled|i386;107830-02;|SPROcpl:5.0;SPROgc:5.0;SPROlgc:5.0;SPROscl:5.0;SPROtlbn7:5.0;SPROtll7:5.0;|C++ 5.0_x86: Patch for C++ 5.0 compiler 107313|01|Feb/19/99| | | | |2.5|sparc;|SUNWesu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: split command patch 107314|01|Feb/19/99| | | | |2.5_x86|i386;|SUNWesu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: split command patch 107316|01|Jun/23/99| | | | |7|sparc;|SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;|SunOS 5.7: localeconv() returns wrong results for French @@ -3302,13 +3340,13 @@ 107321|01|Feb/01/99| | | | |Unbundled|sparc;104539-07;|SUNWatm:2.1;|SunATM 2.1: Patch 107323|01|Jun/23/99| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /etc/driver_aliases patch 107324|01|Feb/23/99| | | | |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: Euro locales, user interface refresh is very slow -107326|02|Sep/24/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: rlmod and telmod patch -107327|02|Sep/24/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: rlmod and telmod patch +107326|03|Mar/28/03|R|S| | |2.6|sparc;105181-34;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: rlmod and telmod patch +107327|03|Mar/25/03|R|S| | |2.6_x86|i386;105182-34;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: rlmod and telmod patch 107329|01|Mar/09/99| | | | |Unbundled|sparc;|SUNWapssp:2.1.0,REV=98.04.13.19.07;|AP 2.1: ap_reboot_host fix 107330|02|Jan/10/01| | |O| |7|sparc;|SUNWntpu:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 109409-04 SunOS 5.7: /usr/sbin/ntpdate patch 107331|02|Jan/11/01| | |O| |7_x86|i386;|SUNWntpu:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 109410-03 SunOS 5.7_x86: /usr/sbin/ntpdate patch -107332|03|Jun/19/02|R| | | |7|sparc;|SUNWarc:1998.09.01.04.16;SUNWarcx:1998.09.01.04.16;SUNWcsl:1998.09.01.04.16;SUNWcslx:1998.09.01.04.16;|SunOS 5.7: libadm patch -107333|03|Jun/19/02|R| | | |7_x86|i386;|SUNWarc:1998.09.01.04.53;SUNWcsl:1998.09.01.04.53;|SunOS 5.7_x86: libadm patch +107332|03|Jun/19/02|R| |O| |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWarcx:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106938-07 SunOS 5.7: libadm patch +107333|03|Jun/19/02|R| |O| |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 106939-07 SunOS 5.7_x86: libadm patch 107334|01|Apr/12/99| | |O| |7|||OBSOLETED by 106541 107336|01|Mar/19/99|R|S| | |2.6|sparc;|SUNWkcspg:1.1,REV=1.14;SUNWkcsrt:1.1,REV=1.14;|OpenWindows 3.6: KCMS configure tool has a security vulnerability 107337|02|Jun/15/01|R|S| | |7|sparc;|SUNWkcspg:1.1.1,REV=1.4;SUNWkcsrt:1.1.1,REV=1.4;|SunOS 5.7: KCMS configure tool has a security vulnerability @@ -3318,15 +3356,16 @@ 107351|03|May/03/00| | | | |Unbundled|sparc;|SUNWxgldg:5.0,REV=98.07.09;SUNWxglrt:5.0,REV=98.07.09;|XGL 3.3.1: XGL Patch (stripped version) 107352|01|Apr/30/99| | | | |Unbundled|sparc;|SUNWimc:3.5,REV=1998.06.26.08.00;SUNWimccc:3.5,REV=1998.06.26.08.00;SUNWimcms:3.5,REV=1998.06.26.08.00;SUNWimcpr:3.5,REV=1998.06.26.08.00;|Solstice Internet Mail Server 3.5: Messaging Connectivity Services 107353|01|Apr/30/99| | | | |Unbundled|i386;|SUNWimc:3.5,REV=1998.06.26.08.00;SUNWimccc:3.5,REV=1998.06.26.08.00;SUNWimcms:3.5,REV=1998.06.26.08.00;SUNWimcpr:3.5,REV=1998.06.26.08.00;|Solstice Internet Mail Server 3.5_x86: Messaging Connectivity Serv -107354|05|Jan/28/02| | | | |Unbundled|sparc;|SPROcodmg:2.1;SPROdmake:2.1;SPROflmrg:3.1;SPROfrzpt:2.1;SPROvertl:2.1;|TeamWare 2.1: Patch for TeamWare 2.1 +107354|06|Jan/17/03| | | | |Unbundled|sparc;|SPROcodmg:2.1;SPROdmake:2.1;SPROflmrg:3.1;SPROfrzpt:2.1;SPROvertl:2.1;|TeamWare 2.1: Patch for TeamWare 2.1 107355|07|Mar/06/01| | | | |Unbundled|sparc;|SPROdbx:5.0;|WorkShop IPE 5.0: Patch for dbx 107356|05|Jul/19/00| | | | |Unbundled|sparc;107357-04;107989-01;|SPROf90:2.0;SPROlib90:2.0;|Fortran 90 2.0: Patch for Fortran 90 (f90) 2.0 compiler 107357|11|Feb/12/01| | | | |Unbundled|sparc;|SPROlang:5.0;|Compiler Common 5.0: Patch C 5.0, C++ 5.0, F77 5.0, F90 2.0 107358|07|Mar/06/01| | | | |Unbundled|sparc;107355-07;|SPROdbxx:5.0;|WorkShop IPE 5.0: Patch for 64-bit dbx 107359|02|Oct/29/99|R| | |Y |7|sparc;|SUNWscbcp:5.7,REV=98.08.14;|SunOS 5.7: Patch for SPARCompiler Binary Compatibility Libraries -107360|05|Jan/28/02| | | | |Unbundled|i386;|SPROcodmg:2.1;SPROdmake:2.1;SPROflmrg:3.1;SPROfrzpt:2.1;SPROvertl:2.1;|TeamWare 2.1_x86: Patch for TeamWare 2.1 +107360|06|Jan/17/03| | | | |Unbundled|i386;|SPROcodmg:2.1;SPROdmake:2.1;SPROflmrg:3.1;SPROfrzpt:2.1;SPROvertl:2.1;|TeamWare 2.1_x86: Patch for TeamWare 2.1 107361|06|Nov/02/00| | | | |Unbundled|i386;|SPROdbx:5.0;|WorkShop IPE 5.0_x86: Patch for dbx 107366|01|Apr/07/99| | |O| |Unbundled|104539-07;||OBSOLETED by 104539 +107369|16|May/26/99| | |O| |Unbundled|||Netra ft1800 6.7: Misc. fix Patch 107369|17|Jun/10/99| | | | |Unbundled|sparc;sparc.sun4u;|SMCCinst:5.6,REV=99.01.14.17.03;SUNWcmscu:5.6,REV=1999.01.28.13.32;SUNWcmsdf:5.6,REV=1999.01.28.13.32;SUNWcmsr:5.6,REV=1999.01.28.13.32;SUNWcmsu:5.6,REV=1999.01.28.13.32;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWftcar:5.6,REV=1999.01.28.13.32;SUNWftm:5.6,REV=1999.01.28.13.32;SUNWftmuu:5.6,REV=1999.01.28.13.32;SUNWftutr:5.6,REV=1999.01.28.13.32;SUNWftutu:5.6,REV=1999.01.28.13.32;SUNWpnet:5.6,REV=1999.01.28.13.32;SUNWspltr:5.6,REV=1999.01.28.13.32;SUNWspltu:5.6,REV=1999.01.28.13.32;|Netra ft1800 6.7: Misc. fix Patch 107370|01|Mar/09/99| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: mount_tmpfs puts incorrect entries in mnttab if -o size 107371|01|Mar/09/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: mount_tmpfs puts wrong entries in mnttab if -o size @@ -3340,13 +3379,13 @@ 107387|01|Apr/30/99| | | | |Unbundled|i386;|SUNWski:1.0,REV=1998.08.06.19.20;SUNWskica:1.0,REV=1998.08.06.19.20;SUNWssl:1.0,REV=1998.08.06.19.20;|Solstice Internet Mail Server 3.5_x86: SKI/SSL Services 107388|05|Jul/13/01| |S| | |Unbundled|sparc;|SUNWccon:2.2,REV=1999.02.09.23.00;SUNWccp:2.2,REV=1999.02.09.23.00;SUNWscmgr:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: System Management Patch 107389|01|Mar/09/99| | | | |2.6|sparc.sun4c;sparc.sun4m;sparc.sun4u;|SUNWcar:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: fd floppy won't work after upgrading to 150MHZ hyperSPA -107390|18|Jun/21/02| | | | |Unbundled|sparc;107311-18;107357-10;|SPROcplx:5.0;SPROlgcx:5.0;SPROsclx:5.0;SPROtl7x:5.0;SPROtll7x:5.0;|C++ 5.0: Patch for 64-bit C++ 5.0 compiler +107390|19|Oct/30/02| | | | |Unbundled|sparc;107311-19;107357-10;|SPROcplx:5.0;SPROlgcx:5.0;SPROsclx:5.0;SPROtl7x:5.0;SPROtll7x:5.0;|C++ 5.0: Patch for 64-bit C++ 5.0 compiler 107391|02|Sep/03/99| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: pcplusmp patch 107393|02|Jun/23/99| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: bootconf bug fixes 107401|01|Jun/23/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/iostat patch 107402|01|Jun/23/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/iostat patch -107403|02|Sep/24/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rlmod & telmod patch -107404|02|Sep/24/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: rlmod & telmod patch +107403|03|Apr/15/03|R|S| | |7|sparc;106541-24;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rlmod & telmod patch +107404|03|Apr/15/03|R|S| | |7_x86|i386;106542-24;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: rlmod & telmod patch 107409|01|Jun/23/99| | | | |7|sparc;|SUNWkddte:7.0,REV=1.0.23.1;SUNWkuddt:7.0,REV=1.0.23.1;|SunOS 5.7: dtfile Menu is localized 107410|01|Jun/23/99| | | | |7_x86|i386;|SUNWkddte:7.0,REV=1.0.23.1;SUNWkuddt:7.0,REV=1.0.23.1;|SunOS 5.7_x86: dtfile Menu is localized 107411|03|Sep/03/99| | | | |7_x86|i386;|SUNWtiu8:7.0,REV=1.0.20;|SunOS 5.7_x86: support IBM Cp837 and Cp874 iconv modules(th_TH) @@ -3357,7 +3396,7 @@ 107419|01|Jun/23/99| | | | |7|sparc;|SUNW5dhez:7.0,REV=1.0.22.9;SUNWcdhez:7.0,REV=1.0.22.9;SUNWgdhez:7.0,REV=1.0.22.9;SUNWhdhez:7.0,REV=1.0.22.9;SUNWkdhev:7.0,REV=1.0.22.9;SUNWkdhez:7.0,REV=1.0.22.9;SUNWkudhv:7.0,REV=1.0.22.9;SUNWkudhz:7.0,REV=1.0.22.9;|SunOS 5.7: missing snapshot files 107420|01|Jun/23/99| | | | |7_x86|i386;|SUNW5dhez:7.0,REV=1.0.22.9;SUNWcdhez:7.0,REV=1.0.22.9;SUNWgdhez:7.0,REV=1.0.22.9;SUNWhdhez:7.0,REV=1.0.22.9;SUNWkdhev:7.0,REV=1.0.22.9;SUNWkdhez:7.0,REV=1.0.22.9;SUNWkudhv:7.0,REV=1.0.22.9;SUNWkudhz:7.0,REV=1.0.22.9;|SunOS 5.7_x86: missing snapshot files 107423|01|Mar/09/99| | | | |Unbundled|sparc;|SUNWapssp:2.0.0,REV=97.02.21.16.57;|AP 2.0: ap_ssp_daemon fixes -107424|01|May/26/99| | | | |Unbundled|sparc;|SUNWjrscj:1.0,REV=1.0.1998.10.27;SUNWrsc:1.0,REV=1.0.1998.10.27;SUNWrscj:1.0,REV=1.0.1998.10.27;|RSC 1.0: Bug fixes and modifications required for motherboard resp +107424|03|Oct/24/02| |S| | |Unbundled|sparc;|SUNWcrsc:1.0,REV=1.0.1998.10.27;SUNWhrsc:1.0,REV=1.0.1998.10.27;SUNWjarsc:1.0,REV=1.0.1998.10.27;SUNWjrscj:1.0,REV=1.0.1998.10.27;SUNWkrsc:1.0,REV=1.0.1998.10.27;SUNWrsc:1.0,REV=1.0.1998.10.27;SUNWrscj:1.0,REV=1.0.1998.10.27;|RSC 1.0 patch 107429|01|Feb/23/99| | | | |Unbundled|sparc;106854;|SUNWatm:3.0;|SunATM 3.0 Update 1: Fix for bug 4212538 107430|01|Jun/23/99| | |O| |7|sparc;|SUNWwsr:2.0.6,REV=1998.11.28;|Obsoleted by: 108029-03 SunOS 5.7: Installer utility used by NCR b 107431|01|Jun/23/99| | |O| |7_x86|i386;|SUNWwsr:2.0.6,REV=1998.11.28;|Obsoleted by: 108030-03 SunOS 5.7_x86: Installer utility used by N @@ -3368,42 +3407,42 @@ 107437|03|Sep/03/99| | | | |7|sparc;|SUNWtiu8:7.0,REV=1.0.20;SUNWtiu8x:7.0,REV=1.0.21;|SunOS 5.7: support IBM Cp837 and Cp874 iconv modules(th_TH) 107438|02|Sep/03/99| | | | |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: iso8859-15 locale copy and paste fix 107439|02|Sep/03/99| | | | |7_x86|i386;|SUNWplow:1.0,REV=1998.09.14.18.11;|SunOS 5.7_x86: iso8859-15 locale copy and paste fix -107440|01|Mar/26/99| | |O| |7_x86|||OBSOLETED by 106542 +107440|01|Mar/26/99| | |O| |7_x86|||OBSOLETED by: 106542 SunOS 5.7_x86: /platform/i86pc/kernel/mmu/mm 107441|03|Nov/09/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/mailx patch 107442|03|Nov/09/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/mailx Patch -107443|16|Jun/19/02|R|S| | |7|sparc;107332-03;|SUNWarc:1998.09.01.04.16;SUNWcsu:1998.10.06.00.59;|SunOS 5.7: packaging utilities patch -107444|16|Jun/19/02|R|S| | |7_x86|i386;107333-03;|SUNWarc:1998.09.01.04.53;SUNWcsu:1998.10.06.01.22;|SunOS 5.7_x86: packaging utilities patch +107443|17|Jan/07/03|R|S| | |7|sparc;107332-03;106938-07;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: packaging utilities patch +107444|17|Jan/07/03|R|S| | |7_x86|i386;107333-03;106939-07;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: packaging utilities patch 107445|03|Jun/14/99| | |O| |7|||OBSOLETED by 107709 107446|03|Jun/14/99| | |O| |7_x86|||OBSOLETED by 107710 107447|01|Mar/26/99| | |O| |7_x86|||OBSOLETED by 106542 -107448|01|Jun/23/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/fs/cachefs/cachefsd patch -107449|01|Jun/23/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/fs/cachefs/cachefsd patch +107448|01|Jun/23/99| | |O| |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|Obsoleted by: 108800-02 SunOS 5.7: /usr/lib/fs/cachefs/cachefsd pa +107449|01|Jun/23/99| | |O| |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|Obsoleted by: 108801-02 SunOS 5.7_x86: /usr/lib/fs/cachefs/cachefs 107450|04|Jul/23/01| | | | |7|sparc.sun4u;|SUNWcvcr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /platform/SUNW,Ultra-Enterprise-10000/lib/cvcd patch 107451|07|Apr/03/02|R|S| | |7|sparc;106541-20;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/cron Patch 107452|07|Apr/01/02|R|S| | |7_x86|i386;106542-19;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/cron Patch 107453|01|Apr/21/99| | | | |7|sparc.sun4u;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWkvm:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: Ultra-80 platform patch -107454|05|May/19/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/ftp patch -107455|05|May/19/00|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/ftp patch +107454|06|Feb/21/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/ftp patch +107455|06|Feb/21/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/ftp patch 107456|01|Jun/24/99|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /etc/nsswitch.dns patch 107457|01|Jun/24/99|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /etc/nsswitch.dns patch 107458|15|May/07/02|R| |O| |7|sparc;sparc.sun4u;sparc.sun4us;107834-02;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWssad:11.7.0,REV=1998.09.01.04.16;SUNWssadx:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-21 SunOS 5.7: dad, sd, ssd, uata drivers Patc 107459|01|Jun/24/99| | | | |7|sparc;sparc.sun4u;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: qec driver patch -107460|12|Mar/11/02|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: st driver Patch -107461|10|May/04/01| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: st driver patch +107460|13|Sep/18/02|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: st driver Patch +107461|14|Apr/09/03| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: st driver Patch 107462|02|Mar/28/02|R| |O| |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-21 SunOS 5.7: /kernel/sched/TS Patch 107463|02|Mar/28/02|R| |O| |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 106542-21 SunOS 5.7_x86: /kernel/sched/TS Patch 107465|04|Nov/28/01| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/fs/hsfs and /kernel/fs/sparcv9/hsfs patch 107466|04|Nov/28/01| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/fs/hsfs patch 107467|01|Sep/03/99| | |O| |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|Obsoleted by: 103640-40 SunOS 5.5.1: /kernel/fs/specfs patch 107468|01|May/25/00| | |O| |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|Obsoleted by: 103641-40 SunOS 5.5.1_x86: /kernel/fs/specfs patch -107469|08|Aug/29/00|R| | | |7|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;|SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.11.16.20.05;SUNWluxdx:11.7.0,REV=1998.09.01.04.16;SUNWluxdx:11.7.0,REV=1999.01.21.10.09;SUNWluxl:11.7.0,REV=1998.09.01.04.16;SUNWluxlx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: sf & socal drivers patch +107469|09|Sep/13/02|R| | | |7|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;|SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.11.16.20.05;SUNWluxdx:11.7.0,REV=1998.09.01.04.16;SUNWluxdx:11.7.0,REV=1999.01.21.10.09;SUNWluxl:11.7.0,REV=1998.09.01.04.16;SUNWluxlx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: sf & socal drivers patch 107470|01|Nov/17/99| | | | |7|sparc;|SUNWadmc:11.7,REV=1998.09.10.19.57;SUNWsibi:11.7,REV=1998.09.14.14.10;|SunOS 5.7: CD install support for devfsadm 107471|01|Nov/17/99| | | | |7_x86|i386;|SUNWadmc:11.7,REV=1998.09.10.20.02;SUNWsibi:11.7,REV=1998.09.14.14.51;|SunOS 5.7_x86: CD install support for devfsadm 107472|02|Nov/18/99| | | | |7|sparc;|SUNWses:11.7.0,REV=1998.09.01.04.16;SUNWsesx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ses driver patch 107473|07|Mar/12/01| | | | |7|sparc;|SUNWluxop:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: luxadm patch 107474|01|Jun/30/99| | | | |7|sparc;107292-02;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ifp adb macro patch -107475|04|Jan/18/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/in.telnetd Patch -107476|04|Jan/23/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/in.telnetd Patch +107475|05|Apr/08/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/in.telnetd Patch +107476|05|May/07/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/in.telnetd Patch 107477|04|Nov/30/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/nfs/mountd Patch 107478|04|Nov/30/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/nfs/mountd Patch 107484|01|Apr/01/99| | | | |Unbundled|all;sparc;sparc,x86;|SUNWftpm:1.1;SUNWftpr:11.6.0,REV=1999.01.15.16.11;SUNWftpu:11.6.0,REV=1999.01.15.16.11;SUNWhtadm:2.1;SUNWhtman:2.1;SUNWhtsvl:2.1;SUNWhttp:2.1;SUNWhttpc:2.1;SUNWisp:1.1;SUNWispm:1.1;SUNWixamc:1.1;SUNWixamm:1.1;SUNWixamr:1.1;SUNWixamv:1.1;SUNWixds:1.1;SUNWixfta:1.1;SUNWixpl:1.1;SUNWixsna:1.1;SUNWixvh:1.1;SUNWnca:11.7.0,REV=1999.01.27.19.02;SUNWncman:11.7.0,REV=1999.01.27.19.02;SUNWsnsc:1.1;SUNWsnsf:1.1;SUNWsnsr:1.1;|Solaris ISP Server 2.0: Patch for product components @@ -3427,6 +3466,7 @@ 107503|01|May/12/99| | | | |2.6|sparc;|SUNWeuxwe:1.3,REV=1.0.27;|SunOS 5.6: Can't input G with breve & g with breve in en_US.UTF-8 107504|01|May/12/99| | | | |2.6_x86|i386;|SUNWeuxwe:1.3,REV=1.0.27;|SunOS 5.6_x86: Can't input G with breve & g with breve in en_US.UT 107505|01|Mar/19/99| | | | |Unbundled|sparc;106854-02;|SUNWatm:3.0;|SunATM 3.0 Update 1: Fix for memory leak in streams_dblk_1096 +107506|01|Mar/22/99| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 107506|05|Oct/29/99| | | | |Unbundled|sparc;|SUNWtrpd:4.0,REV=4.0.0.1998.10.23;|SunLink TRI/P 4.0: Patch 107506-04 contained leftover debugging in 107515|05|Dec/23/99| | | | |Unbundled|sparc;|SUNWspci:1.0;|SunPCi 1.0: for Solaris 2.5.1, 2.6, 7 and sparc architectures 107522|01|Apr/05/99| | | |Y |2.3|sparc;|SUNWaccu:11.5.0,REV=2.0.18;|SunOS 5.3: On Y2000, runacct cannot update /var/adm/acct/sum/login @@ -3471,7 +3511,7 @@ 107585|01|May/03/99| | |O| |7_x86|i386;|SUNWvolu:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 107260-03 SunOS 5.7_x86: /usr/lib/vold/dev_cdrom.so. 107587|01|May/04/99|R| | |Y |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/acct/lastlogin patch 107588|01|May/04/99|R| | |Y |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/acct/lastlogin patch -107589|09|May/13/02| | | | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWpd:11.7.0,REV=1998.09.01.04.16;SUNWpdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: se, zs, kbd and kbio.h Patch +107589|13|Jul/31/03| |S| | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;106541-24;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWpd:11.7.0,REV=1998.09.01.04.16;SUNWpdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: se, zs, kbd and kbio.h Patch 107590|01|Jul/14/99| | |O| |Unbundled|||OBSOLETED by 108602 107592|01|Apr/21/99| | | | |Unbundled|||Hardware, Tape: DLT4000, 4700 Probe-scsi corrupt output 107593|02|Jun/14/99| | |O| |Unbundled|||OBSOLETED by 108407 @@ -3482,12 +3522,12 @@ 107608|01|Apr/16/99| | |O| |Unbundled|||OBSOLETED by 107082 107609|03|Jul/19/99| | | | |Unbundled|all;sparc;|SUNWhtadm:2.1;SUNWhtman:2.1;SUNWhtsvl:2.1;SUNWhttp:2.1;SUNWhttpc:2.1;SUNWnca:11.7.0,REV=1999.01.27.19.02;|Solaris ISP Server 2.0: SNCA 1.0 and SWS 2.1 component patch 107610|03|Jul/19/99| | | | |Unbundled|all;i386;|SUNWhtadm:2.1;SUNWhtman:2.1;SUNWhtsvl:2.1;SUNWhttp:2.1;SUNWhttpc:2.1;SUNWnca:11.7.0,REV=1999.01.27.19.07;|Solaris ISP Server 2.0_x86: SNCA 1.0 and SWS 2.1 component patch -107618|04|Jun/27/02|R|S| | |2.6|sparc;|SUNWvolu:1997.07.15.21.46;|SunOS 5.6: vold patch -107619|04|Jun/27/02|R|S| | |2.6_x86|i386;|SUNWvolu:1997.07.16.00.21;|SunOS 5.6_x86: vold patch +107618|04|Jun/27/02|R|S| | |2.6|sparc;|SUNWvolu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: vold patch +107619|04|Jun/27/02|R|S| | |2.6_x86|i386;|SUNWvolu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: vold patch 107624|01|May/11/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/fs/ufs/df patch 107625|01|May/04/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/fs/ufs/df patch -107636|09|Jan/29/02|R|S| | |7|sparc;107081-25;|SUNWxi18n:3.0,REV=1.0.21.1;SUNWxi18x:3.0,REV=1.0.21.1;SUNWxim:3.0,REV=1.0.21.1;SUNWximx:3.0,REV=1.0.21.1;|SunOS 5.7: X Input & Output Method patch -107637|09|Jan/29/02|R|S| | |7_x86|i386;|SUNWxi18n:3.0,REV=1.0.21.1;SUNWxim:3.0,REV=1.0.21.1;|SunOS 5.7_x86: X Input & Output Method patch +107636|10|Apr/25/03|R|S| | |7|sparc;107081-25;|SUNWxi18n:3.0,REV=1.0.21.1;SUNWxi18x:3.0,REV=1.0.21.1;SUNWxim:3.0,REV=1.0.21.1;SUNWximx:3.0,REV=1.0.21.1;|SunOS 5.7: X Input & Output Method patch +107637|10|Apr/25/03|R|S| | |7_x86|i386;|SUNWxi18n:3.0,REV=1.0.21.1;SUNWxim:3.0,REV=1.0.21.1;|SunOS 5.7_x86: X Input & Output Method patch 107638|01|Sep/13/99| | | | |7|sparc;|SUNW5ddst:7.0,REV=1.0.23.1;SUNWhddst:7.0,REV=1.0.23.1;SUNWkddst:7.0,REV=1.0.23.1;SUNWkudda:7.0,REV=1.0.22.9;|SunOS 5.7: Fix the problem with font size change in dtstyle 107639|01|Sep/13/99| | | | |7_x86|i386;|SUNW5ddst:7.0,REV=1.0.23.1;SUNWhddst:7.0,REV=1.0.23.1;SUNWkddst:7.0,REV=1.0.23.1;SUNWkudda:7.0,REV=1.0.22.9;|SunOS 5.7_x86: Fix the problem with font size change in dtstyle 107648|09|Feb/08/00| |S|O| |7|107078-17;||OBSOLETED by 108376 @@ -3498,8 +3538,8 @@ 107653|06|Feb/08/00| | | | |7_x86|i386;108377-01;|SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;SUNWxwpmn:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: X11R6.4 XKB Extension Patch 107654|10|May/09/02|R|S| | |7|sparc;108376-01;|SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1: X11R6.4 LBX & XRX Extensions Patch 107655|10|May/09/02|R|S| | |7_x86|i386;108377-01;|SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1_x86: X11R6.4 LBX & XRX Extensions Patch -107656|10|Jul/23/02|R| | | |7|sparc;108376-01;|SUNWxwinc:0.98.08.05;SUNWxwplt:0.98.08.26;SUNWxwplx:0.98.08.26;SUNWxwpmn:0.98.08.05;SUNWxwslb:0.98.08.05;|OpenWindows 3.6.1 libXt Patch -107657|08|Jul/23/02| | | | |7_x86|i386;108377-01;|SUNWxwinc:0.98.08.05;SUNWxwplt:0.98.08.26;SUNWxwpmn:0.98.08.05;SUNWxwslb:0.98.08.05;|OpenWindows 3.6.1_x86: ERC X11R6.4 Extension Patch +107656|11|Dec/09/02|R| | | |7|sparc;108376-01;|SUNWxwinc:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;SUNWxwplx:3.7.2102,REV=0.98.08.26;SUNWxwpmn:3.7.2100,REV=0.98.08.05;SUNWxwslb:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1 libXt Patch +107657|09|Dec/09/02| | | | |7_x86|i386;108377-01;|SUNWxwinc:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;SUNWxwpmn:3.7.2100,REV=0.98.08.05;SUNWxwslb:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: ERC X11R6.4 Extension Patch 107658|05|Feb/08/00| | | | |7|sparc;108376-01;|SUNWxwpmn:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1: X11R6.4 API man pages Patch 107659|05|Feb/08/00| | | | |7_x86|i386;108377-01;|SUNWxwpmn:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: X11R6.4 API man pages Patch 107665|01|Apr/20/99| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Disks command fixes @@ -3516,27 +3556,29 @@ 107677|01|Aug/18/99| | | | |Unbundled|||ChorusOS r3.2.1: Patch for Intel x86 (host Solaris) 107678|02|Jan/04/00| | | | |Unbundled|||ChorusOS r3.2.1: Patch for Intel x86 (host Solaris) 107679|02|Sep/13/99| | |O| |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.99.02.02;|Obsoleted by: 109402-04 OpenWindows 3.6.1_x86: Updated ATI video s -107680|01|Sep/13/99| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/sys/msgsys and /kernel/sys/sparcv9/msgsys patch -107681|01|Sep/13/99| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/sys/msgsys patch -107684|04|Feb/14/02|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;SUNWsndmr:11.7.0,REV=1998.09.01.04.16;SUNWsndmu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: sendmail patch -107685|04|Jan/28/02|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;SUNWsndmr:11.7.0,REV=1998.09.01.04.53;SUNWsndmu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: sendmail patch +107680|02|Sep/24/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/sys/msgsys patch +107681|02|May/07/03| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/sys/msgsys patch +107684|10|Sep/29/03|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWnisu:11.7.0,REV=1998.09.01.04.16;SUNWsndmr:11.7.0,REV=1998.09.01.04.16;SUNWsndmu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: sendmail patch +107685|10|Sep/29/03|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWnisu:11.7.0,REV=1998.09.01.04.53;SUNWsndmr:11.7.0,REV=1998.09.01.04.53;SUNWsndmu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: sendmail patch 107688|01|May/06/99| | |O| |7|||OBSOLETED by 107887 107689|01|Aug/10/99| | | | |Unbundled|||SNC 3.2: x86: SNC fails to add services during install. 107690|01|May/06/99| | |O| |7_x86|||OBSOLETED by 107888 107698|01|Jul/19/00| | | | |Unbundled|sparc;|SPROild:3.0;|ild 3.0: Patch for ild 3.0 (SPARC) 107700|01|Jun/24/99| | | | |7|sparc;|SUNWgadis:7.0,REV=1.0.10;|SunOS 5.7: Fixes the installation warning for zh.GBK 107701|01|Jun/24/99| | | | |7_x86|i386;|SUNWgadis:7.0,REV=1.0.10;|SunOS 5.7_x86: Fixes the installation warning for zh.GBK -107702|09|Sep/25/01|R|S| | |7|sparc;108376-18;|SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3: dtsession patch -107703|09|Sep/25/01|R|S| | |7_x86|i386;108377-18;|SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtsession patch +107702|12|Apr/14/03|R|S| | |7|sparc;108376-18;|SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3: dtsession patch +107703|12|Apr/15/03|R|S| | |7_x86|i386;108377-18;|SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;SUNWdtwm:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtsession patch 107705|01|Aug/10/99| | | | |Unbundled|||SNC 3.2 x86: Win95/98 32 bit HostAccess update -107709|20|Jul/25/02|R|S| | |7|sparc;|SUNWmibii:1998.09.01.04.16;SUNWsacom:1998.09.01.04.16;SUNWsadmi:1998.09.01.04.16;SUNWsadmx:1998.09.01.04.16;SUNWsasnm:1998.09.01.04.16;SUNWsasnx:1998.09.01.04.16;|SunOS 5.7: libssasnmp/libssagent/snmpdx/snmpXdmid/mibiisa Patches -107710|19|Jun/03/02|R|S| | |7_x86|i386;|SUNWmibii:1998.09.01.04.53;SUNWsacom:1998.09.01.04.53;SUNWsadmi:1998.09.01.04.53;SUNWsasnm:1998.09.01.04.53;|SunOS 5.7_x86: libssasnmp/libssagent/snmpdx/snmpXdmid/mibiisa Patc +107709|21|Apr/29/03|R|S| | |7|sparc;|SUNWmibii:11.7.0,REV=1998.09.01.04.16;SUNWsacom:11.7.0,REV=1998.09.01.04.16;SUNWsadmi:11.7.0,REV=1998.09.01.04.16;SUNWsadmx:11.7.0,REV=1998.09.01.04.16;SUNWsasnm:11.7.0,REV=1998.09.01.04.16;SUNWsasnx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libssasnmp/libssagent/snmpdx/snmpXdmid/mibiisa Patches +107710|20|Aug/29/02|R|S| | |7_x86|i386;|SUNWmibii:11.7.0,REV=1998.09.01.04.53;SUNWsacom:11.7.0,REV=1998.09.01.04.53;SUNWsadmi:11.7.0,REV=1998.09.01.04.53;SUNWsasnm:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libssasnmp/libssagent/snmpdx/snmpXdmid/mibiisa Patc 107711|01|Sep/14/99| | |O| |7|||OBSOLETED by 107306 107712|01|Sep/14/99| | |O| |7_x86|||OBSOLETED by 107307 107713|01|Apr/28/99| | | | |Unbundled|sparc;106854-02;|SUNWatm:3.0;|SunATM 3.0 Update 1: Atm 3.0update1 pci causing system to panic -107714|18|Apr/26/02| |S| | |Unbundled|sparc;sparc.sun4u;|TSIpgx:2.5.1,REV=1999.03.17;TSIpgxmn:2.5.1,REV=1999.03.18;TSIpgxw:2.5.1,REV=1999.03.18;|PGX32 2.5.1: PGX32 Graphics Patch -107715|18|Apr/22/02| |S| | |Unbundled|sparc;sparc.sun4u;|TSIpgx:2.6.0,REV=1999.03.17;TSIpgxmn:2.6.0,REV=1999.03.09;TSIpgxw:2.6.0,REV=1999.03.18;|PGX32 2.6: PGX32 Graphics Patch -107716|20|Jul/25/02| |S| | |7|sparc;sparc.sun4u;|TSIpgx:1999.03.08;TSIpgxmn:1999.03.09;TSIpgxw:1999.03.10;TSIpgxx:1999.03.08;|SunOS 5.7: PGX32 Graphics Patch +107714|25|Sep/24/03| |S| | |Unbundled|sparc;sparc.sun4u;|TSIpgx:2.5.1,REV=1999.03.17;TSIpgxmn:2.5.1,REV=1999.03.18;TSIpgxw:2.5.1,REV=1999.03.18;|PGX32 2.5.1: PGX32 Graphics Patch +107715|21|Dec/18/02| |S| | B|Unbundled|sparc;sparc.sun4u;|TSIpgx:2.6.0,REV=1999.03.17;TSIpgxmn:2.6.0,REV=1999.03.09;TSIpgxw:2.6.0,REV=1999.03.18;|WITHDRAWN PATCH PGX32 2.6: PGX32 Graphics Patch +107715|25|Oct/03/03| |S| | |Unbundled|sparc;sparc.sun4u;|TSIpgx:2.6.0,REV=1999.03.17;TSIpgxmn:2.6.0,REV=1999.03.09;TSIpgxw:2.6.0,REV=1999.03.18;|PGX32 2.6: PGX32 Graphics Patch +107716|22|Dec/09/02| |S| | B|7|sparc;sparc.sun4u;|TSIpgx:7.0.0,REV=1999.03.08;TSIpgxmn:7.0.0,REV=1999.03.09;TSIpgxw:7.0.0,REV=1999.03.10;TSIpgxx:7.0.0,REV=1999.03.08;|WITHDRAWN PATCH SunOS 5.7: PGX32 Graphics Patch +107716|26|Oct/28/03|R|S| | |7|sparc;sparc.sun4u;|TSIpgx:7.0.0,REV=1999.03.08;TSIpgxmn:7.0.0,REV=1999.03.09;TSIpgxw:7.0.0,REV=1999.03.10;TSIpgxx:7.0.0,REV=1999.03.08;|SunOS 5.7: PGX32 Graphics Patch 107717|01|Apr/21/99| | | | |Unbundled|sparc;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2: Actions patch 107718|01|Apr/22/99| | | | |Unbundled|i386;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: Actions patch 107719|02|Jul/01/99| | | | |2.6|sparc;|SUNWploc1:1.0,REV=1997.06.14.16.13;SUNWploc1:1.0,REV=1997.07.14.15.26;|SunOS 5.6: Incorrect day information in 'pt' and 'pt_BR' locales @@ -3547,8 +3589,8 @@ 107730|02|Sep/19/00| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/du patch 107731|02|Sep/19/00| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/du patch 107732|01|Apr/15/99| | | | |Unbundled|sparc;|SUNWvts:3.2,REV=08.99.04.05;SUNWvtsx:3.2,REV=08.99.04.05;|SunVTS 3.2: Add unbundled gfxtest to Solaris 7 5/99 users -107733|10|Apr/22/02|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWbtool:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWosdem:11.6.0,REV=1997.07.15.21.46;SUNWtoo:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Linker patch -107734|09|Oct/03/00|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWbtool:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWosdem:11.6.0,REV=1997.07.16.00.21;SUNWtoo:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: linker patch +107733|11|Jul/28/03|R|S| | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWbtool:11.6.0,REV=1997.07.15.21.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWosdem:11.6.0,REV=1997.07.15.21.46;SUNWtoo:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: linker patch +107734|11|Jul/28/03|R|S| | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWbtool:11.6.0,REV=1997.07.16.00.21;SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;SUNWosdem:11.6.0,REV=1997.07.16.00.21;SUNWtoo:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: linker patch 107735|02|Jun/28/99| | |O| |Unbundled|||OBSOLETED by 106606 107736|01|May/28/99| | | | |2.6|sparc;|SUNWfrim:1.1,REV=97.08.01.16.30;|SunOS 5.6: Hotjava conflicts when using SIMS 107737|01|May/28/99| | | | |2.6_x86|i386;|SUNWfrim:1.1,REV=97.08.01.16.42;|SunOS 5.6_x86: Hotjava conflicts when using SIMS @@ -3556,7 +3598,7 @@ 107739|01|Sep/20/99| | | | |7_x86|i386;|SUNWeuise:1.0,REV=1998.09.11.21.41;SUNWpldte:1.1,REV=1998.10.02.15.03;SUNWploc1:1.0,REV=1998.09.11.21.36;SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: Estonian locale uses incorrect codeset (QU) 107740|01|Apr/26/99| | | | |Unbundled|||LoopTool 5.0: Patch for Sun WorkShop LoopTool 5.0 107742|01|Apr/23/99| | | | |Unbundled|sparc;|SPROprfan:5.0;|WorkShop IPE 5.0: Patch for Performance Analyzer -107743|11|Jun/28/02|R| | | |7|sparc;|SUNWqfed:5.7.98.08.03;SUNWqfedu:5.7.98.08.03;SUNWqfedx:5.7.98.08.03;|SunOS 5.7: Sun Quad FastEthernet 2.2 +107743|14|Apr/25/03|R| | | |7|sparc;|SUNWqfed:4.0,REV=5.7.98.08.03;SUNWqfedu:4.0,REV=5.7.98.08.03;SUNWqfedx:4.0,REV=5.7.98.08.03;|SunOS 5.7: Sun Quad FastEthernet 2.2 107744|02|Sep/19/00| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/du and /usr/xpg4/bin/du patch 107745|02|Sep/19/00| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/du and /usr/xpg4/bin/du patch 107746|03|Aug/23/00| | | | |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Croatian locale hr_HR corrections @@ -3569,8 +3611,8 @@ 107755|01|May/26/99|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: Pax incorrectly change mode of symlink target file 107756|01|May/26/99|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/pax patch 107757|01|May/26/99|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/pax patch -107758|03|Feb/27/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/pax patch -107759|03|Feb/27/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/pax patch +107758|05|Jan/31/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/pax patch +107759|05|Jan/31/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/pax patch 107761|04|Jun/06/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: scssa patch 107762|04|Jun/06/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: scssa patch 107763|02|Apr/28/00| | |O| |Unbundled|sparc;108520-01;109208-01;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: framework rpcbind patch @@ -3590,9 +3632,9 @@ 107784|03|Sep/28/99| | |O| |7|||OBSOLETED by 108068 107785|03|Sep/28/99| | |O| |7_x86|||OBSOLETED by 108069 107786|02|Mar/22/00| | | | |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: compress fails on HP UX mounted filesystems -107791|07|Feb/28/02| | | | |Unbundled|sparc;106822-07;|SUNWemalb:3.0;SUNWemapp:3.0;SUNWembc:3.0;SUNWemcpa:3.0;SUNWemdmn:3.0;SUNWemipa:3.0;SUNWemjme:1.0;SUNWemjmk:3.0;SUNWemmis:3.0;SUNWemobj:3.0;|Solstice Enterprise Manager 3.0 update patch 7 -107792|03|Feb/21/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/pax patch -107793|03|Feb/21/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/pax patch +107791|10|Oct/23/02| | | | |Unbundled|sparc;106822-09;|SUNWemalb:3.0;SUNWemapp:3.0;SUNWembc:3.0;SUNWemcpa:3.0;SUNWemdmn:3.0;SUNWemipa:3.0;SUNWemjme:1.0;SUNWemjmk:3.0;SUNWemmis:3.0;SUNWemobj:3.0;107791-01|Solstice Enterprise Manager 3.0 update patch 10 +107792|05|Jan/30/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/pax patch +107793|05|Jan/31/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/pax patch 107794|01|Aug/23/00|R|S| | |7|sparc;|SUNWast:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ASET patch 107795|01|Aug/23/00|R|S| | |7_x86|i386;|SUNWast:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ASET patch 107796|03|Mar/28/00| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/fs/lofs patch @@ -3612,27 +3654,30 @@ 107815|01|Jun/02/99| | | | |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: xrdb patch 107816|01|Jun/02/99| | | | |2.6_x86|i386;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6_x86: xrdb patch 107825|01|Nov/29/99| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: rlogin hangs when using tsol_2 cipso templa +107826|02|Jun/27/00| |S| | B|Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Xsun patch 107826|03|Mar/21/01| |S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Xsun patch 107827|01|Nov/29/99| |S| | |Trusted_Solaris_2.5.1|||TS2.5.1 inetd and servers it spawns can lose PROC_AUDIT_TCB privil 107830|02|Jun/04/99| | | | |Unbundled|i386;|SPROlang:5.0;|Compiler Common 5.0_x86: Patch C 5.0, C++ 5.0, F77 5.0 -107834|03|Jan/05/00|R| | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: dkio.h & commands.h patch -107835|03|Jan/05/00| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: dkio.h & commands.h patch +107834|04|Sep/18/02|R| | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: dkio.h & commands.h patch +107835|04|Jan/28/03| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: dkio.h & commands.h patch 107836|03|Mar/01/02| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/format Patch 107837|03|Mar/01/02| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/format Patch 107838|01|Jun/28/99| | | | |7|sparc;|SUNWtnfc:11.7.0,REV=1998.09.01.04.16;SUNWtnfcx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libtnfctl patch 107839|01|Jun/28/99| | | | |7_x86|i386;|SUNWtnfc:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libtnfctl patch 107841|03|May/03/01|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpcsec patch 107842|03|May/03/01|R| | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpcsec patch -107843|02|Aug/23/00| | | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /sbin/init and /usr/sbin/init patch +107843|04|Mar/14/03| | | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /sbin/init and /usr/sbin/init patch 107844|02|Aug/23/00| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /sbin/init and /usr/sbin/init patch 107845|02|May/21/99| | | | |Unbundled|sparc;|SUNWatm:4.0,REV=1999.03.25.15;|SunATM 4.0: Cannot unplumb failed hardware 107848|01|May/07/99| | | | |Unbundled|sparc;106408-04;|SUNWsbun:5.1;|Solstice Backup 5.1: jb_config does not configure ETL1800 correctl -107851|19|Apr/19/02| |S| | |Unbundled|sparc;|TSIgfxOW:2.1;TSIgfxdrv:2.1;|PGX32 2.1: Graphics Patch +107851|10|Nov/22/00| |S| | B|Unbundled|sparc;|TSIgfxOW:2.1;TSIgfxdrv:2.1;|WITHDRAWN PGX32 2.1: Graphics Patch +107851|21|Nov/21/02| |S| | B|Unbundled|sparc;|TSIgfxOW:2.1;TSIgfxdrv:2.1;|WITHDRAWN PATCH PGX32 2.1: Graphics Patch +107851|25|Sep/15/03| |S| | |Unbundled|sparc;|TSIgfxOW:2.1;TSIgfxdrv:2.1;|PGX32 2.1: Graphics Patch 107853|01|Jun/28/99| | | | |7|sparc;|SUNWxwopt:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1: xdm patch 107854|01|Jun/28/99| | | | |7_x86|i386;|SUNWxwopt:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: xdm patch 107855|02|Sep/03/99| | | | |Unbundled|sparc;|SUNWnbinx:3.1.1;|Netbackup 3.1.1: Database Extention Patch -107865|02|Jun/26/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:1998.09.01.04.16;SUNWcarx:1998.11.30.15.02;SUNWcsr:1998.09.01.04.16;SUNWhea:1998.09.01.04.16;|SunOS 5.7: /kernel/sys/shmsys patch -107866|02|Jun/26/02| | | | |7_x86|i386;|SUNWcsr:1998.09.01.04.53;SUNWhea:1998.09.01.04.53;|SunOS 5.7_x86: /kernel/sys/shmsys patch +107865|03|Dec/18/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/sys/shmsys patch +107866|03|Feb/20/03| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/sys/shmsys patch 107867|02|May/19/99| | | | |7_x86|||SunOS 5.7_x86: cadp, add Ultra2 SCSI support 107876|01|Jun/29/99| | | | |2.5.1|sparc;|SUNWploc1:1.0,REV=14.0;|SunOS 5.5.1: Days of week in wrong order with Portugese locales 107877|01|Jun/29/99| | | | |2.5.1_x86|i386;|SUNWploc1:1.0,REV=15.0;|SunOS 5.5.1_x86: Days of week in wrong order with Portugese locale @@ -3642,13 +3687,13 @@ 107882|10|Dec/07/99| | |O| |7_x86|107201-08;107227-07;107249-01;108152-01;108344-01;||OBSOLETED by 108375 107883|08|Apr/26/02| | | | |7|sparc;|SUNWdtim:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: sdtimage Patch 107884|08|Apr/26/02| | | | |7_x86|i386;|SUNWdtim:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: sdtimage Patch -107885|08|Dec/22/00|R|S| | |7|sparc;106934-03;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdthev:1.3,REV=10.98.09.12;SUNWdticn:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: dtprintinfo Patch -107886|08|Dec/20/00|R|S| | |7_x86|i386;106935-03;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdthev:1.3,REV=10.98.09.12;SUNWdticn:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtprintinfo patch +107885|09|Dec/03/03|R|S| | |7|sparc;106934-03;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdthev:1.3,REV=10.98.09.12;SUNWdticn:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: dtprintinfo Patch +107886|09|Dec/03/03|R|S| | |7_x86|i386;106935-03;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdthev:1.3,REV=10.98.09.12;SUNWdticn:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtprintinfo patch 107887|10|Oct/31/00|R|S| | |7|sparc;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtezt:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3: Actions Patch 107888|10|Oct/17/00|R|S| | |7_x86|i386;|SUNWdtdst:1.3,REV=10.98.09.12;SUNWdtdte:1.3,REV=10.98.09.12;SUNWdtezt:1.3,REV=10.98.09.12;SUNWdtma:1.3,REV=10.98.09.12;|CDE 1.3_x86: Actions Patch 107890|01|Jun/29/99| | | | |Unbundled|sparc;|SUNWvts:3.1,REV=09.99.01.21;SUNWvtsx:3.1,REV=09.99.01.21;|SunVTS 3.1: Update audiotest & ecpptest to fix problem setting opt -107893|18|Jun/13/02|R|S| | |7|sparc;106942-09;|SUNWtltk:10.98.09.12;SUNWtltkm:10.98.09.12;SUNWtltkx:10.98.09.11;|OpenWindows 3.6.1: Tooltalk patch -107894|17|Jun/13/02|R|S| | |7_x86|i386;106943-09;|SUNWtltk:10.98.09.12;SUNWtltkm:10.98.09.12;|OpenWindows 3.6.1_x86: Tooltalk patch +107893|21|Sep/24/03|R|S| | |7|sparc;106942-09;|SUNWtltk:3.7.0,REV=10.98.09.12;SUNWtltkm:3.7.0,REV=10.98.09.12;SUNWtltkx:3.7.0,REV=10.98.09.11;|OpenWindows 3.6.1: Tooltalk patch +107894|20|Sep/24/03|R|S| | |7_x86|i386;106943-09;|SUNWtltk:3.7.0,REV=10.98.09.12;SUNWtltkm:3.7.0,REV=10.98.09.12;|OpenWindows 3.6.1_x86: Tooltalk patch 107895|01|Jun/15/99| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Race condition can cause tl to lock up 107897|01|Jun/23/99| | | | |Unbundled|sparc;|SUNWlzs:1.0,REV="0.22";|PC Netlink 1.0: Bug fixes for issues #4233626 & 4237502 107899|01|Jun/14/99| | |O| |7|||OBSOLETED by 106541 @@ -3663,7 +3708,7 @@ 107912|01|Jun/15/99| | | | |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: xwininfo patch 107913|01|Jun/15/99| | | | |2.6_x86|i386;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6_x86: xwininfo patch 107914|01|Jun/25/99| | | | |Unbundled|sparc;|SUNWnetbp:3.1.1;|NetBackup 3.1.1: install_dbext aborts on client or slave server -107915|13|Mar/22/02| |S| | |Unbundled|sparc;|SUNWatm:4.0.1,REV=1999.4.27.18;SUNWatma:4.0.1,REV=1999.4.27.18;SUNWatmu:4.0.1,REV=1999.4.27.18;|SunATM 4.0 Update1: bug fixes +107915|14|Nov/27/02| |S| | |Unbundled|sparc;|SUNWatm:4.0.1,REV=1999.4.27.18;SUNWatma:4.0.1,REV=1999.4.27.18;SUNWatmu:4.0.1,REV=1999.4.27.18;|SunATM 4.0 Update1: bug fixes 107919|01|Sep/30/99| | | | |7|sparc;|SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/include/sys/mhd.h patch 107920|01|Sep/30/99| | | | |7_x86|i386;|SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/include/sys/mhd.h patch 107921|01|Jul/23/99| | | | |7|sparc;|SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1: xwininfo patch @@ -3680,7 +3725,7 @@ 107936|02|May/31/00| | | | |7_x86|i386;|SUNWdeos:11.5.1,REV=1998.08.03.15.44;SUNWesos:11.5.1,REV=1998.08.03.15.50;SUNWfros:11.5.1,REV=1998.08.03.15.41;SUNWitos:11.5.1,REV=1998.08.03.15.47;SUNWsvos:11.5.1,REV=1998.08.03.15.56;|SunOS 5.7_x86: l10n_euro msg updates for SUNW(euro)is SUNW(euro)os 107938|04|Dec/23/99| | | | |Unbundled|sparc;|SUNWspci:1.0.1;|SunPCi 1.0.1: for Solaris 2.5.1, 2.6, 7 and sparc architectures 107940|01|Jun/21/99| | |O| |Unbundled|||OBSOLETED by 104539 -107941|02|Apr/10/00| | | | |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Incorrect day order in Portuguese and Brazilian locales +107941|02|Apr/10/00| | |O| |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Incorrect day order in Portugue 107942|02|May/25/00| | | | |7_x86|i386;|SUNWploc1:1.0,REV=1998.09.11.21.36;|SunOS 5.7_x86: Incorrect day order in the pt and pt_BR locales. 107945|01|May/22/00| | | | |Unbundled|sparc;|SUNWsrmb:1.0.0,REV=1998.11.13.16.33;|Solaris Resource Manager 1.0: setting maxusage negative not ok 107952|02|Sep/15/99| | | | |Unbundled|sparc;|SUNWmpi:3.0;|HPC 3.0: MPI library fixes @@ -3713,9 +3758,13 @@ 107989|01|Aug/09/99| | | | |Unbundled|sparc;|SPROftool:5.0;|Fortran Common 5.0: Patch F77 5.0, F90 2.0 107991|02|Apr/24/01|R|S| | |2.6|sparc;|SUNWsutl:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/static/rcp patch 107992|02|Jun/13/01|R|S| | |2.6_x86|i386;|SUNWsutl:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/static/rcp patch +107993|01|May/16/03| | | | |7|sparc;|SUNWpldte:1.1,REV=1998.09.17.23.05;|SunOS 5.7: Cannot print in dtmail in any non iso-1 locale +107994|01|May/16/03| | | | |7_x86|i386;|SUNWpldte:1.1,REV=1998.09.17.23.04;|SunOS 5.7_x86: Cannot print in dtmail in any non iso-1 locale _x86 107995|01|Jul/27/99| | | | |Unbundled|sparc;|SUNWosafw:6.01,REV=00.19;|RM 6.1: Firmware upgrade -107996|14|Feb/26/02| |S| | B|Unbundled|sparc;109208-02;109208-02;|SUNWscor:2.2,REV=1999.02.09.23.00;|BADPATCH Sun Cluster 2.2: HA-Oracle Patch -107997|14|Mar/20/02| |S| | B|Unbundled|sparc;109209-02;109209-02;|SUNWscor:2.2,REV=1999.02.09.23.30;|BADPATCH Sun Cluster 2.2: HA-Oracle Patch +107996|14|Feb/26/02| |S| | B|Unbundled|sparc;109208-02;109208-02;|SUNWscor:2.2,REV=1999.02.09.23.00;|WITHDRAWN Sun Cluster 2.2: HA-Oracle Patch +107996|17|Jan/06/03| |S| | |Unbundled|sparc;109208-02;|SUNWscor:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-Oracle Patch +107997|14|Mar/20/02| |S| | B|Unbundled|sparc;109209-02;109209-02;|SUNWscor:2.2,REV=1999.02.09.23.30;|WITHDRAWN Sun Cluster 2.2: HA-Oracle Patch +107997|17|Jan/06/03| |S| | |Unbundled|sparc;109209-02;|SUNWscor:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: HA-Oracle Patch 107998|01|Jul/19/99| | | | |Unbundled|sparc;|SUNWprism:6.0;|HPC 3.0: Prism fixes 107999|02|Oct/07/99| | | | |Unbundled|sparc;|SUNWprsmx:6.0;|HPC 3.0: Prism 64bit fixes 108002|01|Jul/19/99| | | | |Unbundled|sparc;|SUNWs3l:3.0;|HPC 3.0: S3L fixes @@ -3746,9 +3795,12 @@ 108048|03|Sep/09/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: tail command restricted to 65K characters 108049|09|Aug/23/01| | | | |Unbundled|all;i386;sparc;|SUNWbbmtm:4.0,REV=1999.06.13.00.20;SUNWbbmto:4.0,REV=1999.06.13.00.20;SUNWimadc:4.0,REV=1999.06.18.17.16;SUNWimadd:4.0,REV=1999.06.13.00.20;SUNWimads:4.0,REV=1999.06.18.17.17;SUNWimcli:4.0,REV=1999.06.13.00.20;SUNWimclj:4.0,REV=1999.06.13.00.20;SUNWimclm:4.0,REV=1999.06.13.00.20;SUNWimcln:4.0,REV=1999.06.13.00.20;SUNWimcmm:4.0,REV=1999.06.13.00.20;SUNWimcom:4.0,REV=1999.06.18.13.48;SUNWimdmi:4.0,REV=1999.06.13.23.49;SUNWimdml:4.0,REV=1999.06.13.07.41;SUNWimdmp:4.0,REV=1999.06.14.18.02;SUNWimdms:4.0,REV=1999.06.16.13.09;SUNWimha:4.0,REV=1999.06.18.13.48;SUNWimimm:4.0,REV=1999.06.18.10.56;SUNWimimo:4.0,REV=1999.06.18.12.21;SUNWimols:4.0,REV=1999.06.18.17.31;SUNWimsdd:3.5,REV=1999.06.13.08.07;|Solstice Internet Mail Server 4.0: Misc. fixes 108050|09|Aug/23/01| | | | |Unbundled|all;i386;|SUNWbbmtm:4.0,REV=1999.06.13.00.20;SUNWbbmto:4.0,REV=1999.06.13.00.20;SUNWimadc:4.0,REV=1999.06.18.17.18;SUNWimadd:4.0,REV=1999.06.13.00.20;SUNWimads:4.0,REV=1999.06.18.17.18;SUNWimcli:4.0,REV=1999.06.13.00.20;SUNWimclj:4.0,REV=1999.06.13.00.20;SUNWimclm:4.0,REV=1999.06.13.00.20;SUNWimcln:4.0,REV=1999.06.13.00.20;SUNWimcmm:4.0,REV=1999.06.13.00.20;SUNWimcom:4.0,REV=1999.06.18.13.48;SUNWimdmi:4.0,REV=1999.06.13.23.49;SUNWimdml:4.0,REV=1999.06.13.08.08;SUNWimdmp:4.0,REV=1999.06.14.18.03;SUNWimdms:4.0,REV=1999.06.16.13.09;SUNWimha:4.0,REV=1999.06.18.13.49;SUNWimimm:4.0,REV=1999.06.18.10.56;SUNWimimo:4.0,REV=1999.06.18.12.28;SUNWimols:4.0,REV=1999.06.18.17.31;SUNWimsdd:3.5,REV=1999.06.13.08.07;|Solstice Internet Mail Server 4.0_x86: Misc. fixes +108055|01|Dec/10/99| | |O| B|7_x86|||OBSOLETED by WITHDRAWN 108055|03|May/14/01|R| | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: adp bug fixes. 108059|01|Nov/05/99| | | | |Unbundled|||SNC 3.2: x86: Can't print to SNC print server from another PC. 108060|02|Oct/22/99| | |O| |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.99.02.02;|Obsoleted by: 109402-04 OpenWindows 3.6.1_x86: Updated Matrox vide +108061|01|May/22/03| | | | |7|sparc;|SUNWpldte:1.1,REV=1998.10.02.15.10;|SunOS 5.7: Cannot print in dtmail in any non iso-1 locale +108062|01|May/22/03| | | | |7_x86|i386;|SUNWpldte:1.1,REV=1998.10.02.15.03;|SunOS 5.7_x86: Cannot print in dtmail in any non iso-1 locale 108065|03|Jul/07/99| | |O| |Unbundled|||OBSOLETED by 108145 108067|01|Mar/08/01| | |O| |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.99.02.02;|Obsoleted by: 109402-04 OpenWindows 3.6_x86: Updated 3Dlabs video 108068|03|Jan/10/00| | | | |7|sparc;|SUNWman:40.0,REV=23;|SunOS 5.7: Manual Page updates for Solaris 7 @@ -3777,16 +3829,18 @@ 108109|02|Oct/24/00| | |O| |Unbundled|sparc;|SUNWscnsl:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108505-05 Sun Cluster 2.2: Data Services Update HA N 108114|02|Apr/22/02| |S| | |Unbundled|||Java DMK 3.2 patch 108116|03|May/22/00| | | | |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for UltraSparc-IIi (host Solaris) -108117|04|Sep/06/00| | | | |7|sparc;|SUNWxwfs:3.7.2100,REV=0.98.08.05;SUNWxwfs:3.7.2101,REV=0.98.08.19;|OpenWindows 3.6.1: Font Server patch -108118|04|Sep/06/00| | | | |7_x86|i386;|SUNWxwfs:3.7.2100,REV=0.98.08.05;SUNWxwfs:3.7.2101,REV=0.98.08.19;|OpenWindows 3.6.1_x86: Font Server patch +108117|06|Dec/18/02|R|S| | |7|sparc;|SUNWxwfs:3.7.2100,REV=0.98.08.05;SUNWxwfs:3.7.2101,REV=0.98.08.19;|OpenWindows 3.6.1: Font Server patch +108118|06|Dec/18/02|R|S| | |7_x86|i386;|SUNWxwfs:3.7.2100,REV=0.98.08.05;SUNWxwfs:3.7.2101,REV=0.98.08.19;|OpenWindows 3.6.1_x86: Font Server patch +108119|01|Aug/13/99| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 108119|02|Nov/16/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: sys_id and genkey need libsysid to recognize COD 108120|01|Sep/07/99| | | | |2.6|sparc;|SUNWjeuc:1.0,REV=1.0.78;SUNWjpck:1.0,REV=1.0.78;|SunOS 5.6 (JFP 2.6): Japanese locale database patch 108121|01|Sep/07/99| | | | |2.6_x86|i386;|SUNWjeuc:1.0,REV=1.0.78;SUNWjpck:1.0,REV=1.0.78;|SunOS 5.6_x86 (JFP 2.6): Japanese locale database patch 108127|05|Apr/23/01| | | | |Unbundled|sparc;|SUNW5smt:1.1,REV=1999.04.30;SUNWcsmt:1.1,REV=1999.04.30;SUNWdesmt:1.1,REV=1999.04.30;SUNWessmt:1.1,REV=1999.04.30;SUNWfrsmt:1.1,REV=1999.04.30;SUNWgsmt:1.1,REV=1999.04.30;SUNWhsmt:1.1,REV=1999.04.30;SUNWitsmt:1.1,REV=1999.04.30;SUNWjasmt:1.1,REV=1999.04.30;SUNWjpsmt:1.1,REV=1999.04.30;SUNWjusmt:1.1,REV=1999.04.30;SUNWkosmt:1.1,REV=1999.04.30;SUNWkusmt:1.1,REV=1999.04.30;SUNWsmtvr:1.3,REV=1999.04.30;SUNWsmtvt:1.3,REV=1999.04.30;SUNWsvsmt:1.1,REV=1999.04.30;|ShowMe TV 1.3: ShowMe TV application patch -108129|03|Aug/29/00| | | | |2.6|sparc;|SUNWxwfs:3.6.370,REV=0.97.06.19;|OpenWindows 3.6: Font Server patch -108130|03|Aug/29/00| | | | |2.6_x86|i386;|SUNWxwfs:3.6.370,REV=0.97.06.18;|OpenWindows 3.6_x86: Font Server patch +108129|05|Dec/18/02|R|S| | |2.6|sparc;|SUNWxwfs:3.6.370,REV=0.97.06.19;|OpenWindows 3.6: Font Server patch +108130|05|Dec/18/02|R|S| | |2.6_x86|i386;|SUNWxwfs:3.6.370,REV=0.97.06.18;|OpenWindows 3.6_x86: Font Server patch 108131|17|Jun/25/01| | | | |Unbundled|sparc;|SUNWafbgl:1.2,REV=1999.07.13;SUNWffbgl:1.2,REV=1999.07.13;SUNWglrt:1.2,REV=1999.07.13;SUNWglrtu:1.2,REV=1999.07.13;SUNWifbgl:1.2,REV=1999.12.13;|OpenGL 1.2: OpenGL Patch for Solaris 2.5.1/2.6/7/8 (32-bit) 108132|17|Jun/25/01| | | | |Unbundled|sparc;108131-17;|SUNWafbgx:1.2,REV=1999.07.13;SUNWffbgx:1.2,REV=1999.07.13;SUNWglrtx:1.2,REV=1999.07.13;SUNWifbgx:1.2,REV=1999.12.13;|OpenGL 1.2: OpenGL Patch for Solaris 7/8 (64-bit) +108134|01|Aug/13/99| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 108134|02|Dec/03/99| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: edd doesn't detect/reboot domain that failed to boot in 108135|02|Feb/22/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: codd does not stop when SSP made into spare 108136|01|Sep/24/99| | | | |7|sparc;|SUNWsibi:11.7,REV=1998.09.14.14.10;|SunOS 5.7: fsck fails on IDE disk with re-preinstall @@ -3804,8 +3858,8 @@ 108159|01|Sep/17/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/fs/nfs/share patch 108160|01|Sep/03/99| | | | |2.6|sparc;|SUNWxwinc:3.6.370,REV=0.97.06.19;|OpenWindows 3.6: X Window Include Files Patch 108161|01|Sep/03/99| | | | |2.6_x86|i386;|SUNWxwinc:3.6.370,REV=0.97.06.18;|OpenWindows 3.6_x86: X Window Include Files Patch -108162|05|Dec/12/01|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: jsh, rsh, sh, rksh, ksh patch -108163|05|Dec/12/01|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: jsh, rsh, sh, rksh, ksh patch +108162|08|Feb/26/03|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: jsh, rsh, ksh, rksh, sh Patch +108163|08|Feb/26/03|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: jsh, rsh, ksh, rksh, sh Patch 108164|01|Oct/07/99| | | | |Unbundled|sparc;|SUNWlznb:1.0,REV=1.022;|SLS 1.0: Netbios fixes 108166|01|Aug/27/99| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: rmt needs to be made largefiles-aware 108167|01|Dec/17/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: rmt needs to be made largefiles-aware @@ -3822,8 +3876,9 @@ 108180|01|Aug/31/99| | | | |Unbundled|sparc;|SUNWapr:2.0.1,REV=99.05.17.14.58;|AP 2.0.1: ap_dmd fixes 108181|01|Oct/01/99| | | | |Unbundled|sparc.sun4u;|SUNWftmuu:5.6,REV=1999.01.28.13.32;|Netra ft1800 6.7: Patch 108190|01|Sep/22/99| | |O| |Unbundled|sparc;|SUNWsci:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109211-01 SunCluster 2.2: SCI Drivers -108191|01|Sep/07/99| | |O| B|Unbundled|||Obsoleted by: 109212-02 OBSOLETED by BADPATCH -108192|05|Aug/21/01| | | | |Unbundled|sparc;|SUNWsrmr:1.0.0,REV=1998.11.13.16.33;|Solaris Resource Manager 1.0: SHR/srmdrv/srmlim fixes +108191|01|Sep/07/99| | |O| B|Unbundled|||Obsoleted by: 109212-02 OBSOLETED by WITHDRAWN +108192|02|May/22/00| | |O| B|Unbundled|||Obsoleted by: 108192-03 OBSOLETED by WITHDRAWN +108192|07|Jul/11/03| | | | |Unbundled|sparc;|SUNWsrmr:1.0.0,REV=1998.11.13.16.33;|Solaris Resource Manager 1.0: SHR/srmdrv/srmlim Patch 108193|02|Aug/09/00| |S| | |Unbundled|sparc;105714-04;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1: dtprintinfo patch 108194|03|Aug/10/00| |S| | |Unbundled|sparc;108363-01;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtprintinfo patch 108195|02|Aug/09/00| |S| | |Unbundled|i386;105715-04;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1_x86: dtprintinfo patch @@ -3847,19 +3902,21 @@ 108216|01|Dec/06/99| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: HA-NFS patch 108219|01|Sep/13/99|R|S| | |7|sparc;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3: dtaction Patch 108220|01|Sep/13/99|R|S| | |7_x86|i386;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtaction Patch -108221|01|Sep/13/99|R|S| | |7|sparc;|SUNWdtdmn:1.3,REV=10.98.09.12;|CDE 1.3: dtspcd Patch -108222|01|Sep/13/99|R|S| | |7_x86|i386;|SUNWdtdmn:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtspcd Patch +108221|02|Aug/15/03|R|S| | |7|sparc;|SUNWdtdmn:1.3,REV=10.98.09.12;|CDE 1.3: dtspcd Patch +108222|02|Aug/15/03|R|S| | |7_x86|i386;|SUNWdtdmn:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtspcd Patch 108224|01|Oct/22/99| | | | |7|sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: envctrl driver patch 108226|01|Jan/31/00| | | | |2.6|sparc;|SUNWplow:1.0,REV=97.03.12.16.53;|SunOS 5.6: OpenWindows applications 8-bit character corruption 108227|01|Jan/31/00| | | | |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: OpenWindows applications 8-bit character corruption 108228|01|Jan/31/00| | | | |2.6_x86|i386;|SUNWplow:1.0,REV=97.03.12.18.01;|SunOS 5.6_x86: OpenWindows applications 8-bit character corruption 108229|01|Jan/31/00| | | | |7_x86|i386;|SUNWplow:1.0,REV=1998.09.14.18.11;|SunOS 5.7_x86: OpenWindows applications 8-bit character corruption 108230|03|Aug/18/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: Truncated temperature values are reported by CBE +108231|01|Jul/17/03| | | | |7|sparc;|SUNWjddst:1.3,REV=1.0.47;SUNWjddte:1.3,REV=1.0.45;SUNWjdim:1.3,REV=1.0.45;SUNWjehev:1.3,REV=1.0.45;SUNWjpdst:1.3,REV=1.0.47;SUNWjpdte:1.3,REV=1.0.45;SUNWjphev:1.3,REV=1.0.45;SUNWjpim:1.3,REV=1.0.45;SUNWjudst:1.3,REV=1.0.47;SUNWjudte:1.3,REV=1.0.45;SUNWjuhev:1.3,REV=1.0.45;SUNWjuim:1.3,REV=1.0.45;|CDE 1.3: Japanese Features Patch +108232|01|Jul/31/03| | | | |7_x86|i386;|SUNWjddst:1.3,REV=1.0.47;SUNWjddte:1.3,REV=1.0.45;SUNWjdim:1.3,REV=1.0.45;SUNWjehev:1.3,REV=1.0.45;SUNWjpdst:1.3,REV=1.0.47;SUNWjpdte:1.3,REV=1.0.45;SUNWjphev:1.3,REV=1.0.45;SUNWjpim:1.3,REV=1.0.45;SUNWjudst:1.3,REV=1.0.47;SUNWjudte:1.3,REV=1.0.45;SUNWjuhev:1.3,REV=1.0.45;SUNWjuim:1.3,REV=1.0.45;|Japanese CDE 1.3_x86: Features Patch 108233|01|Sep/27/99| | | | |2.5_x86|i386;|SUNWos86r:1.0.0,REV=95.10.13.23.57;|SunOS 5.5_x86: dnet patch 108235|01|Oct/07/99| | | | |Unbundled|sparc;|SUNWlzs:1.0,REV="1.022";|SLS 1.0: Bug fixes for issues #4233626 & 4237502 108240|01|Oct/28/99| | | | |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: Incorrect Compose file for iso8859-1 and iso8859-15 -108244|03|Aug/28/01| | | | |7|sparc;106541-13;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libaio patch -108245|03|Aug/29/01| | | | |7_x86|i386;106542-13;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libaio patch +108244|04|Nov/19/02| | | | |7|sparc;106541-13;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libaio patch +108245|04|Nov/08/02| | | | |7_x86|i386;106542-13;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libaio patch 108246|02|Jan/19/00| | | | |Unbundled|sparc;|SUNWlznb:1.1_fcs_14.22i,REV;|SLS 1.1: Netbios fixes 108247|02|Jan/25/00| | | | |Unbundled|sparc;106162;106165;106164;|SUNWlu0:9.1;|SunLink SNA LU0 Library 9.1 Patch 108247-02 108250|02|Feb/15/00| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: System panics w/ BAD TRAP=0x31 due to lofs bug @@ -3870,7 +3927,7 @@ 108255|01|Nov/22/99| |S| | |Unbundled|i386;|SUNWdtbas:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtaction Patch 108256|01|Dec/16/99| | | | |Unbundled|sparc;|SUNWsms:2.1,REV=97.11.12;|Sun Media Center 2.1: Scheduler Patch 108261|11|Mar/13/02| | | | |Unbundled|sparc;|SUNWmmgr:3.2GA;SUNWnetbp:3.2GA;|Netbackup 3.2 data corruption fix and jumbo patch -108263|09|Apr/17/02|R| | | |7|sparc;|SUNWhmd:11.7.0,REV=1998.09.01.04.16;SUNWhmdu:11.7.0,REV=1998.09.01.04.16;SUNWhmdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: hme driver Patch +108263|10|Apr/15/03|R|S| | |7|sparc;106541-24;|SUNWhmd:11.7.0,REV=1998.09.01.04.16;SUNWhmdu:11.7.0,REV=1998.09.01.04.16;SUNWhmdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: hme driver Patch 108264|01|Oct/18/99| | | | |2.6|sparc;|SUNWjddst:1.2,REV=1.0.78;SUNWjpdst:1.2,REV=1.0.78;|SunOS 5.6 (JFP 2.6): sdtfprop: wrong size for 64-bit files 108274|05|Aug/22/00| | | | |Unbundled|sparc;|SUNWlzs:1.1,REV="1.114";|1.1 bug fixes 108276|01|Nov/02/99| | | | |Unbundled|||SNC 3.2: x86: Can't print when system name and user name are the s @@ -3895,11 +3952,13 @@ 108300|01|Dec/16/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/rmt patch 108301|02|Apr/26/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/in.tftpd patch 108302|02|Apr/28/00|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/in.tftpd patch +108303|01|Nov/12/99| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN +108303|07|May/18/00| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 108303|12|Oct/12/01| | | | |Unbundled|sparc;|SUNWutk:1.0_11,REV=1999.07.13.08.49;SUNWutkx:1.0_11,REV=1999.07.13.08.49;SUNWutm:1.0_11,REV=1999.07.13.08.49;SUNWuto:1.0_11,REV=1999.07.13.08.49;SUNWutr:1.0_11,REV=1999.07.13.08.49;SUNWutu:1.0_11,REV=1999.07.13.08.49;|Sun Ray Enterprise Server version 1.0 Update Patch 108304|02|Nov/03/00| | | | |Unbundled|sparc.sun4u;|SUNWtsalu:1.1.0,REV=1999.07.26.14.37;|TS91 Alarm patch -108306|01|Nov/04/99| | | | |2.6|sparc;105181-17;|SUNWehea:1.1.0,REV=1998.01.23.18.28;|SunOS 5.6: Starfire header files patch +108306|02|Sep/09/02| | | | |2.6|sparc;105181-33;|SUNWehea:1.1.0,REV=1998.01.23.18.28;|SunOS 5.6: Starfire header files patch 108307|02|Apr/14/00|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: keyserv fixes -108308|02|Aug/21/00| |S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: keyserv fixes +108308|02|Aug/21/00|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: keyserv fixes 108309|02|Oct/13/00| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/fs/pcfs patch 108310|02|Oct/13/00| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/fs/pcfs patch 108311|01|Nov/15/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/head patch @@ -3908,10 +3967,10 @@ 108314|01|Nov/08/99| | | | |2.6_x86|i386;|SUNWpldte:1.1,REV=1997.06.27.19.04;|SunOS 5.6_x86: Dthelpview non-ISO8859-1 font support 108315|01|Nov/08/99| | | | |7|sparc;|SUNWpldte:1.1,REV=1998.09.17.23.05;|SunOS 5.7: Dthelpview non-ISO8859-1 font support 108316|01|Nov/08/99| | | | |7_x86|i386;|SUNWpldte:1.1,REV=1998.09.17.23.04;|SunOS 5.7_x86: Dthelpview non-ISO8859-1 font support -108317|02|Jun/28/00| | | | |7|sparc.sun4u;|SUNWidn:11.7.0,REV=1999.08.20.16.56;SUNWidnx:11.7.0,REV=1999.07.09.14.58;|SunOS 5.7: idn driver patch +108317|04|Apr/15/03| |S| | |7|sparc.sun4u;106541-24;|SUNWidn:11.7.0,REV=1999.08.20.16.56;SUNWidnx:11.7.0,REV=1999.07.09.14.58;|SunOS 5.7: idn driver patch 108318|05|Jun/26/01| | | | |7|sparc;|SUNWpd:11.7.0,REV=1998.09.01.04.16;SUNWpdx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ecpp driver patch -108319|01|Nov/08/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/at patch -108320|01|Oct/19/99| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/at patch +108319|03|Jan/27/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/at patch +108320|03|Jan/27/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/at patch 108321|02|May/18/00| | | | |Unbundled|||SNC 3.2: x86: 32 bit PC-Xware patch 108323|01|Dec/03/99| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: head(1) command does not work with lines >= 1024 char 108324|01|Dec/14/99| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: head(1) command does not work with lines >= 1024 ch @@ -3935,26 +3994,26 @@ 108349|01|Mar/09/00| | |O| |Unbundled|sparc;|SUNWcsnmp:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: smond patch 108350|01|Jun/02/00| | |O| |Unbundled|sparc;|SUNWcsnmp:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: smond patch 108351|05|Oct/31/01| |S| | |Unbundled|sparc;109208-02;|SUNWscsap:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-SAP Patch -108352|03|Apr/05/01| | |O| |Unbundled|sparc;109209-02;|SUNWscsap:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: HA-SAP Patch 108353|01|Jul/13/01| | | | |Unbundled|all;sparc;|SUNWbak:1.5,REV=1999.01.15.17.01;SUNWbakx:1.5,REV=1999.01.15.17.01;SUNWbat:1.5,REV=1999.01.15.17.01;SUNWbau:1.5,REV=1999.01.15.17.01;|Bandwidth Manager: 1.5 patch 108358|01|Oct/06/99| | | |Y |Unbundled|sparc;|SUNWdtezt:1.3,REV=11.98.01.25;|SDE 1.0: sdtperfmeter patch 108359|03|Nov/10/99| | | | |Unbundled|sparc;|SUNWbkupA:3.2,REV=97.10.30.1.0;|Netra i 3.2: backup using cron-job doesn't work 108363|02|Dec/04/01|R|S| | |Unbundled|sparc;|SUNWdtbas:1.0.2,REV=10.96.04.12;SUNWdtbas:1.0.2,REV=10.96.04.12,PATCH=02;|CDE 1.0.2: libDtSvc Patch 108364|02|Dec/04/01|R|S| | |Unbundled|i386;|SUNWdtbas:1.0.2,REV=10.96.04.12;SUNWdtbas:1.0.2,REV=10.96.04.12,PATCH=02;|CDE 1.0.2_x86: libDtSvc Patch 108368|01|Nov/23/99| | | | |Unbundled|sparc;|SUNWesmru:1.0.1,REV=05.18.1999;|Sun StorEdge Component Manager 1.0: Runtime service patch -108374|07|Jun/26/02|R| | | |7|sparc;107702-06;|SUNWdtbas:10.98.09.12;SUNWdtbax:10.98.09.11;SUNWdtinc:10.98.09.12;SUNWdtmad:10.98.09.12;|CDE 1.3: libDtWidget Patch -108375|07|Jun/26/02|R| | | |7_x86|i386;107703-06;|SUNWdtbas:10.98.09.12;SUNWdtinc:10.98.09.12;SUNWdtmad:10.98.09.12;|CDE 1.3_x86: libDtWidget Patch -108376|38|Jun/05/02|R|S| | |7|sparc;|SUNWxwfnt:0.98.08.19;SUNWxwice:0.98.08.05;SUNWxwicx:0.98.08.26;SUNWxwinc:0.98.08.05;SUNWxwman:0.98.08.05;SUNWxwplt:0.98.08.26;SUNWxwplx:0.98.08.26;SUNWxwpmn:0.98.08.05;SUNWxwslb:0.98.08.05;|OpenWindows 3.6.1: Xsun Patch -108377|34|Jun/05/02|R|S| | |7_x86|i386;|SUNWxwfnt:0.98.08.26;SUNWxwice:0.98.08.05;SUNWxwinc:0.98.08.05;SUNWxwman:0.98.08.05;SUNWxwplt:0.98.08.26;SUNWxwpmn:0.98.08.05;SUNWxwslb:0.98.08.05;|OpenWindows 3.6.1_x86: Xsun Patch +108374|07|Jun/26/02|R| | | |7|sparc;107702-06;|SUNWdtbas:1.3,REV=10.98.09.12;SUNWdtbax:1.3,REV=10.98.09.11;SUNWdtinc:1.3,REV=10.98.09.12;SUNWdtmad:1.3,REV=10.98.09.12;|CDE 1.3: libDtWidget Patch +108375|07|Jun/26/02|R| | | |7_x86|i386;107703-06;|SUNWdtbas:1.3,REV=10.98.09.12;SUNWdtinc:1.3,REV=10.98.09.12;SUNWdtmad:1.3,REV=10.98.09.12;|CDE 1.3_x86: libDtWidget Patch +108376|44|Oct/03/03|R|S| | |7|sparc;|SUNWxwfnt:3.7.2101,REV=0.98.08.19;SUNWxwice:3.7.2100,REV=0.98.08.05;SUNWxwicx:3.7.2101,REV=0.98.08.26;SUNWxwinc:3.7.2100,REV=0.98.08.05;SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;SUNWxwplx:3.7.2102,REV=0.98.08.26;SUNWxwpmn:3.7.2100,REV=0.98.08.05;SUNWxwslb:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1: Xsun Patch +108377|10|Aug/21/00| |S|O| B|7_x86|||Obsoleted by: 108377-15 OBSOLETED by WITHDRAWN +108377|39|Oct/03/03|R|S| | |7_x86|i386;|SUNWxwfnt:3.7.2101,REV=0.98.08.26;SUNWxwice:3.7.2100,REV=0.98.08.05;SUNWxwinc:3.7.2100,REV=0.98.08.05;SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;SUNWxwpmn:3.7.2100,REV=0.98.08.05;SUNWxwslb:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: Xsun Patch 108378|01|Feb/08/00| | | | |7|sparc;108376-01;107656-06;|SUNWxwslb:3.7.2100,REV=0.98.08.05;SUNWxwslx:3.7.2101,REV=0.98.08.26;|OpenWindows 3.6.1: X11R6.4 Lint Libraries Patch 108379|01|Feb/08/00| | | | |7_x86|i386;108377-01;107657-05;|SUNWxwslb:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: X11R6.4 Lint Libraries Patch -108381|01|Dec/10/99| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ptsl driver patch -108382|01|Dec/10/99| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ptsl driver patch +108381|02|Apr/15/03| |S| | |7|sparc;sparc.sun4u;sparc.sun4us;106541-24;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ptsl driver patch +108382|02|Apr/15/03| |S| | |7_x86|i386;106542-24;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ptsl driver patch 108383|01|Nov/15/99| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/sys/sysacct patch 108386|02|Feb/02/00| | |O| |2.6|sparc;|SUNWploc1:1.0,REV=1997.06.14.16.13;SUNWploc1:1.0,REV=1997.07.14.15.26;|Obsoleted by: 107064-04 SunOS 5.6: nl_BE locale curtural data upda 108387|02|Feb/02/00| | | | |2.6_x86|i386;|SUNWploc1:1.0,REV=1997.06.14.16.20;SUNWploc1:1.0,REV=1997.07.14.14.35;|SunOS 5.6_x86: nl_BE locale curtural data update -108388|01|Dec/10/99| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: System panics reproducibly in BSD pty code on MP system -108389|01|Dec/10/99| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: System panics reproducibly in BSD pty code on MP sy +108388|02|Mar/28/03| |S| | |2.6|sparc;105181-34;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ptsl driver patch +108389|02|Mar/25/03| |S| | |2.6_x86|i386;105182-34;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ptsl driver patch 108390|01|Nov/23/99| | | | |Unbundled|sparc;108368-01;|SUNWencc:1.0,REV=1999.07.22.15.56;SUNWenccr:1.0,REV=1999.07.22.15.56;SUNWencl:1.0,REV=5.6.1999.07.22.15.56;SUNWencm:1.0,REV=1999.07.22.15.56;SUNWencmr:1.0,REV=1999.07.22.15.56;SUNWencu:1.0,REV=1999.07.22.15.56;|Sun StorEdge Component Manager 1.0: Component Manager patch 108391|01|Nov/23/99| | | | |Unbundled|sparc;108368-01;|SUNWencc:1.0,REV=1999.07.22.15.35;SUNWenccr:1.0,REV=1999.07.22.15.36;SUNWencl:1.0,REV=5.7.1999.07.22.15.35;SUNWencm:1.0,REV=1999.07.22.15.35;SUNWencmr:1.0,REV=1999.07.22.15.36;SUNWencu:1.0,REV=1999.07.22.15.36;|Sun StorEdge Component Manager 1.0: Component Manager patch 108393|02|Nov/01/99| | | | |Unbundled|sparc;|SUNWvtsvp:2.1.1,REV=07.97.10.03;|SunVideo Plus 1.2: Bug fix patch @@ -3968,9 +4027,9 @@ 108405|01|Dec/21/99| | | | |Unbundled|sparc;|SUNWbwc:1.0,REV=1999.09.21.19.01;SUNWbwcd:1.0,REV=1999.09.21.19.01;SUNWbwr:1.0,REV=1999.09.21.19.01;SUNWbws:1.0,REV=1999.09.21.19.01;SUNWbwv:1.0,REV=1999.09.21.19.01;|StorEdge Media Central 1.0: Patch 108406|02|Aug/17/00| | | | |Unbundled|||Hardware, Tape Library, L11000 108407|01|Nov/02/99| | |O| |Unbundled|||OBSOLETED by 108918 -108408|01|Dec/21/99| | | | |Unbundled|||Hardware, Tape Backup Desktop: Patch -108414|02|Nov/05/01| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/cpio patch -108415|02|Nov/05/01| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/cpio patch +108408|02|Sep/30/03| | | | |Unbundled|||Hardware, DLT7000, Firmware Download Program, V101 +108414|06|Dec/24/03| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/cpio patch +108415|06|Dec/24/03| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/cpio patch 108416|02|Nov/13/01|R|S|O| |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|Obsoleted by: 108162-05 SunOS 5.7: ksh patch 108417|02|Nov/13/01|R|S|O| |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|Obsoleted by: 108163-05 SunOS 5.7_x86: ksh patch 108418|01|Nov/11/99| | |O| |Unbundled|||OBSOLETED by 108408 @@ -3983,12 +4042,12 @@ 108427|01|Jan/11/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: pmfadm patch 108428|01|Jan/11/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: pmfadm patch 108429|01|Jan/11/00| | |O| |Unbundled|sparc;|SUNWscsap:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108351-04 SunCluster 2.2: hasap_dbms patch -108430|01|Jan/11/00| | | | |Unbundled|sparc;|SUNWscsap:2.2,REV=1999.02.09.23.30;|SunCluster 2.2: hasap_dbms patch 108431|01|Jan/11/00| | |O| |Unbundled|sparc;|SUNWscsap:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108351-04 SunCluster 2.2: sap_status patch -108432|01|Jan/11/00| | | | |Unbundled|sparc;|SUNWscsap:2.2,REV=1999.02.09.23.30;|SunCluster 2.2: sap_status patch -108434|08|Jul/09/02|R| | | |Unbundled|sparc;109147-07;|SUNWlibC:99.06.09;|32-Bit Shared library patch for C++ -108435|08|Jul/09/02|R| | | |Unbundled|sparc;108434-08;|SUNWlibCx:1999.06.09;|64-Bit Shared library patch for C++ -108436|07|Jul/09/02| | | | |Unbundled|i386;109148-07;|SUNWlibC:99.06.09;|Shared library patch for C++ _x86 +108434|11|Apr/14/03|R| | | B|Unbundled|sparc;109147-07;109147-07;|SUNWlibC:5.8,REV=99.06.09;|WITHDRAWN PATCH 32-Bit Shared library patch for C++ +108434|13|Jul/10/03|R| | | |Unbundled|sparc;109147-07;|SUNWlibC:5.8,REV=99.06.09;|32-Bit Shared library patch for C++ +108435|11|Apr/14/03|R| | | B|Unbundled|sparc;108434-11;108434-11;|SUNWlibCx:5.8,REV=1999.06.09;|WITHDRAWN PATCH 64-Bit Shared library patch for C++ +108435|13|Jul/10/03|R| | | |Unbundled|sparc;108434-13;|SUNWlibCx:5.8,REV=1999.06.09;|64-Bit Shared library patch for C++ +108436|11|Jul/10/03| | | | |Unbundled|i386;109148-07;|SUNWlibC:5.8,REV=99.06.09;|Shared library patch for C++ _x86 108437|05|Mar/27/02| | | | |Unbundled|108598-01;112069-01;||DLT7000 tape drive firmware upgrade for ATL libraries 108438|01|Oct/26/99| | |O| |Unbundled|sparc;|SUNWo1kpu:1.3,REV=1.3.1;|Obsoleted by: 108625-02 SunVideo Plus 1.3: Bug fix 108439|01|Jan/11/00| | |O| |Unbundled|sparc;|SUNWsma:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109211-01 SunCluster 2.2: sm_config patch @@ -4001,8 +4060,8 @@ 108446|03|Apr/04/02| |S| | |Unbundled|sparc;|SUNWscch:2.2,REV=1999.02.09.23.30;SUNWscman:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: cluster_help/man pages patch 108447|04|Jul/13/01| |S| | |Unbundled|sparc;|SUNWsclts:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-Lotus Patch 108450|01|Feb/11/00| | |O| |Unbundled|sparc;|SUNWscpro:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108423-04 SunCluster 2.2: Data Services Update: HA n -108451|05|Aug/10/00|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpcmod patch -108452|05|Aug/25/00|R| | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpcmod patch +108451|07|Apr/09/03|R|S| | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpcmod patch +108452|06|Sep/05/02|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpcmod patch 108453|01|Nov/16/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b (Service Pack 9)_x86: Upgrade patch (Non- 108454|01|Nov/16/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b (Service Pack 9)_x86: Upgrade patch (VPN) 108455|01|Nov/23/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b (Service Pack 9)_x86: Upgrade patch (VPN+ @@ -4012,12 +4071,12 @@ 108459|01|Nov/16/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.x: Upgrade patch (Non-VPN) 108460|01|Nov/16/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.x: Upgrade patch (VPN) 108461|01|Nov/23/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b: WindowsNT (VPN+DES) -108468|02|May/25/00|R|S| | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ldterm streams module fixes -108469|02|Oct/10/01|R|S| | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ldterm streams module fixes +108468|03|Mar/28/03|R|S| | |2.6|sparc;105181-34;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ldterm streams module fixes +108469|03|Mar/25/03|R|S| | |2.6_x86|i386;105182-34;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ldterm streams module patch 108470|01|Jan/18/00|R|S| | |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Possible denial of service bug 108471|01|Jan/18/00|R|S| | |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: possible denial of service bug 108473|03|Feb/07/01| | | | |Unbundled|sparc;|VRTSqio:3.3.2 for Solaris 7 (32-bit/64-bit), 2.6 and 2.5.1;VRTSvxfs:3.3.2 for Solaris 7 (32-bit/64-bit), 2.6 and 2.5.1;|Veritas File System 3.3.2: VxFS 3.3.2patch02 -108474|02|Sep/12/00| | | | |Unbundled|sparc;106125-08;|VRTSqio:3.3.2;VRTSvxfs:3.3.2;|VxFS 3.3.2patch02 +108474|02|Sep/12/00| | | | |Unbundled|sparc;106125-08;|VRTSqio:3.3.2;VRTSvxfs:3.3.2;|Vertias VxFS 3.3.2patch02 108475|03|Feb/07/01| | | | |Unbundled|sparc;107171-04;|VRTSqio:3.3.2 for Solaris 7 (32-bit/64-bit), 2.6 and 2.5.1;VRTSvxfs:3.3.2 for Solaris 7 (32-bit/64-bit), 2.6 and 2.5.1;|Veritas File Systems 3.3.2: VxFS 3.3.2patch02 108476|02|Feb/07/01| | | | |Unbundled|sparc;|VRTSqio:3.3.3,REV=GA04;VRTSvxfs:3.3.3,REV=GA03;|Veritas File System 3.3.3: Veritas File System Mulitple fixes patc 108477|02|Feb/07/01| | | | |Unbundled|sparc;106125-10;|VRTSqio:3.3.3,REV=GA04;VRTSvxfs:3.3.3,REV=GA03;|Veritas File System 3.3.3: Veritas File System mulitple fixes patc @@ -4057,6 +4116,7 @@ 108512|04|Feb/27/02| |S| | |Unbundled|sparc;109209-02;|SUNWscsyb:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: HA-Sybase Patch 108516|01|Feb/04/00| | |O| |Unbundled|sparc;|SUNWscsyb:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108511-03 SunCluster 2.2: ha-sybase patch 108517|01|Feb/04/00| | |O| |Unbundled|sparc;|SUNWscsyb:2.2,REV=1999.02.09.23.30;|Obsoleted by: 108512-03 SunCluster 2.2: ha-sybase patch +108518|01|Apr/07/00| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 108518|02|Jun/02/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: hareg Options for Sun Supp 108519|01|Jan/25/00| | |O| |Unbundled|sparc;108518-01;109208-01;|SUNWscman:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108445-04 SunCluster 2.2: hareg Options Man Page for 108520|01|Apr/28/00| | |O| |Unbundled|sparc;|SUNWsccf:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: cdb tunable parameter patc @@ -4065,8 +4125,9 @@ 108525|01|Jun/02/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: nfs_probe patch 108526|01|Jun/02/00| | |O| |Unbundled|sparc;|SUNWscins:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: scinstall patch 108527|01|Jun/02/00| | |O| |Unbundled|sparc;|SUNWscins:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: scinstall patch -108528|15|Jun/05/02|R|S| | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108987-09;111111-03;111293-01;111310-01;|FJSVhea:1999.12.23.19.10;FJSVvplr:1999.12.23.19.10;FJSVvplu:1999.12.23.19.10;SUNWarc:2000.01.08.18.12;SUNWarcx:2000.01.08.18.12;SUNWcar:2000.01.08.18.12;SUNWcar:2000.01.13.13.40;SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcpc:2000.01.08.18.12;SUNWcpc:2000.01.13.13.40;SUNWcpcx:2000.01.08.18.12;SUNWcpcx:2000.01.13.13.40;SUNWcpr:2000.01.08.18.12;SUNWcpr:2000.01.13.13.40;SUNWcprx:2000.01.08.18.12;SUNWcprx:2000.01.13.13.40;SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWdrr:2000.01.08.18.12;SUNWdrr:2000.12.12.12.13;SUNWdrrx:2000.01.08.18.12;SUNWdrrx:2000.12.12.12.13;SUNWefcx:2000.10.03.21.12;SUNWhea:2000.01.08.18.12;SUNWidn:2000.01.08.18.12;SUNWidnx:2000.01.08.18.12;SUNWkvm:2000.01.08.18.12;SUNWkvm:2000.01.13.13.41;SUNWkvmx:2000.01.08.18.12;SUNWkvmx:2000.01.13.13.40;SUNWmdb:2000.01.08.18.12;SUNWmdbx:2000.01.08.18.12;SUNWpmr:2000.01.08.18.12;SUNWpmu:2000.01.08.18.12;SUNWpmux:2000.01.08.18.12;SUNWscpu:2000.01.08.18.12;SUNWsrh:2000.01.08.18.12;SUNWtnfc:2000.01.08.18.12;SUNWtnfcx:2000.01.08.18.12;109079-01 (or newer)|SunOS 5.8: kernel update patch -108529|15|Jun/04/02|R|S| | |8_x86|i386;i386.i86pc;108988-09;111112-03;111294-01;111307-03;111311-01;|SUNWarc:2000.01.08.18.17;SUNWcar:2000.01.08.18.17;SUNWcpc:2000.01.08.18.17;SUNWcsl:2000.01.08.18.17;SUNWcsr:2000.01.08.18.17;SUNWcstl:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWmdb:2000.01.08.18.17;SUNWos86r:2000.01.08.18.17;SUNWpmr:2000.01.08.18.17;SUNWpmu:2000.01.08.18.17;SUNWscpu:2000.01.08.18.17;SUNWsrh:2000.01.08.18.17;SUNWtnfc:2000.01.08.18.17;|SunOS 5.8_x86: kernel update patch +108528|27|Nov/25/03|R|S| | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;111111-03;111310-01;108987-09;|FJSVhea:1.0,REV=1999.12.23.19.10;FJSVmdb:11.8.0,REV=2001.04.19.14.13;FJSVmdbx:11.8.0,REV=2001.04.19.14.13;FJSVvplr:11.7.0,REV=1999.12.23.19.10;FJSVvplu:11.7.0,REV=1999.12.23.19.10;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcpc:11.8.0,REV=2000.01.08.18.12;SUNWcpc:11.8.0,REV=2000.01.13.13.40;SUNWcpcx:11.8.0,REV=2000.01.08.18.12;SUNWcpcx:11.8.0,REV=2000.01.13.13.40;SUNWcpr:11.8.0,REV=2000.01.08.18.12;SUNWcpr:11.8.0,REV=2000.01.13.13.40;SUNWcprx:11.8.0,REV=2000.01.08.18.12;SUNWcprx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWdrr:11.8.0,REV=2000.01.08.18.12;SUNWdrr:11.8.0,REV=2000.12.12.12.13;SUNWdrrx:11.8.0,REV=2000.01.08.18.12;SUNWdrrx:11.8.0,REV=2000.12.12.12.13;SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWidn:11.8.0,REV=2000.01.08.18.12;SUNWidnx:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWpmr:11.8.0,REV=2000.01.08.18.12;SUNWpmu:11.8.0,REV=2000.01.08.18.12;SUNWpmux:11.8.0,REV=2000.01.08.18.12;SUNWscpu:11.8.0,REV=2000.01.08.18.12;SUNWsrh:11.8.0,REV=2000.01.08.18.12;SUNWtnfc:11.8.0,REV=2000.01.08.18.12;SUNWtnfcx:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|SunOS 5.8: kernel update patch +108528|28|Dec/23/03|R|S| | B|8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108987-09;111111-03;111310-01;|FJSVhea:1.0,REV=1999.12.23.19.10;FJSVmdb:11.8.0,REV=2001.04.19.14.13;FJSVmdbx:11.8.0,REV=2001.04.19.14.13;FJSVpiclu:11.8.0,REV=2002.10.24.16.51;FJSVvplr:11.7.0,REV=1999.12.23.19.10;FJSVvplu:11.7.0,REV=1999.12.23.19.10;SUNWapchS:11.8.0,REV=2000.01.08.18.12;SUNWapchd:11.8.0,REV=2000.01.08.18.12;SUNWapchr:11.8.0,REV=2000.01.08.18.12;SUNWapchu:11.8.0,REV=2000.01.08.18.12;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcpc:11.8.0,REV=2000.01.08.18.12;SUNWcpc:11.8.0,REV=2000.01.13.13.40;SUNWcpcx:11.8.0,REV=2000.01.08.18.12;SUNWcpcx:11.8.0,REV=2000.01.13.13.40;SUNWcpr:11.8.0,REV=2000.01.08.18.12;SUNWcpr:11.8.0,REV=2000.01.13.13.40;SUNWcprx:11.8.0,REV=2000.01.08.18.12;SUNWcprx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWdrr:11.8.0,REV=2000.01.08.18.12;SUNWdrr:11.8.0,REV=2000.12.12.12.13;SUNWdrrx:11.8.0,REV=2000.01.08.18.12;SUNWdrrx:11.8.0,REV=2000.12.12.12.13;SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWfruid:11.8.0,REV=2001.01.19.01.02;SUNWfruip:11.8.0,REV=2001.01.19.01.02;SUNWfruix:11.8.0,REV=2001.01.19.01.02;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWidn:11.8.0,REV=2000.01.08.18.12;SUNWidnx:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWncar:11.8.0,REV=2000.01.08.18.12;SUNWncarx:11.8.0,REV=2000.01.08.18.12;SUNWncau:11.8.0,REV=2000.01.08.18.12;SUNWncaux:11.8.0,REV=2000.04.01.16.21;SUNWpiclh:11.8.0,REV=2000.07.05.13.22;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;SUNWpiclx:11.8.0,REV=2000.07.05.13.22;SUNWpmr:11.8.0,REV=2000.01.08.18.12;SUNWpmu:11.8.0,REV=2000.01.08.18.12;SUNWpmux:11.8.0,REV=2000.01.08.18.12;SUNWscpu:11.8.0,REV=2000.01.08.18.12;SUNWsrh:11.8.0,REV=2000.01.08.18.12;SUNWtnfc:11.8.0,REV=2000.01.08.18.12;SUNWtnfcx:11.8.0,REV=2000.01.08.18.12;SUNWusx:11.8.0,REV=2000.07.05.13.22;SUNWwrsdx:11.8.0,REV=2001.09.29.20.43;SUNWwrsmx:11.8.0,REV=2001.09.29.20.43;SUNWwrsux:11.8.0,REV=2001.09.29.20.43;109079-01 (or newer)|WITHDRAWN PATCH SunOS 5.8: kernel update patch +108529|27|Nov/25/03|R|S| | |8_x86|i386;i386.i86pc;108988-09;111112-03;111307-03;111311-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWcpc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWos86r:1.1.0,REV=2000.01.08.18.17;SUNWpmr:11.8.0,REV=2000.01.08.18.17;SUNWpmu:11.8.0,REV=2000.01.08.18.17;SUNWscpu:11.8.0,REV=2000.01.08.18.17;SUNWsrh:11.8.0,REV=2000.01.08.18.17;SUNWtnfc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: kernel update patch 108530|01|Jan/24/00|R|S| | |2.5|sparc;|SUNWast:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: ASET patch 108531|01|Jan/24/00|R|S| | |2.5_x86|i386;|SUNWast:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: ASET patch 108536|05|Nov/06/00| | | | |Unbundled|sparc;|SUNWsspdf:3.1.1,REV=99.06.14.19.40;SUNWsspop:3.1.1,REV=99.06.14.19.40;SUNWssppo:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: 4/8meg cache mixed on one board fails Sup new ecache sr @@ -4076,15 +4137,17 @@ 108545|01|Dec/21/99| | | | |Unbundled|sparc;|SUNWsspdf:3.2.0,REV=99.09.20.15.58;|SSP 3.2: The ICT test for PCI boards in SSP3.1.1 is broken 108551|03|Dec/15/00|R|S| | |7|sparc;|SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/rpc.nispasswdd patch 108552|03|Mar/26/01|R|S| | |7_x86|i386;|SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/rpc.nispasswdd patch -108553|09|Apr/06/01| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108834-02|BADPATCH RAID Manager 6.22: generic RM6.22 patch for Solaris 8 -108555|02|Mar/08/00| | |O| B|Unbundled|106513-04;||OBSOLETED by BADPATCH +108553|06|Dec/21/00| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108834-02|WITHDRAWN RAID Manager 6.22: generic RM6.22 patch for Solaris 8 +108553|07|Jan/17/01| | | | |Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108834-02|RAID Manager 6.22: generic RM6.22 patch for Solaris 8 +108553|09|Apr/06/01| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108834-02|WITHDRAWN RAID Manager 6.22: generic RM6.22 patch for Solaris 8 +108555|02|Mar/08/00| | |O| B|Unbundled|106513-04;||OBSOLETED by WITHDRAWN 108556|04|Jun/26/00| | |O| |Unbundled|sparc;|SUNWsbus2:5.5.1;|Obsoleted by: 108884-05 Solstice Backup 5.5.1: lus driver patch -108569|06|Sep/17/01| | | | |8|sparc;|SUNWxwpsr:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: platform support for new hardware +108569|08|Dec/12/02| | | | |8|sparc;|SUNWxwpsr:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: platform support for new hardware 108574|04|Jan/23/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/csh Patch 108575|04|Jan/23/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/csh patch -108576|31|Aug/06/02| | | | |8|sparc;sparc.sun4u;|SUNWifb:1999.12.07;SUNWifbcf:1999.12.07;SUNWifbr:1999.12.07;SUNWifbw:1999.12.07;SUNWifbx:1999.12.07;|SunOS 5.8: Expert3D IFB Graphics Patch +108576|45|Sep/02/03|R| | | |8|sparc;sparc.sun4u;|SUNWifb:8.0.0,REV=1999.12.07;SUNWifbcf:8.0.0,REV=1999.12.07;SUNWifbr:8.0.0,REV=1999.12.07;SUNWifbw:8.0.0,REV=1999.12.07;SUNWifbx:8.0.0,REV=1999.12.07;|SunOS 5.8: Expert3D IFB Graphics Patch 108577|01|Oct/27/00| | | | |Unbundled|sparc.sun4u;|SUNWtsalu:1.0,REV=1.1;|TS91 Alarm patch -108585|03|Jul/23/01| | | | |7|sparc;|SUNWllc:11.7.0,REV=1999.06.28.16.39;SUNWllcx:11.7.0,REV=1999.06.28.16.39;|SunOS 5.7: llc2 driver patch +108585|04|Apr/15/03| |S| | |7|sparc;106541-24;|SUNWllc:11.7.0,REV=1999.06.28.16.39;SUNWllcx:11.7.0,REV=1999.06.28.16.39;|SunOS 5.7: llc2 driver patch 108592|01|Jan/10/00| | |O| |7|sparc;|SUNWxwinc:3.7.2100,REV=0.98.08.05;|Obsoleted by: 108376-37 Openwindows 3.6.1: X Window Include Files 108593|02|Jun/09/00| | | | |Unbundled|sparc;|SUNWj2pi:10.1.2.2,REV=1999.10.14.17.53;SUNWj2pi:10.1.2.2,REV=1999.12.06.10.02;|Java Plugin 1.2: Product patch for Solaris 108596|02|Jun/09/00| | | | |Unbundled|i386;|SUNWj2pi:10.1.2.2,REV=1999.10.14.18.02;SUNWj2pi:10.1.2.2,REV=1999.12.06.10.17;|Java Plugin 1.2_x86: Product patch for Solaris @@ -4093,9 +4156,9 @@ 108599|01|Feb/11/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: add rpc.getpeerinfo version 2 to TS 2.5.1 108602|02|Apr/21/00| | |O| |Unbundled|108437-02;||Obsoleted by: 112069-01 Hardware, Tape: L3500, Libraries 108603|01|Jan/10/00| | |O| |7_x86|i386;|SUNWxwinc:3.7.2100,REV=0.98.08.05;|Obsoleted by: 108377-33 OpenWindows 3.6.1_x86: X Window Include Fi -108604|24|Feb/19/02| | | | |8|sparc;sparc.sun4u;108528-11;|SUNWafb:8.0.0,REV=1999.12.07;SUNWafbcf:8.0.0,REV=1999.12.07;SUNWafbw:8.0.0,REV=1999.12.07;SUNWafbx:8.0.0,REV=1999.12.07;|SunOS 5.8: Elite3D AFB Graphics Patch -108605|25|Apr/17/02| | | | |8|sparc;sparc.sun4u;108528-11;|SUNWffb:8.0.0,REV=1999.12.07;SUNWffbcf:8.0.0,REV=1999.12.07;SUNWffbw:8.0.0,REV=1999.12.07;SUNWffbx:8.0.0,REV=1999.12.07;|SunOS 5.8: Creator 8 FFB Graphics Patch -108606|26|Aug/06/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:1999.12.07;SUNWm64:1999.12.23.19.10;SUNWm64cf:1999.12.07;SUNWm64w:1999.12.07;SUNWm64x:1999.12.07;SUNWm64x:1999.12.23.19.10;|SunOS 5.8: M64 Graphics Patch +108604|34|Oct/28/03| | | | |8|sparc;sparc.sun4u;108528-11;|SUNWafb:8.0.0,REV=1999.12.07;SUNWafbcf:8.0.0,REV=1999.12.07;SUNWafbw:8.0.0,REV=1999.12.07;SUNWafbx:8.0.0,REV=1999.12.07;|SunOS 5.8: Elite3D AFB Graphics Patch +108605|36|Dec/15/03| | | | |8|sparc;sparc.sun4u;108528-11;|SUNWffb:8.0.0,REV=1999.12.07;SUNWffbcf:8.0.0,REV=1999.12.07;SUNWffbw:8.0.0,REV=1999.12.07;SUNWffbx:8.0.0,REV=1999.12.07;|SunOS 5.8: Creator 8 FFB Graphics Patch +108606|33|Oct/24/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:8.0.0,REV=1999.12.07;SUNWm64:8.0.0,REV=1999.12.23.19.10;SUNWm64cf:8.0.0,REV=1999.12.07;SUNWm64w:8.0.0,REV=1999.12.07;SUNWm64x:8.0.0,REV=1999.12.07;SUNWm64x:8.0.0,REV=1999.12.23.19.10;|SunOS 5.8: M64 Graphics Patch 108609|01|Mar/31/00| | | | |8|sparc;|SUNWdialh:8.0.0,REV=1999.12.07;|SunOS 5.8: Buttons/Dials Patch 108610|01|Feb/09/00| | | | |7|sparc;|SUNWdhcsu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/pntadm patch 108617|10|Jun/25/01| | | | |Unbundled|sparc;|STORtools:3.2;|Update StorTools 3.2 to Config Matrix 3.8 level @@ -4116,8 +4179,9 @@ 108649|01|Apr/23/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/rpc.bootparamd patch 108650|01|Apr/24/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/rpc.bootparamd patch 108651|01|Jan/05/00| | | |Y |Unbundled|sparc;|SPROf90:1.2;SPROmrf90:1.2;|Fortran 90 1.2: Patch for Fortran 90 1.2 -108652|56|Jul/29/02|R|S| | |8|sparc;|SUNWxwacx:0.1999.12.15;SUNWxwdxm:0.1999.12.15;SUNWxwfa:0.1999.12.15;SUNWxwfnt:0.1999.12.15;SUNWxwice:0.1999.12.15;SUNWxwicx:0.1999.12.15;SUNWxwinc:0.1999.12.15;SUNWxwman:0.1999.12.15;SUNWxwplt:0.1999.12.15;SUNWxwplx:0.1999.12.15;SUNWxwpmn:0.1999.12.15;SUNWxwslb:0.1999.12.15;|X11 6.4.1: Xsun patch -108653|46|Aug/01/02|R|S| | |8_x86|i386;|SUNWxwacx:0.1999.12.15;SUNWxwdxm:0.1999.12.15;SUNWxwfa:0.1999.12.15;SUNWxwfnt:0.1999.12.15;SUNWxwice:0.1999.12.15;SUNWxwinc:0.1999.12.15;SUNWxwman:0.1999.12.15;SUNWxwplt:0.1999.12.15;SUNWxwpmn:0.1999.12.15;SUNWxwslb:0.1999.12.15;|X11 6.4.1_x86: Xsun patch +108652|40|Oct/10/01|R|S|O| B|8|sparc;|SUNWxwdxm:6.4.1.3800,REV=0.1999.12.15;SUNWxwfnt:6.4.1.3800,REV=0.1999.12.15;SUNWxwice:6.4.1.3800,REV=0.1999.12.15;SUNWxwicx:6.4.1.3800,REV=0.1999.12.15;SUNWxwinc:6.4.1.3800,REV=0.1999.12.15;SUNWxwman:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;SUNWxwplx:6.4.1.3800,REV=0.1999.12.15;SUNWxwpmn:6.4.1.3800,REV=0.1999.12.15;SUNWxwslb:6.4.1.3800,REV=0.1999.12.15;|WITHDRAWN Obsoleted by: 108652-46 X11 6.4.1: Xsun patch +108652|76|Dec/11/03|R|S| | |8|sparc;|SUNWxwacx:6.4.1.3800,REV=0.1999.12.15;SUNWxwdxm:6.4.1.3800,REV=0.1999.12.15;SUNWxwfa:6.4.1.3800,REV=0.1999.12.15;SUNWxwfnt:6.4.1.3800,REV=0.1999.12.15;SUNWxwice:6.4.1.3800,REV=0.1999.12.15;SUNWxwicx:6.4.1.3800,REV=0.1999.12.15;SUNWxwinc:6.4.1.3800,REV=0.1999.12.15;SUNWxwman:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;SUNWxwplx:6.4.1.3800,REV=0.1999.12.15;SUNWxwpmn:6.4.1.3800,REV=0.1999.12.15;SUNWxwslb:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: Xsun patch +108653|65|Dec/04/03|R|S| | |8_x86|i386;|SUNWxwacx:6.4.1.3800,REV=0.1999.12.15;SUNWxwdxm:6.4.1.3800,REV=0.1999.12.15;SUNWxwfa:6.4.1.3800,REV=0.1999.12.15;SUNWxwfnt:6.4.1.3800,REV=0.1999.12.15;SUNWxwice:6.4.1.3800,REV=0.1999.12.15;SUNWxwinc:6.4.1.3800,REV=0.1999.12.15;SUNWxwman:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;SUNWxwpmn:6.4.1.3800,REV=0.1999.12.15;SUNWxwslb:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: Xsun patch 108654|02|Feb/04/00| | | | |2.6|sparc;|SUNWjwncx:1.0,REV=1.0.78;|SunOS 5.6 (JFP): 9th htt_server of Wnn/Htt process dumps core 108655|01|Feb/04/00| | | | |2.6_x86|i386;|SUNWjwncx:1.0,REV=1.0.78;|SunOS 5.6_x86 (JFP): 9th htt_server of Wnn/Htt process dumps core 108656|02|Mar/14/00|R|S| | |2.5|sparc;|SUNWadmfw:6.5,REV=95.10.26.23.04;|SunOS 5.5: Patch for sadmind @@ -4131,8 +4195,8 @@ 108664|07|Feb/15/01| | |O| |8|sparc.sun4u;|SMEvplr:3.2,REV=1999.10.19.10.29;SMEvplu:3.4,REV=1999.10.19.10.29;|Obsoleted by: 112137-01 SunOS 5.8: Support for Network Service Pro 108665|01|Feb/16/00| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWatfsr:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: /kernel/fs/autofs patch 108667|03|Feb/09/00| | | |Y |2.6|sparc;|SUNWdtezt:1.3,REV=10.98.05.14;|CDE 1.2: perfmeter is not Y2K compliant in SunOS 5.6 Supplement -108669|06|Jun/28/02| | | | |Unbundled|sparc;|SUNWx25a:9.2;SUNWx25ax:9.2;SUNWx25b:9.2;SUNWx25bx:9.2;|Solstice X.25 9.2 patch -108670|06|Jun/27/02| | | | |Unbundled|i386;|SUNWexpx:1.1;SUNWx25a:9.2;SUNWx25b:9.2;|Solstice X.25 9.2 patch_x86 +108669|11|Dec/09/03| |S| | |Unbundled|sparc;|SUNWx25a:9.2;SUNWx25ax:9.2;SUNWx25b:9.2;SUNWx25bx:9.2;|Solstice X.25 9.2 patch +108670|11|Dec/16/03| |S| | |Unbundled|i386;|SUNWexpx:1.1;SUNWx25a:9.2;SUNWx25b:9.2;|Solstice X.25 9.2 patch_x86 108671|03|Jul/11/00| | | |Y |2.6|sparc;|SUNWoldcv:3.5.47,REV=0.97.06.23;SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: Calendar Manager patch 108672|03|Jul/11/00| | | |Y |2.6_x86|i386;|SUNWoldcv:3.5.47,REV=0.97.06.23;SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: Calendar Manager patch 108673|02|Aug/07/00| | | | |Unbundled|||Hardware/PROM: Netra t1 System PROM Update @@ -4144,31 +4208,33 @@ 108684|01|Mar/01/00| | | | |7_x86|i386;|SUNWpppk:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/strmod/ppp patch 108691|01|Mar/27/00| | | | |Unbundled|sparc;|SUNWlsf:3.2.3;|HPC 3.0: LSF daemons and libs updates and fixes 108692|01|Mar/27/00| | | | |Unbundled|sparc;108691-01;|SUNWlsf:3.2.3;|HPC 3.0: LSF user and examples updates and fixes -108693|12|Jul/18/02| | | | |Unbundled|sparc;|..:1999.11.04.18.29;../..:1999.11.04.18.29;../..:1999.12.03.10.00;|Solstice DiskSuite 4.2.1: Product patch -108694|11|Jul/22/02| | | | |Unbundled|i386;|..:1999.11.04.18.43;../..:1999.11.04.18.43;../..:1999.12.03.10.14;|Solstice DiskSuite 4.2.1_x86: Product patch +108693|08|Nov/07/01| | | | B|Unbundled|sparc;|SUNWmdg:4.2.1,REV=1999.11.04.18.29;SUNWmdnu:4.2.1,REV=1999.11.04.18.29;SUNWmdr:4.2.1,REV=1999.12.03.10.00;SUNWmdu:4.2.1,REV=1999.11.04.18.29;SUNWmdx:4.2.1,REV=1999.11.04.18.29;|WITHDRAWN Solstice DiskSuite 4.2.1: Product patch +108693|19|Nov/04/03| | | | |Unbundled|sparc;|SUNWmdg:4.2.1,REV=1999.11.04.18.29;SUNWmdnu:4.2.1,REV=1999.11.04.18.29;SUNWmdr:4.2.1,REV=1999.12.03.10.00;SUNWmdu:4.2.1,REV=1999.11.04.18.29;SUNWmdx:4.2.1,REV=1999.11.04.18.29;|Solstice DiskSuite 4.2.1: Product patch +108694|17|Nov/04/03| | | | |Unbundled|i386;|SUNWmdg:4.2.1,REV=1999.11.04.18.43;SUNWmdnu:4.2.1,REV=1999.11.04.18.43;SUNWmdr:4.2.1,REV=1999.12.03.10.14;SUNWmdu:4.2.1,REV=1999.11.04.18.43;|Solstice DiskSuite 4.2.1_x86: Product patch 108699|01|Apr/07/00| | | | |2.6|sparc;|SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6: Install libraries patch 108700|02|Apr/07/00| | | | |2.6_x86|i386;|SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: Install libraries patch -108701|10|Jan/28/02| | | | |Unbundled|sparc;|SUNWpfd:3.0,REV=1999.09.15;SUNWpfh:3.0,REV=1999.09.15;SUNWpfm:3.0,REV=1999.09.15;SUNWpfu:3.0,REV=1999.09.15;|SunFDDI/P 3.0: DR panic, memory leak, truncated packets -108702|09|Jun/25/02| | | | |Unbundled|sparc;|SUNWnfd:1999.12.21;SUNWnfh:1999.12.21;SUNWnfu:1999.12.21;|SunFDDI SBus 7.0: enhancements, AP 2.4 support +108701|01|Mar/13/00| | |O| |Unbundled|||OBSOLETED by 108701 +108701|11|Dec/23/02| | | | |Unbundled|sparc;|SUNWpfd:3.0,REV=1999.09.15;SUNWpfh:3.0,REV=1999.09.15;SUNWpfm:3.0,REV=1999.09.15;SUNWpfu:3.0,REV=1999.09.15;|SunFDDI/P 3.0: DR panic, memory leak, truncated packets +108702|10|May/12/03| | | | |Unbundled|sparc;|SUNWnfd:7.0,REV=1999.12.21;SUNWnfh:7.0,REV=1999.12.21;SUNWnfu:7.0,REV=1999.12.21;|SunFDDI SBus 7.0: enhancements, AP 2.4 support 108703|01|Feb/04/00| | | | |Unbundled|sparc;|SUNWcpppk:1.0.0;|SunISDN 1.0.4: Patch for Common PPP Kernel Device Drivers 108709|01|Feb/17/00| | | | |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: E10K heartbeat failures do not provide info to diagnose 108710|01|Feb/16/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: E10K heartbeat failures do not provide info to diagnose 108711|04|Oct/25/00| | | | |8|sparc;|SUNWseudt:1.0,REV=1999.12.21.13.12;SUNWseuos:1.0,REV=1999.12.16.18.57;SUNWseuow:1.0,REV=1999.12.16.18.52;SUNWseuox:1.0,REV=1999.12.16.17.36;|SunOS 5.8: Missing Catalan Locale Support 108712|01|Apr/07/00| | | | |8|sparc;108835;|SUNWeeudt:1.0,REV=1999.12.20.13.15;|CDE 1.4: Cannot print extended characters from dtcm in Partial loc 108713|01|Apr/07/00| | | | |8_x86|i386;108836;|SUNWeeudt:1.0,REV=1999.12.20.13.27;|SunOS 5.8_x86: Cannot print extended characters in Partial locales -108714|07|Jul/10/02| | | | |8|sparc;|SUNWdtbas:10.1999.12.02;SUNWdtbax:10.1999.12.01;|CDE 1.4: libDtWidget patch -108715|07|Jul/10/02| | | | |8_x86|i386;|SUNWdtbas:10.1999.12.02;|CDE 1.4_x86: libDtWidget patch +108714|08|Feb/06/03| | | | |8|sparc;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtbax:1.4,REV=10.1999.12.01;|CDE 1.4: libDtWidget patch +108715|08|Feb/06/03| | | | |8_x86|i386;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: libDtWidget patch 108718|01|Feb/11/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: libbsm patch 108719|05|Mar/26/01| | | | |Unbundled|sparc;|SUNWapdv:2.3.0,REV=1999.12.01.19.10;|AP 2.3: BAD TRAP panic with mether_rarp with AP network switching 108720|02|Mar/26/01| | | | |Unbundled|sparc;|SUNWapdv:2.3.0,REV=1999.12.01.19.10;SUNWapr:2.3.0,REV=1999.12.01.19.10;SUNWapu:2.3.0,REV=1999.12.01.19.10;|AP 2.3: Reboot after removing network drivers - AP databs not upda -108721|04|Dec/04/01|R|S| | |7|sparc;|SUNWadmap:11.7,REV=1998.09.10.20.16;|SunOS 5.7: admintool patch -108722|04|Jan/17/02|R|S| | |7_x86|i386;|SUNWadmap:11.7,REV=1998.09.10.20.17;|SunOS 5.7_x86: admintool patch +108721|05|Feb/18/03|R|S| | |7|sparc;|SUNWadmap:11.7,REV=1998.09.10.20.16;|SunOS 5.7: admintool patch +108722|05|Feb/18/03|R|S| | |7_x86|i386;|SUNWadmap:11.7,REV=1998.09.10.20.17;|SunOS 5.7_x86: admintool patch 108723|01|Jul/11/00| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/lofs and /kernel/fs/sparcv9/lofs patch 108724|01|Jul/11/00| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/lofs patch -108725|09|Apr/05/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-11;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: st driver patch -108726|07|Feb/19/02|R| | | |8_x86|i386;108529-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: st driver patch -108727|16|Jun/28/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-01;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: /kernel/fs/nfs and /kernel/fs/sparcv9/nfs patch -108728|15|May/10/02|R| | | |8_x86|i386;108529-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/nfs patch +108725|14|Sep/30/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-11;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: st driver patch +108726|14|Sep/30/03|R| | | |8_x86|i386;108529-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: st driver patch +108727|26|Dec/02/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-01;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/nfs and /kernel/fs/sparcv9/nfs patch +108728|26|Dec/02/03|R| | | |8_x86|i386;108529-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/nfs patch 108729|01|Feb/18/00|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/bin/login patch 108730|01|Feb/18/00|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/login patch 108734|02|Oct/25/00| | | | |8|sparc;|SUNWceudt:1.0,REV=1999.12.21.13.12;SUNWceuos:1.0,REV=1999.12.13.13.25;SUNWceuow:1.0,REV=1999.11.02.17.15;SUNWceuox:1.0,REV=1999.11.24.13.29;|SunOS 5.8: Polish UTF-8 Support Solaris 8 @@ -4190,14 +4256,14 @@ 108750|02|Jun/19/01|R|S| | |7|sparc;|SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/netsvc/yp/ypbind patch 108751|02|Jun/19/01|R|S| | |7_x86|i386;|SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/netsvc/yp/ypbind patch 108752|01|Dec/15/00| |S|O| |7|sparc;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-14 SunOS 5.7: /usr/lib/netsvc/yp/ypserv patch -108754|01|Dec/19/00|R|S| | |7|sparc;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/netsvc/yp/ypxfrd patch -108755|01|Mar/26/01|R|S| | |7_x86|i386;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/netsvc/yp/ypxfrd patch +108754|02|Nov/08/02|R|S|O| |7|sparc;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-24 SunOS 5.7: /usr/lib/netsvc/yp/ypxfrd patch +108755|02|Nov/08/02|R|S|O| |7_x86|i386;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 106542-24 SunOS 5.7_x86: /usr/lib/netsvc/yp/ypxfrd p 108756|01|Dec/19/00|R|S| | |7|sparc;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/netsvc/yp/rpc.ypupdated patch 108757|01|Mar/26/01|R|S| | |7_x86|i386;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/netsvc/yp/rpc.ypupdated patch 108758|01|Dec/19/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/keyserv patch 108759|01|Mar/26/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/keyserv patch -108760|01|Dec/19/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/rpcbind patch -108761|01|Mar/26/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/rpcbind patch +108760|02|Sep/18/02|R|S| | |7|sparc;106942-23;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/rpcbind patch +108761|02|Sep/18/02|R|S| | |7_x86|i386;106943-23;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/rpcbind patch 108762|01|Dec/19/00|R|S| | |7|sparc;|SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/rpc.nisd_resolv patch 108763|01|Mar/26/01|R|S| | |7_x86|i386;|SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/rpc.nisd_resolv patch 108764|01|Dec/19/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/rpc.bootparamd patch @@ -4205,87 +4271,91 @@ 108769|02|May/05/00|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: telnet environment has extra NULL field between HZ & TZ 108770|02|May/05/00|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: telnet env has extra NULL field between HZ & TZ var 108771|02|May/30/00|R|S| | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: Telnet environment has extra NULL field between HZ & TZ -108773|15|Jul/24/02| |S| | |8|sparc;|SUNWiiimr:1.0.38.1;SUNWiiimu:1.0.38.1;SUNWxi18n:1.0.38.2;SUNWxi18x:1.0.38.1;SUNWxim:1.0.38.1;SUNWximx:1.0.38.1;|SunOS 5.8: IIIM and X Input & Output Method patch -108774|15|Jul/26/02| |S| | |8_x86|i386;|SUNWiiimr:1.0.38.1;SUNWiiimu:1.0.38.1;SUNWxi18n:1.0.38.2;SUNWxim:1.0.38.1;|SunOS 5.8_x86: IIIM and X Input & Output Method patch +108773|18|Apr/22/03|R|S| | |8|sparc;|JSatsvw:1.0,REV=1999.12.08.12.17;SUNWiiimr:1.0,REV=1.0.38.1;SUNWiiimu:1.0,REV=1.0.38.1;SUNWxi18n:4.0,REV=1.0.38.2;SUNWxi18x:4.0,REV=1.0.38.1;SUNWxim:4.0,REV=1.0.38.1;SUNWximx:4.0,REV=1.0.38.1;|SunOS 5.8: IIIM and X Input & Output Method patch +108774|18|Apr/22/03|R|S| | |8_x86|i386;|JSatsvw:1.0,REV=1999.12.08.12.17;SUNWiiimr:1.0,REV=1.0.38.1;SUNWiiimu:1.0,REV=1.0.38.1;SUNWxi18n:4.0,REV=1.0.38.2;SUNWxim:4.0,REV=1.0.38.1;|SunOS 5.8_x86: IIIM and X Input & Output Method patch 108775|01|Jan/26/00| | | | |Unbundled|sparc.sun4u;108145-10;|SUNWcmsdf:5.6,REV=1999.01.28.13.32;|Netra ft1800 7.6: CMSdef patch 108777|01|Apr/05/00| | |O| |Unbundled|||OBSOLETED by 108261 108779|01|Mar/08/00| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: cadp: Update of Ultra2 SCSI driver for Adaptec card 108781|02|Oct/29/01| | | | |8|sparc;|SUNWhudc:8.0,REV=1999.12.21.10.10;SUNWhxplt:8.0,REV=1999.12.07.14.53;|SunOS 5.8: Get UDCTool to work for zh_TW 108782|01|Jul/11/00| | | | |8_x86|i386;|SUNWhudc:8.0,REV=1999.12.21.10.09;SUNWhxplt:8.0,REV=1999.12.07.14.28;|SunOS 5.8_x86: Get UDCTool to work for zh_TW locale -108787|18|May/13/02| | | | |7|sparc;sparc.sun4u;|SUNWifb:2.7.0,REV=1999.12.19;SUNWifbcf:2.7.0,REV=1999.12.19;SUNWifbmn:2.7.0,REV=1999.12.19;SUNWifbr:2.7.0,REV=1999.12.19;SUNWifbw:2.7.0,REV=1999.12.19;SUNWifbx:2.7.0,REV=1999.12.19;|SunOS 5.7: Expert3D IFB Graphics Patch -108788|19|Jul/16/02| | | | |2.6|sparc;sparc.sun4u;|SUNWifb:1999.12.19;SUNWifbcf:1999.12.19;SUNWifbmn:1999.12.19;SUNWifbr:1999.12.19;SUNWifbw:1999.12.19;|SunOS 5.6: Expert3D IFB Graphics Patch +108787|24|Jul/09/03| | | | |7|sparc;sparc.sun4u;|SUNWifb:2.7.0,REV=1999.12.19;SUNWifbcf:2.7.0,REV=1999.12.19;SUNWifbmn:2.7.0,REV=1999.12.19;SUNWifbr:2.7.0,REV=1999.12.19;SUNWifbw:2.7.0,REV=1999.12.19;SUNWifbx:2.7.0,REV=1999.12.19;|SunOS 5.7: Expert3D IFB Graphics Patch +108788|24|Aug/25/03| | | | |2.6|sparc;sparc.sun4u;|SUNWifb:2.6.0,REV=1999.12.19;SUNWifbcf:2.6.0,REV=1999.12.19;SUNWifbmn:2.6.0,REV=1999.12.19;SUNWifbr:2.6.0,REV=1999.12.19;SUNWifbw:2.6.0,REV=1999.12.19;|SunOS 5.6: Expert3D IFB Graphics Patch 108789|03|Jun/27/01| | | | |Unbundled|sparc;|SUNWhip:1.1,REV=1999.11.08;|SunHIPPI/P 1.1: hippi driver patch -108790|03|Jun/21/01| | | | |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Cultural settings update for European locales -108794|02|Apr/11/00| | | | |2.6|sparc;105181-20;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: TPI messages get flushed -108795|02|Apr/12/00| | | | |2.6_x86|i386;105182-20;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: TPI messages get flushed -108796|02|Mar/05/02|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/sched/TS patch -108797|02|Feb/27/02|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/sched/TS patch +108790|03|Jun/21/01| | |O| |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Cultural settings update for Eu +108794|02|Apr/11/00| | |O| |2.6|sparc;105181-20;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-33 SunOS 5.6: TPI messages get flushed +108795|02|Apr/12/00| | |O| |2.6_x86|i386;105182-20;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-33 SunOS 5.6_x86: TPI messages get flushed +108796|02|Mar/05/02|R| |O| |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-33 SunOS 5.6: /kernel/sched/TS patch +108797|02|Feb/27/02|R| |O| |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-33 SunOS 5.6_x86: /kernel/sched/TS patch 108798|02|Jun/28/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/tip patch 108799|02|Jun/27/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/tip patch -108800|01|Mar/03/00| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/fs/cachefs/cfsadmin patch +108800|03|Jul/31/03|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/fs/cachefs patch +108801|03|Aug/13/03|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/fs/cachefs patch 108802|02|Jun/19/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/tip patch 108803|02|Jun/19/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/tip patch 108804|02|Jun/19/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/tip patch 108805|02|Jun/19/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/tip patch -108806|12|Jul/11/02|R| | | |8|sparc;|SUNWqfed:5.8.1999.12.07;SUNWqfedu:5.8.1999.12.07;SUNWqfedx:5.8.1999.12.07;|SunOS 5.8: Sun Quad FastEthernet qfe driver -108808|42|Feb/19/02| | | | |8|sparc;|SUNWman:41.0,REV=31;|SunOS 5.8: Manual Page updates for Solaris 8 -108809|42|Feb/19/02| | | | |8_x86|i386;|SUNWman:41.0,REV=31;|SunOS 5.8_x86: Manual Page updates for Solaris 8 +108806|17|Aug/12/03|R| | | |8|sparc;|SUNWqfed:5.0,REV=5.8.1999.12.07;SUNWqfedu:5.0,REV=5.8.1999.12.07;SUNWqfedx:5.0,REV=5.8.1999.12.07;|SunOS 5.8: Sun Quad FastEthernet qfe driver +108808|43|Mar/27/03| | | | |8|sparc;|SUNWman:41.0,REV=31;|SunOS 5.8: Manual Page updates for Solaris 8 +108809|43|Mar/27/03| | | | |8_x86|i386;|SUNWman:41.0,REV=31;|SunOS 5.8_x86: Manual Page updates for Solaris 8 108810|01|Mar/28/00| | |O| |8|sparc;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109318-05 SunOS 5.8: DirUmountRecurse unmounts incor 108811|01|Mar/28/00| | |O| |8_x86|i386;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109319-05 SunOS 5.8_x86: DirUmountRecurse unmounts i 108812|01|Jun/14/00| | | | |2.6|sparc;|SUNWolimt:3.5.47,REV=0.97.06.23;|OpenWindows 3.6: imagetool patch -108813|09|Mar/19/02| | | | |8|sparc;|SUNWged:3.0,REV=5.8.1999.11.16;|SunOS 5.8: Sun Gigabit Ethernet 3.0 +108813|16|Dec/01/03| | | | |8|sparc;|SUNWged:3.0,REV=5.8.1999.11.16;SUNWgedu:3.0,REV=5.8.1999.11.16;|SunOS 5.8: Sun Gigabit Ethernet 3.0 108814|01|Jun/14/00| | | | |2.6_x86|i386;|SUNWolimt:3.5.47,REV=0.97.06.23;|OpenWindows 3.6_x86: imagetool patch 108815|02|Jul/11/00|R| | |Y |7|sparc;|SUNWoldcv:3.6.1,REV=1.98.08.13;SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1: Calendar Manager patch 108816|02|Jul/11/00| | | |Y |7_x86|i386;|SUNWoldcv:3.6.1,REV=1.98.08.13;SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1_x86: Calendar Manager patch 108819|01|Feb/11/00| | | |Y |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Runacct can't update /var/adm/acct/sum/logi -108820|01|Mar/16/00| | | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: nss_compat.so.1 patch -108821|01|Mar/16/00| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nss_compat.so.1 patch +108820|02|Oct/28/03| | | | |8|sparc;108993-27;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: nss_compat.so.1 patch +108821|02|Oct/28/03| | | | |8_x86|i386;108994-27;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nss_compat.so.1 patch 108822|02|May/15/01| | |O| |8_x86|i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 111307-02 SunOS 5.8_x86: /boot/solaris/boot.bin patc 108823|01|Jul/11/00| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: compress/uncompress/zcat patch 108824|01|Jul/11/00| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: compress/uncompress/zcat patch -108825|01|Jul/11/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/cachefs/cfsadmin patch -108826|01|Jul/11/00| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/cachefs/cfsadmin patch -108827|26|Jul/17/02|R|S| | |8|sparc;108989-01;108528-13;|SUNWarc:2000.01.08.18.12;SUNWarcx:2000.01.08.18.12;SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;SUNWdpl:2000.01.08.18.12;SUNWdplx:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;109079-01 (or newer)|SunOS 5.8: /usr/lib/libthread.so.1 patch -108828|22|May/09/02|R|S| | |8_x86|i386;108529-13;108990-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWdpl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libthread.so.1 patch +108825|01|Jul/11/00| | |O| |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 110896-02 SunOS 5.8: /usr/lib/fs/cachefs/cfsadmin pa +108826|01|Jul/11/00| | |O| |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 110897-02 SunOS 5.8_x86: /usr/lib/fs/cachefs/cfsadmi +108827|40|Feb/07/03|R|S|O| |8|sparc;108528-13;108989-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWdpl:11.8.0,REV=2000.01.08.18.12;SUNWdplx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|Obsoleted by: 108993-18 SunOS 5.8: /usr/lib/libthread.so.1 patch +108828|40|Feb/07/03|R|S|O| |8_x86|i386;108529-13;108990-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWdpl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86: /usr/lib/libthread.so.1 pat 108831|01|Jun/14/00| | | | |7|sparc;|SUNWolimt:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1: imagetool patch 108832|01|Jun/14/00| | | | |7_x86|i386;|SUNWolimt:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1_x86: imagetool patch 108833|05|Apr/30/01| | |O| |8|sparc.sun4u;|SUNWkmp2r:4.4,REV=1999.11.10.12.39;SUNWkmp2x:4.4,REV=1999.11.10.12.39;|Obsoleted by: 111498-04 SunOS 5.8: kdmouse and kb_ps2 driver patch -108834|09|Apr/06/01| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108553-01|BADPATCH RAID Manager 6.22: generic RM6.22 pre Solaris 8 patch -108835|03|Apr/04/02| |S| | |8|sparc;|SUNWdtdmn:1.4,REV=10.1999.12.02;SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4: dtcm patch -108836|03|Apr/04/02| |S| | |8|i386;|SUNWdtdmn:1.4,REV=10.1999.12.02;SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtcm patch +108834|06|Dec/21/00| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108553-01|WITHDRAWN RAID Manager 6.22: generic RM6.22 pre Solaris 8 patch +108834|07|Jan/17/01| | | | |Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108553-01|RAID Manager 6.22: generic RM6.22 pre Solaris 8 patch +108834|09|Apr/06/01| | | | B|Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;SUNWosamn:6.22,REV=01.14;SUNWosar:6.22,REV=01.14;SUNWosau:6.22,REV=01.14;108553-01|WITHDRAWN RAID Manager 6.22: generic RM6.22 pre Solaris 8 patch +108835|04|Feb/06/03|R|S| | |8|sparc;108827-30;108993-18;|SUNWdtdmn:1.4,REV=10.1999.12.02;SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4: dtcm patch +108836|04|Feb/06/03| |S| | |8|i386;108828-31;110512-05;108994-18;|SUNWdtdmn:1.4,REV=10.1999.12.02;SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtcm patch 108837|01|Feb/22/00| | | | |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: boot net fails after changing spare ssp to main 108838|03|Nov/13/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: allocate/mkdevmaps/mkdevalloc Patch 108839|03|Nov/13/01| |S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: allocate/mkdevmaps/mkdevalloc Patch 108868|01|Apr/14/00| | | | |2.6_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: cadp patch -108869|18|Jun/25/02|R|S| | |8|sparc;|SUNWmibii:2000.01.08.18.12;SUNWsacom:2000.01.08.18.12;SUNWsadmi:2000.01.08.18.12;SUNWsadmx:2000.01.08.18.12;SUNWsasnm:2000.01.08.18.12;SUNWsasnx:2000.01.08.18.12;|SunOS 5.8: snmpdx/mibiisa/libssasnmp/snmplib patch -108870|18|Jul/09/02|R|S| | |8_x86|i386;|SUNWmibii:2000.01.08.18.17;SUNWsacom:2000.01.08.18.17;SUNWsadmi:2000.01.08.18.17;SUNWsasnm:2000.01.08.18.17;|SunOS 5.8_x86: snmpdx/mibiisa/libssasnmp/snmplib patch +108869|22|Aug/19/03|R|S| | |8|sparc;|SUNWmibii:11.8.0,REV=2000.01.08.18.12;SUNWsacom:11.8.0,REV=2000.01.08.18.12;SUNWsadmi:11.8.0,REV=2000.01.08.18.12;SUNWsadmx:11.8.0,REV=2000.01.08.18.12;SUNWsasnm:11.8.0,REV=2000.01.08.18.12;SUNWsasnx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: snmpdx/mibiisa/libssasnmp/snmplib patch +108870|19|Mar/11/03|R|S| | |8_x86|i386;|SUNWmibii:11.8.0,REV=2000.01.08.18.17;SUNWsacom:11.8.0,REV=2000.01.08.18.17;SUNWsadmi:11.8.0,REV=2000.01.08.18.17;SUNWsasnm:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: snmpdx/mibiisa/libssasnmp/snmplib patch 108873|03|Jun/01/00| | | | |Unbundled|||Hardware, 9/4GB Disks: Download program and M2949ESP/M2954ESP 2853 108874|01|Mar/16/00| | |O| |8|sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|Obsoleted by: 108528-04 SunOS 5.8: fhc driver patch -108875|12|Apr/10/02|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: c2audit patch -108876|12|Apr/10/02|R|S| | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: c2audit patch -108879|10|Aug/06/02| |S| | |Unbundled|all;sparc;108875-09;|SUNWseamj:2000.01.06.11.30.21;SUNWseams:2000.01.06.11.30.21;109413-07 (or newer)|Solstice AdminSuite 3.0.1: Auditing compat mode passwd autohome fi -108881|10|Aug/06/02| |S| | |Unbundled|all;i386;108876-08;|SUNWseamj:2000.01.06.11.30.21;SUNWseams:2000.01.06.11.30.21;109414-07 (or newer)|Solstice AdminSuite 3.0.1_x86: Auditing compat mode passwd autohom +108875|13|Jan/02/03|R|S|O| |8|sparc;sparc.sun4u;sparc.sun4us;109007-08;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109007-11 SunOS 5.8: c2audit patch +108876|13|Jan/27/03|R|S|O| |8_x86|i386;109008-08;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109008-10 SunOS 5.8_x86: c2audit patch +108879|11|May/08/03| |S| | |Unbundled|all;sparc;109007-11;|SUNWseamj:3.0,REV=2000.01.06.11.30.21;SUNWseams:3.0,REV=2000.01.06.11.30.21;109413-07 (or newer)|Solstice AdminSuite 3.0.1: Auditing compat mode passwd autohome fi +108881|11|May/08/03| |S| | |Unbundled|all;i386;109008-11;|SUNWseamj:3.0,REV=2000.01.06.11.30.21;SUNWseams:3.0,REV=2000.01.06.11.30.21;109414-07 (or newer)|Solstice AdminSuite 3.0.1_x86: Auditing compat mode passwd autohom 108882|01|Mar/15/00| | | | |Unbundled|sparc;|SUNWencc:2.0,REV=2000.01.27.11.45;SUNWencm:2.0,REV=2000.01.27.11.45;SUNWencu:2.0,REV=2000.01.27.11.45;|Sun StorEdge Component Manager 2.0: Enclosure Manager Patch 108883|03|Apr/05/01| | |O| |8_x86|i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-10 SunOS 5.8_x86: mmu32/mmu36 patch 108884|07|Apr/18/02| | | | |Unbundled|sparc;|SUNWsbuc:5.5.1;SUNWsbum:5.5.1;SUNWsbun:5.5.1;SUNWsbus1:5.5.1;SUNWsbus2:5.5.1;|Solstice Backup Maintenance Release 5.5.1: Product Patch -108885|09|Jul/30/01| | | | |Unbundled|sparc;|SUNWsspdf:3.3.0,REV=2000.01.31.13.02;SUNWsspop:3.3.0,REV=2000.01.31.13.02;SUNWssppo:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Modify POST/SSP to support CIC2 asic and new ecache SRAM +108885|03|Sep/05/00| | |O| B|Unbundled|||Obsoleted by: 108885-05 OBSOLETED by WITHDRAWN +108885|11|Dec/17/02| | | | |Unbundled|sparc;|SUNWsspdf:3.3.0,REV=2000.01.31.13.02;SUNWsspop:3.3.0,REV=2000.01.31.13.02;SUNWssppo:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Modify POST/SSP to support CIC2 asic and new ecache SRAM 108888|01|Mar/16/00| | | | |Unbundled|sparc;|SUNWdaert:1.3.1,REV=12.06.1999;|Sun StorEdge Component Manager 2.0: SunDAE 1.3.1 Patch 108889|01|Mar/16/00| | | | |Unbundled|||SunDAE 1.3.1 NT Patch -108890|01|Apr/14/00|R|S| | |2.6|sparc;|SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/lib/netsvc/yp/ypxfrd -108891|01|Aug/21/00|R|S| | |2.6_x86|i386;|SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/lib/netsvc/yp/ypxfrd +108890|02|Nov/08/02|R|S| | |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ypxfrd, ypbind, and ypserv patch +108891|02|Nov/08/02|R|S| | |2.6_x86|i386;|SUNWnisu:11.6.0,REV=1997.07.16.00.21;SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ypxfrd, ypbind, and ypserv patch 108893|01|Apr/14/00|R|S| | |2.6|sparc;|SUNWypu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/lib/netsvc/yp/rpc.ypupdated 108894|01|Aug/21/00|R|S| | |2.6_x86|i386;|SUNWypu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/lib/netsvc/yp/rpc.ypupdated 108895|01|Apr/14/00|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/sbin/rpc.bootparamd 108896|01|Aug/21/00|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/sbin/rpc.bootparamd 108897|01|Apr/26/00| | | | |8|sparc;|SUNWxwpmn:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1 Xprint patch 108898|01|Apr/26/00| | | | |8_x86|i386;|SUNWxwpmn:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: Xprint patch -108899|01|Mar/28/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/ftp patch -108900|01|Jul/11/00| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/ftp patch -108901|05|Jun/12/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;|SunOS 5.8: /kernel/sys/rpcmod and /kernel/strmod/rpcmod patch -108902|04|Nov/12/01|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/sys/rpcmod and /kernel/strmod/rpcmod patch +108899|04|Feb/18/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/ftp patch +108900|04|Feb/18/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/ftp patch +108901|08|Jun/03/03|R|S|O| |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-24 SunOS 5.8: /kernel/sys/rpcmod and /kernel/ +108902|05|Sep/05/02|R|S|O| |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-24 SunOS 5.8_x86: /kernel/sys/rpcmod and /ker 108907|02|May/11/00| | | | |Unbundled|||Hardware, 4GB Disks: Download program and ST34371W 3162 firmware 108908|02|Sep/01/00| | | | |2.6|sparc;|SUNWsprot:5.6,REV=97.05.02;|SunOS 5.6: Patch for assembler -108909|12|Nov/08/01| |S| | |8|sparc;109887-09;|SUNWscgui:1.4,REV=10.1999.12.02;|CDE 1.4: Smart Card Administration GUI patch +108909|13|Feb/26/03|R|S| | |8|sparc;109887-15;|SUNWscgui:1.4,REV=10.1999.12.02;|CDE 1.4: Smart Card Administration GUI patch 108910|02|Jun/19/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/bin/tip patch 108911|02|Jun/19/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/tip patch 108912|01|Mar/14/00| | | | |7|sparc;|SUNWdhcsu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/inet/in.dhcpd patch @@ -4294,23 +4364,30 @@ 108916|01|Mar/07/00| | |O| |Unbundled|||OBSOLETED by 109780 108917|03|Dec/17/01| | | | |Unbundled|||Hardware, DLT7000 drive, Tape Libraries/Autoloader 108918|02|Aug/02/00| | | | |Unbundled|||Hardware, Tape: L280 autoloader / Libraries -108919|15|Jun/12/02|R| | | |8|sparc;108652-19;|SUNWdtbas:10.1999.12.02;SUNWdtdte:10.1999.12.07;|CDE 1.4: dtlogin patch -108920|15|Jun/12/02|R| | | |8_x86|i386;108653-18;|SUNWdtbas:10.1999.12.02;SUNWdtdte:10.1999.12.07;|CDE 1.4_x86: dtlogin patch -108921|15|Jul/15/02| | | | |8|sparc;108652-19;|SUNWdtwm:10.1999.12.02;|CDE 1.4: dtwm patch -108922|15|Jul/15/02| | | | |8_x86|i386;108653-18;|SUNWdtwm:10.1999.12.02;|CDE 1.4_x86: dtwm patch +108919|11|Sep/17/01| | | | B|8|sparc;108652-19;108652-19;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN CDE 1.4: dtlogin patch +108919|12|Oct/03/01| | | | B|8|sparc;108652-19;108652-19;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN CDE 1.4: dtlogin patch +108919|13|Nov/26/01| | | | B|8|sparc;108652-19;108652-19;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN CDE 1.4: dtlogin patch +108919|20|Sep/22/03|R| | | |8|sparc;108652-19;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|CDE 1.4: dtlogin patch +108920|11|Sep/17/01| | |O| B|8_x86|i386;108653-18;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN Obsoleted by: 108920-12 CDE 1.4_x86: dtlogin patch +108920|12|Oct/03/01| | |O| B|8_x86|i386;108653-18;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN Obsoleted by: 108920-13 CDE 1.4_x86: dtlogin patch +108920|13|Nov/13/01| | | | B|8_x86|i386;108653-18;108653-18;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|WITHDRAWN CDE 1.4_x86: dtlogin patch +108920|20|Sep/22/03|R| | | |8_x86|i386;108653-18;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;|CDE 1.4_x86: dtlogin patch +108921|18|Nov/18/03| | | | |8|sparc;108652-19;|SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4: dtwm patch +108922|18|Nov/18/03| | | | |8_x86|i386;108653-18;|SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtwm patch 108923|01|Jul/28/00| | | | |8|sparc;108921-03;|SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4: dtwm audio control patch 108924|01|Aug/29/00| | | | |8_x86|i386;108922-03;|SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtwm audio control patch 108925|10|Sep/28/01| | | | |8|sparc;|SUNWcscgu:8.0,REV=1999.12.16.07.50;SUNWhscgu:8.0,REV=1999.12.16.07.49;SUNWkscgu:8.0,REV=1999.12.16.07.48;|SunOS 5.8: smartcard messages updates for Asian ko/zh/zh_TW locale 108928|01|Jun/01/01| |S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Patch usr/sbin/rpc.bootparamd -108929|01|Jun/19/01| |S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Patch usr/sbin/rpc.bootparamd +108929|01|Jun/19/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Patch usr/sbin/rpc.bootparamd 108930|01|Mar/09/00| | |O| |Unbundled|sparc;|SUNWsspdf:3.1.1,REV=99.06.14.19.40;|Obsoleted by: 108536-05 SSP 3.1.1: New JTAG CID's required for CPU 108933|01|Sep/05/00| | | | |8|sparc;|SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWesdte:1.1,REV=1999.12.20.14.49;SUNWs8dte:1.1,REV=2000.01.05.09.03;SUNWsvdte:1.1,REV=2000.01.06.16.40;|SunOS 5.8: Hex broken in Swedish dtcalc, Spanish dtmail Mistransla 108934|01|Sep/05/00| | | | |8_x86|i386;|SUNWdewm:1.1,REV=1999.12.23.17.29;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWeswm:1.1,REV=1999.12.23.15.30;SUNWfrwm:1.1,REV=1999.12.20.15.14;SUNWitwm:1.1,REV=1999.12.23.14.50;SUNWs8dte:1.1,REV=2000.01.05.11.58;SUNWsvdte:1.1,REV=2000.01.06.16.38;SUNWsvwm:1.1,REV=1999.12.23.15.29;|SunOS 5.8_x86: bugfix for European locales, dtmail, dtcalc, SmartC 108935|04|Jan/04/01| | | | |Unbundled|sparc;|SUNWtrpd:4.1,REV=5.26.2000.01.10;|SunLink TRI/P 4.1: Token Ring Driver Patch 108938|01|Mar/01/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: haoracle patch 108939|01|Mar/01/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: haoracle patch -108940|44|Aug/02/02| |S| | |Unbundled|sparc;108652-49;108714-07;|SUNWdtbax:10.1999.12.01;SUNWmfrun:10.1999.12.02;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 8 -108941|44|Aug/02/02| |S| | |Unbundled|i386;108653-39;108715-07;|SUNWmfrun:10.1999.12.02;|Motif 1.2.7_x86 and 2.1.1_x86: Runtime library patch for Solaris 8 +108940|57|Oct/07/03| |S| | |Unbundled|sparc;108652-49;|SUNWdtbax:1.4,REV=10.1999.12.01;SUNWmfrun:2.1.1,REV=10.1999.12.02;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 8 +108941|56|Aug/01/03| |S|O| B|Unbundled|i386;108653-39;|SUNWmfrun:2.1.1,REV=10.1999.12.02;|Obsoleted by: 108941-57 WITHDRAWN PATCH Motif 1.2.7_x86 and 2.1.1_ +108941|57|Oct/07/03| |S| | |Unbundled|i386;108653-39;|SUNWmfrun:2.1.1,REV=10.1999.12.02;|Motif 1.2.7_x86 and 2.1.1_x86: Runtime library patch for Solaris 8 108944|01|Mar/16/00| | | | |Unbundled|||Sun StorEdge (TM) Component Manager 2.0 NT Patch 108947|01|Apr/24/00| | |O| |8|sparc.sun4u;sparc.sun4us;|SUNWcpr:11.8.0,REV=2000.01.08.18.12;SUNWcpr:11.8.0,REV=2000.01.13.13.40;|Obsoleted by: 108528-13 SunOS 5.8: /platform/sun4u/cprboot patch 108948|01|Aug/29/00| | | | |Unbundled|sparc;|SUNWmmgr:3.1.1;SUNWnetbp:3.1.1;|Netbackup NDMP 3.1.1 patch @@ -4331,80 +4408,85 @@ 108963|01|Apr/10/00| | | | |8_x86|i386;|SUNWadmj:11.8,REV=1999.12.16.14.03;|SunOS 5.8_x86: XmlReader fails on an HTTP stream 108964|06|Oct/30/01| | | | |8|sparc;111302-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.tftpd and /usr/sbin/snoop patch 108965|06|Nov/07/01| | | | |8_x86|i386;111303-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.tftpd and /usr/sbin/snoop patch +108966|04|Jul/28/00|R| |O| B|8|108528-01;||OBSOLETED by WITHDRAWN 108966|06|Nov/17/00| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;108528-01;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-05 SunOS 5.8: /kernel/fs/ufs and /kernel/fs/s +108967|04|Jul/28/00| | |O| B|8_x86|108529-01;||OBSOLETED by WITHDRAWN 108967|05|Dec/04/00| | |O| |8_x86|i386;108529-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-05 SunOS 5.8_x86: /kernel/fs/ufs patch -108968|07|Jul/09/02|R|S| | |8|sparc;108977-01;108974-01;|SUNWcsr:2000.01.08.18.12;SUNWesu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWvolu:2000.01.08.18.12;SUNWvolux:2000.01.08.18.12;|SunOS 5.8: vol/vold/rmmount/dev_pcmem.so.1 patch -108969|07|Jul/09/02|R|S| | |8_x86|i386;108978-01;|SUNWcsr:2000.01.08.18.17;SUNWesu:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWvolu:2000.01.08.18.17;|SunOS 5.8_x86: vol/vold/rmmount patch +108968|08|Jan/22/03|R|S| | |8|sparc;108974-01;108977-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWvolu:11.8.0,REV=2000.01.08.18.12;SUNWvolux:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: vol/vold/rmmount/dev_pcmem.so.1 patch +108969|08|Jan/22/03|R|S| | |8_x86|i386;108978-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWesu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWvolu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: vol/vold/rmmount patch 108970|01|Jul/21/00| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/pcfs/fsck and /usr/lib/fs/pcfs/mkfs patch 108971|01|Jul/21/00| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/pcfs/fsck and /usr/lib/fs/pcfs/mkfs pat 108972|04|Nov/03/00| | | | |8|sparc;108974-03;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/fdisk patch 108973|04|Sep/01/00| | | | |8_x86|i386;109644-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/fdisk patch -108974|21|Jun/24/02|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: dada, uata, dad, sd and scsi drivers patch -108975|06|Mar/04/02|R|S| | |8|sparc;108968-01;108974-01;108977-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWvolu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/rmformat and /usr/sbin/format patch +108974|36|Nov/10/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-21;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWssad:11.8.0,REV=2000.01.08.18.12;SUNWssadx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: dada, uata, dad, sd, ssd and scsi drivers patch +108975|08|Apr/18/03|R|S| | |8|sparc;108977-02;108974-01;108968-01;109896-13;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWvolu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/rmformat and /usr/sbin/format patch 108976|06|Mar/04/02|R|S| | |8_x86|i386;108969-01;108978-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWvolu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/rmformat and /usr/sbin/format patch -108977|01|Jul/21/00|R| | | |8|sparc;108974-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWvolu:11.8.0,REV=2000.01.08.18.12;SUNWvolux:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libsmedia patch -108978|01|Jul/21/00|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWvolu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libsmedia patch +108977|02|Apr/18/03|R| | | |8|sparc;108974-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWvolu:11.8.0,REV=2000.01.08.18.12;SUNWvolux:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libsmedia patch +108978|02|Apr/23/03|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWvolu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libsmedia patch 108979|10|Nov/15/00| |S|O| |8|sparc;sparc.sun4u;sparc.sun4us;108528-03;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-04 SunOS 5.8: platform nexus, I2C, Netra ct a 108980|14|Apr/30/01| |S|O| |8_x86|i386;108529-05;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-11 SunOS 5.8_x86: PCI HotPlug framework and d -108981|08|Mar/01/02|R| | | |8|sparc;|SUNWhmd:11.8.0,REV=2000.01.08.18.12;SUNWhmdu:11.8.0,REV=2000.01.08.18.12;SUNWhmdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/hme and /kernel/drv/sparcv9/hme patch +108981|13|Nov/25/03|R|S| | |8|sparc;108528-18;|SUNWhmd:11.8.0,REV=2000.01.08.18.12;SUNWhmdu:11.8.0,REV=2000.01.08.18.12;SUNWhmdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/hme and /kernel/drv/sparcv9/hme patch 108982|09|Mar/22/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcp:11.8.0,REV=2000.01.08.18.12;SUNWfcpx:11.8.0,REV=2000.01.08.18.12;SUNWfctl:11.8.0,REV=2000.01.08.18.12;SUNWfctlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWusoc:11.8.0,REV=2000.01.08.18.12;SUNWusocx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: fctl/fp/fcp/usoc driver patch +108982|10|Apr/18/03| | | | B|8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcp:11.8.0,REV=2000.01.08.18.12;SUNWfcpx:11.8.0,REV=2000.01.08.18.12;SUNWfctl:11.8.0,REV=2000.01.08.18.12;SUNWfctlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWusoc:11.8.0,REV=2000.01.08.18.12;SUNWusocx:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN PATCH SunOS 5.8: fctl/fp/fcp/usoc driver patch 108983|08|Dec/21/00| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcip:11.8.0,REV=2000.04.01.16.21;SUNWfcipx:11.8.0,REV=2000.04.01.16.21;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/fcip driver patch 108984|08|Mar/22/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWqlc:11.8.0,REV=2000.04.01.16.21;SUNWqlcx:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: /kernel/drv/qlc driver patch 108985|03|Jun/25/01|R|S| | |8|sparc;111327-02;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.rshd patch 108986|03|Jun/25/01|R|S| | |8_x86|i386;111328-02;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.rshd patch -108987|09|Mar/28/02|R|S| | |8|sparc;112396-02;|SUNWadmr:11.8,REV=1999.12.16.15.15;SUNWswmt:11.8,REV=1999.12.16.15.15;|SunOS 5.8: Patch for patchadd and patchrm -108988|09|Mar/28/02|R|S| | |8_x86|i386;112397-02;|SUNWadmr:11.8,REV=1999.12.16.15.36;SUNWswmt:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: Patch for patchadd and patchrm +108987|13|Apr/07/03|R|S| | |8|sparc;112396-02;|SUNWadmr:11.8,REV=1999.12.16.15.15;SUNWswmt:11.8,REV=1999.12.16.15.15;|SunOS 5.8: Patch for patchadd and patchrm +108988|13|Apr/07/03|R|S| | |8_x86|i386;112397-02;|SUNWadmr:11.8,REV=1999.12.16.15.36;SUNWswmt:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: Patch for patchadd and patchrm 108989|02|Jul/18/00|R| | | |8|sparc;108528-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/sys/acctctl and /usr/kernel/sys/exacctsys p 108990|02|Jul/18/00|R| | | |8_x86|i386;108529-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: acctctl & exacctsys patch 108991|18|Nov/07/01|R|S|O| |8|sparc;108528-07;108989-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWdpl:11.8.0,REV=2000.01.08.18.12;SUNWdplx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|Obsoleted by: 108827-15 SunOS 5.8: /usr/lib/libc.so.1 patch 108992|18|Nov/07/01|R|S|O| |8_x86|i386;108990-01;108529-07;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWdpl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108828-16 SunOS 5.8_x86: /usr/lib/libc.so.1 patch -108993|11|Jul/29/02|R|S| | |8|sparc;108827-26;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWlldap:2000.01.08.18.12;SUNWnisu:2000.01.08.18.12;|SunOS 5.8: nss and ldap patch -108994|10|Jul/10/02|R|S| | |8_x86|i386;108828-22;|SUNWcsl:2000.01.08.18.17;SUNWcsr:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWlldap:2000.01.08.18.17;SUNWnisu:2000.01.08.18.17;|SunOS 5.8_x86: nss and ldap patch -108995|03|Feb/11/02| | | | |8|sparc;108528-01;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libproc.so.1 patch -108996|03|Feb/11/02| | | | |8_x86|i386;108529-01;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libproc.so.1 patch -108997|03|Jul/18/00|R| | | |8|sparc;108993-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libexacct and libproject patch -108998|03|Jul/18/00|R| | | |8_x86|i386;108994-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libexacct and libproject patch -108999|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: PAM patch -109000|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: PAM patch +108993|29|Oct/28/03|R|S|O| B|8|sparc;sparc.sun4u;108528-24;108989-01;110386-01;111023-02;113648-02;115827-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.12;SUNWapppu:11.8.0,REV=2000.01.08.18.12;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWatfsr:11.8.0,REV=2000.01.08.18.12;SUNWatfsu:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWdpl:11.8.0,REV=2000.01.08.18.12;SUNWdplx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWlldap:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;SUNWpppd:11.8.0,REV=2001.02.21.14.02;SUNWpppdr:11.8.0,REV=2001.02.21.14.02;SUNWpppdu:11.8.0,REV=2001.02.21.14.02;SUNWpppdx:11.8.0,REV=2001.02.21.14.02;SUNWpppgS:11.8.0,REV=2001.02.21.14.02;109079-01 (or newer)|Obsoleted by: 108993-31 WITHDRAWN PATCH SunOS 5.8: LDAP2 client, l +108993|31|Dec/10/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;108989-01;116602-01;111317-05;108528-24;110386-01;111023-03;115827-01;113648-03;|SUNWapppr:11.8.0,REV=2000.01.08.18.12;SUNWapppu:11.8.0,REV=2000.01.08.18.12;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWatfsr:11.8.0,REV=2000.01.08.18.12;SUNWatfsu:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWdpl:11.8.0,REV=2000.01.08.18.12;SUNWdplx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWlldap:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;SUNWpppd:11.8.0,REV=2001.02.21.14.02;SUNWpppdr:11.8.0,REV=2001.02.21.14.02;SUNWpppdu:11.8.0,REV=2001.02.21.14.02;SUNWpppdx:11.8.0,REV=2001.02.21.14.02;SUNWpppgS:11.8.0,REV=2001.02.21.14.02;109079-01 (or newer)|SunOS 5.8: LDAP2 client, libc, libthread and libnsl libraries patc +108994|29|Oct/28/03|R|S|O| B|8_x86|i386;108529-24;108990-01;110400-01;111024-02;113649-02;115828-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.17;SUNWapppu:11.8.0,REV=2000.01.08.18.17;SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWatfsr:11.8.0,REV=2000.01.08.18.17;SUNWatfsu:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWdpl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWlldap:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWpppd:11.8.0,REV=2001.02.21.14.14;SUNWpppdr:11.8.0,REV=2001.02.21.14.14;SUNWpppdu:11.8.0,REV=2001.02.21.14.14;SUNWpppgS:11.8.0,REV=2001.02.21.14.14;|Obsoleted by: 108994-31 WITHDRAWN PATCH SunOS 5.8_x86: LDAP2 clien +108994|31|Dec/10/03|R|S| | |8_x86|i386;110400-01;116603-01;115828-01;111024-03;108990-01;111318-05;113649-03;108529-24;|SUNWapppr:11.8.0,REV=2000.01.08.18.17;SUNWapppu:11.8.0,REV=2000.01.08.18.17;SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWatfsr:11.8.0,REV=2000.01.08.18.17;SUNWatfsu:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWdpl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWlldap:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWpppd:11.8.0,REV=2001.02.21.14.14;SUNWpppdr:11.8.0,REV=2001.02.21.14.14;SUNWpppdu:11.8.0,REV=2001.02.21.14.14;SUNWpppgS:11.8.0,REV=2001.02.21.14.14;|SunOS 5.8_x86: LDAP2 client, libc, libthread and libnsl libraries +108995|06|Oct/28/03| | | | |8|sparc;108993-28;108528-01;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libproc.so.1 patch +108996|06|Oct/28/03| | | | |8_x86|i386;108994-28;108529-01;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libproc.so.1 patch +108997|03|Jul/18/00|R| |O| |8|sparc;108993-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-31 SunOS 5.8: libexacct and libproject patch +108998|03|Jul/18/00|R| |O| |8_x86|i386;108994-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-31 SunOS 5.8_x86: libexacct and libproject pa +108999|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;108993-18;108993-31;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: PAM patch +109000|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;108994-18;108994-31;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: PAM patch 109001|03|Aug/27/01| | | | |7|sparc;111622-02;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/in.rshd patch 109002|03|Aug/27/01| | | | |7_x86|i386;111623-02;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/in.rshd patch -109003|01|Jul/18/00| | | | |8|sparc;108991-02;108528-01;108989-01;108827-15;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/init.d/acctadm and /usr/sbin/acctadm patch -109004|01|Jul/18/00| | | | |8_x86|i386;108990-01;108992-02;108529-01;108828-16;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/init.d/acctadm and /usr/sbin/acctadm patch -109005|03|Nov/13/01| |S| | |8|sparc;108528-01;108989-01;108991-02;108993-01;108997-01;108827-15;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/su.static and /usr/bin/su patch -109006|03|Nov/13/01| |S| | |8_x86|i386;108529-01;108990-01;108992-02;108994-01;108998-01;108828-16;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/su.static and /usr/bin/su patch -109007|07|Mar/19/02|R| | | |8|sparc;108528-01;108989-01;108827-19;108993-01;108997-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: at/atrm/batch/cron patch -109008|07|Mar/19/02|R| | | |8_x86|i386;108529-01;108990-01;108828-20;108994-01;108998-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: at/atrm/batch/cron patch -109009|02|Jun/19/01| | | | |8|sparc;108528-01;108989-01;108991-02;108827-15;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/magic and /usr/bin/file patch -109010|02|Nov/12/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108828-16;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/magic and /usr/bin/file patch -109011|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/id and /usr/xpg4/bin/id patch -109012|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/id and /usr/xpg4/bin/id patch -109013|02|Jul/18/00| | | | |8|sparc;108528-01;108989-01;108991-02;108993-01;108997-01;108827-15;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/lastcomm patch -109014|02|Jul/18/00| | | | |8_x86|i386;108529-01;108990-01;108992-02;108994-01;108998-01;108828-16;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/lastcomm patch -109015|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/newtask patch -109016|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/newtask patch -109017|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/pgrep and /usr/bin/pkill patch -109018|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/pgrep and /usr/bin/pkill patch -109019|02|Mar/12/01| | | | |8|sparc;108528-01;108989-01;108991-02;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/priocntl patch -109020|02|Mar/12/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/priocntl patch -109021|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/projects patch -109022|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/projects patch -109023|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/ps and /usr/bin/sparcv9/ps patch -109024|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/ps patch -109025|04|Feb/11/02| | | | |8|sparc;108991-09;108528-13;108995-02;108989-01;108827-15;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/truss and /usr/bin/sparcv9/truss patch -109026|05|Feb/11/02| | | | |8_x86|i386;108996-02;108990-01;108992-10;108529-13;108828-16;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/truss patch -109027|01|Jul/18/00| | | | |8|sparc;108991-02;108528-01;108989-01;108827-15;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/wracct patch -109028|01|Jul/18/00| | | | |8_x86|i386;108990-01;108992-02;108529-01;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/wracct patch -109029|02|Jul/30/01| | | | |8|sparc;108997-01;108993-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWpl5u:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: perl patch -109030|02|Jul/30/01| | | | |8_x86|i386;108994-01;108998-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWpl5u:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: perl patch -109031|01|Jul/18/00| | | | |8|sparc;108993-01;109029-01;108997-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: projadd/projdel/projmod patch -109032|01|Jul/18/00| | | | |8_x86|i386;109030-01;108998-01;108994-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: projadd/projdel/projmod patch -109033|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/prstat and /usr/bin/sparcv9/prstat pat -109034|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/prstat patch -109035|02|Feb/28/01| | | | |8|sparc;108528-01;108989-01;108991-02;108993-01;108997-01;108827-15;|SUNWaccr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: useradd/userdel/usermod patch -109036|02|Feb/28/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108994-01;108998-01;108828-16;|SUNWaccr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: useradd/userdel/usermod patch -109037|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;|SUNWnisr:11.8.0,REV=2000.01.08.18.12;SUNWypr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /var/yp/Makefile and /var/yp/nicknames patch -109038|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;|SUNWnisr:11.8.0,REV=2000.01.08.18.17;SUNWypr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /var/yp/Makefile and /var/yp/nicknames patch -109039|09|Mar/22/02| |S| | |Unbundled|sparc;|SUNWatm:5.0,REV=1999.11.29.37;SUNWatmu:5.0,REV=1999.11.29.37;|SunATM 5.0: bug fixes +109003|01|Jul/18/00| | | | |8|sparc;108991-02;108528-01;108989-01;108827-15;108993-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/init.d/acctadm and /usr/sbin/acctadm patch +109004|01|Jul/18/00| | | | |8_x86|i386;108990-01;108992-02;108529-01;108828-16;108994-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/init.d/acctadm and /usr/sbin/acctadm patch +109005|05|Oct/25/02| |S|O| |8|sparc;108827-30;108528-01;108989-01;108993-01;108997-01;108993-18;108993-31;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-31 SunOS 5.8: /sbin/su.static and /usr/bin/su +109006|05|Feb/05/03| |S|O| |8_x86|i386;108828-39;108990-01;108529-01;108994-01;108998-01;108994-18;108994-31;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-31 SunOS 5.8_x86: /sbin/su.static and /usr/bi +109007|13|Jul/31/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-01;108989-01;108993-22;108993-01;108997-01;108993-31;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: at/atrm/batch/cron patch +109008|13|Jul/31/03|R|S| | |8_x86|i386;108529-01;108990-01;108994-22;108994-01;108998-01;108994-31;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWesu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: at/atrm/batch/cron patch +109009|02|Jun/19/01| | | | |8|sparc;108528-01;108989-01;108991-02;108827-15;108993-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/magic and /usr/bin/file patch +109010|02|Nov/12/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108828-16;108994-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/magic and /usr/bin/file patch +109011|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;108993-18;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/id and /usr/xpg4/bin/id patch +109012|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;108994-18;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/id and /usr/xpg4/bin/id patch +109013|02|Jul/18/00| | | | |8|sparc;108528-01;108989-01;108991-02;108993-01;108997-01;108827-15;108993-18;108993-31;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/lastcomm patch +109014|02|Jul/18/00| | | | |8_x86|i386;108529-01;108990-01;108992-02;108994-01;108998-01;108828-16;108994-18;108994-31;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/lastcomm patch +109015|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;108993-18;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/newtask patch +109016|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;108994-18;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/newtask patch +109017|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/pgrep and /usr/bin/pkill patch +109018|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/pgrep and /usr/bin/pkill patch +109019|02|Mar/12/01| | | | |8|sparc;108528-01;108989-01;108991-02;108827-15;108993-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/priocntl patch +109020|02|Mar/12/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108828-16;108994-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/priocntl patch +109021|01|Jul/18/00| | | | |8|sparc;108991-02;108993-01;108528-01;108989-01;108997-01;108827-15;108993-18;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/projects patch +109022|01|Jul/18/00| | | | |8_x86|i386;108998-01;108990-01;108992-02;108994-01;108529-01;108828-16;108994-18;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/projects patch +109023|02|Jul/09/03| | | | |8|sparc;108528-01;108989-01;108993-22;108993-01;108997-01;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWscpu:11.8.0,REV=2000.01.08.18.12;SUNWscpux:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/ps and /usr/bin/sparcv9/ps patch +109024|02|Jul/09/03| | | | |8_x86|i386;108529-01;108990-01;108994-22;108994-01;108998-01;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/ps patch +109025|05|Nov/13/03| | | | |8|sparc;108528-13;108989-01;108991-09;108995-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/truss and /usr/bin/sparcv9/truss patch +109026|06|Nov/13/03| | | | |8_x86|i386;108529-13;108990-01;108992-10;108996-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/truss patch +109027|01|Jul/18/00| | | | |8|sparc;108991-02;108528-01;108989-01;108827-15;108993-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/wracct patch +109028|01|Jul/18/00| | | | |8_x86|i386;108990-01;108992-02;108529-01;108828-16;108994-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/wracct patch +109029|02|Jul/30/01| | | | |8|sparc;108997-01;108993-01;108993-31;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWpl5u:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: perl patch +109030|02|Jul/30/01| | | | |8_x86|i386;108994-01;108998-01;108994-31;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWpl5u:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: perl patch +109031|01|Jul/18/00| | | | |8|sparc;108993-01;109029-01;108997-01;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: projadd/projdel/projmod patch +109032|01|Jul/18/00| | | | |8_x86|i386;109030-01;108998-01;108994-01;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: projadd/projdel/projmod patch +109033|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;108993-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/prstat and /usr/bin/sparcv9/prstat pat +109034|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;108994-31;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/prstat patch +109035|02|Feb/28/01| | | | |8|sparc;108528-01;108989-01;108991-02;108993-01;108997-01;108827-15;108993-18;108993-31;|SUNWaccr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: useradd/userdel/usermod patch +109036|02|Feb/28/01| | | | |8_x86|i386;108529-01;108990-01;108992-02;108994-01;108998-01;108828-16;108994-18;108994-31;|SUNWaccr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: useradd/userdel/usermod patch +109037|01|Jul/18/00| | | | |8|sparc;108993-01;108997-01;108993-31;|SUNWnisr:11.8.0,REV=2000.01.08.18.12;SUNWypr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /var/yp/Makefile and /var/yp/nicknames patch +109038|01|Jul/18/00| | | | |8_x86|i386;108998-01;108994-01;108994-31;|SUNWnisr:11.8.0,REV=2000.01.08.18.17;SUNWypr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /var/yp/Makefile and /var/yp/nicknames patch +109039|10|Nov/27/02| |S| | |Unbundled|sparc;|SUNWatm:5.0,REV=1999.11.29.37;SUNWatmu:5.0,REV=1999.11.29.37;|SunATM 5.0: bug fixes 109040|01|Mar/08/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: autoconfig sysboard n configs causes a global arbstop 109041|04|May/21/01|R|S|O| |8|sparc;sparc.sun4u;sparc.sun4us;108528-08;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-09 SunOS 5.8: sockfs patch 109042|04|May/22/01|R|S|O| |8_x86|i386;108529-08;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-09 SunOS 5.8_x86: sockfs patch @@ -4424,9 +4506,10 @@ 109074|02|Jun/28/01| | | | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/sbin/in.rshd 109075|02|Jun/28/01| | | | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWhea:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/sbin/in.rshd 109076|01|Mar/14/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: autoconfig sysboard n causes a global arbstop -109077|10|Jul/08/02| |S| | |8|sparc;108528-15;109326-07;110386-01;111302-01;|SUNWcsr:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWdhcm:2000.01.08.18.12;SUNWdhcsr:2000.01.08.18.12;SUNWdhcsu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: dhcp server and admin patch -109078|10|Jul/08/02| |S| | |8_x86|i386;109327-07;108529-15;110400-01;111303-01;|SUNWcsr:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;SUNWdhcm:2000.01.08.18.17;SUNWdhcsr:2000.01.08.18.17;SUNWdhcsu:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;|SunOS 5.8_x86: dhcp server and admin patch +109077|13|Nov/25/03| |S| | |8|sparc;109326-07;108528-13;110386-01;111302-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWdhcm:11.8.0,REV=2000.01.08.18.12;SUNWdhcsr:11.8.0,REV=2000.01.08.18.12;SUNWdhcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: dhcp server and admin patch +109078|13|Nov/25/03| |S| | |8_x86|i386;109327-07;108529-13;110400-01;111303-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWdhcm:11.8.0,REV=2000.01.08.18.17;SUNWdhcsr:11.8.0,REV=2000.01.08.18.17;SUNWdhcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: dhcp server and admin patch 109082|05|Sep/10/01| | | | |Unbundled|||Hardware/PROM: Ultra 80 & E420R Standalone Flash PROM Update +109082|06|Oct/21/03| | | | B|Unbundled|||WITHDRAWN PATCH Hardware/PROM: Ultra 80, E420 R and Netra 1400/140 109083|01|Apr/17/00| | | | |2.6|sparc;|JSat8xw:1.4,REV=1.0.78;|SunOS 5.6: atok8 terminates "Shell widget modeShell has zero..." 109084|01|Apr/17/00| | | | |2.6_x86|i386;|JSat8xw:1.4,REV=1.0.78;|SunOS 5.6_x86: atok8 terminates "Shell widget modeShell has zero . 109085|01|Apr/17/00| | | | |7|sparc;|JSat8xw:1.5,REV=1.0.45;|SunOS 5.7: atok8 terminates "Shell widget modeShell has zero..." @@ -4435,8 +4518,8 @@ 109088|01|Apr/17/00| | | | |8_x86|i386;|JSat8xw:1.7,REV=1999.12.08.11.57;|SunOS 5.8_x86: atok8 terminates "Shell widget modeShell has zero.. 109089|02|Aug/08/00| | | | |Unbundled|sparc;|LGTOdrvr:5.5.1.Build.109;|Solstice Backup 5.5.1: lus driver patch (localized Japanese) 109090|05|Jun/25/01| | | | |Unbundled|sparc;|STORtools:3.3.0;|Update StorTools 3.3 to Config Matrix 3.8 -109091|05|Apr/19/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/ufs/ufsrestore patch -109092|05|Apr/19/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/ufs/ufsrestore patch +109091|06|Apr/08/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/ufs/ufsrestore patch +109092|06|Apr/09/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/ufs/ufsrestore patch 109093|11|Feb/19/02| | | | |8|sparc;|SUNWjdhcm:1.0,REV=1999.12.08.15.55;SUNWjeuce:1.1,REV=1999.12.29.10.38;SUNWjpcke:1.1,REV=1999.12.29.10.38;SUNWju8e:1.1,REV=1999.12.29.10.38;|SunOS 5.8: JFP message files patch 109094|01|Aug/14/00| | | | |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWsvis:8.0,REV=1999.12.13.19.09;SUNWsvos:11.5.1,REV=1999.12.17.14.47;|SunOS 5.8: localization updates for dhcpmgr, SEAM & disksuite 109095|01|Aug/14/00| | | | |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWsvis:8.0,REV=1999.12.23.15.13;SUNWsvos:11.5.1,REV=1999.12.17.15.00;|SunOS 5.8_x86: localization updates for dhcpmgr, SEAM & disksuite @@ -4447,19 +4530,19 @@ 109102|01|Jun/05/00|R|S| | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: tip has buffer overrun with security implications 109104|04|Aug/29/00|R|S|O| |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-14 SunOS 5.7: /kernel/fs/sockfs patch 109105|04|Aug/29/00|R|S|O| |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 106542-15 SunOS 5.7_x86: /kernel/fs/sockfs patch -109108|02|Aug/01/02| | | | |7|sparc;|SUNWgxplt:1.0.22.9;SUNWgxplx:1.0.22.9;|SunOS 5.7: NS6 doesn't work on S7 under zh_GBK +109108|02|Aug/01/02| | | | |7|sparc;|SUNWgxplt:7.0,REV=1.0.22.9;SUNWgxplx:7.0,REV=1.0.22.9;|SunOS 5.7: NS6 doesn't work on S7 under zh_GBK 109109|01|Apr/26/00| | | | |7_x86|i386;|SUNWgxplt:7.0,REV=1.0.22.9;|SunOS 5.7_x86: No IM for java applications in zh.GBK locale -109110|02|Aug/01/02| | | | |7|sparc;|SUNW5xplt:1.0.21;SUNW5xplx:1.0.21;|SunOS 5.7: NS6 doesn't work on S7 under zh_TW.BIG5 locales +109110|02|Aug/01/02| | | | |7|sparc;|SUNW5xplt:7.0,REV=1.0.21;SUNW5xplx:7.0,REV=1.0.21;|SunOS 5.7: NS6 doesn't work on S7 under zh_TW.BIG5 locales 109111|01|Apr/26/00| | | | |7_x86|i386;|SUNW5xplt:7.0,REV=1.0.21;|SunOS 5.7_x86: No IM for java applications in zh_TW.BIG5 locale -109112|01|Apr/26/00| | | | |2.6|sparc;|SUNW5xplt:2.0,REV=1.0.38;|SunOS 5.6: No IM for java applications in zh_TW.BIG5 locale +109112|02|Oct/13/03| | | | |2.6|sparc;|SUNW5xplt:2.0,REV=1.0.38;|SunOS 5.6: lcbig5.so.2 caused problems in zh_TW.BIG5 locale 109113|02|May/17/00| | | | |2.6_x86|i386;|SUNW5xplt:2.0,REV=1.0.35;|SunOS 5.6_x86: No IM for java applications in zh_TW.BIG5 locale -109115|11|Apr/10/02| | | | |Unbundled|||T3 1.18.00: System Firmware Update +109115|14|Oct/10/03| | | | |Unbundled|||T3 1.18.02: System Firmware Update 109116|04|Feb/16/01| | | | |7|sparc;|SUNWfctl:11.7.0,REV=1999.08.08.20.30;SUNWfctlx:11.7.0,REV=1999.08.08.20.30;|SunOS 5.7: fctl & fp driver patch 109117|05|Jun/28/01| | | | |7|sparc;|SUNWfcp:11.7.0,REV=1999.08.08.20.30;SUNWfcpx:11.7.0,REV=1999.08.20.16.56;|SunOS 5.7: fcp driver patch 109118|02|Aug/14/00| | | | |7|sparc;|SUNWusoc:11.7.0,REV=1999.08.08.20.30;SUNWusocx:11.7.0,REV=1999.08.08.20.30;|SunOS 5.7: usoc driver patch 109119|11|Feb/20/02| | | | |8_x86|i386;|SUNWjdhcm:1.0,REV=1999.12.08.15.55;SUNWjeuce:1.1,REV=1999.12.29.10.38;SUNWjpcke:1.1,REV=1999.12.29.10.38;SUNWju8e:1.1,REV=1999.12.29.10.39;|SunOS 5.8_x86: JFP message files patch -109120|07|Apr/25/01| | | | |Unbundled|all;sparc;|SUNWseamj:3.0;SUNWseams:3.0;|Solstice AdminSuite 3.0: NIS + compat mode passwd and autohome fix -109121|07|Apr/25/01| | | | |Unbundled|all;sparc;|SUNWseamj:3.0;SUNWseams:3.0;|Solstice AdminSuite 3.0_x86: NIS + compat mode passwd autohome fix +109120|08|May/08/03| | | | |Unbundled|all;sparc;|SUNWseamj:3.0;SUNWseams:3.0;|Solstice AdminSuite 3.0: NIS + compat mode passwd and autohome fix +109121|08|May/08/03| | | | |Unbundled|all;i386;|SUNWseamj:3.0;SUNWseams:3.0;|Solstice AdminSuite 3.0_x86: NIS + compat mode passwd autohome fix 109122|01|Apr/14/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: E10K heartbeat failures don't provide information to diag 109127|05|Sep/25/01| | | | |Unbundled|sparc;|SUNWuta:1.1_22b,REV=2000.03.22.19.38;SUNWuto:1.1_22b,REV=2000.03.22.19.38;SUNWutr:1.1_22b,REV=2000.03.22.19.38;SUNWutu:1.1_22b,REV=2000.03.22.19.38;|Sun Ray enterprise server version 1.1 Update Patch 109128|01|Apr/04/00| | | | |8|sparc;|SUNWisolc:1.0,REV=1999.07.10.10.11;SUNWnafos:1.0,REV=1999.12.08.12.36;SUNWnafow:1.0,REV=1999.12.08.12.11;SUNWnafox:1.0,REV=1999.12.08.18.13;|SunOS 5.8: Provide conversion between codepages 1256 and ISO8859-6 @@ -4467,32 +4550,35 @@ 109131|09|Feb/20/02| | | | |8|sparc;|SUNWjeman:1.2,REV=1999.12.27.15.47;SUNWjman:1.2,REV=1999.12.08.15.55;SUNWjpman:1.2,REV=1999.12.27.15.48;SUNWjuman:1.2,REV=1999.12.27.15.48;|SunOS 5.8: JFP manpages patch 109132|09|Feb/20/02| | | | |8_x86|i386;|SUNWjeman:1.2,REV=1999.12.27.12.51;SUNWjman:1.2,REV=1999.12.08.15.55;SUNWjpman:1.2,REV=1999.12.27.12.52;SUNWjuman:1.2,REV=1999.12.27.12.53;|SunOS 5.8_x86: JFP manpages patch 109133|02|Oct/23/00| | | | |8|sparc;|SUNWi5cs:2.0,REV=1999.12.09.13.35;|SunOS 5.8: Cut and Paste not functioning in ru_RU.KOI8-R locale -109134|26|Feb/20/02| |S| | |8|sparc;109318-06;110386-01;|SUNWdclnt:1.0,REV=2000.10.25.13.07;SUNWmga:1.0,REV=2000.11.21.00.05;SUNWmgapp:1.0,REV=1999.12.16.15.15;SUNWwbapi:2.0,REV=1999.12.16.15.15;SUNWwbcor:2.0,REV=1999.12.16.15.15;SUNWwbcou:2.0,REV=1999.12.16.15.15;SUNWwbmc:11.8,REV=2000.11.21.00.05;|SunOS 5.8: WBEM patch -109135|26|Feb/20/02| |S| | |8_x86|i386;109319-06;110400-01;|SUNWdclnt:1.0,REV=2000.10.25.13.03;SUNWmga:1.0,REV=2000.11.20.23.48;SUNWmgapp:1.0,REV=1999.12.16.15.36;SUNWwbapi:2.0,REV=1999.12.16.15.36;SUNWwbcor:2.0,REV=1999.12.16.15.36;SUNWwbcou:2.0,REV=1999.12.16.15.36.2;SUNWwbmc:11.8,REV=2000.11.20.23.48;|SunOS 5.8_x86: WBEM patch +109134|28|Jun/10/03|R|S| | |8|sparc;109318-06;110386-01;|SUNWdclnt:1.0,REV=2000.10.25.13.07;SUNWmga:1.0,REV=2000.11.21.00.05;SUNWmgapp:1.0,REV=1999.12.16.15.15;SUNWwbapi:2.0,REV=1999.12.16.15.15;SUNWwbcor:2.0,REV=1999.12.16.15.15;SUNWwbcou:2.0,REV=1999.12.16.15.15;SUNWwbdev:2.2,REV=2001.02.15.09.57;SUNWwbdoc:2.2,REV=2001.01.23.23.08;SUNWwbmc:11.8,REV=2000.11.21.00.05;|SunOS 5.8: WBEM patch +109135|28|Jun/10/03|R|S| | |8_x86|i386;109319-06;110400-01;|SUNWdclnt:1.0,REV=2000.10.25.13.03;SUNWmga:1.0,REV=2000.11.20.23.48;SUNWmgapp:1.0,REV=1999.12.16.15.36;SUNWwbapi:2.0,REV=1999.12.16.15.36;SUNWwbcor:2.0,REV=1999.12.16.15.36;SUNWwbcou:2.0,REV=1999.12.16.15.36.2;SUNWwbdev:2.2,REV=2001.02.15.12.01;SUNWwbdoc:2.2,REV=2001.01.24.00.11;SUNWwbmc:11.8,REV=2000.11.20.23.48;|SunOS 5.8_x86: WBEM patch 109137|01|Apr/05/00|R| |O| |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 110934-03 SunOS 5.8: /usr/sadm/install/bin/pkginstal 109138|01|Apr/05/00|R| |O| |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 110935-03 SunOS 5.8_x86: /usr/sadm/install/bin/pkgin 109139|05|May/07/02| | | | |Unbundled|i386;|SUNWsbuc:5.5.1.Build.115;SUNWsbum:5.5.1.Build.115;SUNWsbun:5.5.1.Build.115;SUNWsbus1:5.5.1.Build.115;SUNWsbus2:5.5.1.Build.115;|Solstice Backup Maintenance Release 5.5.1_x86: Product Patch -109142|06|Mar/08/01| | | | |8|sparc;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtbax:1.4,REV=10.1999.12.01;|CDE 1.4: dtterm libDtTerm patch -109143|07|Mar/08/01| | | | |8_x86|i386;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtterm libDtTerm patch +109142|07|Oct/13/03| | | | |8|sparc;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtbax:1.4,REV=10.1999.12.01;|CDE 1.4: dtterm libDtTerm patch +109143|08|Oct/13/03| | | | |8_x86|i386;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtterm libDtTerm patch 109145|01|Aug/14/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.routed patch 109146|01|Apr/26/00| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.routed patch -109147|16|May/06/02|R| | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWbtool:11.8.0,REV=2000.01.08.18.12;SUNWbtoox:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWosdem:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: Linker patch -109148|15|Mar/01/02|R| | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWbtool:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWosdem:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: Linker patch +109147|23|Apr/22/03|R| |O| |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWbtool:11.8.0,REV=2000.01.08.18.12;SUNWbtoox:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWosdem:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109147-24 SunOS 5.8: linker patch +109147|27|Nov/26/03|R|S| | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWbtool:11.8.0,REV=2000.01.08.18.12;SUNWbtoox:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWosdem:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: linker patch +109148|23|Apr/22/03|R| |O| |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWbtool:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWosdem:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109148-24 SunOS 5.8_x86: linker patch +109148|27|Nov/26/03|R|S| | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWbtool:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWosdem:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: linker patch 109149|02|Nov/13/01| |S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: /usr/sbin/mkdevmaps and /usr/sbin/mkdevalloc patch 109150|02|Nov/13/01| |S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/sbin/mkdevmaps and /usr/sbin/mkdevalloc patch 109151|02|Feb/15/01| | | | |Unbundled|sparc;|SUNWcod:1.0.0,REV=99.09.20.23.02;|COD 1.0: if expired lic supported codd need to handle error better -109152|01|May/08/00| | | | |8|sparc;|SUNWbcp:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/4lib/libc.so.1.9 and /usr/4lib/libc.so.2.9 patch +109152|02|Mar/27/03|R|S| | |8|sparc;|SUNWbcp:11.8.0,REV=2000.01.08.18.12;SUNWscpu:11.8.0,REV=2000.01.08.18.12;SUNWscpux:11.8.0,REV=2000.01.08.18.12;SUNWsra:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/4lib/libc.so.x.9 and libdbm patch 109153|01|Apr/04/00| | |O| |8|sparc.sun4u;sparc.sun4us;|SUNWcpr:11.8.0,REV=2000.01.08.18.12;SUNWcpr:11.8.0,REV=2000.01.13.13.40;SUNWcprx:11.8.0,REV=2000.01.08.18.12;SUNWcprx:11.8.0,REV=2000.01.13.13.40;|Obsoleted by: 108528-03 SunOS 5.8: /platform/sun4u/kernel/misc/cpr -109154|14|Jul/29/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:1999.10.11;TSIpgx:2000.01.13.13.40;TSIpgxw:1999.10.11;TSIpgxx:1999.10.11;TSIpgxx:2000.01.13.13.40;|SunOS 5.8: PGX32 Graphics +109154|16|Dec/06/02| |S| | B|8|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:8.0.0,REV=1999.10.11;TSIpgx:8.0.0,REV=2000.01.13.13.40;TSIpgxw:8.0.0,REV=1999.10.11;TSIpgxx:8.0.0,REV=1999.10.11;TSIpgxx:8.0.0,REV=2000.01.13.13.40;|WITHDRAWN PATCH SunOS 5.8: PGX32 Graphics +109154|20|Oct/28/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:8.0.0,REV=1999.10.11;TSIpgx:8.0.0,REV=2000.01.13.13.40;TSIpgxw:8.0.0,REV=1999.10.11;TSIpgxx:8.0.0,REV=1999.10.11;TSIpgxx:8.0.0,REV=2000.01.13.13.40;|SunOS 5.8: PGX32 Graphics 109155|01|Apr/05/00| |S| | |8_x86|i386;i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: vgatext and terminal-emulator patch 109157|20|Feb/20/02| | | | |8|sparc;|SUNW5ddst:8.0,REV=1999.12.07.09.59;SUNW5ddte:8.0,REV=1999.12.08.17.45;SUNW5dezt:8.0,REV=1999.12.23.09.58;SUNW5dt:8.0,REV=1999.11.24.10.10;SUNW5dwm:8.0,REV=1999.12.27.13.59;SUNW5leue:8.0,REV=2000.01.05.00.26;SUNWcddst:8.0,REV=1999.12.22.10.40;SUNWcddte:8.0,REV=1999.12.16.07.50;SUNWcdezt:8.0,REV=1999.12.23.09.58;SUNWcdt:8.0,REV=1999.11.24.10.10;SUNWcdwm:8.0,REV=1999.12.27.13.59;SUNWcleue:8.0,REV=2000.01.13.14.56;SUNWcudez:8.0,REV=1999.12.16.07.50;SUNWcudst:8.0,REV=1999.12.22.10.40;SUNWcudt:8.0,REV=1999.11.24.10.10;SUNWcudte:8.0,REV=1999.12.16.07.50;SUNWcudwm:8.0,REV=1999.12.27.13.59;SUNWculee:8.0,REV=2000.01.13.14.56;SUNWgddst:8.0,REV=1999.12.22.10.40;SUNWgddte:8.0,REV=1999.12.16.07.50;SUNWgdezt:8.0,REV=1999.12.23.09.58;SUNWgdt:8.0,REV=1999.11.24.10.10;SUNWgdwm:8.0,REV=1999.12.27.13.59;SUNWgleue:8.0,REV=2000.01.13.14.56;SUNWhddst:8.0,REV=1999.12.09.08.25;SUNWhddte:8.0,REV=1999.12.08.17.44;SUNWhdezt:8.0,REV=1999.12.23.09.58;SUNWhdt:8.0,REV=1999.11.24.10.10;SUNWhdwm:8.0,REV=1999.12.27.13.59;SUNWhleue:8.0,REV=2000.01.05.00.26;SUNWhudez:8.0,REV=1999.12.23.09.58;SUNWhudst:8.0,REV=1999.12.07.09.57;SUNWhudt:8.0,REV=1999.11.24.10.10;SUNWhudte:8.0,REV=1999.12.08.17.44;SUNWhudwm:8.0,REV=1999.12.27.13.59;SUNWhulee:8.0,REV=2000.01.05.00.26;SUNWkddst:8.0,REV=2000.01.05.16.22;SUNWkddte:8.0,REV=1999.12.23.16.29;SUNWkdezt:8.0,REV=2000.01.05.00.25;SUNWkdim:8.0,REV=1999.10.12.16.19;SUNWkdt:8.0,REV=1999.10.22.10.15;SUNWkdwm:8.0,REV=1999.12.27.13.59;SUNWkleue:8.0,REV=1999.12.23.16.29;SUNWkudda:8.0,REV=1999.12.16.07.48;SUNWkuddt:8.0,REV=1999.12.23.16.29;SUNWkudim:8.0,REV=1999.10.12.16.19;SUNWkudt:8.0,REV=1999.11.04.10.13;SUNWkudwm:8.0,REV=1999.12.27.13.59;SUNWkudzt:8.0,REV=2000.01.05.00.25;SUNWkulee:8.0,REV=1999.12.23.16.29;|SunOS 5.8: messages updates for Asian ko/zh/zh_TW locales 109158|20|Feb/20/02| | | | |8_x86|i386;|SUNW5ddst:8.0,REV=1999.12.07.10.00;SUNW5ddte:8.0,REV=1999.12.08.17.44;SUNW5dezt:8.0,REV=1999.12.23.09.58;SUNW5dt:8.0,REV=1999.11.24.10.11;SUNW5dwm:8.0,REV=1999.12.27.14.01;SUNW5leue:8.0,REV=2000.01.05.00.15;SUNWcddst:8.0,REV=1999.12.22.10.39;SUNWcddte:8.0,REV=1999.12.16.08.25;SUNWcdezt:8.0,REV=1999.12.23.09.58;SUNWcdt:8.0,REV=1999.11.24.10.11;SUNWcdwm:8.0,REV=1999.12.27.14.01;SUNWcleue:8.0,REV=2000.01.13.15.04;SUNWcudez:8.0,REV=1999.12.16.08.25;SUNWcudst:8.0,REV=1999.12.22.10.39;SUNWcudt:8.0,REV=1999.11.24.10.11;SUNWcudte:8.0,REV=1999.12.16.08.25;SUNWcudwm:8.0,REV=1999.12.27.14.01;SUNWculee:8.0,REV=2000.01.13.15.04;SUNWgddst:8.0,REV=1999.12.22.10.39;SUNWgddte:8.0,REV=1999.12.16.08.26;SUNWgdezt:8.0,REV=1999.12.23.09.59;SUNWgdt:8.0,REV=1999.11.24.10.11;SUNWgdwm:8.0,REV=1999.12.27.14.01;SUNWgleue:8.0,REV=2000.01.13.15.05;SUNWhddst:8.0,REV=1999.12.09.08.24;SUNWhddte:8.0,REV=1999.12.08.17.44;SUNWhdezt:8.0,REV=1999.12.23.09.58;SUNWhdt:8.0,REV=1999.11.24.10.10;SUNWhdwm:8.0,REV=1999.12.27.14.01;SUNWhleue:8.0,REV=2000.01.05.00.15;SUNWhudez:8.0,REV=1999.12.23.09.58;SUNWhudst:8.0,REV=1999.12.07.09.58;SUNWhudt:8.0,REV=1999.11.24.10.10;SUNWhudte:8.0,REV=1999.12.08.17.44;SUNWhudwm:8.0,REV=1999.12.27.14.01;SUNWhulee:8.0,REV=2000.01.05.00.15;SUNWkddst:8.0,REV=2000.01.05.16.22;SUNWkddte:8.0,REV=1999.12.23.16.28;SUNWkdezt:8.0,REV=2000.01.05.00.15;SUNWkdim:8.0,REV=1999.10.12.14.57;SUNWkdt:8.0,REV=1999.10.22.10.13;SUNWkdwm:8.0,REV=1999.12.27.14.01;SUNWkleue:8.0,REV=1999.12.23.16.28;SUNWkudda:8.0,REV=1999.12.16.08.23;SUNWkuddt:8.0,REV=1999.12.23.16.28;SUNWkudim:8.0,REV=1999.10.12.14.57;SUNWkudt:8.0,REV=1999.11.04.10.14;SUNWkudwm:8.0,REV=1999.12.27.14.01;SUNWkudzt:8.0,REV=2000.01.05.00.15;SUNWkulee:8.0,REV=1999.12.23.16.28;|SunOS 5.8_x86: messages updates for Asian ko/zh/zh_TW locales -109159|01|Apr/02/01| | | | |8|sparc;|SUNWciu8:8.0,REV=1999.11.05.13.31;SUNWciu8x:8.0,REV=1999.11.05.13.31;|SunOS 5.8: the mapping of zh_CN.euc%UTF-8 is consistent -109160|01|Apr/02/01| | | | |8_x86|i386;|SUNWciu8:8.0,REV=1999.11.05.13.10;|SunOS 5.8_x86: the mapping of zh_CN.euc%UTF-8 is consistent +109159|03|Feb/17/03| | | | |8|sparc;|SUNWciu8:8.0,REV=1999.11.05.13.31;SUNWciu8x:8.0,REV=1999.11.05.13.31;SUNWhiu8:8.0,REV=1999.11.04.10.14;SUNWhiu8x:8.0,REV=1999.11.04.10.14;|SunOS 5.8: Chinese iconv module updates +109160|03|Feb/17/03| | | | |8_x86|i386;|SUNWciu8:8.0,REV=1999.11.05.13.10;SUNWhiu8:8.0,REV=1999.11.04.10.17;|SunOS 5.8_x86: Chinese iconv module updates 109163|01|Apr/04/00| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /etc/init.d/cron start doesn't start the cron daemon 109164|01|Apr/04/00| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /etc/init.d/cron start doesn't start the cron daemo -109165|13|Jun/04/02| | | | |8|sparc;108977-01;|SUNWdtdst:10.1999.12.02;SUNWdtdte:10.1999.12.07;SUNWdthev:10.1999.12.02;SUNWdticn:10.1999.12.02;SUNWdtma:10.1999.12.02;|CDE 1.4: dtfile patch -109166|13|Jun/04/02| | | | |8_x86|i386;108978-01;|SUNWdtdst:10.1999.12.02;SUNWdtdte:10.1999.12.07;SUNWdthev:10.1999.12.02;SUNWdticn:10.1999.12.02;SUNWdtma:10.1999.12.02;|CDE 1.4_x86: dtfile patch +109165|14|Nov/26/03| | | | |8|sparc;108977-01;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdticn:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: dtfile patch +109166|14|Nov/26/03| | | | |8_x86|i386;108978-01;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdticn:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtfile patch 109167|01|Jul/21/00| | | | |8|sparc;|SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4: Desktop Help Updates Patch 109168|01|Jul/21/00| | | | |8_x86|i386;|SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4_x86: Desktop Help Updates Patch 109169|12|Apr/17/01| | | | |8|sparc;108921-02;|SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdtezt:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdthez:1.4,REV=10.1999.12.02;SUNWdtmaz:1.4,REV=10.1999.12.02;SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4: Window Manager Enhancements Patch @@ -4509,22 +4595,22 @@ 109185|01|Mar/24/00| |S| | |Unbundled|||StarSchedule Server 5.1a: Security patch for Solaris 109186|01|Mar/24/00| |S| | |Unbundled|||StarSchedule Server 5.1a_x86: Security patch for Solaris 109187|01|Mar/24/00| |S| | |Unbundled|||StarSchedule Server 5.1a: Security patch for Linux -109189|04|Feb/20/02| | | | |8|sparc;|SUNWifp:11.8.0,REV=2000.01.08.18.12;SUNWifph:11.8.0,REV=2000.01.08.18.12;SUNWifpx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ifp driver patch +109189|05|Apr/23/03| | | | |8|sparc;|SUNWifp:11.8.0,REV=2000.01.08.18.12;SUNWifph:11.8.0,REV=2000.01.08.18.12;SUNWifpx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ifp driver patch 109190|04|Oct/25/00| | | | |8_x86|i386;|SUNWseudt:1.0,REV=1999.12.21.13.17;SUNWseuos:1.0,REV=1999.12.16.19.05;SUNWseuow:1.0,REV=1999.12.16.18.52;|SunOS 5.8_x86 : Extra Catalan Support required 109191|03|Mar/30/01| | | | |8_x86|i386;|SUNWeeudt:1.0,REV=1999.12.20.13.27;SUNWeeuos:1.0,REV=1999.12.15.17.40;SUNWeeuow:1.0,REV=1999.12.13.20.46;|SunOS 5.8_x86: ru.RU.KOI8-R Cannot cut/paste cyrrilic between dtap 109192|02|Oct/23/00| | | | |8_x86|i386;|SUNWi5cs:2.0,REV=1999.12.09.13.59;|SunOS 5.8_x86: Cut/Paste not functioning in ru_RU.KOI8-R locale 109193|02|Oct/25/00| | | | |8_x86|i386;|SUNWceudt:1.0,REV=1999.12.21.13.16;SUNWceuos:1.0,REV=1999.12.13.12.57;SUNWceuow:1.0,REV=1999.11.02.17.10;|SunOS 5.8_x86: Polish UTF-8 Support Solaris 8 109200|02|Apr/02/01| | | | |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdedte:1.1,REV=2000.01.17.14.13;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWdewm:1.1,REV=1999.12.23.15.05;SUNWdscgu:1.4,REV=2000.01.11.12.36;SUNWescgu:1.4,REV=2000.01.11.12.37;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesdte:1.1,REV=1999.12.20.14.49;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWeswm:1.1,REV=1999.12.23.15.05;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrdte:1.1,REV=1999.12.23.11.36;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWfrwm:1.1,REV=1999.12.20.14.15;SUNWfscgu:1.4,REV=2000.01.11.12.37;SUNWiscgu:1.4,REV=1999.12.23.16.20;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitwm:1.1,REV=1999.12.23.15.05;SUNWsscgu:1.4,REV=2000.01.11.12.37;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvdte:1.1,REV=2000.01.06.16.40;SUNWsvos:11.5.1,REV=1999.12.17.14.47;SUNWsvwm:1.1,REV=1999.12.23.15.04;|SunOS 5.8: l10n updates: Rem. Media, Window Mgr & Pam Proj 109201|03|Apr/02/01| | | | |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdedte:1.1,REV=2000.01.17.14.25;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWdewm:1.1,REV=1999.12.23.17.29;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWeswm:1.1,REV=1999.12.23.15.30;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrdte:1.1,REV=1999.12.20.15.13;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWfrwm:1.1,REV=1999.12.20.15.14;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitwm:1.1,REV=1999.12.23.14.50;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvdte:1.1,REV=2000.01.06.16.38;SUNWsvos:11.5.1,REV=1999.12.17.15.00;SUNWsvwm:1.1,REV=1999.12.23.15.29;|SunOS 5.8_x86: l10n updates: Removable Media, Window Mgr & Pam Pro -109202|03|Sep/07/01| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/misc/gld and /kernel/misc/sparcv9/gld patch +109202|05|Jun/06/03| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/misc/gld and /kernel/misc/sparcv9/gld patch 109203|03|Aug/27/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: edit & vi patch 109204|03|Aug/27/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: edit & vi patch 109205|01|May/01/00| | | | |7|sparc;|SUNWbtool:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/ccs/bin/yacc patch 109206|01|May/01/00| | | | |7_x86|i386;|SUNWbtool:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/ccs/bin/yacc patch 109207|01|Jun/02/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: hareg patch -109208|15|Feb/26/02| |S| | |Unbundled|sparc;|SUNWccd:2.2,REV=1999.02.09.23.00;SUNWcmm:2.2,REV=1999.02.09.23.00;SUNWcsnmp:2.2,REV=1999.02.09.23.00;SUNWdid:2.2,REV=1999.02.09.23.00;SUNWff:2.2,REV=1999.02.09.23.00;SUNWmond:2.2,REV=1999.02.09.23.00;SUNWpnm:2.2,REV=1999.02.09.23.00;SUNWsc:2.2,REV=1999.02.09.23.00;SUNWsccf:2.2,REV=1999.02.09.23.00;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.00;SUNWscins:2.2,REV=1999.02.09.23.00;SUNWsclb:2.2,REV=1999.02.09.23.00;SUNWsma:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: Framework/Comm Patch -109209|14|Apr/04/02| |S| | |Unbundled|sparc;106541-12;|SUNWccd:2.2,REV=1999.02.09.23.30;SUNWcmm:2.2,REV=1999.02.09.23.30;SUNWcsnmp:2.2,REV=1999.02.09.23.30;SUNWdid:2.2,REV=1999.02.09.23.30;SUNWdidx:2.2,REV=1999.02.09.23.30;SUNWff:2.2,REV=1999.02.09.23.30;SUNWffx:2.2,REV=1999.02.09.23.30;SUNWmond:2.2,REV=1999.02.09.23.30;SUNWmondx:2.2,REV=1999.02.09.23.30;SUNWpnm:2.2,REV=1999.02.09.23.30;SUNWsc:2.2,REV=1999.02.09.23.30;SUNWsccf:2.2,REV=1999.02.09.23.30;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.30;SUNWscins:2.2,REV=1999.02.09.23.30;SUNWsclb:2.2,REV=1999.02.09.23.30;SUNWsclbx:2.2,REV=1999.02.09.23.30;SUNWsma:2.2,REV=1999.02.09.23.30;SUNWsmax:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: Framework/Comm Patch -109210|14|Jul/29/02| |S| | |Unbundled|sparc;|SUNWccd:2000.03.14.18.21;SUNWcmm:2000.03.14.18.21;SUNWcsnmp:2000.03.14.18.21;SUNWff:2000.03.14.18.21;SUNWffx:2000.03.14.18.21;SUNWmond:2000.03.14.18.21;SUNWmondx:2000.03.14.18.21;SUNWpnm:2000.03.14.18.21;SUNWsc:2000.03.14.18.21;SUNWsccf:2000.03.14.18.21;SUNWsci:2000.02.29.15.49;SUNWscins:2000.03.14.18.21;SUNWsclb:2000.03.14.18.21;SUNWsclbx:2000.03.14.18.21;SUNWsma:2000.03.14.18.21;|Sun Cluster 2.2: Framework/Comm Patch +109208|20|Sep/15/03| |S| | |Unbundled|sparc;|SUNWccd:2.2,REV=1999.02.09.23.00;SUNWcmm:2.2,REV=1999.02.09.23.00;SUNWcsnmp:2.2,REV=1999.02.09.23.00;SUNWdid:2.2,REV=1999.02.09.23.00;SUNWff:2.2,REV=1999.02.09.23.00;SUNWmond:2.2,REV=1999.02.09.23.00;SUNWpnm:2.2,REV=1999.02.09.23.00;SUNWsc:2.2,REV=1999.02.09.23.00;SUNWsccf:2.2,REV=1999.02.09.23.00;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.00;SUNWscins:2.2,REV=1999.02.09.23.00;SUNWsclb:2.2,REV=1999.02.09.23.00;SUNWsma:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: Framework/Comm Patch +109209|19|Sep/15/03| |S| | |Unbundled|sparc;106541-12;|SUNWccd:2.2,REV=1999.02.09.23.30;SUNWcmm:2.2,REV=1999.02.09.23.30;SUNWcsnmp:2.2,REV=1999.02.09.23.30;SUNWdid:2.2,REV=1999.02.09.23.30;SUNWdidx:2.2,REV=1999.02.09.23.30;SUNWff:2.2,REV=1999.02.09.23.30;SUNWffx:2.2,REV=1999.02.09.23.30;SUNWmond:2.2,REV=1999.02.09.23.30;SUNWmondx:2.2,REV=1999.02.09.23.30;SUNWpnm:2.2,REV=1999.02.09.23.30;SUNWsc:2.2,REV=1999.02.09.23.30;SUNWsccf:2.2,REV=1999.02.09.23.30;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.30;SUNWscins:2.2,REV=1999.02.09.23.30;SUNWsclb:2.2,REV=1999.02.09.23.30;SUNWsclbx:2.2,REV=1999.02.09.23.30;SUNWsma:2.2,REV=1999.02.09.23.30;SUNWsmax:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: Framework/Comm Patch +109210|18|Sep/15/03| |S| | |Unbundled|sparc;|SUNWccd:2.2,REV=2000.03.14.18.21;SUNWcmm:2.2,REV=2000.03.14.18.21;SUNWcsnmp:2.2,REV=2000.03.14.18.21;SUNWff:2.2,REV=2000.03.14.18.21;SUNWffx:2.2,REV=2000.03.14.18.21;SUNWmond:2.2,REV=2000.03.14.18.21;SUNWmondx:2.2,REV=2000.03.14.18.21;SUNWpnm:2.2,REV=2000.03.14.18.21;SUNWsc:2.2,REV=2000.03.14.18.21;SUNWsccf:2.2,REV=2000.03.14.18.21;SUNWsci:2.2,REV=2000.02.29.15.49;SUNWscid:2.2,REV=2000.03.14.18.21;SUNWscins:2.2,REV=2000.03.14.18.21;SUNWsclb:2.2,REV=2000.03.14.18.21;SUNWsclbx:2.2,REV=2000.03.14.18.21;SUNWsma:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: Framework/Comm Patch 109211|08|Aug/31/01| |S|O| |Unbundled|sparc;109208-11;|SUNWpnm:2.2,REV=1999.02.09.23.00;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.00;SUNWsma:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-14 Sun Cluster 2.2: Comm Patch 109212|06|Sep/05/01| |S|O| |Unbundled|sparc;109209-10;|SUNWpnm:2.2,REV=1999.02.09.23.30;SUNWsci:2.2,REV=1999.02.09.23.00;SUNWscid:2.2,REV=1999.02.09.23.30;SUNWsma:2.2,REV=1999.02.09.23.30;SUNWsmax:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-13 Sun Cluster 2.2: Comm Patch 109213|06|Aug/31/01| |S|O| |Unbundled|sparc;109210-09;|SUNWpnm:2.2,REV=2000.03.14.18.21;SUNWsma:2.2,REV=2000.03.14.18.21;|Obsoleted by: 109210-12 Sun Cluster 2.2: Comm Patch @@ -4535,17 +4621,17 @@ 109218|01|May/01/00| | | | |2.6_x86|i386;|SUNWbtool:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/ccs/bin/yacc and yaccpar 109221|06|Jan/26/01|R| |O| |8|sparc;108993-01;|SUNWadmap:11.8,REV=2000.01.14.00.01;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWsibi:11.8,REV=2000.01.13.17.52;|Obsoleted by: 109318-12 SunOS 5.8: Patch for sysidnet 109222|06|Jan/26/01|R| |O| |8_x86|i386;108994-01;|SUNWadmap:11.8,REV=2000.01.14.00.14;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWsibi:11.8,REV=1999.12.16.15.36;|Obsoleted by: 109319-13 SunOS 5.8_x86: Patch for sysidnet -109223|02|Jun/28/02|R| | | |8|sparc;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWgss:2000.01.08.18.12;SUNWgssx:2000.01.08.18.12;|SunOS 5.8: kpasswd, libgss.so.1 and libkadm5clnt.so.1 patch -109224|01|Oct/05/00| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWgss:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libgss.so.1 and libkadm5clnt.so.1 patch +109223|04|Dec/23/03|R| | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWgss:11.8.0,REV=2000.01.08.18.12;SUNWgssx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: kpasswd, libgss.so.1 and libkadm5clnt.so.1 patch +109224|03|Oct/01/03|R| | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWgss:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: kpasswd, libgss.so.1 and libkadm5clnt.so.1 patch 109225|02|Jul/25/00| | | | |Unbundled|sparc.sun4u;|SUNWpnet:5.6,REV=1999.01.28.13.32;|netra ft 1800 patch 109232|01|Apr/21/00| | | | |Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;|RAID Manager 6.22: upgrade to FC requires A3500 w/D1000 NVSRAM fil 109233|01|Apr/21/00| | | | |Unbundled|sparc;|SUNWosafw:6.22,REV=01.14;|RAID Manager 6.22: upgrade to FC requires A3000 w/RSM NVSRAM file -109234|08|Jan/04/02| |S| | |8|sparc;109472-06;108528-13;|SUNWapchS:11.8.0,REV=2000.01.08.18.12;SUNWapchd:11.8.0,REV=2000.01.08.18.12;SUNWapchr:11.8.0,REV=2000.01.08.18.12;SUNWapchu:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWncar:11.8.0,REV=2000.01.08.18.12;SUNWncarx:11.8.0,REV=2000.01.08.18.12;SUNWncau:11.8.0,REV=2000.01.08.18.12;SUNWncaux:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: Apache and NCA patch -109235|09|Jan/04/02| |S| | |8_x86|i386;109473-07;108529-13;|SUNWapchS:11.8.0,REV=2000.01.08.18.17;SUNWapchd:11.8.0,REV=2000.01.08.18.17;SUNWapchr:11.8.0,REV=2000.01.08.18.17;SUNWapchu:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWncar:11.8.0,REV=2000.01.08.18.17;SUNWncau:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: Apache/mod_jserv patch +109234|09|Aug/07/02|R|S| | |8|sparc;108528-15;108528-15;|SUNWapchS:11.8.0,REV=2000.01.08.18.12;SUNWapchd:11.8.0,REV=2000.01.08.18.12;SUNWapchr:11.8.0,REV=2000.01.08.18.12;SUNWapchu:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWncar:11.8.0,REV=2000.01.08.18.12;SUNWncarx:11.8.0,REV=2000.01.08.18.12;SUNWncau:11.8.0,REV=2000.01.08.18.12;SUNWncaux:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: Apache Security and NCA Patch +109235|10|Aug/08/02|R|S| | |8_x86|i386;108529-15;108529-15;|SUNWapchS:11.8.0,REV=2000.01.08.18.17;SUNWapchd:11.8.0,REV=2000.01.08.18.17;SUNWapchr:11.8.0,REV=2000.01.08.18.17;SUNWapchu:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWncar:11.8.0,REV=2000.01.08.18.17;SUNWncau:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: Apache Security and NCA Patch 109236|01|Jan/18/01| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|Obsoleted by: 108528-05 SunOS 5.8: msgsys, semsys and shmsys patch 109237|01|Jan/18/01| | |O| |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-05 SunOS 5.8_x86: msgsys, semsys and shmsys p -109238|02|Sep/17/01|R|S| | |8|sparc;108528-10;108991-03;108827-15;|SUNWipc:11.8.0,REV=2000.01.08.18.12;SUNWipcx:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;SUNWxcu4x:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|SunOS 5.8: /usr/bin/sparcv7/ipcs and /usr/bin/sparcv9/ipcs patch -109239|02|Sep/25/01|R|S| | |8_x86|i386;108992-03;108529-10;108828-16;|SUNWipc:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/ipcs patch +109238|02|Sep/17/01|R|S| | |8|sparc;108528-10;108991-03;108827-15;108993-18;|SUNWipc:11.8.0,REV=2000.01.08.18.12;SUNWipcx:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;SUNWxcu4x:11.8.0,REV=2000.01.08.18.12;109079-01 (or newer)|SunOS 5.8: /usr/bin/sparcv7/ipcs and /usr/bin/sparcv9/ipcs patch +109239|02|Sep/25/01|R|S| | |8_x86|i386;108992-03;108529-10;108828-16;108994-18;|SUNWipc:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/ipcs patch 109240|01|May/02/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: NIS+ replicas may loose synchronisation wit 109243|01|Apr/26/00| |S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Invalid admin_high label in pfsh audit reco 109247|01|Aug/14/00| | | | |8|sparc;|SUNWdeis:8.0,REV=1999.12.13.19.04;|SunOS 5.8: Bad translation causes core dump in German install @@ -4554,10 +4640,10 @@ 109250|01|Aug/14/00| | | | |8_x86|i386;108915-01;108955-01;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWsvdst:1.1,REV=2000.01.06.16.41;|SunOS 5.8_x86: Help not localized for the dhcpmgr 109251|01|Jun/02/00| | | | |Unbundled|sparc;|SUNWpfs:2.1;|Sun HPC Clustertools 3.1: TMFS_Finalize() can hang on large (>200 109252|01|May/17/00|R| | | |7_x86|i386;|SUNWpsdcr:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: asy patch -109253|06|Apr/01/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/mail Patch -109254|06|Apr/01/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/mail Patch +109253|07|Jan/23/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/mail Patch +109254|07|Jan/23/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/mail Patch 109255|01|Apr/26/00| | | | |8|sparc;|SUNWfrdst:1.1,REV=1999.12.23.15.27;|SunOS 5.8: Unlocalized buttons on user-interface of dhcpmgr -109256|01|Apr/26/00| | |O| B|8_x86|||OBSOLETED by BADPATCH +109256|01|Apr/26/00| | |O| B|8_x86|||OBSOLETED by WITHDRAWN 109257|02|Jul/31/00| |S| | |Unbundled|||StarOffice 5.1a (Linux): Product patch 109258|02|Jul/31/00| |S| | |Unbundled|||StarOffice 5.1a (OS/2): Product patch 109259|02|Jul/31/00| |S| | |Unbundled|||StarOffice 5.1a_x86 (Solaris): Product patch @@ -4565,12 +4651,12 @@ 109261|02|Jul/31/00| |S| | |Unbundled|||StarOffice 5.1a (Windows): Product patch 109263|01|May/22/00| | | | |Unbundled|sparc;108192-02;|SUNWsrmb:1.0.0,REV=1998.11.13.16.33;|SRM 1.0: The 'limid' utility should be backported to SRM1.0 109264|01|May/09/00| | | | |8|sparc;|SUNWdscgu:1.4,REV=2000.01.11.12.36;SUNWescgu:1.4,REV=2000.01.11.12.37;SUNWfscgu:1.4,REV=2000.01.11.12.37;SUNWiscgu:1.4,REV=1999.12.23.16.20;SUNWsscgu:1.4,REV=2000.01.11.12.37;|Graphics missing from Help in Smart Card -109266|04|Apr/01/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/mail patch -109267|04|Apr/01/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/mail patch +109266|05|Jan/06/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/mail patch +109267|05|Jan/06/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/mail patch 109275|04|Apr/01/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/mail patch 109276|04|Apr/01/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/mail patch -109277|02|Sep/10/01|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/iostat patch -109278|02|Sep/10/01|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/iostat patch +109277|03|Oct/25/02|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/iostat patch +109278|03|Dec/17/02|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/iostat patch 109279|18|Oct/23/01|R|S|O| |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-13 SunOS 5.8: /kernel/drv/ip patch 109280|18|Oct/17/01|R|S|O| |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/drv/ip patch 109281|04|Jul/26/00| | |O| |2.6|sparc;|SUNWploc:2.0,REV=97.05.30.12.47;SUNWploc1:1.0,REV=1997.07.14.15.26;|Obsoleted by: 107064-04 SunOS 5.6: Misc. locales have errors in LC @@ -4580,40 +4666,44 @@ 109298|02|Feb/07/01| | | | |Unbundled|sparc;107171-04;|VRTSqio:3.3.3,REV=GA04;VRTSvxfs:3.3.3,REV=GA03;|Veritas File System 3.3.3: Veritas File System mulitple fixes patc 109299|02|Feb/07/01| | | | |Unbundled|sparc;|VRTSqio:3.3.3,REV=GA04;VRTSvxfs:3.3.3,REV=GA03;|Veritas File System 3.3.3: Veritas File Systems mulitple fixes pat 109317|02|Aug/25/00| |S| | |Trusted_Solaris_7|109534-02;||Trusted Solaris 7: remote x-windows display from non TS7 hosts cau -109318|27|Jul/25/02|R| | | |8|sparc;108528-05;108528-15;108993-10;111098-01;|SUNWadmap:2000.01.14.00.01;SUNWadmc:2000.01.21.04.37;SUNWinst:1999.12.16.15.15;SUNWsibi:2000.01.13.17.52;|SunOS 5.8: suninstall patch -109319|27|Feb/20/02|R| | | |8_x86|i386;108529-05;108529-13;108994-05;111099-01;|SUNWadmap:11.8,REV=2000.01.14.00.14;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.36;SUNWsibi:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: suninstall patch -109320|05|Apr/02/02|R|S| | |8|sparc;|SUNWpcu:13.1,REV=2000.01.08.18.12;SUNWppm:11.8.0,REV=2000.01.08.18.12;SUNWpsf:13.1,REV=2000.01.08.18.12;SUNWpsu:13.1,REV=2000.01.08.18.12;SUNWscplp:13.1,REV=2000.01.08.18.12;|SunOS 5.8: LP patch -109321|05|Apr/10/02|R|S| | |8_x86|i386;|SUNWpcu:13.1,REV=2000.01.08.18.17;SUNWppm:11.8.0,REV=2000.01.08.18.17;SUNWpsf:13.1,REV=2000.01.08.18.17;SUNWpsu:13.1,REV=2000.01.08.18.17;SUNWscplp:13.1,REV=2000.01.08.18.17;|SunOS 5.8_x86: LP patch +109318|22|Nov/13/01|R| | | B|8|sparc;108528-05;110383-01;110390-01;111098-01;108528-05;110383-01;111098-01;108993-05;108993-05;108528-13;|SUNWadmap:11.8,REV=2000.01.14.00.01;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.15;SUNWsibi:11.8,REV=2000.01.13.17.52;|WITHDRAWN SunOS 5.8: suninstall patch +109318|34|Nov/14/03|R| | | |8|sparc;108528-05;108528-13;108993-05;111098-01;|SUNWadmap:11.8,REV=2000.01.14.00.01;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.15;SUNWsibi:11.8,REV=2000.01.13.17.52;|SunOS 5.8: suninstall Patch +109319|23|Nov/13/01|R| | | B|8_x86|i386;108529-05;110397-01;110406-01;111099-01;108529-05;110397-01;110406-01;111099-01;108994-05;108529-13;|SUNWadmap:11.8,REV=2000.01.14.00.14;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.36;SUNWsibi:11.8,REV=1999.12.16.15.36;|WITHDRAWN SunOS 5.8_x86: suninstall patch +109319|33|Nov/14/03|R| | | |8_x86|i386;108529-05;108529-13;108994-05;111099-01;|SUNWadmap:11.8,REV=2000.01.14.00.14;SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.36;SUNWsibi:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: suninstall Patch +109320|08|Nov/26/03|R|S| | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWpcu:13.1,REV=2000.01.08.18.12;SUNWppm:11.8.0,REV=2000.01.08.18.12;SUNWpsf:13.1,REV=2000.01.08.18.12;SUNWpsu:13.1,REV=2000.01.08.18.12;SUNWscplp:13.1,REV=2000.01.08.18.12;|SunOS 5.8: LP Patch +109321|08|Nov/26/03|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWpcu:13.1,REV=2000.01.08.18.17;SUNWppm:11.8.0,REV=2000.01.08.18.17;SUNWpsf:13.1,REV=2000.01.08.18.17;SUNWpsu:13.1,REV=2000.01.08.18.17;SUNWscplp:13.1,REV=2000.01.08.18.17;|SunOS 5.8_x86: LP Patch 109322|09|Nov/07/01|R|S|O| |8|sparc;108991-07;108827-15;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108827-15 SunOS 5.8: libnsl patch 109323|09|Nov/07/01|R|S|O| |8_x86|i386;108992-07;108828-16;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108828-16 SunOS 5.8_x86: libnsl patch -109324|04|Dec/11/01|R|S| | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sh/jsh/rsh/pfsh patch -109325|04|Dec/11/01|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sh/jsh/rsh/pfsh patch -109326|08|Jun/25/02|R|S| | |8|sparc;|SUNWarc:2000.01.08.18.12;SUNWarcx:2000.01.08.18.12;SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: libresolv.so.2 and in.named patch -109327|08|Jun/25/02|R|S| | |8_x86|i386;|SUNWarc:2000.01.08.18.17;SUNWcsl:2000.01.08.18.17;SUNWcsr:2000.01.08.18.17;SUNWcstl:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;|SunOS 5.8_x86: libresolv.so.2 and in.named patch -109328|02|Aug/29/01| | | | |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;SUNWypu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/yp/ypserv and usr/lib/netsvc/yp/ypxfr p -109329|02|Aug/29/01| | | | |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWypu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ypserv and ypxfr patch -109331|01|May/12/00| | | | |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.6.2000.01.10;|Sun Management Center 2.1.1: es-device script gives error when try -109332|01|May/12/00| | | | |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.7.2000.01.10;|Sun Management Center 2.1.1: es-device script gives error when try -109333|01|May/12/00| | | | |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.8.2000.01.10;|Sun Management Center 2.1.1: es-device script gives error when try +109324|05|Dec/05/02|R|S| | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sh/jsh/rsh/pfsh patch +109325|05|Dec/05/02|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sh/jsh/rsh/pfsh patch +109326|11|Oct/28/03|R|S|O| B|8|sparc;108993-27;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109326-12 WITHDRAWN PATCH SunOS 5.8: libresolv.so.2 +109326|12|Dec/10/03|R|S| | |8|sparc;108993-27;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libresolv.so.2 and in.named patch +109327|11|Oct/28/03|R|S|O| B|8_x86|i386;108994-27;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109327-12 WITHDRAWN PATCH SunOS 5.8_x86: libresolv.s +109327|12|Dec/10/03|R|S| | |8_x86|i386;108994-27;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libresolv.so.2 and in.named patch +109328|03|Oct/29/02|R|S| | |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;SUNWypu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ypserv, ypxfr and ypxfrd patch +109329|03|Oct/29/02|R|S| | |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWypu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ypserv, ypxfr and ypxfrd patch +109331|01|May/12/00| | |O| |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.6.2000.01.10;|Obsoleted by: 109699-10 Sun Management Center 2.1.1: es-device scr +109332|01|May/12/00| | |O| |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.7.2000.01.10;|Obsoleted by: 109696-11 Sun Management Center 2.1.1: es-device scr +109333|01|May/12/00| | |O| |Unbundled|sparc;|SUNWessrv:2.1.1_Build05,REV=2.8.2000.01.10;|Obsoleted by: 109697-11 Sun Management Center 2.1.1: es-device scr 109334|03|Jul/24/01| | | | |2.6|sparc.sun4u1;|SUNWcvc:1.1.0,REV=1998.01.23.18.28;|SunOS 5.6: cvcd patch -109338|06|Jan/10/02| | | | |Unbundled|sparc;|SUNWsaip:3.0,REV=2000.01.31;SUNWsaipu:3.0,REV=2000.01.31;|SunSAI/P 3.0: fixes and enhancements +109338|07|Dec/03/03| | | | |Unbundled|sparc;|SUNWsaip:3.0,REV=2000.01.31;SUNWsaipu:3.0,REV=2000.01.31;|SunSAI/P 3.0: fixes and enhancements 109339|02|Feb/27/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: nscd's size grows - TTL values not implemented -109340|01|May/25/00|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: nscd has potential security problem -109354|14|Jan/28/02| |S| | |8|sparc;108652-19;|SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdtma:1.4,REV=10.1999.12.02;SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4: dtsession patch -109355|13|Jan/28/02| |S| | |8_x86|i386;108653-18;|SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdtma:1.4,REV=10.1999.12.02;SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtsession patch +109340|02|Jul/31/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: nscd fixes +109354|19|Apr/15/03|R|S| | |8|sparc;108652-19;|SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdtma:1.4,REV=10.1999.12.02;SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4: dtsession patch +109355|18|Apr/15/03|R|S| | |8_x86|i386;108653-18;|SUNWdtdte:1.4,REV=10.1999.12.07;SUNWdtma:1.4,REV=10.1999.12.02;SUNWdtwm:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtsession patch 109357|04|Aug/08/00| | | | |8|sparc;|SUNWauaos:1.0,REV=1999.11.23.15.15;SUNWauaox:1.0,REV=1999.11.24.13.29;SUNWceuos:1.0,REV=1999.12.13.13.25;SUNWceuox:1.0,REV=1999.11.24.13.29;SUNWneuos:1.0,REV=1999.12.13.14.44;SUNWneuox:1.0,REV=1999.12.13.14.44;SUNWseuos:1.0,REV=1999.12.16.18.57;SUNWseuox:1.0,REV=1999.12.16.17.36;SUNWweuos:1.0,REV=1999.12.13.13.24;SUNWweuox:1.0,REV=1999.12.13.14.44;|SunOS 5.8: Cultural settings update for European locales 109359|01|Jul/05/00| | | | |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: Accent key not working in western european locales 109371|01|May/10/00| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: sd patch -109372|01|May/25/00| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/strmod/ldterm patch -109373|01|Oct/10/01| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/strmod/ldterm patch +109372|02|Apr/15/03| |S| | |7|sparc;sparc.sun4u;sparc.sun4us;106541-24;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/strmod/ldterm patch +109373|02|Apr/15/03| |S| | |7_x86|i386;106542-24;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/strmod/ldterm patch 109374|06|Oct/26/01| | | | |8|sparc.sun4u;|SUNWensqr:6.1,REV=1999.11.10.11.18;SUNWensqx:3.1,REV=1999.11.10.11.18;|SunOS 5.8: audioens driver patch -109377|02|Oct/17/00| | | | |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Incorrect locale categories in Norwegian locale +109377|02|Oct/17/00| | |O| |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Incorrect locale categories in 109378|02|Oct/17/00| | | | |7_x86|i386;|SUNWploc1:1.0,REV=1998.09.11.21.36;|SunOS 5.7_x86: Incorrect locale categories in Norwegian locale 109379|02|Oct/17/00| | | | |2.6|sparc;|SUNWploc1:1.0,REV=1997.06.14.16.13;SUNWploc1:1.0,REV=1997.07.14.15.26;|SunOS 5.6: Incorrect locale categories in Norwegian locale 109380|02|Oct/17/00| | | | |2.6_x86|i386;|SUNWploc1:1.0,REV=1997.06.14.16.20;SUNWploc1:1.0,REV=1997.07.14.14.35;|SunOS 5.6_x86: Incorrect locale categories in Norwegian locale 109381|03|May/25/01| | | | |Unbundled|all;sparc;108049-05;|SUNWjbmtm:4.0,REV=1999.12.22.16.41;SUNWjmads:4.0,REV=1999.12.22.16.40;SUNWjmclm:4.0,REV=1999.12.22.16.40;SUNWjmcln:4.0,REV=1999.12.22.16.40;SUNWjmclq:4.0,REV=1999.12.22.16.40;SUNWjmcmm:4.0,REV=1999.12.22.16.40;SUNWjmdmi:4.0,REV=1999.12.22.16.41;SUNWjmdmp:4.0,REV=1999.12.22.16.41;SUNWjmimm:4.0,REV=1999.12.22.16.40;SUNWjmolh:4.0,REV=1999.12.29.11.59;SUNWjmols:4.0,REV=1999.12.22.16.40;SUNWjmsdd:4.0,REV=1999.12.22.16.41;SUNWjwa:1.0.3,REV=00.00.00;|Solstice Internet Mail Server 4.0_ja: Misc. fixes -109384|04|Jun/03/02| | | | |8|sparc;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;|SunOS 5.8: libaio patch -109385|03|Jan/18/02| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libaio patch +109384|09|Dec/10/03| | | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libaio patch +109385|07|Nov/04/03| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libaio patch 109386|02|Jan/11/01| | |O| |2.6|sparc;|SUNWntpu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 107298-03 SunOS 5.6: Patch usr/lib/inet/xntpd 109387|02|Jan/11/01| | |O| |2.6_x86|i386;|SUNWntpu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 107299-03 SunOS 5.6_x86: patch usr/lib/inet/xntpd 109388|01|Jun/02/00|R|S| | |2.6|sparc;|SUNWfac:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/vmsys/bin/chkperm @@ -4626,7 +4716,7 @@ 109398|01|May/24/00| | | | |7_x86|i386;|SUNWjeezt:1.3,REV=1.0.47;SUNWjpezt:1.3,REV=1.0.47;SUNWjuezt:1.3,REV=1.0.47;|SunOS 5.7_x86: sdtname.dt and sdtprocess.dt japanese patches 109399|03|Mar/13/01| | | | |Unbundled|||Hardware/FCode: FC100/P FibreChannel host adapter FCode update 109400|03|Jun/02/00| | | | |Unbundled|||Hardware/Fcode: FC100/S SBus FibreChannel host adapter rev. 1.13 f -109401|13|Mar/19/02|R|S| | |8_x86|i386;|SUNWxwpls:3.6.6,REV=0.1999.12.08;SUNWxwscf:3.6.0,REV=0.1999.11.04;|SunOS 5.8_x86: Updated video drivers and fixes +109401|14|Dec/24/02|R|S| | |8_x86|i386;|SUNWxwpls:3.6.6,REV=0.1999.12.08;SUNWxwscf:3.6.0,REV=0.1999.11.04;|SunOS 5.8_x86: Updated video drivers and fixes 109402|05|Jul/23/01| |S| | |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.99.02.02;SUNWxwscf:3.6.0,REV=0.99.02.02;|SunOS 5.7_x86: Updated video drivers and fixes, S7 5/99 & Later 109404|01|Jun/02/00|R|S| | |7|sparc;|SUNWfac:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/vmsys/bin/chkperm patch 109405|01|Jun/02/00|R|S| | |7_x86|i386;|SUNWfac:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/vmsys/bin/chkperm patch @@ -4635,8 +4725,8 @@ 109410|03|Oct/15/01|R|S| | |7_x86|i386;|SUNWntpu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: xntpd and ntpdate Patch 109411|02|Aug/24/00| | | | |8|sparc;|SUNWjeezt:1.4,REV=1999.12.28.13.45;SUNWjpezt:1.4,REV=1999.12.28.13.45;SUNWjuezt:1.4,REV=1999.12.28.13.45;|SunOS 5.8: sdtname.dt and sdtprocess.dt japanese patch for sparc 109412|02|Aug/24/00| | | | |8_x86|i386;|SUNWjeezt:1.4,REV=1999.12.28.13.58;SUNWjpezt:1.4,REV=1999.12.28.13.58;SUNWjuezt:1.4,REV=1999.12.28.13.58;|SunOS 5.8_x86: sdtname.dt and sdtprocess.dt japanese patch -109413|09|Aug/06/02| |S| | |Unbundled|all;sparc;|SUNWseamj:2000.01.06.11.30.21;SUNWseams:2000.01.06.11.30.21;108879-08 (or newer)|Solstice AdminSuite 3.0.1: NIS + compat passwd autohome rights fix -109414|07|Jul/11/01| |S| | |Unbundled|all;i386;|SUNWseamj:3.0,REV=2000.01.06.11.30.21;SUNWseams:3.0,REV=2000.01.06.11.30.21;108881-08|Solstice AdminSuite 3.0.1_x86: NIS+ compat passwd autohome rights +109413|10|May/08/03| |S| | |Unbundled|all;sparc;|SUNWseamj:3.0,REV=2000.01.06.11.30.21;SUNWseams:3.0,REV=2000.01.06.11.30.21;108879-08 (or newer)|Solstice AdminSuite 3.0.1: NIS + compat passwd autohome rights fix +109414|09|May/08/03| |S| | |Unbundled|all;i386;|SUNWseamj:3.0,REV=2000.01.06.11.30.21;SUNWseams:3.0,REV=2000.01.06.11.30.21;108881-08 (or newer)|Solstice AdminSuite 3.0.1_x86: NIS+ compat passwd autohome rights 109415|01|May/23/00| | |O| |2.6|105181-20;||OBSOLETED by 105181 109416|01|May/23/00| | |O| |2.6_x86|105182-20;||OBSOLETED by 105182 109417|01|May/23/00| | | | |2.6|sparc;105181-20;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/bin/netstat @@ -4645,28 +4735,29 @@ 109423|01|Oct/03/00| | | | |Unbundled|sparc;|SUNWpnm:2.2,REV=1999.02.09.23.00;|SunCluster 2.2: pnmstat manpage patch 109424|01|Oct/03/00| | |O| |Unbundled|sparc;|SUNWpnm:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109212-05 SunCluster 2.2: pnmstat manpage patch 109425|01|Oct/24/00| | |O| |Unbundled|sparc;|SUNWscds:2.2,REV=2000.03.14.18.21;|Obsoleted by: 109432-05 Sun Cluster 2.2: hadsconfig man page patch -109426|08|Feb/22/02| | | | B|Unbundled|sparc;109210-01;109210-01;|SUNWscor:2.2,REV=2000.03.14.18.21;|BADPATCH Sun Cluster 2.2: HA-Oracle Patch +109426|08|Feb/22/02| | | | B|Unbundled|sparc;109210-01;109210-01;|SUNWscor:2.2,REV=2000.03.14.18.21;|WITHDRAWN Sun Cluster 2.2: HA-Oracle Patch +109426|11|Jan/06/03| |S| | |Unbundled|sparc;109210-01;|SUNWscor:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: HA-Oracle Patch 109427|01|Oct/30/00| | |O| |Unbundled|sparc;|SUNWsc:2.2,REV=2000.03.14.18.21;|Obsoleted by: 109210-05 Sun Cluster 2.2: Layered Volume VxVM3.0.4 109428|01|Jan/31/01| | |O| |Unbundled|sparc;|SUNWscman:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108445-04 SunCluster 2.2: pmfadm manpage patch 109429|01|Jan/31/01| | |O| |Unbundled|sparc;|SUNWscman:2.2,REV=1999.02.09.23.30;|Obsoleted by: 108446-03 SunCluster 2.2: pmfadm manpage patch 109431|02|Feb/21/02| |S| | |Unbundled|sparc;|SUNWscman:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: cluster_help/man pages patch 109432|05|Jul/23/01| | | | |Unbundled|sparc;|SUNWscds:2.2,REV=2000.03.14.18.21;SUNWscpro:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: Data Service Common Patch 109433|02|Oct/24/00| | | | |Unbundled|sparc;|SUNWsccf:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: Data Services: Dataservice Patch for Apache Suppo -109434|03|Jul/26/02| | | | |Unbundled|sparc;109432-02;109433-02;|SUNWscapc:2000.06.20.16.53;|Sun Cluster 2.2: HA-Apache Patch -109439|01|May/25/00| | | | |7|sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: simba driver patch -109441|04|Jul/30/01| | | | |8|sparc;|SUNWjeudc:1.2,REV=1999.12.08.15.55;SUNWjpudc:1.2,REV=1999.12.08.15.55;SUNWjuudc:1.2,REV=1999.12.08.15.55;SUNWudct:1.2,REV=1999.12.17.16.59;|SunOS 5.8: sdtudctool patch -109442|04|Jul/30/01| | | | |8_x86|i386;|SUNWjeudc:1.2,REV=1999.12.08.15.55;SUNWjpudc:1.2,REV=1999.12.08.15.55;SUNWjuudc:1.2,REV=1999.12.08.15.55;SUNWudct:1.2,REV=1999.12.17.17.07;|SunOS 5.8_x86: sdtudctool patch +109434|03|Jul/26/02| | | | |Unbundled|sparc;109432-02;109433-02;|SUNWscapc:2.2,REV=2000.06.20.16.53;|Sun Cluster 2.2: HA-Apache Patch +109439|02|Jun/19/03| | | | |7|sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: simba driver patch +109441|07|Dec/10/03| | | | |8|sparc;|SUNWjeudc:1.2,REV=1999.12.08.15.55;SUNWjpudc:1.2,REV=1999.12.08.15.55;SUNWjuudc:1.2,REV=1999.12.08.15.55;SUNWudct:1.2,REV=1999.12.17.16.59;|SunOS 5.8: UDC patch +109442|07|Dec/10/03| | | | |8_x86|i386;|SUNWjeudc:1.2,REV=1999.12.08.15.55;SUNWjpudc:1.2,REV=1999.12.08.15.55;SUNWjuudc:1.2,REV=1999.12.08.15.55;SUNWudct:1.2,REV=1999.12.17.17.07;|SunOS 5.8_x86: UDC patch 109446|01|Jun/07/00|R|S| | |2.4|sparc;|SUNWfac:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: patch /usr/vmsys/bin/chkperm 109447|01|Jun/07/00|R|S| | |2.4_x86|i386;|SUNWfac:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: patch /usr/vmsys/bin/chkperm 109448|01|Jun/20/00| |S| | |2.3|sparc;|SUNWfac:11.5.0,REV=2.0.18;|SunOS 5.3: patch /usr/vmsys/bin/chkperm 109452|01|Jul/05/00| | | | |8|sparc;|SUNWesdte:1.1,REV=1999.12.20.14.49;|SunOS 5.8: Window List, buttons unlocalized in Options dialog 109453|01|Jul/05/00| | | | |8_x86|i386;|SUNWesdte:1.1,REV=1999.12.20.15.31;|SunOS 5.8_x86: Window List, buttons unlocalized in Options dialog -109454|01|Jul/05/00| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/fifofs and /kernel/fs/sparcv9/fifofs patch -109455|01|Jul/05/00| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/fifofs patch +109454|02|Oct/10/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/fifofs and /kernel/fs/sparcv9/fifofs patch +109455|02|Oct/10/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/fifofs patch 109457|01|Jun/09/00| | | | |2.6_x86|i386;|SUNW5xplt:2.0,REV=1.0.35;|SunOS 5.6_x86: No IM for java applications in zh_TW.BIG5 locale -109458|02|Jul/30/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/strmod/ldterm patch -109459|02|Jul/30/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/strmod/ldterm patch -109460|06|Oct/23/01| | | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.13.13.40;SUNWluxdx:11.8.0,REV=2000.01.08.18.12;SUNWluxdx:11.8.0,REV=2000.01.13.13.40;SUNWluxl:11.8.0,REV=2000.01.08.18.12;SUNWluxlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: socal and sf drivers patch +109458|03|Jan/07/03| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/strmod/ldterm patch +109459|03|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/strmod/ldterm patch +109460|10|Aug/04/03|R| | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.13.13.40;SUNWluxdx:11.8.0,REV=2000.01.08.18.12;SUNWluxdx:11.8.0,REV=2000.01.13.13.40;SUNWluxl:11.8.0,REV=2000.01.08.18.12;SUNWluxlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: socal and sf drivers patch 109461|03|May/11/01| | |O| |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 111177-02 SunOS 5.8: /usr/lib/lwp/libthread.so.1 pat 109462|03|May/09/01| | |O| |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 111178-03 SunOS 5.8_x86: /usr/lib/lwp/libthread.so.1 109463|01|Jul/21/00| | | | |8|sparc;108968-01;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2: Filemgr Patch @@ -4696,23 +4787,23 @@ 109495|01|Sep/21/00| | | | |Unbundled|i386;|SPROfrzpt:6.0;SPROvertl:6.0;|TW 6.0_x86: Patch for Forte Development 6 TW 109497|02|Dec/12/00| | | | |Unbundled|sparc;|SPROvisu:6.0;|Visual 6.0: Patch for Visual user widget integration 109498|02|Jan/24/01| | | | |Unbundled|i386;|SPROvisu:6.0;|Visual 6.0_x86: Patch for Visual user widget integration -109502|06|Sep/18/01| | | | |Unbundled|i386;|SPROlang:6.1;|Compiler Common 6.1_x86: Patch C 5.2, C++ 5.2 -109503|11|Apr/19/02| | | | |Unbundled|sparc;|SPROf90:6.1;SPROl90:6.1;SPROl90s:6.1;SPROl90sx:6.1;SPROl90x:6.1;|F90 6.1: Patch for Forte Developer 6 update 1 Fortran 95 6.1 compi +109502|07|Sep/27/02| | | | |Unbundled|i386;|SPROlang:6.1;|Compiler Common 6.1_x86: Patch C 5.2, C++ 5.2 +109503|12|Aug/13/02| | | | |Unbundled|sparc;|SPROf90:6.1;SPROl90:6.1;SPROl90s:6.1;SPROl90sx:6.1;SPROl90x:6.1;|F90 6.1: Patch for Forte Developer 6 update 1 Fortran 95 6.1 compi 109504|01|Dec/20/00| | | | |Unbundled|sparc;109503-01;|SPROl90sx:6.1;SPROl90x:6.1;|F90 6.1: Patch for 64-bit Forte Development 6 update 1 F95 6.1 com -109505|10|Jan/23/02| | | | |Unbundled|sparc;|SPROlang:6.1;SPROlangx:6.1;|Compiler Common 6.1: Patch C 5.2, C++ 5.2, F77 5.2, F90 6.1 -109506|07|Apr/19/02| | | | |Unbundled|sparc;|SPROf77:6.1;SPROl77:6.1;SPROl77s:6.1;SPROl77sx:6.1;SPROl77x:6.1;|F77 5.2: Patch for Forte Developer 6 update 1 F77 5.2 compiler -109508|08|Mar/26/02| | | | |Unbundled|sparc;109505-09;|SPROcpl:6.1;SPROcplx:6.1;SPROgc:6.1;SPROgcx:6.1;SPROlgc:6.1;SPROlgcx:6.1;SPROscl:6.1;SPROsclx:6.1;SPROtl7x:6.1;SPROtlbn7:6.1;SPROtll7:6.1;SPROtll7x:6.1;|C++ 5.2: Patch for Forte Developer 6 update 1 C++ compiler -109509|08|Mar/26/02| | | | |Unbundled|i386;109502-06;|SPROcpl:6.1;SPROgc:6.1;SPROlgc:6.1;SPROscl:6.1;SPROtlbn7:6.1;SPROtll7:6.1;|C++ 5.2_x86: Patch for Forte Developer 6 update 1 C++ compiler +109505|11|Aug/12/02| | | | |Unbundled|sparc;|SPROlang:6.1;SPROlangx:6.1;|Compiler Common 6.1: Patch C 5.2, C++ 5.2, F77 5.2, F90 6.1 +109506|08|Aug/07/02| | | | |Unbundled|sparc;|SPROf77:6.1;SPROl77:6.1;SPROl77s:6.1;SPROl77sx:6.1;SPROl77x:6.1;|F77 5.2: Patch for Forte Developer 6 update 1 F77 5.2 compiler +109508|09|Aug/14/02| | | | |Unbundled|sparc;109505-09;|SPROcpl:6.1;SPROcplx:6.1;SPROgc:6.1;SPROgcx:6.1;SPROlgc:6.1;SPROlgcx:6.1;SPROscl:6.1;SPROsclx:6.1;SPROtl7x:6.1;SPROtlbn7:6.1;SPROtll7:6.1;SPROtll7x:6.1;|C++ 5.2: Patch for Forte Developer 6 update 1 C++ compiler +109509|09|Aug/14/02| | | | |Unbundled|i386;109502-06;|SPROcpl:6.1;SPROgc:6.1;SPROlgc:6.1;SPROscl:6.1;SPROtlbn7:6.1;SPROtll7:6.1;|C++ 5.2_x86: Patch for Forte Developer 6 update 1 C++ compiler 109510|06|May/10/02| | | | |Unbundled|sparc;|SPROdbx:6.1;SPROdbxx:6.1;|Forte Developer 6 update 1: Patch for Debugger 109511|06|May/10/02| | | | |Unbundled|i386;|SPROdbx:6.1;|Forte Developer 6 update 1_x86: Patch for Debugger -109513|10|May/06/02| | | | |Unbundled|sparc;|SPROcc:6.1;|C 5.2: Patch for Forte Developer 6 Update 1 C compiler -109514|07|May/22/02| | | | |Unbundled|i386;|SPROcc:6.1;|C 5.2_x86: Patch for Forte Developer 6 Update 1 C compiler +109513|11|Feb/03/03| | | | |Unbundled|sparc;|SPROcc:6.1;|C 5.2: Patch for Forte Developer 6 Update 1 C compiler +109514|08|Feb/03/03| | | | |Unbundled|i386;|SPROcc:6.1;|C 5.2_x86: Patch for Forte Developer 6 Update 1 C compiler 109516|02|May/10/01| | | | |Unbundled|sparc;|SPROprfan:6.1;|Performance Analyzer 6.0: Patch for Forte Developer 6 update 1 109517|02|Jun/04/01| | | | |Unbundled|i386;|SPROprfan:6.1;|Performance Analyzer 6.0_x86: Patch for Forte Developer 6 update 1 -109519|01|Apr/05/01| | | | |Unbundled|sparc;|SPROws:6.1;|Forte 6 project (2 exe's + static lib) becomes corrupt upon saving -109524|13|Jul/26/02| | | | |8|sparc;|SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWssad:2000.01.08.18.12;SUNWssadx:2000.01.08.18.12;|SunOS 5.8: /kernel/drv/ssd patch +109519|02|Aug/16/02| | | | |Unbundled|sparc;|SPROws:6.1;|Workshop IPE 6.1: Patch for Forte Developer 6 update 1 Workshop +109524|15|Mar/24/03| | |O| |8|sparc;108974-26;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWssad:11.8.0,REV=2000.01.08.18.12;SUNWssadx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108974-29 SunOS 5.8: /kernel/drv/ssd patch 109525|02|Feb/27/01| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWsutl:11.5.1,REV=96.05.02.21.09;SUNWxcu4:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Patch for mv, cp -rp, and ln -109526|01|May/31/00| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWsutl:11.5.1,REV=96.05.02.19.23;SUNWxcu4:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: mv can unlink directory files +109526|02|Jan/28/03| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWsutl:11.5.1,REV=96.05.02.19.23;SUNWxcu4:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Patch for mv, cp -rp, and ln 109527|02|Sep/07/00| |S| | |Trusted_Solaris_7|||Trusted Solaris 7: selection manager, dtgreet, tsoldnd patch 109528|02|Aug/30/00| |S| | |Trusted_Solaris_7|||Trusted Solaris 7: CDE Window Manager patch 109529|06|May/09/01| | | | |8|sparc;|SUNWluxop:11.8.0,REV=2000.01.08.18.12;SUNWluxox:11.8.0,REV=2000.09.23.16.15;| SunOS 5.8: luxadm, liba5k and libg_fc patch @@ -4726,8 +4817,8 @@ 109537|01|Aug/25/00| |S| | |Trusted_Solaris_7_x86|109596-01;||Trusted Solaris 7_x86: remote x-windows display from non TS7 hosts 109538|01|May/30/00| | | | |8_x86|i386;|SUNWfrdst:1.1,REV=1999.12.20.15.12;|SunOS 5.8_x86: Unlocalized buttons on user-interface of dhcpmgr 109542|01|May/22/00| | | | |Unbundled|sparc;|SUNWsrmb:1.1.0,REV=1999.07.07.11.24;|Solaris Resource Manager 1.1/1.2: Setting maxusage negative not ok -109543|20|Jul/11/02| | | | |Unbundled|sparc;|SUNWafbgl:2000.04.09;SUNWffbgl:2000.04.09;SUNWglrt:2000.04.09;SUNWglrtu:2000.04.09;SUNWglsr:2000.04.09;SUNWglsrz:2000.04.09;SUNWifbgl:2000.04.09;|OpenGL 1.2.1: OpenGL Patch for Solaris 2.5.1/2.6/7/8 (32-bit) -109544|20|Jul/11/02| | | | |Unbundled|sparc;109543-20;|SUNWafbgx:2000.04.09;SUNWffbgx:2000.04.09;SUNWglrtx:2000.04.09;SUNWglsrx:2000.04.09;SUNWifbgx:2000.04.09;|OpenGL 1.2.1: OpenGL Patch for Solaris 7/8 (64-bit) +109543|20|Jul/11/02| | | | |Unbundled|sparc;|SUNWafbgl:1.2.1,REV=2000.04.09;SUNWffbgl:1.2.1,REV=2000.04.09;SUNWglrt:1.2.1,REV=2000.04.09;SUNWglrtu:1.2.1,REV=2000.04.09;SUNWglsr:1.2.1,REV=2000.04.09;SUNWglsrz:1.2.1,REV=2000.04.09;SUNWifbgl:1.2.1,REV=2000.04.09;|OpenGL 1.2.1: OpenGL Patch for Solaris 2.5.1/2.6/7/8 (32-bit) +109544|20|Jul/11/02| | | | |Unbundled|sparc;109543-20;|SUNWafbgx:1.2.1,REV=2000.04.09;SUNWffbgx:1.2.1,REV=2000.04.09;SUNWglrtx:1.2.1,REV=2000.04.09;SUNWglsrx:1.2.1,REV=2000.04.09;SUNWifbgx:1.2.1,REV=2000.04.09;|OpenGL 1.2.1: OpenGL Patch for Solaris 7/8 (64-bit) 109548|01|Mar/30/01|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=390;|SunOS 5.4: patch /usr/sbin/keyserv 109549|01|Mar/30/01| |S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=367;|SunOS 5.4_x86: patch /usr/sbin/keyserv 109550|01|Mar/30/01|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=393;|SunOS 5.4: patch /usr/sbin/rpc.bootparamd @@ -4736,6 +4827,7 @@ 109553|01|Jul/05/00| | | | |8_x86|i386;|SUNWd8dst:1.1,REV=1999.12.20.17.17;SUNWd8wm:1.1,REV=2000.01.13.10.09;SUNWe8dst:1.1,REV=1999.12.20.17.21;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWe8wm:1.1,REV=1999.12.23.17.16;SUNWf8dst:1.1,REV=1999.12.20.17.12;SUNWf8dte:1.1,REV=2000.01.05.09.11;SUNWf8wm:1.1,REV=1999.12.23.17.17;SUNWi8dst:1.1,REV=1999.12.20.17.15;SUNWi8dte:1.1,REV=2000.01.05.12.16;SUNWi8wm:1.1,REV=1999.12.23.17.17;SUNWs8dst:1.1,REV=1999.12.20.17.24;SUNWs8dte:1.1,REV=2000.01.05.11.58;SUNWs8wm:1.1,REV=1999.12.23.17.18;|SunOS 5.8_x86: FIGSS-UTF.8, Removable media manager unlocalized 109560|03|Nov/01/00| | | | |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: ar has errors in / lacks some LC_CTYPE definitions 109561|03|Oct/03/00| | | | |Unbundled|sparc;|SUNWvts:2.1.3,REV=06.98.04.17;|SunVTS 2.1.3: Netra ft180x power-supply test +109563|02|Jul/31/00| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 109563|03|Sep/11/00| | |O| |Unbundled|sparc;|SUNWapdv:2.3.0,REV=1999.12.01.19.10;|Obsoleted by: 108720-02 AP 2.3: multi stream IO causes a timeout 109564|01|Jul/05/00| | | | |8|sparc;|SUNWdeos:11.5.1,REV=1999.12.13.19.17;|SunOS 5.8: Removable Media Mgr, Missing floppy error unlocalized 109565|01|Jul/05/00| | | | |8_x86|i386;|SUNWdeos:11.5.1,REV=1999.12.13.19.13;|SunOS 5.8_x86: Removable Media Mgr, Missing floppy error unlocaliz @@ -4753,9 +4845,9 @@ 109581|01|May/31/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: cbs performance improvements 109582|02|Nov/14/01| | | | |8|sparc;109896-05;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: sdtaudio patch 109583|02|Oct/19/01| | | | |8|i386;109897-06;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtaudio patch -109584|24|Jun/21/02| | | | |Unbundled|sparc;|SUNWctac:2000.04.26.19.27;|Netra ct 1.0: patch for Netra ct Alarm Card Firmware and Utilities -109585|12|Mar/04/02| | | | |Unbundled|sparc;109584-20;|SUNWcteux:1.0,REV=2000.04.26.19.29;SUNWctevx:1.0,REV=2000.04.26.19.29;|Netra ct 1.0: patch for Netra ct Environment Monitor on Solaris 8 -109586|09|Dec/05/01| | | | |Unbundled|sparc;|SUNWctmgx:1.0,REV=2000.11.22.10.47;|netra ct 1.0: patch for Netra ct Element Management Agent +109584|24|Jun/21/02| | | | |Unbundled|sparc;|SUNWctac:1.0,REV=2000.04.26.19.27;|Netra ct 1.0: patch for Netra ct Alarm Card Firmware and Utilities +109585|15|Nov/13/03| | | | |Unbundled|sparc;109584-20;|SUNWcteux:1.0,REV=2000.04.26.19.29;SUNWctevx:1.0,REV=2000.04.26.19.29;|Netra ct 1.1: Netra ct Environment Monitor on Solaris 8 for Netra +109586|12|Nov/03/03| | | | |Unbundled|sparc;|SUNWctmgx:1.0,REV=2000.11.22.10.47;|Netra ct 1.1: patch for Netra ct Element Management Agent 109587|03|Jun/14/01|R| |O| |8|sparc;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109318-18 SunOS 5.8: libspmistore patch 109588|04|Jun/15/01|R| |O| |8_x86|i386;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109319-19 SunOS 5.8_x86: libspmistore patch 109589|01|Jun/06/00| | | | |Unbundled|sparc;|SUNWeswga:2.1_Build16,REV=2.7.1999.11.23;|SunMC 2.1: WGS agent dies with a A5X00 array connected to it @@ -4773,22 +4865,22 @@ 109601|02|Aug/25/00| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: TSOL messages do not exist in dtfile.msg 109602|02|Sep/07/00| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: selection manager dtgreet tsoldnd 109603|02|Aug/30/00| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: CDE Window Manager patch -109607|01|Nov/07/00| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/iso/stdlib_iso.h patch -109608|01|Nov/07/00| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/iso/stdlib_iso.h patch +109607|02|Nov/08/02| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/iso/stdlib_iso.h patch +109608|02|Nov/08/02| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/iso/stdlib_iso.h patch 109609|01|Apr/02/01| | | | |8|sparc;|SUNWkleu:8.0,REV=1999.12.10.08.38;|SunOS 5.8: UTF-8 Korean attached text becomes garbled 109610|01|Apr/02/01| | | | |8_x86|i386;|SUNWkleu:8.0,REV=1999.12.10.08.26;|SunOS 5.8_x86: UTF-8 Korean attached text becomes garbled 109611|01|Jun/09/00| | | | |Unbundled|sparc;|SUNWj2pi:20.1.2.2,REV=1999.10.14.18.04;|Java Plugin 1.2: Product patch for Solaris 109612|01|Jun/09/00| | | | |Unbundled|i386;|SUNWj2pi:20.1.2.2,REV=1999.10.14.18.12;|Java Plugin 1.2_x86: Product patch for Solaris -109613|03|Nov/14/01| | | | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: dtmail patch -109614|03|Nov/14/01| | | | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtmail patch -109618|01|Nov/07/00| | | | |8|sparc;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|SunOS 5.8: en_US.UTF-8 locale patch -109619|01|Nov/07/00| | | | |8_x86|i386;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|SunOS 5.8_x86: en_US.UTF-8 locale patch +109613|06|Feb/27/03| | | | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: dtmail patch +109614|06|Feb/27/03| | | | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtmail patch +109618|01|Nov/07/00| | |O| |8|sparc;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|Obsoleted by: 114059-02 SunOS 5.8: en_US.UTF-8 locale patch +109619|01|Nov/07/00| | |O| |8_x86|i386;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|Obsoleted by: 114060-02 SunOS 5.8_x86: en_US.UTF-8 locale patch 109620|02|Dec/07/00| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: elxl patch 109621|02|Dec/07/00| | | | |7_x86|||SunOS 5.7_x86: elxl ITU patch 109622|01|Apr/02/01| | | | |8|sparc;|SUNWcufnt:8.0,REV=1999.10.12.16.33;SUNWhufnt:8.0,REV=1999.10.12.16.26;|SunOS 5.8: env LANG=zh_TW dtterm doesn't work in partial zh_TW.UTF 109623|01|Apr/02/01| | | | |8_x86|i386;|SUNWcufnt:8.0,REV=1999.10.12.15.13;SUNWhufnt:8.0,REV=1999.10.12.15.04;|SunOS 5.8_x86: env LANG=zh_TW dtterm doesn't work in zh_TW.UTF-8 109624|01|Sep/01/00| | | | |Unbundled|sparc;|SUNWiimsu:2.0.11,REV=02.01.2000;|StorEdge Instant Image 2.0: Patch for II on Solaris_JDK_1.2.2_05a -109625|01|Sep/26/00| | | | |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Sort Errors in hu +109625|01|Sep/26/00| | |O| |7|sparc;|SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Sort Errors in hu 109628|02|Dec/07/00| | | | |Unbundled|sparc;|SUNWmscmu:2.0.6,REV=02.01.2000;|FWC 2.0 (English only): SUNWj2rt/Health Tab Patch 109632|01|Jun/27/00| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: devlinks fails for minor device numbers > 1024 109634|01|Jun/07/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: power fixes @@ -4798,19 +4890,20 @@ 109640|01|Nov/07/00| | |O| |8_x86|i386;|SUNWtleu:8.0,REV=1999.12.12.10.20;|Obsoleted by: 111189-02 SunOS 5.8_x86: th locale error in / lacks 109642|01|Sep/01/00| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/sys/dkio.h patch 109643|01|Sep/01/00| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/sys/dkio.h patch -109644|07|Mar/07/02| | | | B|8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWos86r:1.1.0,REV=2000.01.08.18.17;|BADPATCH SunOS 5.8_x86: /kernel/drv/sd patch +109644|07|Mar/07/02| | | | B|8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWos86r:1.1.0,REV=2000.01.08.18.17;|WITHDRAWN SunOS 5.8_x86: /kernel/drv/sd patch +109644|09|Apr/29/03| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWos86r:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/sd patch 109645|02|Aug/30/00| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: No help volume: New_FP, location ID:ToOcupp 109646|02|Aug/30/00| |S| | |Trusted_Solaris_7|||Trusted Solaris 7: Some help files for admintool are missing 109647|01|Aug/11/00| | | | |Unbundled|sparc;|SUNWvtsct:1.0,REV=2000.04.26.16.01;|SunVTSCT, SUNWvtsct diag Netract, env4test, alarmtest 109648|02|Aug/30/00| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: Some help files for admintool are missing 109649|02|Aug/08/00| | |O| |7|sparc;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106541-16 SunOS 5.7: nss_nisplus.so.1 & libnss_nispl -109657|07|Apr/16/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: isp driver patch -109661|04|Apr/05/01| | | | |Unbundled|sparc;|SUNWsspob:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: DR attach drops cpu(s) to OBP when domain has heavy cpu l +109657|09|Jan/07/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-17;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: isp driver patch +109661|05|Oct/02/02| | | | |Unbundled|sparc;|SUNWsspob:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: DR attach drops cpu(s) to OBP when domain has heavy cpu l 109662|03|Jun/19/01| |S| | |Unbundled|sparc;|SUNWftpu:11.6.0,REV=1999.01.15.16.11;|Solaris ISP Server 2.0: /usr/lib/inet/in.ftpd patch 109665|01|Jun/13/00| | | | |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: Slow Performance with SSP on Solaris 2.6, 7 and 8 109666|01|Jun/13/00| | | | |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: Slow Performance with SSP on Solaris 2.6, 7 and 8 -109667|04|Oct/15/01|R|S| | |8|sparc;|SUNWntpu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/inet/xntpd and /usr/sbin/ntpdate patch -109668|04|Oct/15/01|R|S| | |8_x86|i386;|SUNWntpu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/inet/xntpd and /usr/sbin/ntpdate patch +109667|05|Jun/16/03|R|S| | |8|sparc;|SUNWntpu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/inet/xntpd and /usr/sbin/ntpdate patch +109668|05|Nov/14/03|R|S| | |8_x86|i386;|SUNWntpu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/inet/xntpd and /usr/sbin/ntpdate patch 109669|01|Jun/27/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Fixes bugid 4323057 - aclcall misuses arra 109670|01|Jun/27/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: rlogin does not echo back to the screen 109671|01|Aug/22/00| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: 4301775: using regexec(3C) in a C program g @@ -4832,15 +4925,15 @@ 109692|03|Apr/12/01| | | | |8|sparc;|SUNWdepmw:2.2,REV=1999.12.13.21.10;SUNWerdm:66;SUNWespmw:2.2,REV=1999.12.13.21.10;SUNWfrpmw:2.2,REV=1999.12.13.21.10;SUNWitpmw:2.2,REV=1999.12.13.21.10;SUNWsvpmw:2.2,REV=1999.12.13.21.10;|SunOS 5.8: New and updated messages for figss locale 109693|02|Apr/12/01| | | | |8_x86|i386;|SUNWdepmw:2.2,REV=1999.12.13.21.11;SUNWerdm:66;SUNWespmw:2.2,REV=1999.12.13.21.11;SUNWfrpmw:2.2,REV=1999.12.13.21.10;SUNWitpmw:2.2,REV=1999.12.13.21.11;SUNWsvpmw:2.2,REV=1999.12.13.21.11;|SunOS 5.8_x86: New and updated messages for figss locale 109695|03|Jul/23/01| |S| | |8|sparc;|SUNWocfr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/smartcard/opencard.properties patch -109696|05|Apr/03/02| | | | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.7.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.7.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.7.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.7.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.7.2000.01.10;|SunMC2.1.1 Jumbo patch -109697|05|Apr/03/02| | | | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.8.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.8.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.8.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.8.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.8.2000.01.10;|SunMC2.1.1: Jumbo Patch -109698|05|Apr/03/02| | | | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.5.2000.01.12;SUNWesmod:2.1.1_Build05,REV=2.5.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.5.2000.01.10;|SunMC 2.1.1: Jumbo Patch -109699|05|Apr/03/02| | | | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.6.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.6.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.6.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.6.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.6.2000.01.10;|SunMC2.1.1: Jumbo Patch +109696|11|Jun/09/03| |S| | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.7.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.7.2000.01.10;SUNWesjp:2.1.1_Build05,REV=2.7.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.7.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.7.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.7.2000.01.10;|SunMC2.1.1: Patch for Solaris 7 +109697|11|Jun/09/03| |S| | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.8.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.8.2000.01.10;SUNWesjp:2.1.1_Build05,REV=2.8.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.8.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.8.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.8.2000.01.10;|SunMC2.1.1: Patch for Solaris 8 +109698|09|May/15/03| |S| | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.5.2000.01.12;SUNWesmod:2.1.1_Build05,REV=2.5.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.5.2000.01.10;|Sun Management Center 2.1.1: Patch for Solaris 2.5.1 +109699|10|Jun/09/03| |S| | |Unbundled|sparc;|SUNWesagt:2.1.1_Build05,REV=2.6.2000.01.12;SUNWescon:2.1.1_Build05,REV=2.6.2000.01.10;SUNWesjp:2.1.1_Build05,REV=2.6.2000.01.10;SUNWesmod:2.1.1_Build05,REV=2.6.2000.01.10;SUNWessrv:2.1.1_Build05,REV=2.6.2000.01.10;SUNWsycfd:2.1.1_Build05,REV=2.6.2000.01.10;|SunMC2.1.1: Patch for Solaris 2.6 109700|01|Aug/09/00| | | | |Unbundled|sparc;|SUNWhwrd:1.0.0,REV=1999.05.17;SUNWhwrdf:1.0.0,REV=1999.05.17;SUNWhwrdg:1.0.0,REV=1999.05.17;SUNWhwrdm:1.0.0,REV=1999.05.17;|SunOS 5.6: SRC/P Mandatory Maintenance Update Patch I 109701|01|Aug/09/00| | | | |Unbundled|sparc;|SUNWhwrd:1.0.0,REV=1999.05.17;SUNWhwrdf:1.0.0,REV=1999.05.17;SUNWhwrdg:1.0.0,REV=1999.05.17;SUNWhwrdm:1.0.0,REV=1999.05.17;SUNWhwrdx:1.0.0,REV=1999.05.17;|SunOS 5.7: SRC/P Mandatory Maintenance Update Patch I 109702|01|Jun/05/00| | | | |2.6|sparc.sun4u;|SUNWpci:1.1,REV=1998.01.14.17.03;|SunOS 5.6: backport driver.conf property merging to simba PCI driv -109704|02|Aug/02/00| | | | |8|sparc;|SUNWjfpu:3.0,REV=1999.12.08.15.55;SUNWjfpux:1.1,REV=1999.12.08.15.55;SUNWjiu8:1.2,REV=1999.12.08.15.55;SUNWjiu8x:1.1,REV=1999.12.08.15.55;|SunOS 5.8: Japanese iconv patch -109705|02|Aug/02/00| | | | |8_x86|i386;|SUNWjfpu:3.0,REV=1999.12.08.15.55;SUNWjiu8:1.2,REV=1999.12.08.15.55;|SunOS 5.8_x86: Japanese iconv patch +109704|03|May/27/03| | | | |8|sparc;|SUNWjfpu:3.0,REV=1999.12.08.15.55;SUNWjfpux:1.1,REV=1999.12.08.15.55;SUNWjiu8:1.2,REV=1999.12.08.15.55;SUNWjiu8x:1.1,REV=1999.12.08.15.55;|SunOS 5.8: Japanese iconv patch +109705|03|May/23/03| | | | |8_x86|i386;|SUNWjfpu:3.0,REV=1999.12.08.15.55;SUNWjiu8:1.2,REV=1999.12.08.15.55;|SunOS 5.8_x86: Japanese iconv patch 109707|01|Jan/05/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/arp patch 109708|01|Jan/05/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/arp patch 109709|01|Jan/05/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/arp patch @@ -4849,7 +4942,7 @@ 109712|01|Jul/20/00| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/cat patch 109713|01|Dec/05/00| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWsutl:11.7.0,REV=1998.09.01.04.16;SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: cp patch 109714|01|Dec/05/00| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWsutl:11.7.0,REV=1998.09.01.04.53;SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: cp patch -109715|07|May/16/02| | | | |Unbundled|sparc;|SUNWhsip:3.0,REV=1999.09.24;SUNWhsipm:3.0,REV=1999.09.24;SUNWhsipu:3.0,REV=1999.09.24;|SunHSI/P 3.0: HSIP driver, test hardness, multiboard, loopback +109715|14|Dec/19/03| | | | |Unbundled|sparc;|SUNWhsip:3.0,REV=1999.09.24;SUNWhsipm:3.0,REV=1999.09.24;SUNWhsipu:3.0,REV=1999.09.24;|SunHSI/P 3.0: HSIP driver, test hardness, multiboard, loopback 109719|01|Jan/05/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: arp should lose set-gid bid 109720|01|Jan/05/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: arp should lose set-gid bid 109721|01|Jan/05/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: arp should lose set-gid bit @@ -4865,14 +4958,15 @@ 109741|05|Jun/13/01| | |O| |8_x86|i386;109280-10;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/drv/udp patch 109742|04|May/11/01|R| |O| |8|sparc;sparc.sun4u;sparc.sun4us;109279-09;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-13 SunOS 5.8: /kernel/drv/icmp patch 109743|05|Jun/13/01|R| |O| |8_x86|i386;109280-10;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/drv/icmp patch -109744|01|Aug/28/00|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/nfs/nfsd patch +109744|02|Sep/19/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: nfsd and lockd Patch +109745|02|Oct/07/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: nfsd and lockd Patch 109748|03|Nov/14/01| | | | |8|sparc;109896-05;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4: sdtaudiocontrol patch 109749|03|Nov/14/01| | | | |8|i386;109897-06;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtaudiocontrol patch 109750|03|Apr/02/01| | | | |8|sparc;|SUNWcpdas:8.0,REV=1999.12.16.07.50;SUNWhpdas:8.0,REV=1999.12.16.07.49;SUNWkpdas:8.0,REV=1999.12.16.07.48;|SunOs 5.8: translation update and sync with base team's PDA images 109751|03|Apr/02/01| | | | |8_x86|i386;|SUNWcpdas:8.0,REV=1999.12.16.08.25;SUNWhpdas:8.0,REV=1999.12.16.08.24;SUNWkpdas:8.0,REV=1999.12.16.08.23;|SunOS 5.8_x86: translation update and sync with base's PDA images 109752|01|Apr/02/01| | | | |8|sparc;|SUNW5xplt:8.0,REV=1999.12.09.17.53;SUNWhuplt:8.0,REV=1999.11.24.18.31;|SunOS 5.8: UI of admintool is lost in partial installation 109753|01|Apr/02/01| | | | |8_x86|i386;|SUNW5xplt:8.0,REV=1999.12.09.17.44;SUNWhuplt:8.0,REV=1999.11.24.18.31;|SunOS 5.8_x86: UI of admintool is lost in partail installation -109754|05|Oct/26/01| | | | |8|sparc.sun4u;|SUNWi2cr:4.2,REV=1999.10.19.10.29;SUNWi2cx:4.2,REV=1999.10.19.10.29;|SunOS 5.8: i2c driver patch +109754|05|Oct/26/01| | |O| |8|sparc.sun4u;|SUNWi2cr:4.2,REV=1999.10.19.10.29;SUNWi2cx:4.2,REV=1999.10.19.10.29;|Obsoleted by: 114583-01 SunOS 5.8: i2c driver patch 109755|01|Jan/05/01| | | | |7|sparc;|SUNWjepmw:1.2,REV=1999.12.08.15.55;SUNWjppmw:1.2,REV=1999.12.08.15.55;SUNWjupmw:1.2,REV=1999.12.08.15.55;|OpenWindows 3.6.1: (japanese) update for power mgt util for s8u2 109756|01|Jan/05/01| | | | |7|i386;|SUNWjepmw:1.2,REV=1999.12.08.15.55;SUNWjppmw:1.2,REV=1999.12.08.15.55;SUNWjupmw:1.2,REV=1999.12.08.15.55;|OpenWindows 3.6.1_x86: (japanese)update for power mgt util for s8u 109759|01|Sep/01/00| | | | |Unbundled|sparc;|SUNWnvm:1.1.0,REV=11.24.1999;SUNWscm:1.1.11,REV=11.24.1999;SUNWspsv:1.0.26,REV=11.24.1999;|Sun StorEdge Fast Write Cache 1.1: scmadm race condition patch @@ -4887,13 +4981,13 @@ 109773|01|Jul/31/00| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Require correction to timezone data for Australia 109774|01|Jul/21/00| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Require correction to timezone data for Australia 109775|01|Jul/31/00| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Require correction to timezone data for Australia -109776|02|Dec/04/00| | | | |7|sparc;|SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Misc. locales have errors in LC_CTYPE definitions -109778|06|Jun/25/02| | | | |8|sparc;|SUNWauaos:1999.11.23.15.15;SUNWauaox:1999.11.24.13.29;SUNWcamox:1999.11.24.13.29;SUNWceuos:1999.12.13.13.25;SUNWceuox:1999.11.24.13.29;SUNWeeuos:1999.12.15.15.44;SUNWeeuox:1999.11.24.13.29;SUNWmeaos:1999.12.08.12.36;SUNWmeaox:1999.12.08.18.13;SUNWnamos:1999.11.23.15.16;SUNWnamox:1999.11.24.13.29;SUNWneuos:1999.12.13.14.44;SUNWneuox:1999.12.13.14.44;SUNWsamos:1999.11.23.15.17;SUNWsamox:1999.11.24.13.29;SUNWseuos:1999.12.16.18.57;SUNWseuox:1999.12.16.17.36;SUNWweuos:1999.12.13.13.24;SUNWweuox:1999.12.13.14.44;|SunOS 5.8: Misc loc have errors in CTYPE and lv colln monetary -109779|03|Aug/01/02| | | | |8_x86|i386;|SUNWauaos:1999.11.23.14.58;SUNWceuos:1999.12.13.12.57;SUNWeeuos:1999.12.15.17.40;SUNWmeaos:1999.12.08.12.49;SUNWnamos:1999.11.23.14.59;SUNWneuos:1999.12.13.15.06;SUNWsamos:1999.11.23.15.00;SUNWseuos:1999.12.16.19.05;SUNWweuos:1999.12.13.15.06;|SunOS 5.8_x86: Misc. locales have errors in LC_CTYPE definitions +109776|02|Dec/04/00| | |O| |7|sparc;|SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Misc. locales have errors in LC +109778|13|Oct/01/03|R| | | |8|sparc;|SUNWauaos:1.0,REV=1999.11.23.15.15;SUNWauaox:1.0,REV=1999.11.24.13.29;SUNWcamox:1.0,REV=1999.11.24.13.29;SUNWceuos:1.0,REV=1999.12.13.13.25;SUNWceuox:1.0,REV=1999.11.24.13.29;SUNWeeuos:1.0,REV=1999.12.15.15.44;SUNWeeuox:1.0,REV=1999.11.24.13.29;SUNWmeaos:1.0,REV=1999.12.08.12.36;SUNWmeaox:1.0,REV=1999.12.08.18.13;SUNWnamos:1.0,REV=1999.11.23.15.16;SUNWnamox:1.0,REV=1999.11.24.13.29;SUNWneuos:1.0,REV=1999.12.13.14.44;SUNWneuox:1.0,REV=1999.12.13.14.44;SUNWsamos:1.0,REV=1999.11.23.15.17;SUNWsamox:1.0,REV=1999.11.24.13.29;SUNWseuos:1.0,REV=1999.12.16.18.57;SUNWseuox:1.0,REV=1999.12.16.17.36;SUNWweuos:1.0,REV=1999.12.13.13.24;SUNWweuox:1.0,REV=1999.12.13.14.44;109357-04 109357-05 109357-06|SunOS 5.8: Misc loc have errors in CTYPE and lv colln monetary +109779|04|Oct/01/03| | | | |8_x86|i386;|SUNWauaos:1.0,REV=1999.11.23.14.58;SUNWceuos:1.0,REV=1999.12.13.12.57;SUNWeeuos:1.0,REV=1999.12.15.17.40;SUNWmeaos:1.0,REV=1999.12.08.12.49;SUNWnamos:1.0,REV=1999.11.23.14.59;SUNWneuos:1.0,REV=1999.12.13.15.06;SUNWsamos:1.0,REV=1999.11.23.15.00;SUNWseuos:1.0,REV=1999.12.16.19.05;SUNWweuos:1.0,REV=1999.12.13.15.06;|SunOS 5.8_x86: Misc. locales have errors in LC_CTYPE definitions 109780|01|Jul/13/00| | | | |Unbundled|||Hardware, Tape: L1000, Libraries 109782|01|Dec/15/00| |S| | |Trusted_Solaris_7_x86|i386;|SUNWtsu:2.5.0,REV=1999.11.11.00.28;|Trusted Solaris 7_x86: audit events on trusted 2.5.1 generate inva -109783|01|Aug/28/00|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/nfs/nfsd patch -109784|01|Dec/20/00|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nfs/nfsd patch +109783|02|Oct/02/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/nfs/nfsd and /usr/lib/nfs/lockd patch +109784|02|Oct/02/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nfs/nfsd and /usr/lib/nfs/lockd patch 109785|01|Aug/23/00| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/inittab patch 109786|01|Aug/16/00| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/inittab patch 109787|04|Jun/25/01| | | | |Unbundled|sparc;109116-04;|SUNWqlc:11.8.0,REV=2000.07.06.14.13;SUNWqlcx:11.8.0,REV=2000.07.06.14.15;|Dual Fiber Channel Host Adapter 1.0: qlc driver patch @@ -4901,17 +4995,19 @@ 109789|01|Dec/19/00| |S| | |Trusted_Solaris_7_x86|i386;|SUNWcsu:11.7.0,REV=1999.11.11.00.28;|Trusted Solaris 7_x86: Audit record for pfsh in TS 7 displays admi 109790|01|Dec/19/00| |S| | |Trusted_Solaris_7|sparc;|SUNWpsu:13.1,REV=1999.11.06.18.49;|Trusted Solaris 7: netpr: buffer overflow in netpr_send_message(), 109791|01|Dec/19/00| |S| | |Trusted_Solaris_7_x86|i386;|SUNWpsu:13.1,REV=1999.11.11.00.28;|Trusted Solaris 7_x86: netpr: buffer overflow in netpr_send_messag -109793|11|Jun/21/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcar:2000.01.08.18.12;SUNWcar:2000.01.13.13.40;SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;|SunOS 5.8: su driver patch -109795|02|Dec/06/01| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/misc/nfssrv patch -109797|01|Oct/19/00| | | | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: patch kernel/drv/stc for all packages +109793|23|Oct/13/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: su driver patch +109795|03|Sep/13/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/misc/nfssrv Patch +109796|03|Sep/30/02| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/misc/nfssrv Patch +109797|03|Apr/15/03| |S| | |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;106541-24;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: kernel/drv/stc Patch +109798|03|Aug/13/02| | | | |8_x86|i386;|SUNWpsdir:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ata and dpt driver patch 109799|01|Aug/25/00| | | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/diff patch 109800|01|Oct/30/00| | | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/diff patch 109801|01|Aug/02/00| | |O| |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-05 SunOS 5.8: libdevice.so.1 patch 109802|01|Aug/22/00| | |O| |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-05 SunOS 5.8_x86: libdevice.so.1 patch 109803|01|Sep/19/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/du and /usr/xpg4/bin/du patch 109804|01|Sep/19/00| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/du and /usr/xpg4/bin/du patch -109805|10|Jul/25/02|R|S| | |8|sparc;109223-02;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;|SunOS 5.8: /usr/lib/security/pam_krb5.so.1 patch -109806|07|Apr/02/02| |S| | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/security/pam_krb5.so.1 patch +109805|17|Sep/29/03|R|S| | |8|sparc;109223-02;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/security/pam_krb5.so.1 patch +109806|15|Apr/02/03| |S| | |8_x86|i386;109224-02;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/security/pam_krb5.so.1 patch 109807|01|Aug/14/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/dumpadm patch 109808|01|Nov/08/00| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/dumpadm patch 109809|01|Jul/21/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: timezone data patch for Australasia @@ -4920,7 +5016,7 @@ 109812|01|Dec/19/00| |S| | |Trusted_Solaris_7_x86|i386;|SUNWcsl:11.7.0,REV=1999.11.11.00.28;SUNWcsu:11.7.0,REV=1999.11.11.00.28;|Trusted Solaris 7: Four vulnerabilities have been found in BIND, s 109813|01|Aug/14/00| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/memory.h patch 109814|01|Aug/14/00| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/memory.h patch -109815|14|Jul/22/02| | | | |8|sparc;sparc.sun4u;|SUNWcsr:2000.01.08.18.12;SUNWcti2x:2000.04.20.22.44;SUNWpd:2000.01.08.18.12;SUNWpdx:2000.01.08.18.12;|SunOS 5.8: se, acebus, pcf8574, pcf8591 and scsb patch +109815|19|Sep/24/03| |S| | |8|sparc;sparc.sun4u;108528-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcti2x:11.8.0,REV=2000.04.20.22.44;SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: se, acebus, pcf8574, pcf8591 and scsb patch 109816|04|Jan/28/02| | | | |Unbundled|sparc;|SUNWewbx:4.0.1-GCC;SUNWewgx:4.0.1-GCC;SUNWewix:4.0.1-GCC;SUNWewjx:4.0.1-GCC;SUNWewkx:4.0.1-GCC;SUNWewox:4.0.1-GCC;SUNWewpx:4.0.1-GCC;SUNWewtx:4.0.1-GCC;SUNWewux:4.0.1-GCC;SUNWewxx:4.0.1-GCC;SUNWewzx:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> x86, Pentium 109817|04|Jan/25/02| | | | |Unbundled|sparc;|SUNWewhx:4.0.1-GCC;SUNWewlx:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> x86, P 109818|04|Jan/25/02| | | | |Unbundled|sparc;|SUNWewfx:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, Solaris -> x86, P @@ -4967,15 +5063,15 @@ 109859|01|Jun/29/00| | | | |Unbundled|sparc;|SUNWs3lx:3.1;|svd and fft codes break with ws6.0 109860|04|Dec/14/00| | | | |Unbundled|sparc;|SUNWprism:6.1;|HPC 3.1: Forte 6 support and various fixes 109861|04|Dec/14/00| | | | |Unbundled|sparc;|SUNWprsmx:6.1;|HPC 3.1: Forte 6 support and various fixes (64-bit) -109862|01|Oct/19/00| | | | |8|sparc;|SUNWxwfs:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1 Font Server patch -109863|01|Oct/19/00| | | | |8_x86|i386;|SUNWxwfs:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: Font Server patch -109866|03|Dec/19/00| | | | |8_x86|i386;|SUNWos86r:1.1.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: elxl patch +109862|03|Dec/18/02|R|S| | |8|sparc;|SUNWxwfs:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1 Font Server patch +109863|03|Dec/18/02|R|S| | |8_x86|i386;|SUNWxwfs:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: Font Server patch +109866|04|Jul/31/03| | | | |8_x86|i386;|SUNWos86r:1.1.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: elxl patch 109867|03|Dec/19/00| | | | |8_x86|||SunOS 5.8_x86: elxl patch wrapper 109868|05|Oct/01/01| | | | |8|sparc;|SUNW5dhev:8.0,REV=1999.12.07.09.59;SUNW5dhez:8.0,REV=1999.10.12.16.31;SUNWcdhev:8.0,REV=1999.12.07.10.00;SUNWcdhez:8.0,REV=1999.10.12.16.33;SUNWcudhv:8.0,REV=1999.12.07.10.00;SUNWcudhz:8.0,REV=1999.10.12.16.33;SUNWgdhev:8.0,REV=1999.12.07.10.01;SUNWgdhez:8.0,REV=1999.10.12.16.38;SUNWhdhev:8.0,REV=1999.12.07.09.57;SUNWhdhez:8.0,REV=1999.10.12.16.26;SUNWhudhv:8.0,REV=1999.12.07.09.57;SUNWhudhz:8.0,REV=1999.10.12.16.26;SUNWkdhev:8.0,REV=1999.10.22.10.15;SUNWkdhez:8.0,REV=1999.10.12.16.19;SUNWkudhv:8.0,REV=1999.10.22.10.15;SUNWkudhz:8.0,REV=1999.10.12.16.19;|SunOS 5.8: CDE and Desktop Power Pack updates for Asian locales 109869|05|Oct/01/01| | | | |8_x86|i386;|SUNW5dhev:8.0,REV=1999.12.07.10.00;SUNW5dhez:8.0,REV=1999.10.12.15.11;SUNWcdhev:8.0,REV=1999.12.07.10.01;SUNWcdhez:8.0,REV=1999.10.12.15.13;SUNWcudhv:8.0,REV=1999.12.07.10.01;SUNWcudhz:8.0,REV=1999.10.12.15.13;SUNWgdhev:8.0,REV=1999.12.07.10.03;SUNWgdhez:8.0,REV=1999.10.12.15.20;SUNWhdhev:8.0,REV=1999.12.07.09.58;SUNWhdhez:8.0,REV=1999.10.12.15.04;SUNWhudhv:8.0,REV=1999.12.07.09.58;SUNWhudhz:8.0,REV=1999.10.12.15.04;SUNWkdhev:8.0,REV=1999.10.22.10.13;SUNWkdhez:8.0,REV=1999.10.12.14.57;SUNWkudhv:8.0,REV=1999.10.22.10.13;SUNWkudhz:8.0,REV=1999.10.12.14.57;|SunOS 5.8_x86: CDE and Desktop Power Pack updates for Asian locale 109870|05|Mar/27/01| | | | |Unbundled|sparc;|SUNWctmtx:1.0,REV=2000.04.26.19.49;|Netra ct 1.0: Patch for Netra ct Element Management Agent upgrade 109872|01|Nov/09/00| | | | |8|sparc.sun4u;sparc.sun4us;108528-03;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: vis driver patch -109873|13|Jul/22/02| | | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;110460-02;|SUNWkvm:2000.01.08.18.12;SUNWkvm:2000.01.13.13.41;SUNWpiclu:2000.08.15.00.06;|SunOS 5.8: prtdiag and platform libprtdiag_psr.so.1 patch +109873|22|Dec/04/03|R| | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;110460-32;110842-04;112161-02;|SUNWctu:11.8.0,REV=2000.04.01.16.21;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: prtdiag and platform libprtdiag_psr.so.1 patch 109874|06|Feb/27/01| | |O| |8|sparc;|SUNWaudd:11.8.0,REV=2000.01.08.18.12;SUNWauddx:11.8.0,REV=2000.01.08.18.12;SUNWaudh:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109896-07 SunOS 5.8: audio patch 109875|01|Jan/17/01| | |O| |8_x86|i386;|SUNWaudh:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109897-08 SunOS 5.8_x86: /usr/include/sys/ac97.h pat 109876|02|Mar/08/01| | | | |8|sparc;sparc.sun4m;sparc.sun4u;sparc.sun4us;109877-01;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: fd driver patch @@ -4984,22 +5080,23 @@ 109879|02|Dec/19/00| | | | |8|sparc;sparc.sun4u;sparc.sun4us;109877-01;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: isadma driver patch 109880|01|Oct/25/00| | |O| |8|sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|Obsoleted by: 108528-04 SunOS 5.8: forthdebug patch 109881|02|Nov/16/00| | | | |8|sparc;|SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: 1394 adb macros patch -109882|06|Jun/05/02|R| | | |8|sparc;|SUNWcsr:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: eri header files patch +109882|06|Jun/05/02|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: eri header files patch 109883|02|Dec/20/00| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/sys/ecppsys.h patch 109884|02|Dec/20/00| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/sys/ecppsys.h patch -109885|09|Jul/16/02|R| | | |8|sparc;108528-03;|SUNWcsr:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWpd:2000.01.08.18.12;SUNWpdu:2000.01.08.18.12;SUNWpdx:2000.01.08.18.12;|SunOS 5.8: glm patch +109885|14|Oct/01/03|R| | | |8|sparc;108528-03;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdu:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: glm patch 109886|02|Apr/02/01| | |O| |8_x86|i386;i386.i86pc;108529-03;|SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-11 SunOS 5.8_x86: pci driver patch -109887|13|Apr/26/02| |S| | |8|sparc;108528-14;|SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWiscr:11.8.0,REV=2000.07.05.13.22;SUNWocf:11.8.0,REV=2000.01.08.18.12;SUNWocfh:11.8.0,REV=2000.01.08.18.12;SUNWocfr:11.8.0,REV=2000.01.08.18.12;SUNWocfx:11.8.0,REV=2000.01.08.18.12;SUNWpamsc:11.8.0,REV=2000.01.08.18.12;SUNWpamsx:11.8.0,REV=2000.01.08.18.12;SUNWscmos:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: smartcard and usr/sbin/ocfserv patch -109888|15|Feb/12/02|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;110460-07;108528-13;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: platform drivers patch -109889|01|Jan/17/01| | | | |8|sparc;sparc.sun4u;|SUNWctu:11.8.0,REV=2000.04.01.16.21;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr platform links and libc_psr patch +109887|18|Nov/17/03| |S| | |8|sparc;108528-04;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWiscr:11.8.0,REV=2000.07.05.13.22;SUNWocf:11.8.0,REV=2000.01.08.18.12;SUNWocfh:11.8.0,REV=2000.01.08.18.12;SUNWocfr:11.8.0,REV=2000.01.08.18.12;SUNWocfx:11.8.0,REV=2000.01.08.18.12;SUNWpamsc:11.8.0,REV=2000.01.08.18.12;SUNWpamsx:11.8.0,REV=2000.01.08.18.12;SUNWscmos:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: smartcard and usr/sbin/ocfserv patch +109888|06|Apr/05/01|R|S| | B|8|sparc;sparc.sun4u;sparc.sun4us;108528-06;108528-06;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|WITHDRAWN SunOS 5.8: platform drivers patch +109888|26|Nov/26/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-20;110460-26;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: platform drivers patch +109889|06|Jun/20/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWctu:11.8.0,REV=2000.04.01.16.21;SUNWfruip:11.8.0,REV=2001.01.19.01.02;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.13.13.40;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: usr platform links and libc_psr patch 109890|01|Nov/15/00| | | | |8|sparc;|SUNWppm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pmserver.jar patch 109891|01|Nov/15/00| | | | |8_x86|i386;|SUNWppm:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pmserver.jar patch -109892|03|Feb/27/01| |S| | |8|sparc;108528-06;109877-01;109883-01;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/ecpp driver patch -109893|03|Apr/05/02| |S| | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-03;108528-14;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: stc driver patch +109892|04|Apr/21/03| | | | |8|sparc;108528-03;108528-20;109877-01;109883-01;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/sparcv9/ecpp patch +109893|04|Dec/24/02| |S| | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-18;108528-18;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: stc driver patch 109894|01|Nov/15/00| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108979-08;108528-04;108528-03;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/sparcv9/bpp driver patch -109895|01|Nov/15/00| |S| | |8_x86|i386;108980-05;108529-03;108529-11;|SUNWpsdcr:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: lp driver patch -109896|08|May/10/02| |S| | |8|sparc;108528-11;108528-14;109883-01;110609-01;|SUNWauda:11.8.0,REV=2000.01.08.18.12;SUNWaudd:11.8.0,REV=2000.01.08.18.12;SUNWauddx:11.8.0,REV=2000.01.08.18.12;SUNWaudh:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWusb:11.8.0,REV=2000.01.08.18.12;SUNWusbu:11.8.0,REV=2000.01.08.18.12;SUNWusbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: USB and Audio Framework patch -109897|09|May/31/02| |S| | |8_x86|i386;108529-11;108529-14;109884-01;110610-01;|SUNWaudd:2000.01.08.18.17;SUNWaudh:2000.01.08.18.17;SUNWcsr:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;SUNWusb:2000.01.08.18.17;SUNWusbu:2000.01.08.18.17;|SunOS 5.8_x86: USB Audio patch +109895|02|Jan/06/03| |S| | |8_x86|i386;108529-18;108529-18;|SUNWpsdcr:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: lp driver patch +109896|22|Nov/17/03| |S| | |8|sparc;108528-20;109883-01;110609-04;|SUNWauda:11.8.0,REV=2000.01.08.18.12;SUNWaudd:11.8.0,REV=2000.01.08.18.12;SUNWauddx:11.8.0,REV=2000.01.08.18.12;SUNWaudh:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWuaud:11.8.0,REV=2001.06.21.13.21;SUNWuaudx:11.8.0,REV=2001.06.21.13.21;SUNWusb:11.8.0,REV=2000.01.08.18.12;SUNWusbu:11.8.0,REV=2000.01.08.18.12;SUNWusbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: USB and Audio Framework patch +109897|18|Dec/12/03| |S| | |8_x86|i386;108529-20;109884-01;110610-04;|SUNWaudd:11.8.0,REV=2000.01.08.18.17;SUNWaudh:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWuaud:11.8.0,REV=2001.06.21.13.13;SUNWusb:11.8.0,REV=2000.01.08.18.17;SUNWusbu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: USB and Audio Framework patch 109898|05|Oct/22/01|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/arp patch 109899|05|Oct/22/01|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/arp patch 109900|02|Aug/21/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/init.d/network and /sbin/ifparse patch @@ -5019,22 +5116,22 @@ 109914|02|Jan/22/01| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch usr/bin/find 109915|01|Sep/14/00| | | | |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/diff fixes 109916|01|Sep/14/00| | | | |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/diff fixes -109920|07|Jun/27/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;109928-05;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;SUNWpcmci:2000.01.08.18.12;SUNWpcmcx:2000.01.08.18.12;|SunOS 5.8: pcic driver patch -109921|07|Jun/27/02| | | | |8_x86|i386;109929-03;|SUNWcsr:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWpcmci:2000.01.08.18.17;|SunOS 5.8_x86: pcic driver patch -109922|03|Jun/27/02| | | | |8|sparc;109928-05;|SUNWhea:2000.01.08.18.12;SUNWpcelx:2000.01.08.18.12;SUNWpcmci:2000.01.08.18.12;SUNWpcmcx:2000.01.08.18.12;SUNWpcser:2000.01.08.18.12;|SunOS 5.8: pcelx and pcser driver patch -109923|03|Jun/27/02| | | | |8_x86|i386;109929-03;|SUNWhea:2000.01.08.18.17;SUNWpcelx:2000.01.08.18.17;SUNWpcmci:2000.01.08.18.17;SUNWpcser:2000.01.08.18.17;|SunOS 5.8_x86: pcelx and pcser driver patch -109924|04|Jun/27/02| | | | |8|sparc;|SUNWhea:2000.01.08.18.12;SUNWpsdpr:2000.01.08.18.12;|SunOS 5.8: pcata driver patch -109925|04|Jun/27/02| | | | |8_x86|i386;|SUNWhea:2000.01.08.18.17;SUNWpsdpr:2000.01.08.18.17;|SunOS 5.8_x86: pcata driver patch +109920|09|Jul/11/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;109928-05;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWpcmci:11.8.0,REV=2000.01.08.18.12;SUNWpcmcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pcic and busra driver patch +109921|09|Jul/11/03| | | | |8_x86|i386;109929-03;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWpcmci:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pcic and busra driver patch +109922|04|Jan/22/03| |S| | |8|sparc;108528-18;109928-05;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpcelx:11.8.0,REV=2000.01.08.18.12;SUNWpcmci:11.8.0,REV=2000.01.08.18.12;SUNWpcmcx:11.8.0,REV=2000.01.08.18.12;SUNWpcser:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pcelx and pcser driver patch +109923|05|Dec/03/03| |S| | |8_x86|i386;109929-03;108529-18;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWpcelx:11.8.0,REV=2000.01.08.18.17;SUNWpcmci:11.8.0,REV=2000.01.08.18.17;SUNWpcser:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pcelx and pcser driver patch +109924|04|Jun/27/02| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpsdpr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pcata driver patch +109925|04|Jun/27/02| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWpsdpr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pcata driver patch 109926|02|Nov/10/00| | | | |8|sparc;|SUNWpcmci:11.8.0,REV=2000.01.08.18.12;SUNWpcmcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/pem and /kernel/drv/sparcv9/pem patch 109927|02|Nov/10/00| | | | |8_x86|i386;|SUNWpcmci:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/pem patch -109928|05|Jun/27/02| | | | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:2000.01.08.18.12;SUNWcar:2000.01.13.13.40;SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWhea:2000.01.08.18.12;SUNWpcmci:2000.01.08.18.12;SUNWpcmcx:2000.01.08.18.12;SUNWpcmem:2000.01.08.18.12;|SunOS 5.8: pcmem and pcmcia patch -109929|03|Jun/27/02| | | | |8_x86|i386;i386.i86pc;|SUNWcar:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWpcmci:2000.01.08.18.17;SUNWpcmem:2000.01.08.18.17;|SunOS 5.8_x86: pcmem and pcmcia patch +109928|05|Jun/27/02| | | | |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpcmci:11.8.0,REV=2000.01.08.18.12;SUNWpcmcx:11.8.0,REV=2000.01.08.18.12;SUNWpcmem:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pcmem and pcmcia patch +109929|03|Jun/27/02| | | | |8_x86|i386;i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWpcmci:11.8.0,REV=2000.01.08.18.17;SUNWpcmem:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pcmem and pcmcia patch 109930|01|Aug/07/00| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;SUNWvtsx:3.4,REV=08.99.09.20;|SunVTS 3.4 vtsk hangs or dies on large E10K configuration , Unable -109931|04|Apr/26/02| | | | |8|sparc;|SUNWdtim:1.4,REV=10.1999.12.02;|CDE 1.4: sdtimage Patch -109932|04|Apr/26/02| | | | |8_x86|i386;|SUNWdtim:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtimage Patch -109933|01|Apr/02/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mv, cp, ln patch -109934|01|Apr/02/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mv, cp, ln patch -109935|03|Feb/12/02| | | | |8|sparc.sun4u;|SUNWctu:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: libprtdiag_psr.so.1 for SUNW,UltraSPARC-IIi-Netract pat +109931|06|Jun/24/03| | | | |8|sparc;|SUNWdtim:1.4,REV=10.1999.12.02;|CDE 1.4: sdtimage Patch +109932|06|Jun/24/03| | | | |8_x86|i386;|SUNWdtim:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtimage Patch +109933|02|Aug/01/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWsutl:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mv, cp, ln patch +109934|02|Aug/01/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWsutl:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mv, cp, ln patch +109935|03|Feb/12/02| | |O| |8|sparc.sun4u;|SUNWctu:11.8.0,REV=2000.04.01.16.21;|Obsoleted by: 109873-22 SunOS 5.8: libprtdiag_psr.so.1 for SUNW,Ul 109936|01|Aug/24/00| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/diff patch 109937|01|Aug/24/00| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/diff patch 109938|01|Aug/14/00| | | | |7_x86|i386;|SUNWplow:1.0,REV=1998.09.14.18.11;|SunOS 5.7_x86: Accent key not working in western european locales @@ -5052,12 +5149,17 @@ 109955|01|Aug/14/00| | |O| |8_x86|i386;108529-01;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/sys/pset patch 109960|01|Aug/14/00| | | | |8|sparc;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4: sdtperfmeter patch 109961|01|Aug/14/00| | | | |8_x86|i386;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtperfmeter patch -109962|07|Apr/05/02| | | | |Unbundled|||Hardware, FC-AL Disks: Download program and FC-AL Disk Drive firmw +109962|12|Nov/17/03| | | | |Unbundled|||Hardware, FC-AL Disks: Download program and FC-AL Disk Drive firmw 109963|01|Feb/27/01| | | | |7|sparc;|SUNWtoo:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: strings command truncates lines >= 1024 character 109964|01|Feb/27/01| | | | |7_x86|i386;|SUNWtoo:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: strings command truncates lines >= 1024 character 109965|03|Jan/26/01| |S|O| |8|sparc;|SUNWocf:11.8.0,REV=2000.01.08.18.12;SUNWocfx:11.8.0,REV=2000.01.08.18.12;SUNWpamsc:11.8.0,REV=2000.01.08.18.12;SUNWpamsx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109887-02 SunOS 5.8: pam_smartcard.so.1 patch +109967|02|Oct/05/00| | | | B|Unbundled|sparc;|SUNWscm:1.1.16,REV=02.01.2000;SUNWspcsl:1.0.31,REV=02.01.2000;SUNWspsv:1.0.30,REV=02.01.2000;SUNWspuni:1.0.8,REV=02.01.2000;|WITHDRAWN Data Services 2.0 Core: Core Patch +109967|09|May/30/01| | | | B|Unbundled|sparc;|SUNWscm:1.1.19,REV=5.6.0.2000.04.24;SUNWspcsl:1.0.33,REV=5.6.0.2000.04.24;SUNWspsv:1.0.31,REV=5.6.0.2000.04.24;SUNWspuni:1.0.10,REV=5.6.0.2000.04.24;|WITHDRAWN Data Services 2.0 Core: Core Patch 109967|12|Mar/01/02| | | | |Unbundled|sparc;|SUNWscm:1.1.19,REV=5.6.0.2000.04.24;SUNWspcsl:1.0.33,REV=5.6.0.2000.04.24;SUNWspsv:1.0.31,REV=5.6.0.2000.04.24;SUNWspuni:1.0.10,REV=5.6.0.2000.04.24;|Data Services 2.0 Core: Core Patch +109969|02|Oct/05/00| | | | B|Unbundled|sparc;|SUNWscm:1.1.16,REV=02.01.2000;SUNWspcsl:1.0.31,REV=02.01.2000;SUNWspsv:1.0.30,REV=02.01.2000;SUNWspuni:1.0.8,REV=02.01.2000;|WITHDRAWN Data Services 2.0 Core (Sol 7-899): Core Patch +109969|09|May/30/01| | | | B|Unbundled|sparc;106541-06;106541-06;|SUNWscm:1.1.19,REV=5.7.1.2000.04.24;SUNWspcsl:1.0.33,REV=5.7.1.2000.04.24;SUNWspsv:1.0.31,REV=5.7.1.2000.04.24;SUNWspuni:1.0.10,REV=5.7.1.2000.04.24;|WITHDRAWN Data Services 2.0 Core: Core Patch 109969|12|Mar/01/02| | | | |Unbundled|sparc;106541-06;|SUNWscm:1.1.19,REV=5.7.1.2000.04.24;SUNWspcsl:1.0.33,REV=5.7.1.2000.04.24;SUNWspsv:1.0.31,REV=5.7.1.2000.04.24;SUNWspuni:1.0.10,REV=5.7.1.2000.04.24;|Data Services 2.0 Core: Core Patch +109970|09|May/30/01| | | | B|Unbundled|sparc;|SUNWscm:1.1.19,REV=5.8.0.2000.04.24;SUNWspcsl:1.0.33,REV=5.8.0.2000.04.24;SUNWspsv:1.0.31,REV=5.8.0.2000.04.24;SUNWspuni:1.0.10,REV=5.8.0.2000.04.24;|WITHDRAWN Data Services 2.0 Core: Core Patch 109970|12|Mar/01/02| | | | |Unbundled|sparc;|SUNWscm:1.1.19,REV=5.8.0.2000.04.24;SUNWspcsl:1.0.33,REV=5.8.0.2000.04.24;SUNWspsv:1.0.31,REV=5.8.0.2000.04.24;SUNWspuni:1.0.10,REV=5.8.0.2000.04.24;|Data Services 2.0 Core: Core Patch 109971|07|Apr/12/01| | | | |Unbundled|sparc;109967-07;|SUNWnvm:2.0.2,REV=5.6.0.2000.06.16;|FWC 2.0: nvmem driver on attach erroneous diagnostics Patch 109973|07|Apr/12/01| | | | |Unbundled|sparc;109969-07;|SUNWnvm:2.0.2,REV=5.7.1.2000.06.16;|FWC 2.0: nvmem driver on attach erroneous diagnostics Patch @@ -5065,24 +5167,28 @@ 109975|10|Mar/01/02| | | | |Unbundled|sparc;109967-12;|SUNWii:2.0.14,REV=02.01.2000;SUNWiimsu:2.0.11,REV=02.01.2000;|Instant Image 2.0: panic while suspending all shadows Patch 109977|10|Mar/01/02| | | | |Unbundled|sparc;109969-12;|SUNWii:2.0.14,REV=02.01.2000;SUNWiimsu:2.0.11,REV=02.01.2000;|Instant Image 2.0: panic while suspending all shadows Patch 109978|10|Mar/01/02| | | | |Unbundled|sparc;109970-12;|SUNWii:2.0.14,REV=02.01.2000;SUNWiimsu:2.0.11,REV=02.01.2000;|Instant Image 2.0: panic while suspending all shadows Patch +109979|07|May/30/01| | | | B|Unbundled|sparc;109967-09;109967-09;|SUNWrdcu:2.0.1,REV=03.30.2000;|WITHDRAWN SNDR 2.0: cable pull/bitmap with 186GB device Patch 109979|10|Mar/01/02| | | | |Unbundled|sparc;109967-12;|SUNWrdcr:2.0.1,REV=03.30.2000;SUNWrdcu:2.0.1,REV=03.30.2000;|SNDR 2.0: installing patches system hanging/rdc.cf limit/rdcadm Pa +109981|07|May/30/01| | | | B|Unbundled|sparc;109969-09;109969-09;|SUNWrdcu:2.0.1,REV=03.30.2000;|WITHDRAWN SNDR 2.0: cable pull/bitmap with 186GB device Patch 109981|10|Mar/01/02| | | | |Unbundled|sparc;109969-12;|SUNWrdcr:2.0.1,REV=03.30.2000;SUNWrdcu:2.0.1,REV=03.30.2000;|SNDR 2.0: installing patches system hanging/rdc.cf limit/rdcadm Pa +109982|07|May/30/01| | | | B|Unbundled|sparc;109970-09;109970-09;|SUNWrdcu:2.0.1,REV=03.30.2000;|WITHDRAWN SNDR 2.0: cable pull/bitmap with 186GB device Patch 109982|10|Mar/01/02| | | | |Unbundled|sparc;109970-12;|SUNWrdcr:2.0.1,REV=03.30.2000;SUNWrdcu:2.0.1,REV=03.30.2000;|SNDR 2.0: installing patches system hanging/rdc.cf limit/rdcadm Pa 109983|07|Apr/12/01| | | | |Unbundled|sparc;109967-07;|SUNWsftm:1.1.7,REV=5.6.0.2000.05.09;SUNWte:1.2.1,REV=5.6.0.2000.05.09;|STE 1.2: enabling individual vdisk(s) with steadm Patch +109985|02|Oct/05/00| | | | B|Unbundled|sparc;109969-02;109969-02;|SUNWte:1.2.1,REV=5.7.1.2000.05.09;|WITHDRAWN STE 1.2 (Sol 7-899): cluster trace files Patch 109985|07|Apr/12/01| | | | |Unbundled|sparc;109969-07;|SUNWsftm:1.1.7,REV=5.7.1.2000.05.09;SUNWte:1.2.1,REV=5.7.1.2000.05.09;|STE 1.2: enabling individual vdisk(s) with steadm Patch 109986|07|Apr/12/01| | | | |Unbundled|sparc;109970-07;|SUNWsftm:1.1.7,REV=5.8.0.2000.05.09;SUNWte:1.2.1,REV=5.8.0.2000.05.09;|STE 1.2: enabling individual vdisk(s) with steadm Patch 109990|01|Nov/13/00| | | | |8|sparc;|SUNWbtool:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/ccs/bin/dis patch 109991|01|Nov/13/00| | | | |8_x86|i386;|SUNWbtool:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ccs/bin/dis patch 109992|01|Aug/29/00| | | | |8|sparc;|SUNWtdft:8.0,REV=1999.10.12.16.41;|SunOS 5.8: Thai prolog.ps is incorrect. 109993|01|Aug/29/00| | | | |8_x86|i386;|SUNWtdft:8.0,REV=1999.10.12.15.23;|SunOS 5.8_x86: Thai prolog.ps is incorrect. -109994|01|Nov/13/00| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/adb and /usr/bin/sparcv9/adb patch +109994|02|Jul/17/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/adb and /usr/bin/sparcv9/adb patch 110000|01|Sep/26/00| | |O| |Unbundled|||Obsoleted by: 109943-02 StarOffice 5.2: User installation fails af 110002|02|Jul/10/01| |S| | |Unbundled|sparc;|SUNWcre:1.1;|Security and other fixes for 32-bit CRE 110003|02|Jul/10/01| |S| | |Unbundled|sparc;|SUNWcrex:1.1;|Security and other fixes for 64-bit CRE 110004|02|Mar/09/01| |S| | |Unbundled|||StarOffice 5.1a (Solaris): sym link perms. and long URL core dump 110005|02|Mar/09/01| |S| | |Unbundled|||StarOffice 5.1a_x86 (Solaris): sym link perms. and long URL core d 110006|02|Mar/09/01| |S| | |Unbundled|||StarOffice 5.1a (Linux): sym link perms. and long URL core dump fi -110009|02|Mar/25/02| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;SUNWvtsx:3.4,REV=08.99.09.20;|SunVTS 3.4: m64test audiotest nettest +110009|03|Apr/16/03| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;SUNWvtsx:3.4,REV=08.99.09.20;|SunVTS 3.4: m64test audiotest nettest cputest 110010|02|Oct/30/00| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;|vtsui disappears with no core and X error 110011|02|Aug/04/00| |S| | |Unbundled|sparc;|SUNWab2u:3.0,REV=1999.1209;|AnswerBook 1.4.2: create admin user that can interact with shell 110012|02|Aug/04/00| |S| | |Unbundled|i386;|SUNWab2u:3.0,REV=1999.1209;|AnswerBook 1.4.2_x86: create admin user that can interact with she @@ -5094,12 +5200,12 @@ 110018|01|Aug/10/00| | | | |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.5.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array 110019|06|Feb/21/02| | | | |8|sparc;|SUNWjadis:1.4,REV=1999.12.08.15.55;SUNWjadma:1.4,REV=1999.12.08.15.55;SUNWjpadi:1.2,REV=1999.12.08.15.55;SUNWjpadm:1.2,REV=1999.12.08.15.55;SUNWjuadi:1.2,REV=1999.12.08.15.55;SUNWjuadm:1.2,REV=1999.12.08.15.55;|SunOS 5.8: JFP install/sysadm messages patch 110020|06|Feb/21/02| | | | |8_x86|i386;|SUNWjadis:1.4,REV=1999.12.08.15.55;SUNWjadma:1.4,REV=1999.12.08.15.55;SUNWjpadi:1.2,REV=1999.12.08.15.55;SUNWjpadm:1.2,REV=1999.12.08.15.55;SUNWjuadi:1.2,REV=1999.12.08.15.55;SUNWjuadm:1.2,REV=1999.12.08.15.55;|SunOS 5.8_x86: JFP install/sysadm messages patch -110021|01|Sep/11/00| | | | |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Latvian locale monetary information incorrect. +110021|01|Sep/11/00| | |O| |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;|Obsoleted by: 107187-07 SunOS 5.7: Latvian locale monetary informa 110023|04|Nov/17/00| | |O| |8|sparc;|SUNWauaox:1.0,REV=1999.11.24.13.29;SUNWcamox:1.0,REV=1999.11.24.13.29;SUNWceuox:1.0,REV=1999.11.24.13.29;SUNWeeuox:1.0,REV=1999.11.24.13.29;SUNWmeaox:1.0,REV=1999.12.08.18.13;SUNWnamox:1.0,REV=1999.11.24.13.29;SUNWneuos:1.0,REV=1999.12.13.14.44;SUNWneuox:1.0,REV=1999.12.13.14.44;SUNWsamox:1.0,REV=1999.11.24.13.29;SUNWseuox:1.0,REV=1999.12.16.17.36;SUNWweuos:1.0,REV=1999.12.13.13.24;SUNWweuox:1.0,REV=1999.12.13.14.44;|Obsoleted by: 109778-06 SunOS 5.8: Broken backward compatibility f 110025|01|Aug/21/00| | | | |Unbundled|||Hardware, Tape Library, L11000 110029|02|Jan/05/01| |S| | |Unbundled|sparc;|VRTSvmsa:3.0.3,REV=08.27.1999.13.55;|VRTSvmsa 3.0.3: Security patch 110030|02|Jan/05/01| |S| | |Unbundled|sparc;|VRTSvmsa:3.0.4,REV=01.28.2000.09.10;|VRTSvmsa 3.0.4: Security patch -110032|02|Jan/05/01| |S| | |Unbundled|sparc;|VRTSvmsa:3.0.6,REV=04.03.2000.14.30;|VRTSvmsa 3.0.6: Security patch +110032|02|Jan/05/01| |S|O| |Unbundled|sparc;|VRTSvmsa:3.0.6,REV=04.03.2000.14.30;|Obsoleted by: 110442-01 VRTSvmsa 3.0.6: Security patch 110034|01|Nov/02/00| | |O| |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Obsoleted by: 110253-04 Veritas Volume Manager 3.1: DMP path failo 110035|01|Nov/02/00| | |O| |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Obsoleted by: 110254-04 Veritas Volume Manager 3.1: DMP path failo 110036|01|Nov/02/00| | |O| |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Obsoleted by: 110255-04 Veritas Volume Manager 3.1: DMP path failo @@ -5109,20 +5215,20 @@ 110043|01|May/04/01| |S| | |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18,PATCH=384;|SunOS 5.3: libnsl/tcip patch 110044|01|Apr/02/01| | | | |8|sparc;|SUNWgleu:8.0,REV=1999.12.07.14.54;SUNWgleux:8.0,REV=1999.10.26.10.33;|SunOS 5.8: iswalpha() can't work well in zh.GBK locale 110045|01|Apr/02/01| | | | |8_x86|i386;|SUNWgleu:8.0,REV=1999.12.07.14.28;|SunOS 5.8_x86: iswalpha() can't work well in zh.GBK locale -110046|01|Aug/15/00| | | | |Unbundled|sparc;|SUNWvts:4.0,REV=38.99.12.09;|SunVTS 4.0: CDE GUI core dumps when adjust scroll bar in a oversiz +110046|02|Sep/12/02| |S| | |Unbundled|sparc;|SUNWodu:4.0,REV=38.99.12.09;SUNWvts:4.0,REV=38.99.12.09;|SunVTS4.0 UI patch 110051|01|Mar/09/01|R|S| | |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10,PATCH=159;|SunOS 5.4: Patch for libcurses 110052|01|Mar/09/01|R|S| | |2.4_x86|i386;|SUNWarc:11.5.1,REV=94.07.18.19.02,PATCH=153;|SunOS 5.4_x86: Patch for libcurses 110053|02|Nov/01/00| | | | |8|sparc;|SUNWnafos:1.0,REV=1999.12.08.12.36;SUNWnafox:1.0,REV=1999.12.08.18.13;|SunOS 5.8: ar has errors in / lacks some LC_CTYPE definitions 110055|01|Sep/12/00| | | | |Unbundled|sparc;|SUNWodu:3.0,REV=21.98.09.02;SUNWvts:3.0,REV=21.98.09.02;|SunVTS 3.0: sunvts dumps core on start via command or gui on all s -110057|06|May/31/02| |S| | |Unbundled|sparc;|SUNWkr5sv:99.06.23.12.09;|SEAM 1.0: Patch for Solaris 2.6 / 7 -110058|06|May/31/02| |S| | |Unbundled|i386;|SUNWkr5sv:99.06.23.11.55;|SEAM 1.0_x86: Patch for Solaris 2.6_x86 / 7_x86 -110060|12|Apr/23/02| |S| | |Unbundled|sparc;|SUNWkr5sl:5.8.0,REV=99.12.09.18.58;SUNWkr5sv:5.8.0,REV=99.12.09.18.58;|SEAM 1.0.1: patch for Solaris 8 -110061|12|Apr/23/02| |S| | |Unbundled|i386;|SUNWkr5sl:5.8.0,REV=99.12.09.21.52;SUNWkr5sv:5.8.0,REV=99.12.09.21.52;|SEAM 1.0.1_x86: patch for Solaris 8_x86 +110057|07|Nov/05/03| |S| | |Unbundled|sparc;|SUNWkr5sl:5.6.0,REV=99.06.23.12.09;SUNWkr5sv:5.6.0,REV=99.06.23.12.09;|SEAM 1.0: Patch for Solaris 2.6 / 7 +110058|07|Nov/05/03| |S| | |Unbundled|i386;|SUNWkr5sl:5.6.0,REV=99.06.23.11.55;SUNWkr5sv:5.6.0,REV=99.06.23.11.55;|SEAM 1.0_x86: Patch for Solaris 2.6_x86 / 7_x86 +110060|14|Oct/31/03| |S| | |Unbundled|sparc;|SUNWkr5sl:5.8.0,REV=99.12.09.18.58;SUNWkr5sv:5.8.0,REV=99.12.09.18.58;|SEAM 1.0.1: patch for Solaris 8 +110061|14|Nov/05/03| |S| | |Unbundled|i386;|SUNWkr5sl:5.8.0,REV=99.12.09.21.52;SUNWkr5sv:5.8.0,REV=99.12.09.21.52;|SEAM 1.0.1_x86: patch for Solaris 8_x86 110063|04|Aug/02/01| | | | |Unbundled|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0,PATCH=w;ftman:2.5.1,REV=1.0,PATCH=w;|ftSPARC Release 5.0: Too many unresolved OOS events 110064|01|Nov/13/00| | | | |8_x86|i386;|SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWsvis:8.0,REV=1999.12.23.15.13;|SunOS 5.8_x86: New features added to install 110065|01|Nov/13/00| | | | |8|sparc;|SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWsvis:8.0,REV=1999.12.13.19.09;|SunOS 5.8: New features added to install -110068|02|Mar/27/01| |S| | |8|sparc;|SUNWpdas:1.4,REV=10.1999.12.02;|CDE 1.4: PDASync patch -110069|02|Mar/27/01| |S| | |8_x86|i386;|SUNWpdas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: PDASync patch +110068|04|Nov/05/03| |S| | |8|sparc;|SUNWpdas:1.4,REV=10.1999.12.02;|CDE 1.4: PDASync patch +110069|04|Nov/05/03| |S| | |8_x86|i386;|SUNWpdas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: PDASync patch 110070|01|Mar/09/01|R|S| | |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: security: libcurses:setupterm has buffer overflow 110071|01|Mar/09/01|R|S| | |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: security: libcurses:setupterm has buffer overflow 110072|01|Oct/30/00|R| | | |7|sparc;|SUNWudfr:11.7.0,REV=1999.06.18.18.50;SUNWudfrx:11.7.0,REV=1999.06.18.18.50;|SunOS 5.7: Sol7 11/99, can't mount udfs cdrom "not a udfs filesyst @@ -5145,25 +5251,27 @@ 110125|02|Feb/16/01| | | | |2.6_x86|i386;106844-05;|SUNWploc:2.0,REV=97.05.30.12.19;SUNWploc1:1.0,REV=1997.06.14.16.20;SUNWploc1:1.0,REV=1997.07.14.14.35;|SunOS 5.6_x86:Incorrect decimal precision for euro currency 110126|03|Feb/01/02| | | | |Unbundled|||Hardware/PROM: PGX32 firmware Update 110127|04|Sep/14/01| | | | |8|sparc;|SUNWfbc:8.0.0,REV=1999.12.07;|SunOS 5.8: Generic Framebuffer configuration Graphics Patch -110128|02|Oct/27/00| | | | |2.6|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcar:11.6.0,REV=1998.09.28.10.46;|SunOS 5.6: SPC cards out-of-order with E150 + PSP +110128|04|Mar/28/03| |S| | |2.6|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;105181-34;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcar:11.6.0,REV=1998.09.28.10.46;|SunOS 5.6: SPC card Patch 110142|01|Sep/06/00| | | | |Unbundled|sparc.sun4u;|SUNWftcar:5.6,REV=1999.01.28.13.32;|Netra ft1800 patch - fix pollwakeup_safe panic 110150|04|Oct/26/01| | | | |8|sparc.sun4u;|SUNWglmr:2.3,REV=1999.10.19.10.29;SUNWglmx:1.3,REV=1999.10.19.10.29;|SunOS 5.8: rasctrl driver patch 110151|01|Aug/28/00| | | | |Unbundled|sparc;105181-22;|SUNWesagt:2.1_Build17,REV=2.6.1999.11.19;SUNWsycfd:2.1_Build17,REV=2.6.1999.11.19;|SunMC 2.1 FCS: SSRE patch for SunMC 110152|01|Aug/28/00| | | | |Unbundled|sparc;105181-23;|SUNWesagt:2.1_Build17_l3,REV=2.6.1999.12.06;SUNWsycfd:2.1_Build17_l3,REV=2.6.1999.12.06;|SunMC 2.1 L10N FCS: SSRE patch for SunMC -110158|01|Sep/25/00| | |O| B|Unbundled|||OBSOLETED by BADPATCH +110158|01|Sep/25/00| | |O| B|Unbundled|||OBSOLETED by WITHDRAWN 110160|02|Nov/17/00| | | | |Unbundled|sparc;|SUNWvts:3.2,REV=08.99.04.05;|vtsui disappears with no core and X error 110164|01|Sep/06/00| | | | |2.6_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: dnet patch -110165|03|Jan/30/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sed patch -110166|03|Jan/30/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/sed patch +110165|04|Nov/08/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sed patch +110166|04|Nov/08/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/sed patch 110178|05|Feb/19/02| | | | |Unbundled|sparc;|SUNWlznb:1.2,REV=1.2.18;|PC Netlink Netbios fixes -110179|10|Jul/11/02| | | | |Unbundled|sparc;|SUNWlzm:1.2.18;SUNWlzs:1.2.18;|PC Netlink 1.2 bug fixes +110179|04|Jan/24/01| | | | B|Unbundled|sparc;|SUNWlzm:1.2,REV=1.2.18;SUNWlzs:1.2,REV=1.2.18;|WITHDRAWN PC Netlink 1.2 bug fixes +110179|05|Mar/12/01| | | | B|Unbundled|sparc;|SUNWlzm:1.2,REV=1.2.18;SUNWlzs:1.2,REV=1.2.18;|WITHDRAWN PC Netlink 1.2 bug fixes +110179|15|Nov/18/03| | | | |Unbundled|sparc;|SUNWlzm:1.2,REV=1.2.18;SUNWlzs:1.2,REV=1.2.18;|PC NetLink 1.2 bug fixes 110191|01|Sep/15/00| | | | |7|sparc;|SUNWdewm:1.1,REV=1998.09.11.21.38;|SunOS 5.7: ~/.dt/errorlog file contains errors in de locales. 110192|01|Oct/18/01| | | | |7_x86|i386;|SUNWdewm:1.1,REV=1998.09.11.21.55;|SunOS 5.7_x86: ~/.dt/errorlog file contains errors in de locales. -110193|03|Feb/22/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;SUNWsspr:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Run SSP Daemons as RT class hostview doesn't display temp -110202|01|Nov/17/00| | | | |8_x86|||SunOS 5.8_x86: ata patch +110193|05|Oct/22/03| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;SUNWsspr:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Run SSP Daemons as RT class hostview does not display tem +110202|02|Aug/14/02| | | | |8_x86|||SunOS 5.8_x86: ata patch 110206|01|Apr/02/01| | | | |8|sparc;|SUNWd8dte:1.1,REV=1999.12.20.17.03;SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWf8dte:1.1,REV=2000.01.04.17.56;SUNWi8dte:1.1,REV=2000.01.05.08.59;SUNWs8dte:1.1,REV=2000.01.05.09.03;|SunOS 5.8: sdtwinlst and sdtgwm utf8 unlocalized 110207|01|Apr/02/01| | | | |8_x86|i386;|SUNWd8dte:1.1,REV=2000.01.05.09.48;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWeeuos:1.0,REV=1999.12.15.17.40;SUNWf8dte:1.1,REV=2000.01.05.09.11;SUNWi8dte:1.1,REV=2000.01.05.12.16;SUNWs8dte:1.1,REV=2000.01.05.11.58;|SunOS 5.8_x86: L10n updates to new app's and improve existing soft -110208|15|Mar/28/02| | | | |Unbundled|sparc;|SUNWclomu:1.0,REV=2001.10.18.13.26;SUNWdlomu:1.0,REV=2001.10.18.13.26;SUNWelomu:1.0,REV=2001.10.18.13.26;SUNWflomu:1.0,REV=2001.10.18.13.26;SUNWhlomu:1.0,REV=2001.10.18.13.26;SUNWilomu:1.0,REV=2001.10.18.13.26;SUNWjlomu:1.0,REV=2001.10.18.13.26;SUNWklomu:1.0,REV=2001.10.18.13.26;SUNWlomm:2.0,REV=2000.08.22.14.14;SUNWlomr:2.0,REV=2000.08.22.14.14;SUNWlomu:2.0,REV=2000.08.22.14.14;SUNWslomu:1.0,REV=2001.10.18.13.26;|Netra Lights Out Management 2.0 patch +110208|18|Jun/27/03| | | | |Unbundled|sparc;|SUNWclomu:1.0,REV=2001.10.18.13.26;SUNWdlomu:1.0,REV=2001.10.18.13.26;SUNWelomu:1.0,REV=2001.10.18.13.26;SUNWflomu:1.0,REV=2001.10.18.13.26;SUNWhlomu:1.0,REV=2001.10.18.13.26;SUNWilomu:1.0,REV=2001.10.18.13.26;SUNWjlomu:1.0,REV=2001.10.18.13.26;SUNWklomu:1.0,REV=2001.10.18.13.26;SUNWlomm:2.0,REV=2000.08.22.14.14;SUNWlomr:2.0,REV=2000.08.22.14.14;SUNWlomu:2.0,REV=2000.08.22.14.14;SUNWslomu:1.0,REV=2001.10.18.13.26;|Netra Lights Out Management 2.0 patch 110211|03|Jul/11/01| | | | |Unbundled|sparc;|SUNWvts:4.0,REV=38.99.12.09;|Solaris 8: Update to SUNWvts tapetest for DLT enhancements 110212|01|Apr/03/01| | | | |Unbundled|sparc;|SUNWapdv:2.3.1,REV=2000.08.25.13.45;|AP 2.3.1: panic while switching unplumbed metanetwork 110213|01|Dec/19/00| | | | |Unbundled|sparc;106541-14;|SUNWesagt:2.1_Build17,REV=2.7.1999.11.19;SUNWsycfd:2.1_Build17,REV=2.7.1999.11.19;|SunMC 2.1 FCS: SSRE patch for SunMC @@ -5174,7 +5282,7 @@ 110218|01|Dec/11/00| | |O| |Unbundled|sparc;108528-04;|SUNWesagt:2.1.1_Build05,REV=2.8.2000.01.12;SUNWsycfd:2.1.1_Build05,REV=2.8.2000.01.10;|Obsoleted by: 109697-05 SunMC 2.1.1 FCS: SSRE patch for SunMC 110219|02|Nov/17/00| | | | |Unbundled|sparc;|SUNWcst:CST1.1.3_AMS;|CST 1.1.3_AMS agent patch 110220|02|Nov/17/00| | | | |Unbundled|sparc;|SUNWcstve:CST1.1.3_AMS;|CST 1.1.3_AMS middleware patch -110221|06|Dec/04/01| | | | |8|sparc;|SUNWfwdcd:8.0.0,REV=2000.08.07;SUNWfwdcx:8.0.0,REV=2000.08.07;|SunOS 5.8: Dcam1394 patch +110221|07|May/23/03| | | | |8|sparc;|SUNWfwdcd:8.0.0,REV=2000.08.07;SUNWfwdcx:8.0.0,REV=2000.08.07;|SunOS 5.8: Dcam1394 patch 110223|01|Sep/14/00| | | | |Unbundled|sparc;|SUNWsspdo:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: sigbcmd -p option fails on a legal proc number 110224|01|Oct/05/00| | | | |Unbundled|sparc;|SUNWsspdo:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: sigbcmd -p option fails on a legal proc number 110249|01|Dec/19/00| |S| | |Trusted_Solaris_7|sparc;|SUNWpcu:13.1,REV=1999.11.06.18.49;|Trusted Solaris 7: libprint has buffer overflows, other security p @@ -5200,40 +5308,42 @@ 110273|03|Apr/02/01| | | | |8_x86|i386;|SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWfris:8.0,REV=1999.12.13.19.03;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWsvis:8.0,REV=1999.12.23.15.13;SUNWsvos:11.5.1,REV=1999.12.17.15.00;|SunOS 5.8_x86: Figgs Custom install new features and install help 110274|03|Apr/02/01| | | | |8|sparc;|SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWfris:8.0,REV=1999.12.13.18.54;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWsvis:8.0,REV=1999.12.13.19.09;SUNWsvos:11.5.1,REV=1999.12.17.14.47;|SunOS 5.8: Figgs Custom install new features and install help 110277|01|Dec/15/00| | | | |Unbundled|||Netra ft 1800 Motherboard online patch +110278|02|May/11/01| | |O| B|Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;|WITHDRAWN Obsoleted by: 110278-03 Solaris 7: L9 tapes do not cycle 110278|03|Jun/27/01| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;110278-01|L9 tapes do not cycle. 110279|01|Nov/08/00| | | | |7|sparc;|SUNWrsg:11.7.0,REV=1998.09.01.04.16;SUNWrsgx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpcsec.so.1 can free memory twice 110280|01|Nov/08/00| | | | |7_x86|i386;|SUNWrsg:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpcsec.so.1 can free memory twice 110281|02|Apr/18/01|R| | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: patch /usr/bin/find 110282|01|Jan/22/01|R| | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: find's expansion of {} is broken -110283|05|Nov/05/01|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mkfs and newfs patch -110284|05|Nov/14/01|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mkfs and newfs patch -110285|01|Apr/02/01| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: consconfig_dacf patch -110286|08|Jun/13/02|R|S| | |8|sparc;|SUNWtltk:10.1999.12.02;SUNWtltkx:10.1999.12.01;|OpenWindows 3.6.2: Tooltalk patch -110287|08|Jun/13/02|R|S| | |8_x86|i386;|SUNWtltk:10.1999.12.02;|OpenWindows 3.6.2_x86: Tooltalk patch +110283|06|Nov/26/02|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mkfs and newfs patch +110284|06|Nov/25/02|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mkfs and newfs patch +110285|02|Sep/15/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: consconfig_dacf patch +110286|11|Sep/24/03|R|S| | |8|sparc;|SUNWtltk:3.7.0,REV=10.1999.12.02;SUNWtltkx:3.7.0,REV=10.1999.12.01;|OpenWindows 3.6.2: Tooltalk patch +110287|11|Sep/24/03|R|S| | |8_x86|i386;|SUNWtltk:3.7.0,REV=10.1999.12.02;|OpenWindows 3.6.2_x86: Tooltalk patch 110289|01|Aug/14/01| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: nscd's size grows - TTL values not implemented -110304|06|Jun/19/02| | | | |Unbundled|sparc;|SUNWsspdf:2000.08.20.19.44;SUNWsspop:2000.08.20.19.44;SUNWssppo:2000.08.20.19.44;|SSP 3.4: Updates for hpost, redx, and autoconfig +110290|01|Jul/31/03| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: nscd size grows - TTL values not implemented +110304|07|Sep/20/02| | | | |Unbundled|sparc;|SUNWsspdf:3.4.0,REV=2000.08.20.19.44;SUNWsspop:3.4.0,REV=2000.08.20.19.44;SUNWssppo:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Updates for hpost, redx, and autoconfig 110306|01|May/24/01| | | | |Unbundled|sparc;|SUNWewfi:4.0.1-GPRO-MIPS;|Jumbo Patch for Sun Embedded Workshop 4.0.1, Flite for ChorusOS, N 110307|02|Nov/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Change check_host to log unexpected signatures 110308|02|Nov/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Change check_host to log unexpected signatures -110316|03|Apr/05/01| | | | |Unbundled|sparc;|SUNWsspob:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: obp patch +110316|05|Nov/18/03| | | | |Unbundled|sparc;|SUNWsspob:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: obp patch 110317|02|Dec/19/00| | | | |Unbundled|sparc;|SUNWsspob:3.2.0,REV=99.09.20.15.58;|SSP 3.2: obp patch 110318|01|Oct/16/00| | | | |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: Extra files in /var/opt/SUNWssp/adm directory 110319|01|Oct/05/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Extra files in /var/opt/SUNWssp/adm directory -110320|01|Jan/17/01| | | | |8|sparc;|SUNW1394x:11.8.0,REV=2000.07.17.18.14;|SunOS 5.8: /kernel/misc/sparcv9/s1394 patch -110322|01|Jun/19/01|R|S| | |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/yp/ypbind patch -110323|01|Jun/19/01|R|S| | |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/yp/ypbind patch -110325|03|Jun/21/02| |S| | |8_x86|i386;|SUNWpsdcr:2000.01.08.18.17;SUNWpsh:2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/asy and /usr/include/sys/asy.h patch +110320|03|Apr/18/03| | | | |8|sparc;|SUNW1394h:11.8.0,REV=2000.07.05.13.22;SUNW1394x:11.8.0,REV=2000.07.17.18.14;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/misc/sparcv9/s1394 patch +110322|02|Aug/19/02|R|S| | |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/yp/ypbind patch +110323|02|Sep/24/02|R|S| | |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/yp/ypbind patch +110325|04|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWpsdcr:1.1.0,REV=2000.01.08.18.17;SUNWpsh:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/asy and /usr/include/sys/asy.h patch 110326|02|Feb/07/01| | | | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4: dtstyle patch 110327|02|Feb/07/01| | | | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtstyle patch -110328|01|May/24/01| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: sd patch -110329|01|May/24/01| | | | |7_x86|||SunOS 5.7_x86: sd patch -110335|02|Jan/03/01| | | | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: dtprintinfo patch -110336|02|Jan/03/01| | | | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtprintinfo patch +110328|02|Jan/30/03| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: sd patch +110329|02|Jun/04/03| | | | |7_x86|||SunOS 5.7_x86: sd patch +110335|03|Dec/03/03|R|S| | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4: dtprintinfo patch +110336|03|Dec/03/03|R|S| | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdtma:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtprintinfo patch 110337|02|Aug/13/01| |S| | |Trusted_Solaris_8|sparc;sparc.sun4u;|SUNWcar:11.8.0,REV=2000.10.30.04.48;SUNWcarx:11.8.0,REV=2000.10.30.04.48;SUNWcsr:11.8.0,REV=2000.10.30.04.48;SUNWhea:11.8.0,REV=2000.10.30.04.48;SUNWkpsu:11.8.0,REV=2000.10.30.04.48;SUNWkpsux:11.8.0,REV=2000.10.30.04.48;SUNWkpts:11.7.0,REV=2000.10.30.04.48;SUNWkptsx:11.7.0,REV=2000.10.30.04.48;SUNWtsu:2.5.0,REV=2000.10.30.04.48;|Trusted Solaris 8: Security CIPSO TCP kernel support 110338|03|Aug/13/01| |S| | |Trusted_Solaris_8_x86|i386;i386.i86pc;110763-01;|SUNWcar:11.8.0,REV=2000.10.28.19.07;SUNWcsr:11.8.0,REV=2000.10.28.19.07;SUNWhea:11.8.0,REV=2000.10.28.19.07;SUNWkpsu:11.8.0,REV=2000.10.28.19.07;SUNWkpts:11.7.0,REV=2000.10.28.19.07;SUNWtsu:2.5.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: Security CIPSO TCP kernel support 110339|01|Mar/09/01|R|S| | |2.5|sparc;|SUNWarc:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: libcurses:setupterm has buffer overflow 110341|01|Mar/09/01|R|S| | |2.5_x86|i386;|SUNWarc:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: libcurses:setupterm has buffer overflow -110342|05|Jun/14/02| | | | |Unbundled|sparc;|SUNWapr:2000.08.25.13.45;SUNWapu:2000.08.25.13.45;|AP 2.3.1: apboot does not update dump device if not on boot disk +110342|05|Jun/14/02| | | | |Unbundled|sparc;|SUNWapr:2.3.1,REV=2000.08.25.13.45;SUNWapu:2.3.1,REV=2000.08.25.13.45;|AP 2.3.1: apboot does not update dump device if not on boot disk 110353|02|Apr/06/01| | | | |Unbundled|sparc;|SUNWvts:4.1,REV=10.00.08.09,OE=5.8;SUNWvtsx:4.1,REV=10.00.08.09,OE=5.8;|SunVTS 4.1: Update enatest sutest sctest fwcamtest netlbtest audio 110354|01|Mar/21/01| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ifconfig aoto-revarp hangs in the presence of ARP or RA 110355|01|Mar/21/01| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ifconfig aoto-revarp hangs in presence of ARP or RA @@ -5248,23 +5358,23 @@ 110370|03|Nov/14/01| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: SUNW,Sun-Fire usr platform links patch 110371|03|Feb/12/02| | | | |8|sparc;sparc.sun4u;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: serengeti support, Update3, sgfru patch 110372|02|Apr/02/01| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;|Obsoleted by: 108528-07 SunOS 5.8: serengeti support, Update3, sgh -110373|04|Mar/06/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: /platform/SUNW,Sun-Fire/kernel/drv/sparcv9/sgsbbc patch +110373|05|Oct/10/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: /platform/SUNW,Sun-Fire/kernel/drv/sparcv9/sgsbbc patch 110374|08|Oct/24/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.13.13.40;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire/kernel/drv/sparcv9/sgenv patch -110375|04|Mar/06/02| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire/kernel/drv/sparcv9/ssm patch +110375|05|Nov/08/02| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire/kernel/drv/sparcv9/ssm patch 110376|01|Apr/02/01| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: littleneck support, usr_platform patch, S8 Update 3 110377|02|Jun/20/01| | |O| |8|sparc;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|Obsoleted by: 110460-03 SunOS 5.8: littleneck support, picl patch, 110378|06|Feb/22/02| | | | |8|sparc;108528-13;109279-09;108528-13;108528-13;|SUNWmipr:11.8.0,REV=2000.03.20.08.10;SUNWmipu:11.8.0,REV=2000.03.20.08.10;|SunOS 5.8: mipagent patch Mobile IP 110379|01|Apr/02/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: littleneck support, gpio patch 110380|04|Dec/21/01|R| | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ufssnapshots support, libadm patch 110381|01|Feb/02/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ufssnapshots support, clri patch -110382|01|Feb/02/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: file systems should support snapshots for online bkups +110382|04|Dec/15/03| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ufssnapshots support, fssnap kernel, S8 Update 3 110383|02|Jul/31/01|R| |O| |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-13 SunOS 5.8: libnvpair patch 110384|05|May/04/01| | |O| |8|sparc;109906-05;108528-05;110383-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-11 SunOS 5.8: RCM libraries & header patch -110385|03|Jan/25/01| | | | |8|sparc;110384-01;108528-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: RCM modules patch -110386|02|Feb/15/02| |S| | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: RBAC Feature Patch -110387|03|Mar/21/01|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ufssnapshots support, ufsdump patch +110385|04|May/29/03| | | | |8|sparc;108528-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: RCM modules patch +110386|03|Apr/08/03|R|S| | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: RBAC Feature Patch +110387|05|Aug/19/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ufssnapshots support, ufsdump patch 110388|01|Apr/05/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: RBAC Feature for Solaris Update 3 -110389|04|Jun/20/01| | | | |8|sparc;sparc.sun4u;108528-05;|SUNWcvc:11.8.0,REV=2000.01.08.18.12;SUNWcvcx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cvc CPU signature +110389|05|Jan/22/03| |S| | |8|sparc;sparc.sun4u;108528-18;|SUNWcvc:11.8.0,REV=2000.01.08.18.12;SUNWcvcx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cvc CPU signature 110390|02|May/09/01|R| |O| |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-05 SunOS 5.8: ldapclient patch 110391|02|Sep/19/01| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch for m64config.1m 110392|02|Sep/19/01| | | | |7|sparc;|SUNWman:40.0,REV=23;|SunOS 5.7: m64config.1m Manual Page update @@ -5273,60 +5383,63 @@ 110396|06|Feb/22/02| | | | |8_x86|i386;108529-13;108529-13;109280-09;108529-13;|SUNWmipr:11.8.0,REV=2000.03.20.08.20;SUNWmipu:11.8.0,REV=2000.03.20.08.20;|SunOS 5.8_x86: udp ip mipagent 110397|02|Jul/31/01|R| |O| |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: libnvpair patch 110398|05|May/23/01| | |O| |8_x86|i386;109907-05;110397-01;108529-05;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-11 SunOS 5.8_x86: RCM libraries & header patc -110399|03|Feb/12/01| | | | |8_x86|i386;110398-01;108529-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: RCM modules patch -110400|01|Mar/30/01| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: RBAC Feature Patch +110399|04|May/29/03| | | | |8_x86|i386;108529-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: RCM libnvpair serengeti sysevent +110400|01|Mar/30/01|R| | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: RBAC Feature Patch 110401|01|Apr/02/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: RBAC Feature for Solaris Update 3 -110402|03|May/29/01|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ufsdump patch +110402|05|Aug/19/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ufsdump patch 110403|04|Dec/21/01|R| | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ufssnapshots support, libadm patch 110404|01|Feb/12/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: file systems should support snapshots for online bk -110405|01|Feb/12/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: file systems should support snapshots for online bk +110405|04|Nov/11/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: file systems should support snapshots for online bk 110406|02|Jul/31/01|R| |O| |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-05 SunOS 5.8_x86: ldapclient patch 110407|02|Dec/07/00| | | | |8|sparc;|SUNWdtezt:1.4,REV=10.1999.12.02;SUNWdthez:1.4,REV=10.1999.12.02;SUNWdtmaz:1.4,REV=10.1999.12.02;|CDE 1.4 Sdttypes patch 110408|02|Dec/07/00| | | | |8_x86|i386;|SUNWdtezt:1.4,REV=10.1999.12.02;SUNWdthez:1.4,REV=10.1999.12.02;SUNWdtmaz:1.4,REV=10.1999.12.02;|CDE 1.4_x86: Sdttypes patch -110412|06|Apr/09/02| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Eveready fan trays spin fast +110412|07|Feb/17/03| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Eveready fan trays spin fast 110413|02|Jan/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: Change libsysid to support new hostid ranges 110414|02|Jan/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Change libsysid to support new hostid ranges 110415|02|Jan/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Change libsysid to support new hostid ranges 110416|03|Aug/02/01| |S| | |8|sparc;|JSatsvr:1.0,REV=1999.12.08.12.17;JSatsvu:1.0,REV=1999.12.27.15.22;|SunOS 5.8: ATOK12 patch 110417|03|Aug/02/01| |S| | |8_x86|i386;|JSatsvr:1.0,REV=1999.12.08.12.17;JSatsvu:1.0,REV=1999.12.27.15.22;|SunOS 5.8_x86: ATOK12 patch -110420|04|Jul/30/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: ssp_restore overwrites newer files with older ones. +110420|05|Aug/08/03| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: ssp_restore overwrites newer files with older ones. 110421|03|Jul/30/01| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: ssp_restore overwrites newer files with older ones. -110425|01|Nov/17/00| | | | |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWplcx:1.0,REV=1998.09.11.23.48;|SunOS 5.7: Misc. locales have errors in LC_CTYPE definitions +110425|01|Nov/17/00| | |O| |7|sparc;|SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWplcx:1.0,REV=1998.09.11.23.48;|Obsoleted by: 107187-07 SunOS 5.7: Misc. locales have errors in LC 110426|01|Jan/12/01| | | | |7|sparc;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: mknetid fails when a user is in more than 16 groups 110427|01|Feb/14/02| | | | |7_x86|i386;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: mknetid fails when a user is in more than 16 groups 110428|01|May/29/01| | | | |8|sparc;|SUNWeeudt:1.0,REV=1999.12.20.13.15;SUNWeeuos:1.0,REV=1999.12.15.15.44;SUNWeeuow:1.0,REV=1999.12.13.20.39;SUNWeeuox:1.0,REV=1999.11.24.13.29;|SunOS 5.8: New Turkish UTF-8 locale 110429|01|May/29/01| | | | |8_x86|i386;|SUNWeeudt:1.0,REV=1999.12.20.13.27;SUNWeeuos:1.0,REV=1999.12.15.17.40;SUNWeeuow:1.0,REV=1999.12.13.20.46;|SunOS 5.8_x86: New Turkish UTF-8 locale 110430|03|Mar/14/02| | | | |Unbundled|sparc.sun4u;|SUNWftcar:5.6,REV=1999.01.28.13.32;SUNWftutr:5.6,REV=1999.01.28.13.32;|Netra ft 1800 QU2 se driver and u4ftalarm patch 110432|01|Mar/30/01| | | | |Unbundled|sparc;|SUNWapdv:2.3.1,REV=2000.08.25.13.45;|AP 2.3.1: AP handling target failure, FC hubs/fabric, daisy chaini -110433|07|Apr/09/02| | | | |Unbundled|sparc;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch -110434|08|Apr/09/02| | | | |Unbundled|sparc;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch -110435|07|Apr/09/02| | | | |Unbundled|sparc;108901-03;108528-02;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch +110433|08|Feb/07/03| | | | |Unbundled|sparc;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch +110433|09|Apr/29/03| | | | B|Unbundled|sparc;|VRTSvxfs:3.4,REV=GA03;|WITHDRAWN PATCH VERITAS File System 3.4: VxFS 3.4 multiple fixes p +110434|09|Feb/07/03| | | | |Unbundled|sparc;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch +110435|08|Feb/07/03| | | | |Unbundled|sparc;108901-03;108528-02;108528-24;|VRTSvxfs:3.4,REV=GA03;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch 110437|01|Mar/28/02| | | | |Unbundled|sparc;109299-02;|VRTSvxfs:3.3.3,REV=GA03;|VxFS Filesystem 3.3.3patch01: fsck for filesystems grown beyond 2G 110438|01|Mar/28/02| | | | |Unbundled|sparc;109298-02;|VRTSvxfs:3.3.3,REV=GA03;|VxFS Filesystem 3.3.3patch01: fsck for filesystems grown beyond 2G 110439|01|Mar/28/02| | | | |Unbundled|sparc;108477-02;|VRTSvxfs:3.3.3,REV=GA03;|VxFS Filesystem 3.3.3patch01: fsck for filesystems grown beyond 2G -110451|06|Jun/14/02| | | | |Unbundled|sparc;105375-26;105357-04;105181-31;|VRTSvxvm:01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde -110452|06|Jun/14/02| | | | |Unbundled|sparc;106541-19;107473-07;|VRTSvxvm:01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde -110453|03|Jan/17/02|R|S| | |8|sparc;|SUNWadmap:11.8,REV=2000.01.14.00.01;|SunOS 5.8: admintool patch -110454|03|Jan/17/02|R|S| | |8_x86|i386;|SUNWadmap:11.8,REV=2000.01.14.00.14;|SunOS 5.8_x86: admintool patch +110442|01|May/30/03| | | | |Unbundled|sparc;|VRTSvmsa:3.0.6,REV=04.03.2000.14.30;VRTSvmsa:3.0.6,REV=04.03.2000.14.30,PATCH=1;|VRTSvmsa 3.0.6: patch two +110451|09|Feb/19/03| | | | |Unbundled|sparc;105375-26;105357-04;105181-31;|VRTSvxvm:3.1.1,REV=01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde +110452|09|Feb/19/03| | | | |Unbundled|sparc;107473-07;106541-19;|VRTSvxvm:3.1.1,REV=01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde +110453|04|Feb/21/03|R|S| | |8|sparc;|SUNWadmap:11.8,REV=2000.01.14.00.01;|SunOS 5.8: admintool Patch +110454|04|Feb/18/03|R|S| | |8_x86|i386;|SUNWadmap:11.8,REV=2000.01.14.00.14;|SunOS 5.8_x86: admintool Patch 110455|01|Nov/17/00| | | | |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: csplit: gratuitous undocumented limit of 100 files 110456|01|Dec/19/00| | | | |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: csplit: gratuitous undocumented limit of 100 files 110457|05|Apr/19/02| | | | |8|sparc;|SUNWiscr:11.8.0,REV=2000.07.05.13.22;SUNWiscrx:11.8.0,REV=2000.07.05.13.22;SUNWstcx:11.8.0,REV=2000.07.05.13.22;|SunOS 5.8: scmi2c driver patch 110458|02|May/29/01|R|S| | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWsra:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libcurses patch 110459|02|May/29/01|R|S| | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libcurses patch -110460|20|Jul/17/02|R|S| | |8|sparc;sparc.sun4u;108528-07;|SUNWcsr:2000.01.08.18.12;SUNWfruid:2001.01.19.01.02;SUNWfruip:2001.01.19.01.02;SUNWfruix:2001.01.19.01.02;SUNWpiclh:2000.07.05.13.22;SUNWpiclu:2000.08.15.00.06;SUNWpiclx:2000.07.05.13.22;|SunOS 5.8: fruid/PICL plug-ins patch -110461|01|May/29/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ttcompat patch -110462|01|May/29/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ttcompat patch +110460|32|Nov/17/03|R|S| | |8|sparc;sparc.sun4u;108528-18;|FJSVpiclu:11.8.0,REV=2002.10.24.16.51;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWfruid:11.8.0,REV=2001.01.19.01.02;SUNWfruip:11.8.0,REV=2001.01.19.01.02;SUNWfruix:11.8.0,REV=2001.01.19.01.02;SUNWpiclh:11.8.0,REV=2000.07.05.13.22;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;SUNWpiclx:11.8.0,REV=2000.07.05.13.22;|SunOS 5.8: fruid/PICL plug-ins patch +110461|03|Feb/27/03| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ttcompat patch +110462|03|Feb/27/03| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ttcompat patch 110467|01|Dec/14/00| | |O| |8|sparc.sun4u;|SUNWsior:3.2,REV=1999.10.19.10.29;SUNWsiox:2.2,REV=1999.10.19.10.29;|Obsoleted by: 108680-08 SunOS 5.8: su and eri driver patch -110468|01|Apr/05/01| | | | |Unbundled|i386;|SPROws:6.1;|Forte 6 project (2 exe's + static lib) becomes corrupt upon saving +110468|02|Aug/16/02| | | | |Unbundled|i386;|SPROws:6.1;|Workshop IPE 6.1_x86: Patch for Forte Developer 6 update 1 Worksho 110480|03|Feb/08/02| | | | |Unbundled|sparc;|SPROcodmg:6.1;SPROdmake:6.1;SPROflmrg:6.1;|TeamWare 6.01: Patch for Forte TeamWare 6.01 110481|03|Feb/08/02| | | | |Unbundled|i386;|SPROcodmg:6.1;SPROdmake:6.1;SPROflmrg:6.1;|TeamWare 6.01_x86: Patch for Forte TeamWare 6.01 -110489|05|Jun/21/01| | | | |Unbundled|sparc;|SUNWsrmb:1.1.0,REV=1999.07.07.11.24;SUNWsrmm:1.1.0,REV=1999.07.07.11.24;SUNWsrmr:1.1.0,REV=1999.07.07.11.24;|Solaris Resource Manager 1.1: SHR/srmdrv/srmlim fixes +110489|07|Oct/21/03| | | | |Unbundled|sparc;|SUNWsrmb:1.1.0,REV=1999.07.07.11.24;SUNWsrmm:1.1.0,REV=1999.07.07.11.24;SUNWsrmr:1.1.0,REV=1999.07.07.11.24;|Solaris Resource Manager 1.1: SHR/srmdrv/srmlim Patch 110497|01|Nov/07/00| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3:SSP hostview doesn't diplay proc temp correctly on brd 7 +110498|02|Dec/19/02| | | | |Unbundled|sparc;|SUNWsspdf:3.5.0,REV=2001.08.21.20.45;SUNWsspop:3.5.0,REV=2001.08.21.20.45;SUNWssppo:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: Need to identify mirrored SRAM cpu modules after bringup/ 110499|03|May/01/01| | |O| |8|sparc;108652-22;|SUNWxwdxm:6.4.1.3800,REV=0.1999.12.15;SUNWxwice:6.4.1.3800,REV=0.1999.12.15;SUNWxwicx:6.4.1.3800,REV=0.1999.12.15;SUNWxwinc:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;SUNWxwplx:6.4.1.3800,REV=0.1999.12.15;SUNWxwslb:6.4.1.3800,REV=0.1999.12.15;|Obsoleted by: 108652-29 X11 6.4.1: Xsun patch 110500|03|May/02/01| | |O| |8_x86|i386;108653-20;|SUNWxwdxm:6.4.1.3800,REV=0.1999.12.15;SUNWxwice:6.4.1.3800,REV=0.1999.12.15;SUNWxwinc:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;SUNWxwslb:6.4.1.3800,REV=0.1999.12.15;|Obsoleted by: 108653-24 X11 6.4.1_x86: Xsun patch -110511|04|Mar/06/02| | | | |8|sparc;108827-14;|SUNWnisr:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: rpc.nisd patch -110512|04|Mar/06/02| | | | |8_x86|i386;108828-15;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWnisr:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: rpc.nisd patch -110527|03|Mar/18/02| | | | |Unbundled|sparc;|SUNWtrpd:5.0,REV=5.26.2000.02.10;|SunLink TRI/P 5.0: Token Ring Driver Patch +110511|05|Sep/11/02| | | | |8|sparc;108827-14;108993-18;|SUNWnisr:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: rpc.nisd patch +110512|06|Oct/29/02| | | | |8_x86|i386;108828-15;108994-18;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWnisr:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: rpc.nisd patch +110527|04|Mar/28/03| | | | |Unbundled|sparc;|SUNWtrpd:5.0,REV=5.26.2000.02.10;|SunLink TRI/P 5.0: Token Ring Driver Patch 110528|01|Dec/14/00| | | | |Unbundled|sparc;|SUNWvts:2.1.3,REV=06.98.04.17;|Add 32-bit SunVTS NVRAM Test 110529|01|Dec/14/00| | | | |Unbundled|sparc;|SUNWvts:3.4,REV=08.99.09.20;|Add 32-bit and 64-bit SunVTS NVRAM Test 110530|01|Dec/14/00| | | | |Unbundled|sparc;|SUNWvts:4.1,REV=10.00.08.09,OE=5.8;|Add 32-bit and 64 bit SunVTS NVRAM Test @@ -5334,41 +5447,44 @@ 110532|01|Jan/30/01| |S| | |Unbundled|sparc;|SUNWab2u:3.0,REV=2000.0804;|AnswerBook 1.4.3: HTTP GET overflow allows code execution 110537|01|Jan/30/01| |S| | |Unbundled|i386;|SUNWab2u:3.0,REV=1999.1209;|AnswerBook 1.4.2_x86: HTTP GET overflow allows code execution 110538|01|Jan/30/01| |S| | |Unbundled|i386;|SUNWab2u:3.0,REV=2000.0804;|AnswerBook 1.4.3_x86: HTTP GET overflow allows code execution -110539|14|Jul/10/02| | | | |Unbundled|sparc;|SUNWmmgr:2000.06.23.16.09;SUNWnetbp:2000.06.23.16.03;|NetBackup 3.4 UNIX server and client fix -110547|02|Aug/06/02| | | | |7|sparc;|SUNWcsu:1998.10.06.00.59;SUNWcsxu:1998.09.01.04.16;SUNWhea:1998.09.01.04.16;|SunOS 5.7: /usr/kernel/drv/audiocs patch -110548|02|Aug/06/02| | | | |7_x86|i386;|SUNWcsu:1998.10.06.01.22;SUNWhea:1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/drv/audiocs patch +110539|06|Sep/10/01| | | | B|Unbundled|sparc;|SUNWmmgr:Dev Release 09/07/2001;SUNWnetbp:3.4,REV=2000.06.23.16.03;|WITHDRAWN NetBackup 3.4 UNIX server and client fix +110539|17|Oct/08/03| | | | |Unbundled|sparc;|SUNWmmgr:3.4,REV=2000.06.23.16.09;SUNWnetbp:3.4,REV=2000.06.23.16.03;|NetBackup 3.4 UNIX server and client fix +110547|02|Aug/06/02| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/drv/audiocs patch +110548|02|Aug/06/02| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/drv/audiocs patch +110602|01|Oct/03/02| | | | |Unbundled|sparc.sun4u;|SUNWcmscu:5.6,REV=1999.01.28.13.32;|Temporary Environment monitoring daemon patch 110603|01|Feb/28/01| | | | |8|sparc;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4: sdtname patch 110604|01|Feb/28/01| | | | |8_x86|i386;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4_x86: sdtname patch 110605|02|Jun/06/01| | | | |Unbundled|sparc;|SUNWdtbax:1.4,REV=10.1999.12.01;SUNWmfdev:1.2.7,REV=10.1999.12.02;SUNWmfrun:2.1.1,REV=10.1999.12.02;|Motif 2.1.1: uil patch for Solaris 8 110606|02|Jun/06/01| | | | |Unbundled|i386;|SUNWmfdev:1.2.7,REV=10.1999.12.02;SUNWmfrun:2.1.1,REV=10.1999.12.02;|Motif 2.1.1_x86: uil patch for Solaris 8_x86 -110609|02|Aug/13/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cdio.h and command.h USB header patch -110610|02|Aug/13/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cdio.h and commands.h USB patch +110609|04|Apr/18/03|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cdio.h and command.h USB header patch +110610|04|Apr/23/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cdio.h and commands.h USB patch 110611|01|Dec/20/00| | | | |8|sparc;109892-02;|SUNWpsf:13.1,REV=2000.01.08.18.12;SUNWpsu:13.1,REV=2000.01.08.18.12;|SunOS 5.8: lp.cat and postio ECP patch 110612|01|Dec/20/00| | | | |8_x86|i386;109884-02;|SUNWpsf:13.1,REV=2000.01.08.18.17;SUNWpsu:13.1,REV=2000.01.08.18.17;|SunOS 5.8_x86: lp.cat postio 110613|02|Mar/22/02| | | | |Unbundled|sparc;|SUNWdtpcv:1.2,REV=98.04.17;SUNWdtpcv:1.2,REV=98.09.14;|PC FileViewer 1.x: FileViewer takes up large amount of cpu time 110614|02|Jun/19/01| | | | |8|sparc;|SUNWses:11.8.0,REV=2000.01.08.18.12;SUNWsesx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ses driver patch -110615|05|Jun/10/02|R|S| | |8|sparc;109326-02;|SUNWcsr:2000.01.08.18.12;SUNWnisu:2000.01.08.18.12;SUNWsndmr:2000.01.08.18.12;SUNWsndmu:2000.01.08.18.12;|SunOS 5.8: sendmail patch -110616|04|Jan/23/02|R|S| | |8_x86|i386;109327-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWsndmr:11.8.0,REV=2000.01.08.18.17;SUNWsndmu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sendmail patch +110615|10|Sep/29/03|R|S| | |8|sparc;109326-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;SUNWsndmr:11.8.0,REV=2000.01.08.18.12;SUNWsndmu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sendmail patch +110616|10|Sep/29/03|R|S| | |8_x86|i386;109327-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;SUNWsndmr:11.8.0,REV=2000.01.08.18.17;SUNWsndmu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sendmail patch 110624|02|Nov/20/00| | | | |2.6|sparc;|SUNWjupdm:1.0,REV=97.03.25;| SunOS 5.6, 5.6HW2: (Japanese Supp CD): manpage patch 110625|02|Nov/20/00| | | | |2.6|sparc;|SUNWjupdm:1.0,REV=98.06.09;| SunOS 5.6 HW3: (Japanese Supp CD): manpage patch 110626|03|Jun/13/01| | | | |Unbundled|sparc;|SUNWesmru:1.1.0,REV=07.24.2000;|II 2.0 Framework ulimit Patch 110645|02|May/22/01| | | | |Unbundled|sparc;|SUNWdat:3.1.0,REV=2000.09.07;SUNWdatu:3.1.0,REV=2000.09.07;|SunForum 3.1: fixes and enhancements -110646|03|Oct/15/01|R|S| | |7|sparc;|SUNWftpu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/in.ftpd Patch -110647|03|Oct/15/01|R|S| | |7_x86|i386;|SUNWftpu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/in.ftpd Patch -110648|21|Jun/25/02| |S| | |Unbundled|sparc;|SUNWscdev:2000.10.01.01.00;SUNWscr:2000.10.01.01.00;SUNWscsal:2000.10.01.01.00;SUNWscsam:2000.10.01.01.00;SUNWscscn:2000.10.01.01.00;SUNWscssv:2000.10.01.01.00;SUNWscu:2000.10.01.01.00;|Sun Cluster 3.0: Core/Sys Admin Patch +110646|05|Jun/25/03|R|S| | |7|sparc;|SUNWftpu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/in.ftpd Patch +110647|05|Sep/25/03|R|S| | |7_x86|i386;|SUNWftpu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/in.ftpd Patch +110648|29|Sep/15/03| |S| | |Unbundled|sparc;|SUNWscdev:3.0.0,REV=2000.10.01.01.00;SUNWscr:3.0.0,REV=2000.10.01.01.00;SUNWscsal:3.0.0,REV=2000.10.01.01.00;SUNWscsam:3.0.0,REV=2000.10.01.01.00;SUNWscscn:3.0.0,REV=2000.10.01.01.00;SUNWscssv:3.0.0,REV=2000.10.01.01.00;SUNWscu:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: Core/Sys Admin Patch 110649|01|Mar/29/01| | |O| |Unbundled|sparc;|SUNWscsam:3.0.0,REV=2000.10.01.01.00;SUNWscscn:3.0.0,REV=2000.10.01.01.00;SUNWscshl:3.0.0,REV=2000.10.01.01.00;SUNWscssv:3.0.0,REV=2000.10.01.01.00;|Obsoleted by: 110648-06 Sun Cluster 3.0: Sys Admin Patch -110651|10|Jul/10/02| | | | |Unbundled|sparc;|SUNWscor:2000.10.01.01.00;SUNWscorx:2000.10.01.01.00;|Sun Cluster 3.0 HA-Oracle Patch +110651|04|Sep/25/01| | | | B|Unbundled|sparc;|SUNWscor:3.0.0,REV=2000.10.01.01.00;SUNWscorx:3.0.0,REV=2000.10.01.01.00;|WITHDRAWN Sun Cluster 3.0 HA-Oracle Patch +110651|14|Sep/03/03| | | | |Unbundled|sparc;|SUNWscor:3.0.0,REV=2000.10.01.01.00;SUNWscorx:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0 HA-Oracle Patch 110653|02|May/09/01| | | | |Unbundled|sparc;|SUNWudlm:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: Oracle Parallel Server Patch 110655|03|Oct/29/01| | | | |Unbundled|sparc;|SUNWudlm:2.2,REV=2000.03.14.18.21;SUNWudlmx:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: Oracle Parallel Server Patch 110658|01|Jan/17/01| | | | |Unbundled|sparc;|SUNWvts:3.3,REV=08.99.06.22;|vtsui disappears with no core and X error -110662|07|Jan/22/02|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ksh patch -110663|07|Feb/15/02|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ksh patch -110666|06|May/24/02| | | | |Unbundled|sparc;|SUNWuta:1.2_16.a,REV=2000.10.31.16.19;SUNWutk:1.2_16.a,REV=2000.10.31.16.19;SUNWutkx:1.2_16.a,REV=2000.10.31.16.19;SUNWuto:1.2_16.a,REV=2000.10.31.16.19;SUNWutu:1.2_16.a,REV=2000.10.31.16.19;|Sun Ray enterprise server version 1.2 Update Patch -110668|03|Jan/18/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.telnetd patch -110669|03|Jan/29/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.telnetd patch +110662|12|Apr/24/03|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ksh patch +110663|12|Apr/23/03|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ksh patch +110666|08|Sep/05/02| | | | |Unbundled|sparc;|SUNWuta:1.2_16.a,REV=2000.10.31.16.19;SUNWutk:1.2_16.a,REV=2000.10.31.16.19;SUNWutkx:1.2_16.a,REV=2000.10.31.16.19;SUNWuto:1.2_16.a,REV=2000.10.31.16.19;SUNWutu:1.2_16.a,REV=2000.10.31.16.19;|Sun Ray enterprise server version 1.2 Update Patch +110668|04|Apr/08/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.telnetd patch +110669|04|May/07/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.telnetd patch 110670|01|Mar/30/01|R|S| | |8|sparc;|SUNWsutl:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr/sbin/static/rcp patch 110671|01|Mar/30/01| |S| | |8_x86|i386;|SUNWsutl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: usr/sbin/static/rcp patch -110672|02|Oct/24/01| |S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/misc/gld patch +110672|04|Jun/06/03| |S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/misc/gld patch 110675|03|Feb/26/02| | | | |Unbundled|sparc;109210-01;|SUNWscsyb:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: HA-Sybase Patch 110676|04|Nov/21/01| | | | |Unbundled|sparc;109210-01;|SUNWscsap:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: HA-SAP Patch 110692|03|Mar/13/01| | | | |Unbundled|sparc;|SUNWqfed:5.0,REV=5.8.1999.12.07;SUNWqfedx:5.0,REV=5.8.1999.12.07;108806-01 (or newer)|NSS 1.0: patch for Netra Software Suite Network Resilience @@ -5376,8 +5492,8 @@ 110694|01|Jan/30/01| | | | |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/acct/acctdusg patch 110696|04|Dec/14/01| | | | |Unbundled|i86pc,sparc;|SUNWsmgr:2.07.50;SUNWsmgr:2.07.54, REV=2001.01.09.13.05;|Sun StorEdge Network Fiber Channel 2.0: SanSurfer Administration P 110699|01|Feb/22/01| | | | |Unbundled|sparc;|SUNWtrsd:5.0,REV=1.64.1999.12.17;|SunLink TRI/S 5.0: Token Ring Driver (tr) Patch for Solaris 8 -110700|01|Jan/08/01|R| | | |8|sparc;|SUNWatfsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: automount patch -110701|01|Feb/27/01|R| | | |8_x86|i386;|SUNWatfsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: automount patch +110700|01|Jan/08/01|R| |O| |8|sparc;|SUNWatfsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-18 SunOS 5.8: automount patch +110701|01|Feb/27/01|R| |O| |8_x86|i386;|SUNWatfsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86: automount patch 110702|01|Jan/11/02| | | | |8|sparc;|SUNWypu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mknetid patch 110703|01|Jan/12/01| | | | |8_x86|i386;|SUNWypu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mknetid patch 110710|01|Sep/12/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: nscd patch @@ -5387,7 +5503,7 @@ 110716|02|May/30/01| | | | |8|sparc;|SUNWwsr2:3.0.0,REV=2000.11.21.00.05;SUNWwsrv:3.0.0,REV=2000.10.13.20.44;|SunOS 5.8: Solaris Product Registry 3.0 patch 110717|02|May/30/01| | | | |8_x86|i386;|SUNWwsr2:3.0.0,REV=2000.11.20.23.48;SUNWwsrv:3.0.0,REV=2000.10.13.18.07;|SunOS 5.8_x86: Solaris Product Registry 3.0 patch 110722|03|Nov/21/01| | | | |Unbundled|sparc;|SUNWapdv:2.3.1,REV=2000.08.25.13.45;|AP 2.3.1: AP needs to provide interface for Veritas DMP compatibil -110723|05|Jun/05/02|R| | | |8|sparc;109882-06;|SUNWeridx:2000.07.17.18.14;|SunOS 5.8: /kernel/drv/sparcv9/eri patch +110723|06|Jul/11/03|R| | | |8|sparc;109882-06;|SUNWeridx:11.8.0,REV=2000.07.17.18.14;|SunOS 5.8: /kernel/drv/sparcv9/eri patch 110724|01|May/30/01| | | | |8|sparc;|SUNWctpls:1.0,REV=1999.10.01.13.51;SUNWctplx:1.0,REV=1999.10.01.13.51;|SunOS 5.8: liblayout patch 110725|01|May/30/01| | | | |8_x86|i386;|SUNWctpls:1.0,REV=1999.10.01.13.51;|SunOS 5.8_x86: liblayout patch 110731|01|Jan/17/01| | | | |Unbundled|sparc;|SUNWvts:3.1,REV=09.99.01.21;|selected from the popup menu 4122829 vtsui disappears with no core @@ -5415,8 +5531,9 @@ 110758|03|Oct/02/01| | | | |8|sparc;|SUNWcsmc:1.0,REV=2000.11.25.22.55;SUNWhsmc:1.0,REV=2000.11.25.22.55;SUNWksmc:1.0,REV=2000.11.25.22.56;|SunOS 5.8: SMC messages updates for Asian ko/zh/zh_TW locales 110759|03|Oct/02/01| | | | |8_x86|i386;|SUNWcsmc:1.0,REV=2000.11.25.22.56;SUNWhsmc:1.0,REV=2000.11.25.22.57;SUNWksmc:1.0,REV=2000.11.25.22.57;|SunOS 5.8_x86: SMC messages updates for Asian ko/zh/zh_TW locales 110760|02|May/02/01| | |O| |Unbundled|||Obsoleted by: 109115-07 T3 1.16a: Cluster System Firmware Update -110761|02|Jun/12/02| | | | |8|sparc.sun4u;|SUNWcarx:2000.01.08.18.12;|SunOS 5.8: pmubus driver patch -110762|03|Aug/02/01| | | | |Unbundled|sparc;|SUNWspci:1.3;|SunPCi 1.3: for Solaris 2.6, 7, 8 and sparc architectures +110761|01|Apr/20/01| | |O| B|8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN PATCH Obsoleted by: 110761-02 SunOS 5.8: pmubus driver p +110761|02|Jun/12/02| | | | B|8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN PATCH SunOS 5.8: pmubus driver patch +110762|04|Oct/14/02| | | | |Unbundled|sparc;|SUNWspci:1.3;|SunPCi 1.3: for Solaris 2.6, 7, 8 and sparc architectures 110763|01|Dec/22/00| |S| | |Trusted_Solaris_8_x86|i386;|SUNWswmt:11.8,REV=2000.10.29.01.44;|Trusted Solaris 8_x86: patchadd does not work correctly for x86 pa 110764|03|Oct/02/01| | | | |8|sparc;|SUNWcmga:8.0,REV=2000.11.12.22.52;SUNWhmga:8.0,REV=2000.11.12.22.59;SUNWkmga:8.0,REV=2000.11.12.23.03;|SunOS 5.8: MGP messages updates for Asian ko/zh/zh_TW locales 110765|03|Oct/02/01| | | | |8_x86|i386;|SUNWcmga:8.0,REV=2000.11.12.22.47;SUNWhmga:8.0,REV=2000.11.12.22.57;SUNWkmga:8.0,REV=2000.11.12.23.02;|SunOS 5.8_x86: MGP messages updates for Asian ko/zh/zh_TW locales @@ -5427,7 +5544,7 @@ 110771|02|Feb/15/01| |S| | |Trusted_Solaris_8|sparc;|SUNWcsl:11.8.0,REV=2000.10.30.04.48;SUNWcslx:11.8.0,REV=2000.10.30.04.48;SUNWcsr:11.8.0,REV=2000.10.30.04.48;SUNWcsu:11.8.0,REV=2000.10.30.04.48;|Trusted Solaris 8: /etc/shadow can be relabeled and modload does n 110772|02|Feb/15/01| |S| | |Trusted_Solaris_8_x86|i386;110763-01;|SUNWcsl:11.8.0,REV=2000.10.28.19.07;SUNWcsr:11.8.0,REV=2000.10.28.19.07;SUNWcsu:11.8.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: /etc/shadow can be relabeled and modload do 110779|01|May/31/01| | |O| |8|||Obsoleted by: 110846-01 REJECTED SunOS 5.8: POINT PATCH: Solaris 8 -110790|04|Dec/14/01| | | | |Unbundled|sparc.sun4u;|SUNWctu:11.8.0,REV=2000.04.01.16.21;|Netra ct 1.0: OBP update for SUNW,UltraSPARC-IIi-Netract +110790|06|Dec/06/02| | | | |Unbundled|sparc.sun4u;|SUNWcti2x:11.8.0,REV=2000.04.20.22.44;SUNWctu:11.8.0,REV=2000.04.01.16.21;|Netra ct 1.0: OBP update for SUNW,UltraSPARC-IIi-Netract 110794|05|Apr/04/02| | | | |8|sparc.sun4u;|SUNWdrr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: dr_daemon patch 110797|02|Aug/13/01| | | | |8|sparc;|SUNWd8dte:1.1,REV=1999.12.20.17.03;SUNWddcl:1.0,REV=1.0;SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdedte:1.1,REV=2000.01.17.14.13;SUNWdehev:1.3,REV=1999.10.13.15.50;SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWdewbc:11.8,REV=2000.10.30.15.38;SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWedcl:1.0,REV=1.0;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesdte:1.1,REV=1999.12.20.14.49;SUNWeshev:1.3,REV=1999.10.13.15.56;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWeswbc:11.8,REV=2000.10.30.15.43;SUNWf8dte:1.1,REV=2000.01.04.17.56;SUNWfdcl:1.0,REV=1.0;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrdte:1.1,REV=1999.12.23.11.36;SUNWfrhev:1.3,REV=1999.10.13.15.48;SUNWfris:8.0,REV=1999.12.13.18.54;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWfrwbc:11.8,REV=2000.10.30.15.41;SUNWi8dte:1.1,REV=2000.01.05.08.59;SUNWidcl:1.0,REV=1.0;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWithev:1.3,REV=1999.10.13.15.54;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitwbc:11.8,REV=2000.10.30.15.47;SUNWs8dte:1.1,REV=2000.01.05.09.03;SUNWsdcl:1.0,REV=1.0;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvdte:1.1,REV=2000.01.06.16.40;SUNWsvhev:1.3,REV=1999.10.13.16.15;SUNWsvis:8.0,REV=1999.12.13.19.09;SUNWsvos:11.5.1,REV=1999.12.17.14.47;SUNWsvwbc:11.8,REV=2000.10.30.15.45;|SunOS 5.8: UR4 New int 110798|02|May/30/01| | | | |8_x86|i386;|SUNWd8dte:1.1,REV=2000.01.05.09.48;SUNWddcl:1.0,REV=1.0;SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdedte:1.1,REV=2000.01.17.14.25;SUNWdehev:1.3,REV=1999.10.13.15.21;SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWdewbc:11.8,REV=2000.10.30.15.25;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWedcl:1.0,REV=1.0;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWeshev:1.3,REV=1999.10.13.15.27;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWeswbc:11.8,REV=2000.10.30.15.26;SUNWf8dte:1.1,REV=2000.01.05.09.11;SUNWfdcl:1.0,REV=1.0;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrdte:1.1,REV=1999.12.20.15.13;SUNWfrhev:1.3,REV=1999.10.13.15.19;SUNWfris:8.0,REV=1999.12.13.19.03;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWfrwbc:11.8,REV=2000.10.30.15.23;SUNWi8dte:1.1,REV=2000.01.05.12.16;SUNWidcl:1.0,REV=1.0;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWithev:1.3,REV=1999.10.13.15.25;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitwbc:11.8,REV=2000.10.30.15.26;SUNWs8dte:1.1,REV=2000.01.05.11.58;SUNWsdcl:1.0,REV=1.0;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvdte:1.1,REV=2000.01.06.16.38;SUNWsvhev:1.3,REV=1999.10.13.15.41;SUNWsvis:8.0,REV=1999.12.23.15.13;SUNWsvos:11.5.1,REV=1999.12.17.15.00;SUNWsvwbc:11.8,REV=2000.10.30.15.26;|SunOS 5.8_x86: UR4 New msgs and bug fixes @@ -5435,7 +5552,7 @@ 110804|02|Feb/07/01| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: tr dumps core with locale de and KJP 106541-07 or newer 110805|02|Feb/07/01| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: tr dumps core with locale de and KJP 106541-07 or n 110806|02|Nov/01/01| | | | |Unbundled|sparc;|SUNWvts:4.3,REV=08.01.02.12,OE=5.8;SUNWvtsx:4.3,REV=08.01.02.12,OE=5.8;|SunVTS4.3 Jumbo test patch -110808|02|Jul/23/01| | | | |7_x86|i386;|SUNWllc:11.7.0,REV=1999.06.28.14.43;|SunOS 5.7_x86: llc2 driver patch +110808|03|Apr/15/03| |S| | |7_x86|i386;106542-24;|SUNWllc:11.7.0,REV=1999.06.28.14.43;|SunOS 5.7_x86: llc2 driver patch 110809|01|Mar/14/01| | |O| |Unbundled|||Obsoleted by: 110863-02 Sun Management Center 3.0 Jumbo patch for 110811|01|May/04/01| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libnls patch 110812|01|May/04/01| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libnls patch @@ -5445,15 +5562,15 @@ 110816|01|May/04/01| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libmp patch 110817|01|May/04/01| | | | |8|sparc;|SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: apptrace and interceptors patch 110818|01|May/04/01| | | | |8_x86|i386;|SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: apptrace and interceptors patch -110819|03|Oct/30/01| | | | |8|sparc.sun4u;109888-12;|SUNWusx:11.8.0,REV=2000.07.05.13.22;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/us patch -110820|08|Mar/05/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman p +110819|04|Jun/20/03| | | | |8|sparc.sun4u;109888-24;|SUNWusx:11.8.0,REV=2000.07.05.13.22;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/us patch +110820|10|Dec/19/02| |S| | |8|sparc;sparc.sun4u;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/dman p 110821|02|Aug/14/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: iosram driver patch 110822|01|May/30/01| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mboxsc driver patch -110823|03|May/29/01| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: fcode patch -110824|02|May/30/01| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: fcpci driver patch -110825|02|May/30/01| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: fcodem driver patch -110826|05|Feb/22/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: SUNW,Sun-Fire-15000/kernel/drv/sparcv9/schpc patch -110827|02|Oct/29/01| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: scosmb driver patch +110823|04|Jan/15/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: fcode patch +110824|04|Jul/11/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: fcpci driver patch +110825|03|Jan/10/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: fcodem driver patch +110826|09|Sep/26/03| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/schpc p +110827|02|Oct/29/01| | |O| |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-24 SunOS 5.8: scosmb driver patch 110828|02|Sep/05/01| | | | |8|sparc;sparc.sun4u;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sbbc driver patch 110829|02|May/21/02| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/tod/sparcv9/todstarcat patch 110830|02|Oct/29/01| | | | |8|sparc.sun4u;|SUNWcvcr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/lib/cvcd patch @@ -5461,31 +5578,31 @@ 110832|01|May/30/01| | | | |8|sparc.sun4u;|SUNWcvcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cvcredir patch 110833|01|May/30/01| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr platform links 110834|03|Oct/23/01| | |O| |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109873-11 SunOS 5.8: SUNW,Sun-Fire-15000 libprtdiag_ -110835|04|Apr/01/02| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: platform/sun4u/kernel/misc/sparcv9/gptwo_cpu patch -110836|03|Aug/14/01| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: /platform/sun4u/kernel/misc/sparcv9/gptwocfg patch -110837|03|May/30/01| | | | |8|sparc;sparc.sun4u;|SUNWefclx:11.8.0,REV=2000.08.07.18.20;SUNWefcux:11.8.0,REV=2000.08.07.18.20;SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: efcode patch -110838|05|Apr/08/02|R| | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/axq pa -110839|03|Mar/06/02| | | | |8|sparc;108528-13;108528-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/rcm/modules/SUNW_ip_rcm.so patch -110840|02|May/31/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: bbc patch +110835|05|Jan/10/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: platform/sun4u/kernel/misc/sparcv9/gptwo_cpu patch +110836|05|Feb/18/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: /platform/sun4u/kernel/misc/sparcv9/gptwocfg patch +110837|05|Jul/30/03| | | | |8|sparc;sparc.sun4u;|SUNWefclx:11.8.0,REV=2000.08.07.18.20;SUNWefcux:11.8.0,REV=2000.08.07.18.20;SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: efcode patch +110838|06|Dec/16/02|R| | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/axq pa +110839|04|May/29/03| | | | |8|sparc;108528-11;108528-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/rcm/modules/SUNW_ip_rcm.so patch +110840|03|Oct/25/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: bbc patch 110841|01|May/31/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: gptwo patch -110842|08|Jul/22/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;|SunOS 5.8: hpc3130 driver patch for SUNW,Sun-Fire-880 +110842|11|May/08/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: hpc3130 driver patch for SUNW,Sun-Fire-880 110843|03|Jun/25/01| | |O| |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 110849-06 SunOS 5.8: libprtdiag_psr.so.1 patch for S 110844|02|May/31/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/lm75 patch 110845|03|Jul/23/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/ltc1427 patch 110846|02|May/31/01| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/pcf8574 patch 110847|02|May/31/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/pcf8591 patch 110848|02|May/31/01| | | | |8|sparc.sun4u;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;|SunOS 5.8: pcicfg patch -110849|10|Feb/20/02| | | | |8|sparc;sparc.sun4u;110842-04;110460-07;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: PICL support for SUNW,Sun-Fire-880 +110849|15|Nov/17/03|R| |O| |8|sparc;sparc.sun4u;110460-32;110842-04;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|Obsoleted by: 109873-22 SunOS 5.8: PICL support for SUNW,Sun-Fire- 110850|01|May/31/01| | |O| |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-11 SunOS 5.8: sbdp patch 110851|02|Oct/24/01| | | | |8|sparc;sparc.sun4u;108528-11;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/ssc050 patch 110852|03|Feb/12/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/ssc100 patch 110853|01|Jun/21/01| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: SUNW,Sun-Fire-880 usr platform links patch 110854|02|May/31/01| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/smbus_ara patch -110855|03|Oct/17/01| | | | |8_x86|i386;110398-05;108529-11;108529-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/rcm/modules/SUNW_ip_rcm.so patch +110855|04|May/29/03| | | | |8_x86|i386;108529-11;108529-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/rcm/modules/SUNW_ip_rcm.so patch 110856|01|Jul/13/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/inet/services patch -110861|05|Apr/18/02| | | | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S2.5.1;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesagt:3.0_Build39,REV=2.5.2000.12.08;SUNWesamn:3.0_Build39,REV=2.5.2000.12.05;SUNWescom:3.0_Build39,REV=2.5.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.5.2000.12.05;SUNWesmod:3.0_Build39,REV=2.5.2000.12.05;SUNWessta:3.0_Build39,REV=2.5.2000.12.05;SUNWeswga:3.0_Build39,REV=2.5.2000.12.01;SUNWsycfd:3.0_Build39,REV=2.5.2000.12.05;|Sun Management Center Jumbo Patch -110862|05|Apr/11/02| | | | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S2.5.1;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesagt:3.0_Build41,REV=2.5.2000.12.19;SUNWesamn:3.0_Build41,REV=2.5.2000.12.19;SUNWescom:3.0_Build41,REV=2.5.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.5.2000.12.19;SUNWesmod:3.0_Build41,REV=2.5.2000.12.19;SUNWessta:3.0_Build41,REV=2.5.2000.12.19;SUNWeswga:3.0_Build40,REV=2.5.2000.12.08;SUNWsycfd:3.0_Build41,REV=2.5.2000.12.19;|Sun Management Center Jumbo Patch -110863|05|Apr/18/02| | | | |Unbundled|||Sun Management Center 3.0 Jumbo patch for Windows +110861|14|Sep/24/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S2.5.1;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesae:3.0_Build39,REV=2.5.2000.12.05;SUNWesagt:3.0_Build39,REV=2.5.2000.12.08;SUNWesamn:3.0_Build39,REV=2.5.2000.12.05;SUNWescaa:3.0_Build39,REV=2.6.2000.12.05;SUNWescom:3.0_Build39,REV=2.5.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.5.2000.12.05;SUNWesmod:3.0_Build39,REV=2.5.2000.12.05;SUNWessmn:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.5.2000.12.05;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.5.2000.12.01;SUNWsycfd:3.0_Build39,REV=2.5.2000.12.05;|Sun Management Center 3.0: (RR) Patch for Solaris 2.5.1 +110862|14|Sep/24/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S2.5.1;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesae:3.0_Build41,REV=2.5.2000.12.19;SUNWesagt:3.0_Build41,REV=2.5.2000.12.19;SUNWesamn:3.0_Build41,REV=2.5.2000.12.19;SUNWescaa:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.5.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.5.2000.12.19;SUNWesmod:3.0_Build41,REV=2.5.2000.12.19;SUNWessmn:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.5.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.5.2000.12.08;SUNWsycfd:3.0_Build41,REV=2.5.2000.12.19;|Sun Management Center 3.0: (GA) Patch for Solaris 2.5.1 +110863|09|Sep/07/03| |S| | |Unbundled|||Sun Management Center 3.0: (GA) Patch for Windows 110864|01|May/31/01| | | | |8|sparc;|SUNWtdbas:8.0,REV=1999.10.12.16.41;SUNWtddst:8.0,REV=1999.12.07.10.02;SUNWtddte:8.0,REV=1999.11.22.11.49;SUNWtdft:8.0,REV=1999.10.12.16.41;SUNWtdwm:8.0,REV=1999.11.22.11.49;SUNWtxodt:8.0,REV=1999.10.12.16.41;|SunOS 5.8: SUNW_PKGLIST fixes (ALC S8U4 packages for SUNWCreq) 110865|01|May/31/01| | | | |8_x86|i386;|SUNWtdbas:8.0,REV=1999.10.12.15.23;SUNWtddst:8.0,REV=1999.12.07.10.04;SUNWtddte:8.0,REV=1999.11.22.11.51;SUNWtdft:8.0,REV=1999.10.12.15.23;SUNWtdwm:8.0,REV=1999.11.22.11.51;SUNWtxodt:8.0,REV=1999.10.12.15.23;|SunOS 5.8_x86: Need to back port fixes for SUNW_PKGLIST 110867|01|Sep/27/01| | | | |8|sparc;|SUNW5leux:8.0,REV=1999.10.12.16.31;SUNW5xplx:8.0,REV=1999.12.09.18.22;SUNWcleux:8.0,REV=1999.10.26.10.33;SUNWculex:8.0,REV=1999.12.07.10.00;SUNWgleux:8.0,REV=1999.10.26.10.33;SUNWgxplx:8.0,REV=1999.12.09.18.22;SUNWhlerx:8.0,REV=1999.10.12.16.26;SUNWhleux:8.0,REV=1999.11.04.10.14;SUNWhulex:8.0,REV=1999.11.09.15.06;SUNWklerx:8.0,REV=1999.10.12.16.19;SUNWkleux:8.0,REV=1999.12.10.08.38;SUNWkulex:8.0,REV=1999.11.09.15.06;|SunOS 5.8: SUNW_PKGLIST fixes (ALC S8U4 packages) @@ -5506,70 +5623,71 @@ 110889|01|Jun/22/01| | | | |8_x86|i386;|SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWfris:8.0,REV=1999.12.13.19.03;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWsvis:8.0,REV=1999.12.23.15.13;|SunOS 5.8_x86: figgs, New and updated message strings 110894|01|Jul/09/01| | | | |8|sparc;|SUNWcadis:8.0,REV=1999.12.09.15.32;SUNWcicdd:8.0,REV=1999.12.24.14.10;|SunOS 5.8: "Republic of China / Taiwan" isn't one legal country na 110895|01|Jul/09/01| | | | |8_x86|i386;|SUNWcadis:8.0,REV=1999.12.09.15.32;SUNWcicdd:8.0,REV=1999.12.24.14.08;|SunOS 5.8_x86: "Republic of China / Taiwan" not one legal country -110896|01|Feb/28/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/cachefs/mount patch -110897|01|May/31/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/cachefs/mount patch -110898|04|Jan/18/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: csh/pfcsh patch -110899|04|Jan/18/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: csh/pfcsh patch -110900|03|Jun/25/02| | | | |8|sparc.sun4u;|SUNWefcx:2000.10.03.21.12;|SunOS 5.8: /platform/sun4u/kernel/misc/sparcv9/pcicfg.e patch +110896|02|Jan/03/03|R|S| | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cachefs/mount patch +110897|02|Mar/19/03|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cachefs/mount patch +110898|08|Dec/18/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: csh/pfcsh patch +110899|08|Feb/12/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: csh/pfcsh patch +110900|09|Jul/11/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.8.0,REV=2000.10.03.21.12;SUNWefcx:11.8.0,REV=2002.10.04.14.20;|SunOS 5.8: /platform/sun4u/kernel/misc/sparcv9/pcicfg.e patch 110901|01|Mar/02/01|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/sgen and /kernel/drv/sparcv9/sgen patch 110902|01|Mar/02/01|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/sgen patch -110903|05|May/31/02|R|S| | |8|sparc;|SUNWcsu:2000.01.08.18.12;SUNWxcu4:2000.01.08.18.12;|SunOS 5.8: edit, ex, vedit, vi and view patch -110904|05|Jun/05/02|R|S| | |8_x86|i386;|SUNWcsu:2000.01.08.18.17;SUNWxcu4:2000.01.08.18.17;|SunOS 5.8_x86: edit, ex, vedit, vi and view patch +110903|07|Nov/25/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: edit, ex, vedit, vi and view patch +110904|07|Nov/25/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: edit, ex, vedit, vi and view patch 110905|02|Aug/15/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/find patch 110906|02|Aug/15/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/find patch 110907|01|May/31/01| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/arpa/inet.h patch 110908|01|May/31/01| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/arpa/inet.h patch -110910|01|Mar/06/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/ufs/fsck patch +110910|02|May/16/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/ufs/fsck patch 110911|01|Mar/06/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fs/ufs/fsck patch -110912|03|Feb/26/02| | | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cfgadm patch -110913|03|Feb/26/02| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cfgadm patch +110912|04|Aug/15/03| | | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cfgadm patch +110913|04|Aug/15/03| | | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cfgadm patch 110914|01|Mar/21/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/tr patch 110915|01|Mar/21/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/tr patch -110916|03|Apr/29/02|R| | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sort patch -110917|03|Apr/29/02|R| | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/sort and /usr/xpg4/bin/sort patch -110918|03|Nov/14/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-11;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/openeepr patch -110919|03|Nov/14/01| | | | |8_x86|i386;108529-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/openeepr patch +110916|05|Dec/15/03|R|S| | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sort patch +110917|05|Dec/15/03|R|S| | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/sort and /usr/xpg4/bin/sort patch +110918|06|Jun/20/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-22;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/openeepr and prtconf patch +110919|05|Jul/07/03| | | | |8_x86|i386;108529-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/openeepr and prtconf patch 110927|01|Jun/21/01| | | | |8|sparc;|SUNWauaox:1.0,REV=1999.11.24.13.29;SUNWcamox:1.0,REV=1999.11.24.13.29;SUNWceuox:1.0,REV=1999.11.24.13.29;SUNWeeuox:1.0,REV=1999.11.24.13.29;SUNWmeaox:1.0,REV=1999.12.08.18.13;SUNWnafox:1.0,REV=1999.12.08.18.13;SUNWnamox:1.0,REV=1999.11.24.13.29;SUNWneuox:1.0,REV=1999.12.13.14.44;SUNWsamox:1.0,REV=1999.11.24.13.29;SUNWseuox:1.0,REV=1999.12.16.17.36;SUNWweuox:1.0,REV=1999.12.13.14.44;|SunOS 5.8: Need to backport fixes in SUNW_PKGLIST in s8u4 110930|05|Feb/11/02| | | | |8_x86|||SunOS 5.8_x86: x86 bootfloppy image 110932|01|Feb/28/01| | |O| |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109906-06 SunOS 5.8: /sbin/dhcpagent patch 110933|01|May/31/01| | |O| |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109907-06 SunOS 5.8_x86: /sbin/dhcpagent patch -110934|08|Jun/11/02|R|S| | |8|sparc;110380-04;|SUNWarc:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;|SunOS 5.8: pkgtrans, pkgadd, pkgchk and libpkg.a patch -110935|08|Jun/11/02|R|S| | |8_x86|i386;110403-04;|SUNWarc:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: pkgtrans, pkgadd, pkgchk and libpkg.a patch -110936|06|Apr/11/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesagt:3.0_Build41,REV=2.6.2000.12.19;SUNWesamn:3.0_Build41,REV=2.6.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.6.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.6.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.6.2000.12.19;SUNWesmod:3.0_Build41,REV=2.6.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.6.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.6.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.6.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.6.2000.12.08;SUNWmeta:3.0_Build41,REV=2.6.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.6.2000.12.19;|Sun Management Center 3.0 Jumbo Patch for 2.6 -110937|06|Apr/11/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S7;SUNWedagx:1.1,REV=41.2000.12.14,OE=S7;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesagt:3.0_Build41,REV=2.7.2000.12.19;SUNWesamn:3.0_Build41,REV=2.7.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.7.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.7.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.7.2000.12.19;SUNWesmod:3.0_Build41,REV=2.7.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.7.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.7.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.7.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.7.2000.12.08;SUNWmeta:3.0_Build41,REV=2.7.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.7.2000.12.19;|Sun Management Center 3.0 Jumbo Patch for 5.7 -110938|06|Apr/11/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S8;SUNWedagx:1.1,REV=41.2000.12.14,OE=S8;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesaem:3.0_Build41,REV=2.8.2000.12.19;SUNWesagt:3.0_Build41,REV=2.8.2000.12.19;SUNWesamn:3.0_Build41,REV=2.8.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.8.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.8.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.8.2000.12.19;SUNWesmod:3.0_Build41,REV=2.8.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.8.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.8.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.8.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.8.2000.12.08;SUNWmeta:3.0_Build41,REV=2.8.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.8.2000.12.19;|Sun Management Center 3.0 jumbo Patch for 5.8 and 5.9 +110934|14|Aug/05/03|R|S| | |8|sparc;110380-04;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pkgtrans, pkgadd, pkgchk, pkgmk and libpkg.a patch +110935|14|Aug/05/03|R|S| | |8_x86|i386;110403-04;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pkgtrans, pkgadd, pkgchk, pkgmk and libpkg.a patch +110936|18|Nov/19/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesae:3.0_Build41,REV=2.6.2000.12.19;SUNWesagt:3.0_Build41,REV=2.6.2000.12.19;SUNWesamn:3.0_Build41,REV=2.6.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescaa:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescix:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.6.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.6.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.6.2000.12.19;SUNWesmod:3.0_Build41,REV=2.6.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.6.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessmn:3.0_Build41,REV=2.6.2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.6.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.6.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.6.2000.12.08;SUNWmeta:3.0_Build41,REV=2.6.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.6.2000.12.19;|Sun Management Center 3.0: (GA) Patch for Solaris 2.6 +110937|18|Nov/18/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S7;SUNWedagx:1.1,REV=41.2000.12.14,OE=S7;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesae:3.0_Build41,REV=2.7.2000.12.19;SUNWesagt:3.0_Build41,REV=2.7.2000.12.19;SUNWesamn:3.0_Build41,REV=2.7.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescaa:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescix:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.7.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.7.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.7.2000.12.19;SUNWesmod:3.0_Build41,REV=2.7.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.7.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessmn:3.0_Build41,REV=2.6.2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.7.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.7.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.7.2000.12.08;SUNWmeta:3.0_Build41,REV=2.7.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.7.2000.12.19;|Sun Management Center 3.0: (GA) Patch for Solaris 7 +110938|18|Nov/18/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=41.2000.12.14,OE=S2.6;SUNWedag:1.1,REV=41.2000.12.14,OE=S8;SUNWedagx:1.1,REV=41.2000.12.14,OE=S8;SUNWedcom:1.1,REV=41.2000.12.14,OE=S2.6;SUNWesae:3.0_Build41,REV=2.8.2000.12.19;SUNWesaem:3.0_Build41,REV=2.8.2000.12.19;SUNWesagt:3.0_Build41,REV=2.8.2000.12.19;SUNWesamn:3.0_Build41,REV=2.8.2000.12.19;SUNWesasc:3.0_Build41,REV=2.6.2000.12.19;SUNWescaa:3.0_Build41,REV=2.6.2000.12.19;SUNWescam:3.0_Build41,REV=2.6.2000.12.19;SUNWescix:3.0_Build41,REV=2.6.2000.12.19;SUNWescli:3.0_Build41,REV=2.6.2000.12.19;SUNWesclt:3.0_Build41,REV=2.6.2000.12.19;SUNWescom:3.0_Build41,REV=2.8.2000.12.19;SUNWescon:3.0_Build41,REV=2.6.2000.12.19;SUNWesdb:3.0_Build41,REV=2.8.2000.12.19;SUNWesjp:3.0_Build41,REV=2.6.2000.12.19;SUNWesjrm:3.0_Build41,REV=2.6.2000.12.19;SUNWesmcp:3.0_Build41,REV=2.8.2000.12.19;SUNWesmod:3.0_Build41,REV=2.8.2000.12.19;SUNWesmsg:3.0_Build41,REV=2.6.2000.12.19;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build41,REV=2.8.2000.12.19;SUNWessdk:3.0,REV=2000.12.19;SUNWessmn:3.0_Build41,REV=2.6.2000.12.19;SUNWessrv:3.0_Build41,REV=2.6.2000.12.19;SUNWessta:3.0_Build41,REV=2.8.2000.12.19;SUNWessts:3.0_Build41,REV=2.6.2000.12.19;SUNWessvc:3.0_Build41,REV=2.6.2000.12.19;SUNWesweb:3.0_Build41,REV=2.6.2000.12.19;SUNWeswga:3.0_Build40,REV=2.8.2000.12.08;SUNWeswgs:3.0_Build40,REV=2.8.2000.12.08;SUNWmeta:3.0_Build41,REV=2.8.2000.12.19;SUNWsycfd:3.0_Build41,REV=2.8.2000.12.19;|Sun Management Center 3.0: (GA) Patch for Solaris 8 and Solaris 9 110939|01|Mar/06/01|R| | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/acct/closewtmp patch 110940|01|May/31/01|R| | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/acct/closewtmp patch 110941|03|Dec/12/01| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sar and sadc patch 110942|02|Nov/29/01| | | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sar and sadc patch -110943|01|May/24/01|R|S| | |8|sparc;|SUNWtcsh:11.8.0,REV=2000.01.08.18.12;SUNWtcshS:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/tcsh patch -110944|01|May/24/01|R|S| | |8_x86|i386;|SUNWtcsh:11.8.0,REV=2000.01.08.18.17;SUNWtcshS:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/tcsh patch -110945|06|Jun/26/02|R| | | |8|sparc;|SUNWcsu:2000.01.08.18.12;|SunOS 5.8: /usr/sbin/syslogd patch -110946|06|Jun/26/02|R| | | |8_x86|i386;|SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/syslogd patch +110943|02|Nov/14/03|R|S| | |8|sparc;|SUNWtcsh:11.8.0,REV=2000.01.08.18.12;SUNWtcshS:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/tcsh patch +110944|02|Nov/14/03|R|S| | |8_x86|i386;|SUNWtcsh:11.8.0,REV=2000.01.08.18.17;SUNWtcshS:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/tcsh patch +110945|08|May/29/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/syslogd patch +110946|08|May/29/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/syslogd patch 110947|02|Apr/01/02| | | | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: ssp 3.[234] snmpd searches for libs in Sun internal path 110948|04|Apr/01/02| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: ssp 3.[234] snmpd searches for libs in Sun internal path 110949|01|Jul/18/01|R| |O| |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 110934-04 SunOS 5.8: /usr/sadm/install/bin/pkgremove 110950|01|Jul/18/01|R| |O| |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 110935-04 SunOS 5.8_x86: /usr/sadm/install/bin/pkgre -110951|02|Dec/21/01|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWsutl:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/tar and /usr/sbin/static/tar patch -110952|02|Dec/21/01|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWsutl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/tar and /usr/sbin/static/tar patch -110953|02|Aug/07/01| | | | |8|sparc;|SUNWllc:11.8.0,REV=2000.01.08.18.12;SUNWllcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/drv/llc2 patch -110954|02|Aug/07/01| | | | |8_x86|i386;|SUNWllc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/drv/llc2 patch -110955|03|May/31/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;|SunOS 5.8: /kernel/strmod/timod patch -110956|03|May/31/02| | | | |8_x86|i386;|SUNWcsr:2000.01.08.18.17;|SunOS 5.8_x86: /kernel/strmod/timod patch +110951|05|Nov/14/03|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWsutl:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/tar and /usr/sbin/static/tar patch +110952|04|Jul/07/03|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWsutl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/tar and /usr/sbin/static/tar patch +110953|06|Dec/09/03| |S| | |8|sparc;108528-18;|SUNWllc:11.8.0,REV=2000.01.08.18.12;SUNWllcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/drv/llc2 patch +110954|05|Nov/25/03| |S| | |8_x86|i386;108529-18;|SUNWllc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/drv/llc2 patch +110955|04|Dec/24/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/strmod/timod patch +110956|04|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/strmod/timod patch 110957|02|Nov/06/01|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/mailx patch 110958|02|Nov/06/01|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/mailx patch 110959|01|Feb/16/01| | | | |8_x86|i386;|SUNWxsvc:1.1.0,REV=1999.12.22.14.01;|SunOS 5.8_x86: /kernel/drv/xsvc and /kernel/drv/xsvc.conf patch 110962|01|Mar/12/01| | |O| |8_x86|i386;|SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|Obsoleted by: 111307-02 SunOS 5.8_x86: /boot/solaris/bootconf.exe -110971|06|Apr/18/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesagt:3.0_Build39,REV=2.6.2000.12.08;SUNWesamn:3.0_Build39,REV=2.6.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.6.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.6.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.6.2000.12.05;SUNWesmod:3.0_Build39,REV=2.6.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.6.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.6.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.6.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.6.2000.12.01;SUNWmeta:3.0_Build39,REV=2.6.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.6.2000.12.05;|Sun Management Center 3.0 Jumbo Patch for Solaris 2.6 -110972|06|Apr/18/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S7;SUNWedagx:1.1,REV=39.2000.11.30,OE=S7;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesagt:3.0_Build39,REV=2.7.2000.12.08;SUNWesamn:3.0_Build39,REV=2.7.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.7.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.7.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.7.2000.12.05;SUNWesmod:3.0_Build39,REV=2.7.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.7.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.7.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.7.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.7.2000.12.01;SUNWmeta:3.0_Build39,REV=2.7.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.7.2000.12.05;|Sun Management Center 3.0 Jumbo Patch for Solaris 7 -110973|06|Apr/19/02| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S8;SUNWedagx:1.1,REV=39.2000.11.30,OE=S8;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesaem:3.0_Build39,REV=2.8.2000.12.05;SUNWesagt:3.0_Build39,REV=2.8.2000.12.08;SUNWesamn:3.0_Build39,REV=2.8.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.8.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.8.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.8.2000.12.05;SUNWesmod:3.0_Build39,REV=2.8.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.8.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.8.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.8.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.8.2000.12.01;SUNWmeta:3.0_Build39,REV=2.8.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.8.2000.12.05;|Sun Management Center 3.0 jumbo Patch for Solaris 8 and Solaris 9 -110978|02|Feb/14/02| | | | |Unbundled|sparc;|SUNWhsmee:3.4.1,REV=2001.01.19.14.45;|Storage Migrator 3.4.1 UFS files fix -110979|02|Jan/18/02| | | | |Unbundled|sparc;|SUNWhsmee:3.4.1,REV=2001.01.19.14.45;|Storage Migrator 3.4.1 VxFS files fix +110971|18|Nov/19/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesae:3.0_Build39,REV=2.6.2000.12.05;SUNWesagt:3.0_Build39,REV=2.6.2000.12.08;SUNWesamn:3.0_Build39,REV=2.6.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescaa:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescix:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.6.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.6.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.6.2000.12.05;SUNWesmod:3.0_Build39,REV=2.6.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.6.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessmn:3.0_Build39,REV=2.6.2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.6.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.6.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.6.2000.12.01;SUNWmeta:3.0_Build39,REV=2.6.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.6.2000.12.05;|Sun Management Center 3.0: (RR) Patch for Solaris 2.6 +110972|18|Nov/19/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S7;SUNWedagx:1.1,REV=39.2000.11.30,OE=S7;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesae:3.0_Build39,REV=2.7.2000.12.05;SUNWesagt:3.0_Build39,REV=2.7.2000.12.08;SUNWesamn:3.0_Build39,REV=2.7.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescaa:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescix:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.7.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.7.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.7.2000.12.05;SUNWesmod:3.0_Build39,REV=2.7.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.7.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessmn:3.0_Build39,REV=2.6.2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.7.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.7.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.7.2000.12.01;SUNWmeta:3.0_Build39,REV=2.7.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.7.2000.12.05;|Sun Management Center 3.0: (RR) Patch for Solaris 7 +110973|18|Nov/19/03| |S| | |Unbundled|sparc;|SUNWed:1.1,REV=39.2000.11.30,OE=S2.6;SUNWedag:1.1,REV=39.2000.11.30,OE=S8;SUNWedagx:1.1,REV=39.2000.11.30,OE=S8;SUNWedcom:1.1,REV=39.2000.11.30,OE=S2.6;SUNWesae:3.0_Build39,REV=2.8.2000.12.05;SUNWesaem:3.0_Build39,REV=2.8.2000.12.05;SUNWesagt:3.0_Build39,REV=2.8.2000.12.08;SUNWesamn:3.0_Build39,REV=2.8.2000.12.05;SUNWesasc:3.0_Build39,REV=2.6.2000.12.05;SUNWescaa:3.0_Build39,REV=2.6.2000.12.05;SUNWescam:3.0_Build39,REV=2.6.2000.12.05;SUNWescix:3.0_Build39,REV=2.6.2000.12.05;SUNWescli:3.0_Build39,REV=2.6.2000.12.05;SUNWesclt:3.0_Build39,REV=2.6.2000.12.08;SUNWescom:3.0_Build39,REV=2.8.2000.12.05;SUNWescon:3.0_Build39,REV=2.6.2000.12.08;SUNWesdb:3.0_Build39,REV=2.8.2000.12.05;SUNWesjp:3.0_Build39,REV=2.6.2000.12.05;SUNWesjrm:3.0_Build39,REV=2.6.2000.12.05;SUNWesmcp:3.0_Build39,REV=2.8.2000.12.05;SUNWesmod:3.0_Build39,REV=2.8.2000.12.05;SUNWesmsg:3.0_Build39,REV=2.6.2000.12.05;SUNWesora:3.0,REV=2000.10.27;SUNWessa:3.0_Build39,REV=2.8.2000.12.08;SUNWessdk:3.0,REV=2000.12.05;SUNWessmn:3.0_Build39,REV=2.6.2000.12.05;SUNWessrv:3.0_Build39,REV=2.6.2000.12.05;SUNWessta:3.0_Build39,REV=2.8.2000.12.05;SUNWessts:3.0_Build39,REV=2.6.2000.12.05;SUNWessvc:3.0_Build39,REV=2.6.2000.12.06;SUNWesweb:3.0_Build39,REV=2.6.2000.12.08;SUNWeswga:3.0_Build39,REV=2.8.2000.12.01;SUNWeswgs:3.0_Build39,REV=2.8.2000.12.01;SUNWmeta:3.0_Build39,REV=2.8.2000.12.05;SUNWsycfd:3.0_Build39,REV=2.8.2000.12.05;|Sun Management Center 3.0: (RR) Patch for Solaris 8 and Solaris 9 +110978|04|Apr/17/03| | | | |Unbundled|sparc;|SUNWhsmee:3.4.1,REV=2001.01.19.14.45;|Storage Migrator 3.4.1 UFS files fix +110979|04|Apr/17/03| | | | |Unbundled|sparc;|SUNWhsmee:3.4.1,REV=2001.01.19.14.45;|Storage Migrator 3.4.1 VxFS files fix 110986|02|Aug/16/01| | | | |8|sparc;|SUNWmccom:11.8,REV=2000.11.21.00.05;|SunOS 5.8: SMC help fix 110987|02|Aug/16/01| | | | |8_x86|i386;|SUNWmccom:11.8,REV=2000.11.20.23.48;|SunOS 5.8_x86: SMC help fix -110990|02|Jun/13/02|R|S| | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: Patch for ttymon -110991|02|Jun/13/02|R|S| | |2.6_x86|i386;|SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: Patch for ttymon +110990|02|Jun/13/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Patch for ttymon +110991|02|Jun/13/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Patch for ttymon 110992|01|May/09/01| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Patch for in.rdisc +110993|01|Oct/01/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Patch for in.rdisc 111006|01|Mar/22/01| | | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: sdiff can't handle file with missing newline at end 111007|01|Mar/22/01| | | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: sdiff can't handle file with missing newline at end 111008|06|Feb/22/02| | | | |8|sparc;|SUNWcreg:8.0,REV=1999.12.09.08.25;SUNWcureg:8.0,REV=1999.10.12.16.33;SUNWgreg:8.0,REV=1999.12.09.08.25;SUNWhreg:8.0,REV=1999.12.16.07.49;SUNWkleu:8.0,REV=1999.12.10.08.38;SUNWkreg:8.0,REV=1999.10.22.10.15;|SunOS 5.8: solregis updates/fixes for zh/ko locales @@ -5582,8 +5700,8 @@ 111016|01|Mar/22/01| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sdiff patch 111017|01|Mar/22/01| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/sdiff patch 111018|01|Aug/16/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /etc/driver_aliases patch for gpio -111023|01|Mar/12/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/mntfs and /kernel/fs/sparcv9/mntfs patch -111024|01|Mar/28/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/mntfs patch +111023|03|Dec/09/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/mntfs and /kernel/fs/sparcv9/mntfs patch +111024|03|Dec/09/03|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/mntfs patch 111025|02|Oct/19/01|R|S| | |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: sdiff patch 111026|02|Oct/19/01|R|S| | |2.5.1_x86|i386;|SUNWesu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: sdiff patch 111029|01|Apr/12/01|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/sys/semsys patch @@ -5607,20 +5725,21 @@ 111072|01|Mar/30/01|R|S| | |8_x86|i386;|SUNWbnuu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: cu patch 111073|01|May/31/01| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: re_comp header patch 111074|01|May/31/01| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: re_comp header patch -111075|02|Jun/06/01| | | | |8|sparc;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: keyboards patch -111078|03|Jul/22/02| | | | |Unbundled|sparc;|SUNWsrmb:2000.03.20.10.37;SUNWsrmm:2000.03.20.10.37;SUNWsrmr:2000.03.20.10.37;|Solaris Resource Manager 1.2: srmuser and srmlim patch +111075|03|Nov/06/03| | | | |8|sparc;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: keyboards patch +111078|05|Jan/21/03| | | | |Unbundled|sparc;|SUNWsrmb:1.2.0,REV=2000.03.20.10.37;SUNWsrmm:1.2.0,REV=2000.03.20.10.37;SUNWsrmr:1.2.0,REV=2000.03.20.10.37;|Solaris Resource Manager 1.2: srmuser and srmlim patch 111079|01|Jun/22/01| | | | |2.6|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4u1;sparc.sun4us;105375-26;105375-27;|SUNWhea:11.6.0,REV=1997.07.15.21.46;SUNWluxal:1.2,REV=1997.07.15.21.46;SUNWluxdv:1.2,REV=1997.07.15.21.46;SUNWluxdv:1.2,REV=1998.01.23.18.28;SUNWluxdv:1.2,REV=1998.09.24.13.46;105375-27 (or newer)|SunOS 5.6: Supplemental socal and sf drivers patch -111085|02|Dec/13/01|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/login patch -111086|02|Dec/13/01|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/bin/login patch -111088|02|May/15/01| | | | |8|sparc;|SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mdb patch +111085|02|Dec/13/01|R|S|O| |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-18 SunOS 5.8: /usr/bin/login patch +111086|02|Dec/13/01|R|S|O| |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86:: /usr/bin/login patch +111088|02|May/15/01| | |O| |8|sparc;|SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108995-06 SunOS 5.8: mdb patch 111090|03|Aug/06/01|R|S|O| |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-05 SunOS 5.8: /usr/lib/libsldap.so.1 patch 111091|03|Aug/06/01|R|S|O| |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-05 SunOS 5.8_x86: /usr/lib/libsldap.so.1 patc -111092|03|Jul/26/02| | | | |Unbundled|sparc.sun4u;112137-02;|SMEvplr:1999.10.19.10.29;SUNWcarx:2000.01.08.18.12;|Netra X1 time of day driver +111092|02|May/11/01| | | | B|Unbundled|sparc.sun4u;108664-06;112137-01;112137-01;|SMEvplr:3.2,REV=1999.10.19.10.29;SUNWcarx:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN Netra X1 time of day driver +111092|03|Jul/26/02| | | | |Unbundled|sparc.sun4u;112137-02;|SMEvplr:3.2,REV=1999.10.19.10.29;SUNWcarx:11.8.0,REV=2000.01.08.18.12;|Netra X1 time of day driver 111093|01|May/03/01|R|S| | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /etc/security/bsmunconv patch 111094|01|May/03/01|R|S| | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /etc/security/bsmunconv patch -111095|11|Jul/22/02| | | | |8|sparc;111412-08;108982-09;|SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWfcp:2000.01.08.18.12;SUNWfcpx:2000.01.08.18.12;SUNWfctl:2000.01.08.18.12;SUNWfctlx:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWusoc:2000.01.08.18.12;SUNWusocx:2000.01.08.18.12;108982-10|SunOS 5.8: fctl/fp/fcp/usoc driver patch -111096|04|Apr/23/02| | | | |8|sparc;111095-02;108983-08;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcip:11.8.0,REV=2000.04.01.16.21;SUNWfcipx:11.8.0,REV=2000.04.01.16.21;SUNWhea:11.8.0,REV=2000.01.08.18.12;108983-09|SunOS 5.8: fcip driver patch -111097|10|Jun/17/02| | | | |8|sparc;111096-04;108984-08;|SUNWcsr:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWqlc:2000.04.01.16.21;SUNWqlcx:2000.04.01.16.21;108984-09|SunOS 5.8: qlc driver patch +111095|14|Nov/13/03|R| | | |Unbundled|sparc;108982-09;111412-12;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcp:11.8.0,REV=2000.01.08.18.12;SUNWfcpx:11.8.0,REV=2000.01.08.18.12;SUNWfctl:11.8.0,REV=2000.01.08.18.12;SUNWfctlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWusoc:11.8.0,REV=2000.01.08.18.12;SUNWusocx:11.8.0,REV=2000.01.08.18.12;108982-10 (or newer)|SAN 4.3: fctl/fp/fcp/usoc driver patch +111096|07|Nov/13/03| | | | |Unbundled|sparc;111095-14;108983-08;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWfcip:11.8.0,REV=2000.04.01.16.21;SUNWfcipx:11.8.0,REV=2000.04.01.16.21;SUNWhea:11.8.0,REV=2000.01.08.18.12;108983-09 (or newer)|SAN 4.3: fcip driver patch +111097|13|Nov/13/03| | | | |Unbundled|sparc;111096-07;108984-08;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWqlc:11.8.0,REV=2000.04.01.16.21;SUNWqlcx:11.8.0,REV=2000.04.01.16.21;108984-09 (or newer)|SAN 4.3: qlc driver patch 111098|01|Jul/17/01|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ROC timezone should be avoided for political reasons 111099|01|Mar/27/01|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ROC timezone should be avoided for political reason 111104|02|Jul/16/01| | | | |Unbundled|sparc;|SUNWbdm:1.0,REV=05.16.2000;|NSS 1.0: patch for Netra Software Suite Smart Boot @@ -5630,19 +5749,19 @@ 111112|03|Mar/28/02|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/nawk patch 111113|02|Feb/19/02|R| | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: nawk Patch 111114|02|Feb/19/02|R| | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: nawk Patch -111118|07|Jun/17/02| | | | |Unbundled|sparc;109529-06;108827-19;111413-06;|VRTSvxvm:01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde -111122|05|Jun/14/02| | | | |Unbundled|sparc;|VRTSvmsa:02.10.2001.07.42;|VRTSvmsa 3.1.1: maintenance patch +111118|10|Feb/19/03| | | | |Unbundled|sparc;111413-06;109529-06;108827-19;108993-18;|VRTSvxvm:3.1.1,REV=01.30.2001.22.21;|VxVM 3.1.1: vxconfigd vxdmpadm vxio vxspec vxdmp vxautoconfig vxde +111122|07|Feb/19/03| | | | |Unbundled|sparc;|VRTSvmsa:3.1.1,REV=02.10.2001.07.42;|VRTSvmsa 3.1.1: maintenance patch 111131|01|Jul/13/01| |S| | |Unbundled|sparc;109208-02;|SUNWscinf:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-Informix Patch 111132|01|Aug/06/01| |S| | |Unbundled|sparc;109209-02;|SUNWscinf:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: HA-Informix Patch 111135|02|Aug/06/01| |S| | |Unbundled|sparc;|SUNWscdns:2.2,REV=1999.02.09.23.30;SUNWscnsm:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: Internet Pro Patch -111141|01|Sep/13/01| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: last works incorrectly for more than 256 users login -111142|01|Sep/13/01| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: last works incorrectly for more than 256 users logi -111143|04|Feb/07/02| | | | |Unbundled|sparc;|SUNWnbinx:3.4,REV=2000.06.20.08.31;|NetBackup 3.4 Informix NB_INX_34_2 fix +111141|03|Sep/15/03| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/last patch +111142|03|Sep/15/03| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/last patch +111143|05|Feb/28/03| | | | |Unbundled|sparc;|SUNWnbinx:3.4,REV=2000.06.20.08.31;|NetBackup 3.4 Informix NB_INX_34_4 fix 111158|03|Jul/18/01| | | | |Unbundled|sparc;111118-02;111118-05;111118-07;|VRTSvxvm:3.1.1,REV=01.30.2001.22.21;111118-03|Veritas Volume Manager 3.1.1: supplemental Solaris 8 general patch 111174|03|May/10/02| | | | |Unbundled|sparc;|SUNWsspdo:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Send BBSRAM close net command upon netcon_server init 111177|06|Oct/24/01|R| |O| |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108827-15 SunOS 5.8: /usr/lib/lwp/libthread.so.1 pat 111178|06|Oct/24/01|R| |O| |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108828-16 SunOS 5.8_x86: /usr/lib/lwp/libthread.so.1 -111179|04|Feb/22/02| | | | |Unbundled|||Hardware/PROM: Blade 100 Flash PROM Update +111179|08|Jul/24/03| | | | |Unbundled|||Hardware/PROM: Sun Blade 100/150 Flash PROM Update 111186|01|May/03/01| | | | |8_x86|||SunOS 5.8_x86: iprb patch wrapper 111187|02|May/03/01| | | | |8_x86|i386;|SUNWos86r:1.1.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: iprb patch 111188|02|Oct/30/01| | | | |8|sparc;|SUNW5leu:8.0,REV=1999.11.04.10.16;SUNW5leux:8.0,REV=1999.10.12.16.31;SUNWcleu:8.0,REV=1999.12.07.14.53;SUNWcleux:8.0,REV=1999.10.26.10.33;SUNWkleu:8.0,REV=1999.12.10.08.38;SUNWkleux:8.0,REV=1999.12.10.08.38;SUNWtleu:8.0,REV=1999.12.12.10.19;SUNWtleux:8.0,REV=1999.11.04.10.17;|SunOS 5.8: Fixes for Asian locale-related problems @@ -5681,16 +5800,17 @@ 111250|01|Apr/19/01| | | | |Unbundled|sparc;|SUNWhwrdf:2.0.0,REV=2000.07.12;SUNWhwrdg:2.0.0,REV=1999.12.21;|SunOS 5.8: SRC/P Maintenance Update Patch II 111251|01|Apr/25/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: in.fingerd can store a NULL after end of an array 111252|01|Sep/11/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: in.fingerd can store a NULL after end of an array -111258|01|May/09/01| | | | |Unbundled|sparc;|SUNWmfdev:1.2.7,REV=10.98.09.12;|Motif 2.1.1 uil patch for Solaris 7 -111259|01|May/09/01| | | | |Unbundled|i386;|SUNWmfdev:1.2.7,REV=10.98.09.12;|Motif 2.1.1_x86: uil patch for Solaris 7_x86 +111258|02|Oct/03/02| | | | |Unbundled|sparc;|SUNWdtbax:1.3,REV=10.98.09.11;SUNWmfdev:1.2.7,REV=10.98.09.12;SUNWmfrun:2.1.1,REV=10.98.09.12;|Motif 2.1.1: uil patch for Solaris 7 +111259|02|Oct/03/02| | | | |Unbundled|i386;|SUNWmfdev:1.2.7,REV=10.98.09.12;SUNWmfrun:2.1.1,REV=10.98.09.12;|Motif 2.1.1_x86: uil patch for Solaris 7_x86 111261|03|Jun/29/01| | | | |Unbundled|sparc;|SUNWsfcli:1.1,REV=0.0.2;|Filer 1.1: vol and rootshell update 111262|01|May/01/01| | | | |Unbundled|sparc;|SUNWsfadm:1.1,REV=0.0.2;|Filer 1.1: GUI enhancements Patch 111263|01|Jun/01/01| | | | |Unbundled|sparc;|SUNWsfN84:1.1,REV=0.0.1;|Filer 1.1: crontab fix -111264|01|May/15/01| | | | |8_x86|i386;|SUNWmdb:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch mdb +111264|01|May/15/01| | |O| |8_x86|i386;|SUNWmdb:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108996-06 SunOS 5.8_x86: patch mdb 111265|01|May/24/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch who 111266|01|May/24/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch who +111267|01|May/09/01| | | | B|8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN SunOS 5.8: patch specfs 111267|02|May/16/01| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 111588-02 SunOS 5.8: /kernel/fs/specfs patch -111268|02|Aug/16/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/specfs patch +111268|02|Aug/16/01| | |O| |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 111589-03 SunOS 5.8_x86: /kernel/fs/specfs patch 111269|03|Aug/27/01| | | | |8|sparc;|SUNWmcc:11.8,REV=2000.10.25.13.07;|SunOS 5.8: Solaris Management Console patch 111270|03|Aug/27/01| | | | |8_x86|i386;|SUNWmcc:11.8,REV=2000.10.25.13.03;|SunOS 5.8_x86: Solaris Management Console patch 111275|01|Aug/16/01| | | | |8|sparc;|SUNWd8dst:1.1,REV=1999.12.20.17.04;SUNWd8dte:1.1,REV=1999.12.20.17.03;SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdedte:1.1,REV=2000.01.17.14.13;SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWdereg:1.0.0,REV=2000.01.06.16.13;SUNWdscgu:1.4,REV=2000.01.11.12.36;SUNWdwdev:11.9,REV=2001.01.23.16.37;SUNWe8dst:1.1,REV=1999.12.20.17.08;SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWescgu:1.4,REV=2000.01.11.12.37;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesdte:1.1,REV=1999.12.20.14.49;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWesreg:1.0.0,REV=2000.01.07.12.57;SUNWewdev:11.9,REV=2001.01.23.16.38;SUNWf8dst:1.1,REV=1999.12.20.16.59;SUNWf8dte:1.1,REV=2000.01.04.17.56;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrdte:1.1,REV=1999.12.23.11.36;SUNWfris:8.0,REV=1999.12.13.18.54;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWfrreg:1.0.0,REV=2000.01.06.16.14;SUNWfscgu:1.4,REV=2000.01.11.12.37;SUNWfwdev:11.9,REV=2001.01.23.16.39;SUNWi8dst:1.1,REV=1999.12.20.17.02;SUNWi8dte:1.1,REV=2000.01.05.08.59;SUNWiscgu:1.4,REV=1999.12.23.16.20;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitreg:1.0.0,REV=2000.01.06.16.14;SUNWiwdev:11.9,REV=2001.01.23.16.40;SUNWs8dst:1.1,REV=1999.12.20.17.11;SUNWs8dte:1.1,REV=2000.01.05.09.03;SUNWsscgu:1.4,REV=2000.01.11.12.37;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvdte:1.1,REV=2000.01.06.16.40;SUNWsvis:8.0,REV=1999.12.13.19.09;SUNWsvos:11.5.1,REV=1999.12.17.14.47;SUNWsvreg:1.0.0,REV=2000.01.06.16.15;SUNWswdev:11.9,REV=2001.01.23.16.40;|SunOS 5.8: New features Solaris 8 Update 5 European @@ -5704,54 +5824,61 @@ 111283|01|May/10/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: finger doesn't always correctly match NULL usernames 111284|01|May/11/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: finger doesn't always correctly match NULL username 111287|02|Aug/31/01| | | | |Unbundled|sparc;|SUNWsspr:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: possible memory leak scotty causing ssp commands to slow -111288|02|Jun/28/02| | | | |7_x86|i386;|SUNWos86r:1998.08.07.12.41;|SunOS 5.7_x86: chs bug fixes. -111292|09|Jul/12/02| | | | B|Unbundled|||BADPATCH Sun Blade 1000, Sun Fire 280R, Netra[tm] 20, Sun Blade 2 -111293|04|Sep/25/01|R| | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libdevinfo.so.1 patch -111294|03|Jul/13/01|R| | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libdevinfo.so.1 patch +111288|03|Oct/09/02| | | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: chs bug fixes. +111292|09|Jul/12/02| | | | B|Unbundled|||WITHDRAWN Sun Blade 1000, Sun Fire 280R, Netra[tm] 20, Sun Blade +111292|10|Aug/12/02| | | | B|Unbundled|||WITHDRAWN PATCH Sun Blade 1000, Sun Fire 280R, Netra[tm] 20, Sun +111292|13|Apr/18/03| | | | B|Unbundled|108528-20;114360-01;108528-20;114360-01;112233-11;||WITHDRAWN PATCH Sun Blade 1000, Sun Fire 280R, Netra[tm] 20, Sun +111292|15|Nov/03/03| | | | |Unbundled|||Sun Blade 1000, Sun Fire 280R, Netra[tm] T20, Sun Blade 2000 +111293|04|Sep/25/01|R| |O| |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-21 SunOS 5.8: /usr/lib/libdevinfo.so.1 patch +111294|03|Jul/13/01|R| |O| |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-21 SunOS 5.8_x86: /usr/lib/libdevinfo.so.1 pa 111295|01|Jul/13/01| | | | |8|sparc;108995-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/pstack & /usr/bin/sparcv9/pstack patch 111296|01|Jul/13/01| | | | |8_x86|i386;108996-02;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/pstack patch -111297|01|Jul/13/01| | | | |8|sparc;108991-13;109025-03;108528-09;111295-01;108827-15;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libsendfile.so.1 patch -111298|01|Jul/13/01| | | | |8_x86|i386;108992-13;111296-01;109026-04;108529-09;108828-16;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libsendfile.so.1 patch -111299|03|Jan/04/02| | | | |8|sparc;110386-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.12;SUNWapppu:11.8.0,REV=2000.01.08.18.12;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWpppd:11.8.0,REV=2001.02.21.14.02;SUNWpppdr:11.8.0,REV=2001.02.21.14.02;SUNWpppdu:11.8.0,REV=2001.02.21.14.02;SUNWpppdx:11.8.0,REV=2001.02.21.14.02;SUNWpppgS:11.8.0,REV=2001.02.21.14.02;|SunOS 5.8: PPP patch -111300|03|Jan/04/02| | | | |8_x86|i386;110400-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.17;SUNWapppu:11.8.0,REV=2000.01.08.18.17;SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWpppd:11.8.0,REV=2001.02.21.14.14;SUNWpppdr:11.8.0,REV=2001.02.21.14.14;SUNWpppdu:11.8.0,REV=2001.02.21.14.14;SUNWpppgS:11.8.0,REV=2001.02.21.14.14;|SunOS 5.8_x86: PPP patch -111302|01|Aug/21/01| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWdhcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: EDHCP libraries patch -111303|01|Aug/21/01| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWdhcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: EDHCP libraries patch +111297|01|Jul/13/01| | | | |8|sparc;108991-13;109025-03;108528-09;111295-01;108827-15;108993-18;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libsendfile.so.1 patch +111298|01|Jul/13/01| | | | |8_x86|i386;108992-13;111296-01;109026-04;108529-09;108828-16;108994-18;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libsendfile.so.1 patch +111299|04|Sep/06/02|R|S|O| |8|sparc;110386-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.12;SUNWapppu:11.8.0,REV=2000.01.08.18.12;SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;SUNWpppd:11.8.0,REV=2001.02.21.14.02;SUNWpppdr:11.8.0,REV=2001.02.21.14.02;SUNWpppdu:11.8.0,REV=2001.02.21.14.02;SUNWpppdx:11.8.0,REV=2001.02.21.14.02;SUNWpppgS:11.8.0,REV=2001.02.21.14.02;|Obsoleted by: 108993-18 SunOS 5.8: PPP patch +111300|04|Sep/06/02|R|S|O| |8_x86|i386;110400-01;|SUNWapppr:11.8.0,REV=2000.01.08.18.17;SUNWapppu:11.8.0,REV=2000.01.08.18.17;SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;SUNWpppd:11.8.0,REV=2001.02.21.14.14;SUNWpppdr:11.8.0,REV=2001.02.21.14.14;SUNWpppdu:11.8.0,REV=2001.02.21.14.14;SUNWpppgS:11.8.0,REV=2001.02.21.14.14;|Obsoleted by: 108994-18 SunOS 5.8_x86: PPP patch +111302|02|Sep/11/02| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWdhcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: EDHCP libraries patch +111303|03|Sep/01/03| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWdhcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: EDHCP libraries patch 111304|01|Aug/21/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/misc/nfs_dlboot patch 111305|01|Aug/21/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/misc/nfs_dlboot patch -111306|03|Nov/12/01| | | | |8|sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;|SunOS 5.8: ufsboot and inetboot patch -111307|03|Feb/11/02|R| | | |8_x86|i386;i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWkvm:11.8.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: boot.bin, bootconf.exe, bootenv.rc and nbp patch -111308|02|Jul/22/02| | | | |8|sparc;|SUNWarc:2000.01.08.18.12;SUNWarcx:2000.01.08.18.12;SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcstl:2000.01.08.18.12;SUNWcstlx:2000.01.08.18.12;|SunOS 5.8: /usr/lib/libmtmalloc.so.1 patch -111309|02|Jul/22/02| | | | |8_x86|i386;|SUNWarc:2000.01.08.18.17;SUNWcsl:2000.01.08.18.17;SUNWcstl:2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libmtmalloc.so.1 patch +111306|05|Oct/08/03| | | | |8|sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;|SunOS 5.8: ufsboot and inetboot patch +111307|05|Oct/08/03|R| | | |8_x86|i386;i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;SUNWkvm:11.8.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: boot.bin, bootconf.exe, bootenv.rc and nbp patch +111308|04|Sep/03/03| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libmtmalloc.so.1 patch +111309|04|Aug/19/03| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libmtmalloc.so.1 patch 111310|01|Aug/21/01|R| | | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libdhcpagent.so.1 patch 111311|01|Aug/21/01|R| | | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libdhcpagent.so.1 patch 111313|01|May/09/01| | | | |8|sparc;|SUNWmc:11.8,REV=2000.10.25.13.07;|SunOS 5.8: Viper tools are very slow to load 111314|01|May/09/01| | | | |8_x86|i386;|SUNWmc:11.8,REV=2000.10.25.13.03;|SunOS 5.8_x86: Viper tools are very slow to load 111315|01|Jun/15/01| |S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=405;|SunOS 5.4: in.fingerd can store a NULL after end of an array -111317|02|Oct/08/01| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/init and /usr/sbin/init patch -111318|02|Oct/08/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/init and /usr/sbin/init patch +111317|05|Dec/10/03| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/init and /usr/sbin/init patch +111318|05|Dec/10/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/init and /usr/sbin/init patch 111319|01|Aug/16/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.rdisc patch 111320|01|Aug/16/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.rdisc patch -111321|02|Sep/26/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: klmmod and klmops patch -111322|02|Feb/14/02| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: klmmod and klmops patch +111321|03|Oct/02/02|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: klmmod and klmops patch +111322|03|Oct/02/02|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: klmmod and klmops patch 111323|01|May/09/01| | | | |8|sparc;|SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/xpg4/bin/more patch 111324|01|May/31/01| | | | |8_x86|i386;|SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/xpg4/bin/more patch -111325|02|Jun/14/02|R|S| | |8|sparc;|SUNWcsu:2000.01.08.18.12;|SunOS 5.8: /usr/lib/saf/ttymon patch -111326|02|Jun/14/02|R|S| | |8_x86|i386;|SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/saf/ttymon patch +111325|02|Jun/14/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/saf/ttymon patch +111326|02|Jun/14/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/saf/ttymon patch 111327|05|Dec/04/01|R| | | |8|sparc;109326-05;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libsocket patch 111328|04|Dec/04/01|R| | | |8_x86|i386;109327-05;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libsocket patch -111329|03|Feb/06/02| | | | |Unbundled|sparc;|SUNWnbsap:3.4,REV=2000.06.20.08.31;|NetBackup 3.4 SAP NB_SAP_34_2 fix -111332|05|Apr/08/02| |S| | |8|sparc;|SUNWdcsu:11.8.0,REV=2001.01.19.01.02;|SunOS 5.8: /usr/lib/dcs patch +111329|04|Dec/04/02| | | | |Unbundled|sparc;|SUNWnbsap:3.4,REV=2000.06.20.08.31;|NetBackup 3.4: SAP NB_SAP_34_4 fix +111332|06|Jan/06/03| |S| | |8|sparc;|SUNWdcsu:11.8.0,REV=2001.01.19.01.02;|SunOS 5.8: /usr/lib/dcs patch 111334|01|May/09/01|R| | | |8_x86|i386;|SUNWadp:1.1.0,REV=1999.12.22.14.01;|SunOS 5.8_x86: /kernel/drv/adp patch -111335|13|Jul/15/02| | | | |8|sparc.sun4u;108528-14;110838-05;|SUNWdrcrx:2001.01.19.01.02;|SunOS 5.8: Sun-Fire-15000 dr, gptwo_pci & sc_gptwocfg drivers patc -111336|04|Jun/13/02| | | | |Unbundled|sparc;|SUNWsspop:2000.08.20.19.44;|SSP 3.4: forced failover by "init 0" can cause unexpected CB failo +111335|18|Sep/30/03| | | | |8|sparc.sun4u;110837-04;110826-09;108528-18;110836-05;110838-05;|SUNWdrcrx:11.8.0,REV=2001.01.19.01.02;|SunOS 5.8: Sun-Fire-15000 dr, gptwo_pci & sc_gptwocfg drivers patc +111336|05|Aug/08/03| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: fod patch 111337|01|Jun/29/01| | |O| |8|sparc;|SUNWocf:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109887-13 SunOS 5.8: /usr/sbin/ocfserv patch 111338|01|Jul/23/01| |S| | |Unbundled|sparc;109210-01;|SUNWscinf:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: HA-Informix Patch 111341|02|Jul/23/01| | | | |Unbundled|sparc;|SUNWscmgr:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: System Management Patch 111342|03|Jul/23/01| | | | |Unbundled|sparc;|SUNWscdns:2.2,REV=2000.03.14.18.21;SUNWschtt:2.2,REV=2000.03.14.18.21;|Sun Cluster 2.2: Internet Pro Patch -111344|02|Mar/12/02| | | | |Unbundled|sparc;|SUNWcorpc:9.0;SUNWcosiA:9.0;SUNWcosia:9.0;SUNWcosic:9.0;SUNWcosid:9.0;SUNWosiax:9.0;SUNWosicx:9.0;SUNWosidx:9.0;|OSI 9.0 patch -111346|04|Sep/18/01| | | | |Unbundled|||Hardware/PROM: Sun Fire 3800/4800/4810/6800 Systems flashprom upda -111350|02|Jun/13/02|R|S| | |7|sparc;|SUNWcsu:1998.10.06.00.59;|SunOS 5.7: Patch for ttymon process modules -111351|02|Jun/13/02|R|S| | |7_x86|i386;|SUNWcsu:1998.10.06.01.22;|SunOS 5.7_x86: Patch for ttymon process modules +111344|03|Jun/20/03| | | | B|Unbundled|sparc;|SUNWcorpc:9.0;SUNWcosiA:9.0;SUNWcosia:9.0;SUNWcosic:9.0;SUNWcosid:9.0;SUNWosiax:9.0;SUNWosicx:9.0;SUNWosidx:9.0;|WITHDRAWN PATCH Solstice OSI 9.0 patch +111344|06|Nov/11/03| | | | |Unbundled|sparc;|SUNWcorpc:9.0;SUNWcosiA:9.0;SUNWcosia:9.0;SUNWcosic:9.0;SUNWcosid:9.0;SUNWosiax:9.0;SUNWosicx:9.0;SUNWosidx:9.0;|OSI 9.0 patch +111346|03|Aug/02/01| | | | B|Unbundled|||WITHDRAWN Hardware/PROM: Sun Fire 3800/4800/4810/6800 Systems flas +111346|04|Sep/18/01| | |O| |Unbundled|||Obsoleted by: 112494-06 Hardware/PROM: Sun Fire 3800/4800/4810/680 +111348|01|Oct/03/03| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: in.rdisc Patch +111349|01|Oct/01/03| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: in.rdisc Patch +111350|02|Jun/13/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: Patch for ttymon process modules +111351|02|Jun/13/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: Patch for ttymon process modules 111352|01|Jun/28/01| | | | |7|sparc;|SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: xpg4 more bug premature exit bug fix 111353|01|Jun/28/01| | | | |7_x86|i386;|SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: xpg4 more bug premature exit bug fix 111361|01|Apr/15/02| | | | |Unbundled|sparc;|SUNWsspst:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: ICT test "interconnect_test_cp" fails sb_conn.1 tests @@ -5767,15 +5894,15 @@ 111376|02|Nov/13/01| | | | |Unbundled|sparc;|SUNWrtex:1.1;|HPC 3.1: RTE fixes 64-bit fixes 111377|01|Jul/23/01| | | | |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: su Patch 111378|01|Jul/23/01| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: su Patch -111379|01|Jun/26/01| | | | |8_x86|i386;|SUNWos86r:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/chs patch +111379|02|Jul/07/03| | | | |8_x86|i386;|SUNWos86r:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/chs patch 111380|01|Aug/20/01| | | | |8|sparc;|SUNWjreg:1.2,REV=1999.12.08.15.55;|SunoS 5.8: solregis: Japanese message patch 111381|01|Aug/20/01| | | | |8_x86|i386;|SUNWjreg:1.2,REV=1999.12.08.15.55;|SunOS 5.8_x86: solregis: Japanese message patch 111386|01|Nov/14/01| | | | |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdereg:1.0.0,REV=2000.01.06.16.13;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesreg:1.0.0,REV=2000.01.07.12.57;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrreg:1.0.0,REV=2000.01.06.16.14;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitreg:1.0.0,REV=2000.01.06.16.14;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvreg:1.0.0,REV=2000.01.06.16.15;|SunOS 5.8: s8u6 Euro bug fixing 111387|01|Nov/14/01| | | | |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdereg:1.0.0,REV=2000.01.06.16.03;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesreg:1.0.0,REV=2000.01.07.13.03;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrreg:1.0.0,REV=2000.01.06.16.03;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitreg:1.0.0,REV=2000.01.06.16.04;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvreg:1.0.0,REV=2000.01.06.16.04;|SunOS 5.8_x86: s8u6 Euro bug fixing 111391|02|Feb/07/02| | | | |Unbundled|sparc;|SUNWmpi:3.1;|HPC 3.1: MPI Library fixes 111392|02|Feb/07/02| | | | |Unbundled|sparc;|SUNWmpix:3.1;|HPC 3.1: MPI 64-bit Library fixes -111393|02|Jul/09/01| | | | |8|sparc;111431-01;108993-07;|SUNWatfsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/autofs/automountd patch -111394|02|Jul/09/01| | | | |8_x86|i386;111432-01;108994-07;|SUNWatfsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/autofs/automountd patch +111393|02|Jul/09/01| | |O| |8|sparc;111431-01;108993-07;|SUNWatfsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 112605-04 SunOS 5.8: /usr/lib/autofs/automountd patc +111394|02|Jul/09/01| | |O| |8_x86|i386;111432-01;108994-07;|SUNWatfsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 112606-04 SunOS 5.8_x86: /usr/lib/autofs/automountd 111397|02|Nov/06/01| | | | |Unbundled|sparc.sun4u;|SUNWcmsdf:5.6,REV=1999.01.28.13.32;SUNWftcar:5.6,REV=1999.01.28.13.32;|Netra ft 1800 tape driver patch 111398|01|May/31/01| | | | |8|sparc;|SUNWsibi:11.8,REV=2000.01.13.17.52;|SunOS 5.8: parse_dynamic_clustertoc needs to use dynamic_tests 111399|01|May/31/01| | | | |8_x86|i386;|SUNWsibi:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: parse_dynamic_clustertoc needs to use dynamic_tests @@ -5783,9 +5910,10 @@ 111401|01|Jun/20/01| |S| | |8_x86|i386;|SUNWkcsrt:1.1.2,REV=1.7;|SunOS 5.8_x86: KCMS configure tool has a security vulnerability 111402|01|Jun/19/01| | |O| |Unbundled|sparc;|SUNWsfN86:1.1,REV=0.0.1;|Obsoleted by: 111403-02 Filer 1.1: crontab fix 111403|02|Jul/24/01| | | | |Unbundled|sparc;|SUNWsfN86:1.1,REV=0.0.2;|Filer 1.1: crontab fix -111406|02|Mar/04/02| | | | |Unbundled|sparc;sparc.sun4u;108528-10;109458-02;111293-04;110790-04;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcti2x:11.8.0,REV=2000.04.20.22.44;SUNWctu:11.8.0,REV=2000.04.01.16.21;|Netra ct 1.0: Dual Console TTYmux support -111412|09|May/23/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdi:11.8.0,REV=2001.01.19.01.02;SUNWmdix:11.8.0,REV=2001.01.19.01.02;|SunOS 5.8: Sun StorEdge Traffic Manager patch -111413|08|May/23/02| | | | |8|sparc;109529-06;|SUNWluxop:11.8.0,REV=2000.01.08.18.12;SUNWluxox:11.8.0,REV=2000.09.23.16.15;109529-07|SunOS 5.8: luxadm, liba5k and libg_fc patch +111406|03|Dec/05/03| | | | |Unbundled|sparc;sparc.sun4u;109458-02;108528-21;108528-10;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcti2x:11.8.0,REV=2000.04.20.22.44;SUNWctu:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: Dual Serial-Console Multiplexer support +111412|12|Nov/13/03| | | | |Unbundled|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdi:11.8.0,REV=2001.01.19.01.02;SUNWmdix:11.8.0,REV=2001.01.19.01.02;|SAN 4.3: Sun StorEdge Traffic Manager patch +111413|01|Jun/05/01| | | | B|8|sparc;|SUNWluxop:11.8.0,REV=2000.01.08.18.12;SUNWluxox:11.8.0,REV=2000.09.23.16.15;|WITHDRAWN SunOS 5.8: luxadm, liba5k and libg_fc patch +111413|11|Nov/13/03| | | | |Unbundled|sparc;109529-06;111412-12;111095-14;|SUNWluxop:11.8.0,REV=2000.01.08.18.12;SUNWluxox:11.8.0,REV=2000.09.23.16.15;109529-07 (or newer)|SAN 4.3: luxadm, liba5k and libg_fc patch 111414|01|Aug/07/01| | | | |Unbundled|sparc;|SUNWvts:2.1.1,REV=07.97.10.08;|SunOS 5.5.1: pmem test cause panic 111416|05|Sep/19/01| | | | |Unbundled|sparc;|SUNWrsc:2.1,REV=2001.02.18;SUNWrscj:2.1,REV=2001.02.18;|RSC 2.1: Remote System Control bug fixes 111421|01|Oct/18/01| | | | |7|sparc;|SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWpcmci:11.7.0,REV=1998.09.01.04.16;SUNWpcmcx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: cis Patch @@ -5793,20 +5921,14 @@ 111429|01|May/31/01| |S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=379;|SunOS 5.4_x86: in.fingerd can store a NULL after end of an array 111431|01|Jul/09/01| | |O| |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-07 SunOS 5.8: /usr/lib/libldap.so.4 patch 111432|01|Jul/09/01| | |O| |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-07 SunOS 5.8_x86: /usr/lib/libldap.so.4 patch -111433|02|Jun/04/01| | |O| |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-08;108528-08;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-09 (or newer)|Obsoleted by: SunOS 5.8: Supplemental Kernel Update -111435|01|May/04/01| | |O| |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;105181-26;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcar:11.6.0,REV=1998.09.28.10.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;105181-27 (or newer)|Obsoleted by: SunOS 5.6: Supplemental kernel update -111437|01|May/04/01| | |O| |7|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;106541-16;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;106541-17 (or newer)|Obsoleted by: SunOS 5.7: Supplemental kernel update -111439|01|Jun/20/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/tmpfs patch -111440|01|Jun/29/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/tmpfs patch -111442|01|May/04/01| | |O| |2.5.1|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;103640-35;|SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=97.02.21.21.14;SUNWcsr:11.5.1,REV=96.05.02.21.09;103640-36 (or newer)|Obsolete by: SunOS 5.5.1: Supplemental kernel update -111444|01|Jun/19/01| | |O| |2.5.1|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;103640-36;|SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcar:11.5.1,REV=97.02.21.21.14;SUNWcsr:11.5.1,REV=96.05.02.21.09;103640-37 (or newer)|Obsoleted by: SunOS 5.5.1: Supplemental kernel updat +111439|02|Sep/11/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/tmpfs patch +111440|02|Sep/09/02| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/tmpfs patch 111446|02|Jun/27/01| | |O| |2.6|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4u1;sparc.sun4us;105181-28;|SUNWcar:11.6.0,REV=1997.07.15.21.46;SUNWcar:11.6.0,REV=1998.01.23.18.28;SUNWcar:11.6.0,REV=1998.09.28.10.46;SUNWcsr:11.6.0,REV=1997.07.15.21.46;105181-29 (or newer)|Obsoleted by: SunOS 5.6: Supplemental Kernel Update -111459|01|May/04/01| | |O| |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-07;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;108528-08 (or newer)|Obsoleted by: SunOS 5.8: Supplemental kernel update 111462|01|Sep/10/01| | |O| |Unbundled|sparc;|LGTOnmo:rt_2000_1Q.Build.42;|Obsoleted by: 111966-01 Solstice Backup Oracle Module 3.0 Product -111471|03|Nov/05/01| | | | |8|sparc;|SUNWmp:1.5,REV=2001.02.07.19.32;|SunOS 5.8: Bug fixes for mp in asian locale printing bugs +111471|05|Apr/30/03| | | | |8|sparc;|SUNWmp:1.5,REV=2001.02.07.19.32;|SunOS 5.8: Bug fixes for mp in asian locale printing bugs 111472|03|Nov/05/01| | | | |8_x86|i386;|SUNWmp:1.5,REV=2001.02.07.19.49;|SunOS 5.8_x86: mp print filter patch 111473|01|Jun/19/01| | |O| |Unbundled|||Obsoleted by: 111853-01 Hardware/FCode: PCI Single FC Host Adapter -111474|05|Feb/20/02| | | | |8|sparc.sun4u;|SUNWfcbpl:1.0,REV=2001.02.23;|SunOS 5.8: Sun Fire 880 Fibre-Channel Backplane Firmware patch +111474|07|Sep/25/03| | | | |Unbundled|sparc.sun4u;|SUNWfcbpl:1.0,REV=2001.02.23;|SunOS 5.8: Sun Fire 880 Fibre-Channel Backplane Firmware patch 111475|01|May/09/01| | |O| |Unbundled|sparc;|SUNWescom:3.0_Build41,REV=2.6.2000.12.19;|Obsoleted by: 110936-03 Sun Management Center 3.0 Patch to remove 111476|01|May/09/01| | |O| |Unbundled|sparc;|SUNWescom:3.0_Build41,REV=2.7.2000.12.19;|Obsoleted by: 110937-03 Sun Management Center 3.0 Patch to remove 111477|01|May/09/01| | |O| |Unbundled|sparc;|SUNWescom:3.0_Build41,REV=2.8.2000.12.19;|Obsoleted by: 110938-03 Sun Management Center 3.0 Patch to remove @@ -5815,12 +5937,12 @@ 111480|01|May/09/01| | |O| |Unbundled|sparc;|SUNWescom:3.0_Build39,REV=2.8.2000.12.05;|Obsoleted by: 110973-03 Sun Management Center 3.0 Patch to remove 111481|01|Jun/15/01| | | | |8|sparc;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2: clock Patch 111482|01|Jun/15/01| | | | |8_x86|i386;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2_x86: clock Patch -111488|06|Jan/18/02| | | | |Unbundled|sparc;|SUNWmdm:4.2.1,REV=2000.08.08.10.01;|Sun Cluster 3.0: mediator patch +111488|08|Apr/15/03| |S| | |Unbundled|sparc;|SUNWmdm:4.2.1,REV=2000.08.08.10.01;|Sun Cluster 3.0/3.1: mediator patch 111491|01|Jun/05/01|R|S| | |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=404;|SunOS 5.4: finger doesn't always correctly match NULL usernames 111492|01|Jun/05/01|R|S| | |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=380;|SunOS 5.4_x86: finger doesn't always correctly match NULL username 111498|04|Dec/06/01| | | | |8|sparc.sun4u;|SUNWkmp2r:4.4,REV=1999.11.10.12.39;SUNWkmp2x:4.4,REV=1999.11.10.12.39;|SunOS 5.8: PS2 Keyboard/mouse patch 111499|01|Jun/19/01| |S| | |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: dmesg security problem -111500|08|Jul/31/02| |S| | |Unbundled|sparc;|SUNWcrsc:2001.08.13;SUNWcrscd:2001.08.13;SUNWcrscj:2001.08.13;SUNWdersc:2001.08.13;SUNWdrscd:2001.08.13;SUNWdrscj:2001.08.13;SUNWerscd:2001.08.13;SUNWerscj:2001.08.13;SUNWesrsc:2001.08.13;SUNWfrrsc:2001.08.13;SUNWfrscd:2001.08.13;SUNWfrscj:2001.08.13;SUNWhrsc:2001.08.13;SUNWhrscd:2001.08.13;SUNWhrscj:2001.08.13;SUNWirscd:2001.08.13;SUNWirscj:2001.08.13;SUNWitrsc:2001.08.13;SUNWjersc:2001.08.13;SUNWjrscd:2001.08.13;SUNWjrscj:2001.08.13;SUNWkrsc:2001.08.13;SUNWkrscd:2001.08.13;SUNWkrscj:2001.08.13;SUNWrsc:2001.08.13;SUNWrscd:2001.08.13;SUNWrscj:2001.08.13;SUNWsrscd:2001.08.13;SUNWsrscj:2001.08.13;SUNWsvrsc:2001.08.13;112226-01 112226-02|RSC 2.2 bug fixes +111500|09|Oct/29/02| |S| | |Unbundled|sparc;|SUNWcrsc:2.2,REV=2001.08.13;SUNWcrscd:2.2,REV=2001.08.13;SUNWcrscj:2.2,REV=2001.08.13;SUNWdersc:2.2,REV=2001.08.13;SUNWdrscd:2.2,REV=2001.08.13;SUNWdrscj:2.2,REV=2001.08.13;SUNWerscd:2.2,REV=2001.08.13;SUNWerscj:2.2,REV=2001.08.13;SUNWesrsc:2.2,REV=2001.08.13;SUNWfrrsc:2.2,REV=2001.08.13;SUNWfrscd:2.2,REV=2001.08.13;SUNWfrscj:2.2,REV=2001.08.13;SUNWhrsc:2.2,REV=2001.08.13;SUNWhrscd:2.2,REV=2001.08.13;SUNWhrscj:2.2,REV=2001.08.13;SUNWirscd:2.2,REV=2001.08.13;SUNWirscj:2.2,REV=2001.08.13;SUNWitrsc:2.2,REV=2001.08.13;SUNWjersc:2.2,REV=2001.08.13;SUNWjrscd:2.2,REV=2001.08.13;SUNWjrscj:2.2,REV=2001.08.13;SUNWkrsc:2.2,REV=2001.08.13;SUNWkrscd:2.2,REV=2001.08.13;SUNWkrscj:2.2,REV=2001.08.13;SUNWrsc:2.2,REV=2001.08.13;SUNWrscd:2.2,REV=2001.08.13;SUNWrscj:2.2,REV=2001.08.13;SUNWsrscd:2.2,REV=2001.08.13;SUNWsrscj:2.2,REV=2001.08.13;SUNWsvrsc:2.2,REV=2001.08.13;112226-01 112226-02|RSC 2.2 bug fixes 111501|01|Jun/19/01| |S| | |2.5|sparc;|SUNWesu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: dmesg security problem 111502|01|Jun/19/01|R|S| | |2.5_x86|i386;|SUNWesu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: dmesg security problem 111503|01|Aug/20/01| | |O| |8|sparc;110460-07;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|Obsoleted by: 109888-15 SunOS 5.8: libpiclenvd.so.1 patch for SUNW @@ -5831,20 +5953,21 @@ 111517|01|Jun/15/01| | | | |8_x86|i386;|SUNWcqhpc:1.1.0,REV=1999.12.22.14.01;|SunOS 5.8_x86: /kernel/drv/cpqhpc patch 111518|01|Jun/19/01|R|S| | |2.5.1_x86|i386;|SUNWesu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: dmesg security problem 111521|01|Aug/03/01| | | | |Unbundled|sparc.sun4u;|SUNWlomr:1.1.0,REV=1999.10.20.13.34;|Netra t1 1.1 patch -111526|02|Oct/30/01| | | | |Unbundled|sparc;|SUNWdat:3.2.0,REV=2001.05.02;SUNWdatu:3.2.0,REV=2001.04.24;SUNWkeep:1.0.0,REV=2001.04.24;SUNWphone:3.2.0,REV=2001.04.26;|SunForum 3.2: fixes and enhancements -111534|03|Nov/09/01| | | | |Unbundled|||Hardware, 18G 36G Disks: Download program and DDYST18350 DDYST3695 +111526|12|Aug/12/03| | | | |Unbundled|sparc;|SUNW5dat:3.2.0,REV=2002.01.29;SUNWcdat:3.2.0,REV=2002.01.29;SUNWdat:3.2.0,REV=2001.05.02;SUNWdatu:3.2.0,REV=2001.04.24;SUNWdedat:3.2.0,REV=2002.01.29;SUNWesdat:3.2.0,REV=2002.01.29;SUNWfrdat:3.2.0,REV=2002.01.29;SUNWhdat:3.2.0,REV=2002.01.29;SUNWitdat:3.2.0,REV=2002.01.29;SUNWjadat:3.2.0,REV=2002.01.29;SUNWjpdat:3.2.0,REV=2002.01.29;SUNWkeep:1.0.0,REV=2001.04.24;SUNWkodat:3.2.0,REV=2002.01.29;SUNWphone:3.2.0,REV=2001.04.26;SUNWsvdat:3.2.0,REV=2002.01.29;|SunForum 3.2: fixes and enhancements +111534|04|Apr/01/03| | | | |Unbundled|||Hardware, 18G 36G Disks: Download program and DDYST1835 DDYST3695 +111535|03|Sep/24/02| | | | |Unbundled|||Hardware, FC-AL Disks: Download program and FC-AL Disk Drive firmw 111545|01|Jun/19/01|R|S| | |2.5|sparc;|SUNWdoc:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: catman makes dangerous use of tmpfiles. 111546|01|Jun/28/01|R|S| | |2.5_x86|i386;|SUNWdoc:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: catman makes dangerous use of tmpfiles. 111547|01|May/25/01| | | | |Unbundled|sparc;|SUNWvts:4.2,REV=08.00.11.15,OE=5.8;SUNWvtsx:4.2,REV=08.00.11.15,OE=5.8;|SunVTS 4.2: Kernel patch for nettest to support large E10K configu 111548|01|Jun/15/01|R|S| | |8|sparc;|SUNWdoc:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: catman, man, whatis, apropos and makewhatis patch 111549|01|Jun/15/01|R|S| | |8_x86|i386;|SUNWdoc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: catman, man, whatis, apropos and makewhatis patch 111550|01|Jul/17/01| | | | |Unbundled|sparc;|SDRMcomm:5.2.2;|Sun Grid Engine: Sun Grid Engine 5.2.2 maintenance patch to releas -111551|03|May/15/02| | | | |Unbundled|sparc;|SUNWscapc:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-Apache Patch -111552|04|Jul/10/02| | | | |Unbundled|sparc;|SUNWscdns:2000.10.01.01.00;|Sun Cluster 3.0: HA-DNS Patch -111553|03|Jun/21/02| | | | |Unbundled|sparc;|SUNWschtt:2000.10.01.01.00;|Sun Cluster 3.0: HA-IPlanet Web Server Patch -111554|09|Jun/21/02| | | | |Unbundled|sparc;|SUNWscman:2000.10.01.01.00;|Sun Cluster 3.0: HA Man Pages Patch -111555|04|May/03/02| | | | |Unbundled|sparc;|SUNWscnfs:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-NFS Patch -111556|05|Jul/10/02| | | | |Unbundled|sparc;|SUNWscnsl:2000.10.01.01.00;|Sun Cluster 3.0: HA-Netscape LDAP Patch +111551|04|May/12/03| | | | |Unbundled|sparc;|SUNWscapc:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-Apache Patch +111552|05|May/12/03| | | | |Unbundled|sparc;|SUNWscdns:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-DNS Patch +111553|04|May/12/03| | | | |Unbundled|sparc;|SUNWschtt:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-IPlanet Web Server Patch +111554|09|Jun/21/02| | | | |Unbundled|sparc;|SUNWscman:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA Man Pages Patch +111555|07|May/12/03| | | | |Unbundled|sparc;|SUNWscnfs:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-NFS Patch +111556|07|May/12/03| | | | |Unbundled|sparc;|SUNWscnsl:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: HA-Netscape LDAP Patch 111557|03|May/06/02| | | | |Unbundled|sparc;|SUNWscvm:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: VXVM Patch 111560|01|Jun/19/01|R|S| | |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: dmesg security problem 111561|01|Jun/19/01|R|S| | |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: dmesg security problem @@ -5853,54 +5976,54 @@ 111564|01|Jun/29/01| | | | |Unbundled|sparc;|SUNWspci2:2.2.1;|SunPCi 2.2.1: for Solaris 2.6, 7, 8 and sparc architectures 111565|01|Jun/26/01| | | | |7|sparc;|SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: librt.so.1 Patch 111566|01|Jun/26/01| | | | |7_x86|i386;|SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: librt.so.1 Patch -111570|01|Jun/27/01|R|S| | |8|sparc;|SUNWbnuu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: uucp patch -111571|01|Jun/27/01|R|S| | |8_x86|i386;|SUNWbnuu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: uucp patch +111570|02|Sep/11/02|R|S| | |8|sparc;|SUNWbnuu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: uucp patch +111571|02|Sep/11/02|R|S| | |8_x86|i386;|SUNWbnuu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: uucp patch 111572|01|Jun/28/01|R| | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ar_open failure can lead to stale queue & memory corrup 111573|01|Jul/23/01|R| | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ar_open failure leads to memory corruption 111576|01|Jun/26/01|R|S| | |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: catman makes dangerous use of tmpfiles. 111577|01|Jun/26/01|R|S| | |2.5.1_x86|i386;|SUNWdoc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: catman makes dangerous use of tmpfiles. 111578|02|Oct/22/01|R| | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: arp Patch 111579|02|Oct/22/01|R| | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: arp Patch -111588|03|Mar/19/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-11;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/ws and /kernel/fs/specfs patch -111589|01|Jun/26/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/wc patch -111590|02|Aug/28/01|R|S| | |7|sparc;107285-05;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpc.yppasswdd Patch -111591|02|Sep/05/01|R|S| | |7_x86|i386;107286-05;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpc.yppasswdd Patch +111588|04|Dec/24/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/ws and /kernel/fs/specfs patch +111589|04|Feb/18/03| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/wc and /kernel/fs/specfs patch +111590|03|Feb/28/03|R|S| | |7|sparc;107285-05;|SUNWypu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpc.yppasswdd Patch +111591|03|Feb/28/03|R|S| | |7_x86|i386;107286-05;|SUNWypu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpc.yppasswdd Patch 111592|01|Jun/29/01| |S| | |Unbundled|sparc;|SUNWmibii:1.3,REV=1998.09.08.15.08;SUNWsacom:1.3,REV=1998.09.08.15.08;SUNWsadmi:1.3,REV=1998.09.08.15.08;SUNWsasnm:1.3,REV=1998.09.08.15.08;|Solstice Enterprise Agent 1.0.3: SNMP. 111593|01|Jun/29/01| | | | |Unbundled|i386;sparc;|SUNWmibii:1.3,REV=1998.09.08.15.08;SUNWsacom:1.3,REV=1998.09.08.15.08;SUNWsadmi:1.3,REV=1998.09.08.16.12;SUNWsasnm:1.3,REV=1998.09.08.15.08;|Solstice Enterprise Agent 1.0.3: SNMP. -111596|02|Aug/28/01|R|S| | |8|sparc;111659-01;|SUNWypu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/yp/rpc.yppasswdd patch -111597|02|Sep/05/01|R|S| | |8_x86|i386;111660-01;|SUNWypu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/yp/rpc.yppasswdd patch +111596|03|Feb/28/03|R|S| | |8|sparc;111659-01;108993-18;|SUNWypu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/yp/rpc.yppasswdd patch +111597|03|Feb/28/03|R|S| | |8_x86|i386;111660-01;108994-18;|SUNWypu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/yp/rpc.yppasswdd patch 111600|01|Aug/15/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/whodo Patch 111601|01|Aug/15/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/whodo Patch 111602|01|Jun/27/01| | | | |7|sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: Floppy driver bug fix 111603|01|Jul/17/01| | | | |Unbundled|sparc;|SDRMdoc:5.2.2;|Sun Grid Engine: Sun Grid Engine 5.2.2 maintenance patch to releas 111604|01|Jul/17/01| | | | |Unbundled|sparc;|SDRMsp32:5.2.2;|Sun Grid Engine: Sun Grid Engine 5.2.2 maintenance patch 111605|01|Jul/17/01| | | | |Unbundled|sparc;|SDRMsp64:5.2.2;|Sun Grid Engine: Sun Grid Engine 5.2.2 maintenance patch -111606|02|Sep/17/01|R|S| | |8|sparc;|SUNWftpu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.ftpd patch -111607|02|Sep/17/01|R|S| | |8_x86|i386;|SUNWftpu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.ftpd patch +111606|04|Jul/30/03|R|S| | |8|sparc;|SUNWftpu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.ftpd patch +111607|04|Jul/31/03|R|S| | |8_x86|i386;|SUNWftpu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.ftpd patch 111616|01|Aug/08/01| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: usr/share/lib/zoneinfo/ROC Patch 111617|01|Aug/08/01| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: usr/share/lib/zoneinfo/ROC Patch -111619|02|Jul/08/02| | | | |Unbundled|sparc;sparcv9;|SUNWmgtbx:9.0;SUNWomgta:9.0;SUNWomgtb:9.0;|Solstice CMIP 9.0 patch +111619|05|May/19/03| | | | |Unbundled|sparc;|SUNWmgtbx:9.0;SUNWomgta:9.0;SUNWomgtb:9.0;|Solstice CMIP 9.0 patch 111620|01|Aug/24/01| | | | |7|sparc;|SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: netdb.h Patch 111621|01|Aug/24/01| | | | |7_x86|i386;|SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: netdb.h Patch 111622|02|Aug/24/01| | | | |7|sparc;111620-01;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWarcx:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;SUNWcslx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libsocket Patch 111623|02|Aug/24/01| | | | |7_x86|i386;111621-01;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libsocket Patch -111624|03|Apr/10/02| |S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/inetd patch +111624|04|Oct/02/02| |S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/inetd patch 111625|03|Apr/10/02| |S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/inetd patch -111626|02|Aug/06/02|R|S| | |8|sparc;|SUNWolrte:1.1999.12.03;SUNWolslb:1.1999.12.03;|OpenWindows 3.6.2: Xview Patch -111627|01|Jul/23/01|R|S| | |8_x86|i386;|SUNWolrte:3.6.20,REV=1.1999.12.03;SUNWolslb:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2_x86: Xview Patch -111628|03|Jul/10/02| | | | |Unbundled|sparc;110539-13;|SUNWnbfsh:2000.06.20.08.41;|NetBackup 3.4 FlashBackup NB_FSH_34_3A patch +111626|03|Nov/11/02|R|S| | |8|sparc;|SUNWolrte:3.6.20,REV=1.1999.12.03;SUNWolslb:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2: Xview Patch +111627|02|Nov/11/02|R|S| | |8_x86|i386;|SUNWolrte:3.6.20,REV=1.1999.12.03;SUNWolslb:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2_x86: Xview Patch +111628|03|Jul/10/02| | | | |Unbundled|sparc;110539-13;|SUNWnbfsh:3.4,REV=2000.06.20.08.41;|NetBackup 3.4 FlashBackup NB_FSH_34_3A patch 111630|01|Nov/06/01| | | | |Unbundled|sparc.sun4u;|SUNWcmsdf:5.6,REV=1999.01.28.13.32;|netra ft 1800 patch -111631|04|Mar/26/02| | | | |Unbundled|sparc;|SUNWnbora:3.4,REV=2000.06.20.08.31;|Netbackup 3.4 Database extention for Oracle 9i +111631|05|Mar/06/03| | | | |Unbundled|sparc;|SUNWnbora:3.4,REV=2000.06.20.08.31;|Netbackup 3.4 Database extention for Oracle 9i 111645|01|Aug/06/01| |S| | |2.6|sparc;|SUNWjbcp:1.7,REV=1.0.78;|SunOS 5.6: BCP libmle buffer overflow 111646|01|Aug/06/01| |S| | |7|sparc;|SUNWjbcp:1.8,REV=1.0.45;|SunOS 5.7: BCP libmle buffer overflow 111647|01|Aug/06/01| |S| | |8|sparc;|SUNWjbcp:1.9,REV=1999.12.08.15.55;|BCP libmle buffer overflow 111648|01|Jul/13/01| | | | |Unbundled|sparc;|SUNWvts:4.2,REV=08.00.11.15,OE=5.8;SUNWvtsx:4.2,REV=08.00.11.15,OE=5.8;|SunVTS: env3test cpupmtest ifbtest rsctest 111649|03|Sep/27/01| | | | |Unbundled|||Hardware/DVD: Toshiba DVD 1401 firmware -111656|01|Jun/22/01| | | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;109460-05;109460-06;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.13.13.40;SUNWluxdx:11.8.0,REV=2000.01.08.18.12;SUNWluxdx:11.8.0,REV=2000.01.13.13.40;SUNWluxl:11.8.0,REV=2000.01.08.18.12;SUNWluxlx:11.8.0,REV=2000.01.08.18.12;109460-06 (or newer)|SunOS 5.8: Supplemental socal and sf drivers patch +111656|01|Jun/22/01| | | | |8|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;109460-05;109460-06;109460-08;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.08.18.12;SUNWluxd:11.8.0,REV=2000.01.13.13.40;SUNWluxdx:11.8.0,REV=2000.01.08.18.12;SUNWluxdx:11.8.0,REV=2000.01.13.13.40;SUNWluxl:11.8.0,REV=2000.01.08.18.12;SUNWluxlx:11.8.0,REV=2000.01.08.18.12;109460-06 (or newer)|SunOS 5.8: Supplemental socal and sf drivers patch 111657|01|Oct/26/01| | | | |8|sparc.sun4u;|SUNWidecr:4.1,REV=1999.11.11.11.45;SUNWidecx:2.1,REV=1999.11.11.11.45;|SunOS 5.8: Neide, atata and disk_ata.conf driver patch -111658|01|Jun/21/01| | | | |7|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;107469-08;|SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.11.16.20.05;SUNWluxdx:11.7.0,REV=1998.09.01.04.16;SUNWluxdx:11.7.0,REV=1999.01.21.10.09;SUNWluxl:11.7.0,REV=1998.09.01.04.16;SUNWluxlx:11.7.0,REV=1998.09.01.04.16;107469-09 (or newer)|SunOS 5.7: Supplemental socal and sf drivers patch -111659|07|Jul/09/02|R|S| | |8|sparc;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;SUNWcsr:2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;SUNWnisu:2000.01.08.18.12;|SunOS 5.8: passwd and pam_unix.so.1 patch -111660|07|Jul/09/02|R|S| | |8_x86|i386;|SUNWcsl:2000.01.08.18.17;SUNWcsr:2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;SUNWhea:2000.01.08.18.17;SUNWnisu:2000.01.08.18.17;|SunOS 5.8_x86: passwd and pam_unix.so.1 patch +111658|01|Jun/21/01| | | | |7|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4us;107469-08;107469-09;|SUNWhea:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.09.01.04.16;SUNWluxd:11.7.0,REV=1998.11.16.20.05;SUNWluxdx:11.7.0,REV=1998.09.01.04.16;SUNWluxdx:11.7.0,REV=1999.01.21.10.09;SUNWluxl:11.7.0,REV=1998.09.01.04.16;SUNWluxlx:11.7.0,REV=1998.09.01.04.16;107469-09 (or newer)|SunOS 5.7: Supplemental socal and sf drivers patch +111659|07|Jul/09/02|R|S|O| |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-18 SunOS 5.8: passwd and pam_unix.so.1 patch +111660|07|Jul/09/02|R|S|O| |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86: passwd and pam_unix.so.1 pa 111663|01|Jul/27/01| | | | |7|sparc;|SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;|SunOS 5.7: locale incorrectly sets decimal precision for euro curr 111664|01|Jun/29/01|R| | | |2.6|sparc;|SUNWadmap:6.5,REV=1997.07.02.15.44;|SunOS 5.6: bzip patch 111665|01|Jun/29/01|R| | | |2.6_x86|i386;|SUNWadmap:6.5,REV=1997.07.02.10.32;|SunOS 5.6_x86: bzip patch @@ -5915,45 +6038,63 @@ 111674|01|Jul/20/01| | | | |Unbundled|sparc;111670-01;|SPROplmx:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf) 111675|01|Jul/20/01| | | | |Unbundled|sparc;111670-01;|SPROplsx:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf) 111676|01|Jul/23/01| | | | |Unbundled|sparc;111670-01;|SPROplx:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf) -111678|12|Jul/18/02| | | | |Unbundled|sparc;|SPROlang:6.2;SPROlangx:6.2;|Compiler Common 6.2: Patch Forte Developer 6 update 2, C++ F77 F95 -111679|08|May/23/02| | | | |Unbundled|sparc;|SPROcc:6.2;|C 5.3: Patch for Forte Developer 6 update 2 C compiler -111680|06|May/24/02| | | | |Unbundled|i386;|SPROcc:6.2;|C 5.3_x86: Patch for Forte Developer 6 update 2 C compiler +111678|16|Jun/18/03| | | | |Unbundled|sparc;|SPROlang:6.2;SPROlangx:6.2;|Compiler Common 6.2: Patch Forte Developer 6 update 2, C++ F77 F95 +111679|13|Oct/16/03| | | | |Unbundled|sparc;|SPROcc:6.2;|C 5.3: Patch for Forte Developer 6 update 2 C compiler +111680|09|May/28/03| | | | |Unbundled|i386;|SPROcc:6.2;|C 5.3_x86: Patch for Forte Developer 6 update 2 C compiler 111681|01|Aug/03/01| | | | |Unbundled|sparc;|SPROprfan:6.2;SPROprfax:6.2;|Patch for Forte Developer 6 update 2 Performance Analyzer 111682|01|Aug/03/01| | | | |Unbundled|i386;|SPROprfan:6.2;|Patch for Forte Developer 6 update 2 Performance Analyzer_x86 -111683|07|Jun/27/02| | | | |Unbundled|sparc;111719-01;111679-07;|SPROdbx:6.2;SPROdbxx:6.2;SPROjdbx:6.2;SPROjdbxx:6.2;|Forte Developer 6 update 2: Patch for Debugger -111684|07|Jun/27/02| | | | |Unbundled|i386;111680-05;111720-01;|SPROdbx:6.2;SPROjdbx:6.2;|Forte Developer 6 update 2_x86: Patch for Debugger -111685|09|Jul/31/02| | | | |Unbundled|sparc;111678-04;|SPROcpl:6.2;SPROcplx:6.2;SPROgc:6.2;SPROgcx:6.2;SPROlgc:6.2;SPROlgcx:6.2;SPROscl:6.2;SPROsclx:6.2;SPROtl7x:6.2;SPROtlbn7:6.2;SPROtll7:6.2;SPROtll7x:6.2;|C++ 5.3: Patch for Forte Developer 6 update 2 C++ compiler -111686|09|Jul/31/02| | | | |Unbundled|i386;111689-03;|SPROcpl:6.2;SPROgc:6.2;SPROlgc:6.2;SPROscl:6.2;SPROtlbn7:6.2;SPROtll7:6.2;|C++ 5.3_x86: Patch for Forte Developer 6 update 2 C++ compiler -111689|04|May/24/02| | | | |Unbundled|i386;|SPROlang:6.2;|Patch for Forte Developer 6 update 2 Compiler Common 6.2_x86 -111690|06|Apr/24/02| | | | |Unbundled|sparc;|SPROf90:6.2;SPROl90:6.2;SPROl90s:6.2;SPROl90sx:6.2;SPROl90x:6.2;|F90 6.2: Patch for Forte Developer 6 update 2 Fortran 95 6.2 compi -111691|05|Apr/24/02| | | | |Unbundled|sparc;|SPROf77:6.2;SPROl77:6.2;SPROl77s:6.2;SPROl77sx:6.2;SPROl77x:6.2;|F77 5.3: Patch for Forte Developer 6 update 2 FORTRAN 77 5.3 compi -111692|03|Apr/30/02| | | | |Unbundled|sparc;|SPROcodmg:6.2;SPROdmake:6.2;SPROflmrg:6.2;SPROvertl:6.2;|TeamWare 6.02: Patch for Forte Code Management Software -111693|03|Apr/30/02| | | | |Unbundled|i386;|SPROcodmg:6.2;SPROdmake:6.2;SPROflmrg:6.2;SPROvertl:6.2;|TeamWare 6.02_x86: Patch for Forte Code Management Software -111697|03|May/06/02| | | | |8|sparc;|SUNWsprot:5.8,REV=1999.12.12.00.00;SUNWsprox:5.8,REV=99.12.12.00.00;SUNWxcu4t:5.8,REV=1999.12.12.00.00;|SunOS 5.8: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch +111683|14|Nov/04/03| | |O| |Unbundled|sparc;111679-07;111719-01;111690-10;|SPROdbx:6.2;SPROdbxx:6.2;SPROjdbx:6.2;SPROjdbxx:6.2;|Obsoleted by: 115117-01 Forte Developer 6 update 2: Patch for Debu +111684|14|Nov/06/03| | |O| |Unbundled|i386;111680-05;111720-01;|SPROdbx:6.2;SPROjdbx:6.2;|Obsoleted by: 115976-01 Forte Developer 6 update 2_x86: Patch for +111685|18|Oct/16/03| | | | |Unbundled|sparc;111678-04;|SPROcpl:6.2;SPROcplx:6.2;SPROgc:6.2;SPROgcx:6.2;SPROlgc:6.2;SPROlgcx:6.2;SPROscl:6.2;SPROsclx:6.2;SPROtl7x:6.2;SPROtlbn7:6.2;SPROtll7:6.2;SPROtll7x:6.2;|C++ 5.3: Patch for Forte Developer 6 update 2 C++ compiler +111686|18|Oct/16/03| | | | |Unbundled|i386;111689-03;|SPROcpl:6.2;SPROgc:6.2;SPROlgc:6.2;SPROscl:6.2;SPROtlbn7:6.2;SPROtll7:6.2;|C++ 5.3_x86: Patch for Forte Developer 6 update 2 C++ compiler +111689|07|Aug/12/03| | | | |Unbundled|i386;|SPROlang:6.2;|Patch for Forte Developer 6 update 2 Compiler Common 6.2_x86 +111690|10|Oct/16/03| | | | |Unbundled|sparc;|SPROf90:6.2;SPROl90:6.2;SPROl90s:6.2;SPROl90sx:6.2;SPROl90x:6.2;|F90 6.2: Patch for Forte Developer 6 update 2 Fortran 95 6.2 compi +111691|06|Aug/07/02| | | | |Unbundled|sparc;|SPROf77:6.2;SPROl77:6.2;SPROl77s:6.2;SPROl77sx:6.2;SPROl77x:6.2;|F77 5.3: Patch for Forte Developer 6 update 2 FORTRAN 77 5.3 compi +111692|06|Aug/26/03| | | | |Unbundled|sparc;|SPROcodmg:6.2;SPROdmake:6.2;SPROflmrg:6.2;SPROfrzpt:6.2;SPROvertl:6.2;|TeamWare 6.02: Patch for Forte Code Management Software +111693|06|Aug/26/03| | | | |Unbundled|i386;|SPROcodmg:6.2;SPROdmake:6.2;SPROflmrg:6.2;SPROfrzpt:6.2;SPROvertl:6.2;|TeamWare 6.02_x86: Patch for Forte Code Management Software +111697|04|Nov/07/02| | | | |8|sparc;|SUNWsprot:5.8,REV=1999.12.12.00.00;SUNWsprox:5.8,REV=99.12.12.00.00;SUNWxcu4t:5.8,REV=1999.12.12.00.00;|SunOS 5.8: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch 111698|02|May/07/02| | | | |Unbundled|i386;|SUNWsbuc:6.0.1,VER=Build.174;SUNWsbum:6.0.1,VER=Build.174;SUNWsbun:6.0.1,REV=Build.174;SUNWsbus1:6.0.1,REV=Build.174;SUNWsbus2:6.0.1,REV=Build.174;|Solstice Backup Maintenance Release 6.0_x86: Product Patch -111701|03|May/06/02| | | | |8_x86|i386;|SUNWsprot:5.8,REV=1999.12.12.00.00;SUNWxcu4t:5.8,REV=1999.12.12.00.00;|SunOS 5.8_x86: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch -111704|03|Jul/09/02| | | | |Unbundled|sparc;|SPROlang:7.0;SPROlangx:7.0;|Compiler Common 7.0: Patch for Forte Developer 7 C++ F77 F95 -111705|02|Jul/25/02| | | | |Unbundled|sparc;|SPROprfan:7.0;SPROprfax:7.0;|Performance Analyzer 7.0: Patch for Forte Developer 7 -111706|01|May/09/02| | | | |Unbundled|sparc;|SPROdwrfb:7.0;SPROdwrfx:7.0;SPROlang:7.0;SPROlangx:7.0;SPROrdbkb:7.0;SPROrdbkx:7.0;|Patch for Forte Developer 7 debuginfo handling -111708|01|May/02/02| | | | |Unbundled|sparc;|SPROcc:7.0;|C 5.4: Patch for Forte Developer 7 C compiler -111709|01|May/10/02| | | | |Unbundled|sparc;111708-01;|SPROdbx:7.0;SPROdbxx:7.0;SPROjdbx:7.0;SPROjdbxx:7.0;|dbx 7.0: Patch for Forte Developer 7 Debugger -111711|01|May/09/02| | | | |Unbundled|sparc;|SUNWlibC:5.9,REV=2002.03.18;|32-bit Shared library patch for C++ -111712|01|May/09/02| | | | |Unbundled|sparc;111711-01;|SUNWlibCx:5.9,REV=2002.03.04;|64-Bit Shared library patch for C++ -111714|01|May/23/02| | | | |Unbundled|sparc;111704-01;|SPROf90:7.0;SPROftool:7.0;SPROl90:7.0;SPROl90s:7.0;SPROl90sx:7.0;SPROl90x:7.0;SPROlang:7.0;|F90 7.0: Patch for Forte Developer 7 Fortran 95 compiler -111715|01|May/09/02| | | | |Unbundled|sparc;|SPROcpl:7.0;SPROscl:7.0;SPROsclx:7.0;|C++ 5.4: Patch for Forte Developer 7 C++ compiler +111701|04|Nov/22/02| | | | |8_x86|i386;|SUNWsprot:5.8,REV=1999.12.12.00.00;SUNWxcu4t:5.8,REV=1999.12.12.00.00;|SunOS 5.8_x86: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch +111703|03|Nov/07/02| | | | |9|sparc;|SUNWsprot:5.9,REV=2001.12.12.00.00;SUNWsprox:5.9,REV=2001.12.12.00.00;SUNWxcu4t:5.9,REV=2001.12.12.00.00;|SunOS 5.9: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch +111704|12|Dec/09/03| | | | |Unbundled|sparc;|SPROlang:7.0;SPROlangx:7.0;|Compiler Common 7.0: Patch for Forte Developer 7 C++ F77 F95 +111705|03|Sep/30/02| | | | |Unbundled|sparc;|SPROprfan:7.0;SPROprfax:7.0;|Performance Analyzer 7.0: Patch for Forte Developer 7 +111706|05|Aug/26/03| | | | |Unbundled|sparc;|SPROdwrfb:7.0;SPROdwrfx:7.0;SPROlang:7.0;SPROlangx:7.0;SPROrdbkb:7.0;SPROrdbkx:7.0;|Patch for Forte Developer 7 debuginfo handling +111708|08|Dec/17/03| | | | |Unbundled|sparc;|SPROcc:7.0;|C 5.4: Patch for Forte Developer 7 C compiler +111709|03|Oct/16/03| | | | |Unbundled|sparc;111708-01;|SPROdbx:7.0;SPROdbxx:7.0;SPROjdbx:7.0;SPROjdbxx:7.0;|dbx 7.0: Patch for Forte Developer 7 Debugger +111711|04|Apr/14/03| | | | B|Unbundled|sparc;|SUNWlibC:5.9,REV=2002.03.18;|WITHDRAWN PATCH 32-bit Shared library patch for C++ +111711|07|Dec/09/03| | | | |Unbundled|sparc;|SUNWlibC:5.9,REV=2002.03.18;|32-bit Shared library patch for C++ +111712|04|Apr/14/03| | | | B|Unbundled|sparc;111711-04;111711-04;|SUNWlibCx:5.9,REV=2002.03.04;|WITHDRAWN PATCH 64-Bit Shared library patch for C++ +111712|07|Dec/09/03| | | | |Unbundled|sparc;111711-07;|SUNWlibCx:5.9,REV=2002.03.04;|64-Bit Shared library patch for C++ +111713|04|Dec/09/03| | | | |Unbundled|i386;|SUNWlibC:5.9,REV=2002.08.23;|Shared library patch for C++ _x86 +111714|09|Oct/30/03| | | | |Unbundled|sparc;111704-11;|SPROf90:7.0;SPROftool:7.0;SPROl90:7.0;SPROl90s:7.0;SPROl90sx:7.0;SPROl90x:7.0;SPROlang:7.0;|F90 7.0: Patch for Forte Developer 7 Fortran 95 compiler +111715|13|Dec/23/03| | | | |Unbundled|sparc;|SPROcpl:7.0;SPROcplx:7.0;SPROgc:7.0;SPROgcx:7.0;SPROlgc:7.0;SPROlgcx:7.0;SPROscl:7.0;SPROsclx:7.0;SPROstl4a:7.0;SPROstl4h:7.0;SPROstl4o:7.0;SPROstl4x:7.0;SPROstl4y:7.0;SPROtl7x:7.0;SPROtlbn7:7.0;SPROtll7:7.0;SPROtll7x:7.0;|C++ 5.4: Patch for Forte Developer 7 C++ compiler 111716|02|Jul/25/02| | | | |Unbundled|sparc;111705-02;|SPROmrpan:7.0;|Documentation patch for Forte Developer 7 Performance Analyzer 111717|01|May/09/02| | | | |Unbundled|sparc;111715-01;|SPROmrcpl:7.0;|C++ 5.4 Docs: Documentation Patch for Forte Developer 7 C++ compil 111718|01|May/23/02| | | | |Unbundled|sparc;111714-01;|SPROmrf90:7.0;|F90 7.0 Docs: Documentation Patch for Forte Developer 7 F95 compil -111719|01|Jun/27/02| | | | |Unbundled|sparc;|SPROws:6.2;|Conditional breakpoints are broken in the WS6U2 GUI -111720|01|Jun/27/02| | | | |Unbundled|i386;|SPROws:6.2;|Conditional breakpoints are broken in the WS6U2 GUI_x86 -111721|02|Jun/19/02| | | | |8|sparc;|SUNWlibm:1999.11.10;SUNWlibms:1999.10.21;SUNWlmsx:1999.10.21;|SunOS 5.8: Math Library (libm) patch -111722|01|Jun/19/02| | | | |9|sparc;|SUNWlibm:2001.12.10;SUNWlibms:2001.12.10;SUNWlmsx:2001.12.10;|SunOS 5.9: Math Library (libm) patch -111723|01|Jun/24/02| | | | |Unbundled|sparc;|SPROlang:7.0;SPROlangx:7.0;SPROsmpx:7.0;SPROsmsx:7.0;SPROsunms:7.0;|Compiler Common 7.0: Patch for Forte Developer 7 Math Libraries +111719|03|Dec/22/03| | | | |Unbundled|sparc;|SPROws:6.2;|Workshop IPE 6.2: Patch for Forte Developer 6 update 2 Workshop +111720|03|Dec/22/03| | | | |Unbundled|i386;|SPROws:6.2;|Workshop IPE 6.2_x86: Patch for Forte Developer 6 update 2 +111721|04|May/08/03| | | | |8|sparc;|SUNWlibm:5.8,REV=1999.11.10;SUNWlibms:5.8,REV=1999.10.21;SUNWlmsx:5.8,REV=1999.10.21;|SunOS 5.8: Math Library (libm) patch +111722|04|May/08/03| | | | |9|sparc;|SUNWlibm:5.9,REV=2001.12.10;SUNWlibms:5.9,REV=2001.12.10;SUNWlmsx:5.9,REV=2001.12.10;|SunOS 5.9: Math Library (libm) patch +111723|02|Oct/17/02| | | | |Unbundled|sparc;|SPROlang:7.0;SPROlangx:7.0;SPROsmpx:7.0;SPROsmsx:7.0;SPROsunms:7.0;|Compiler Common 7.0: Patch for Forte Developer 7 Math Libraries 111724|01|Jun/26/02| | | | |Unbundled|sparc;|SPROlang:6.2;SPROlangx:6.2;SPROsmpx:6.2;SPROsmsx:6.2;SPROsunms:6.2;|Compiler Common 6.2: Patch Forte Developer 6 update 2 Math Librari +111725|02|Jan/22/03| | | | |Unbundled|sparc;|SPROdmake:7.0;|Dmake 7.2: Patch for Forte Developer 7 Distributed Make +111728|03|May/08/03| | | | |9_x86|i386;|SUNWlibm:5.9,REV=2001.12.10;SUNWlibms:5.9,REV=2001.12.10;|SunOS 5.9_x86: Math Library (libm) patch +111729|02|Sep/15/03| | | | |Unbundled|sparc;|SPROild:6.2;SPROildx:6.2;|ILD 3.2: Patch for WorkShop 6 update 2 Incremental Linker +111730|01|Oct/01/02| | | | |Unbundled|i386;|SPROild:6.2;|ILD 3.2_x86: Patch for WorkShop 6 update 2 Incremental Linker +111731|02|Sep/15/03| | | | |Unbundled|sparc;|SPROild:7.0;SPROildx:7.0;|ILD 4.0: Patch for Forte Developer 7 Incremental Linker +111732|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROpl:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111733|01|Feb/12/03| | | | |Unbundled|sparc;|SPROplg:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111734|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplm:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111735|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplms:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111736|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROpls:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111737|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplmsx:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +111738|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplmx:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) 111741|02|Dec/05/01| | | | |8|sparc;|SUNWxwmod:6.4.1.3800,REV=0.1999.12.15;SUNWxwmox:6.4.1.02,REV=0.2000.03.30;|X11 6.4.1: hwc patch 111742|02|Dec/05/01| | | | |8_x86|i386;|SUNWxwmod:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: hwc patch 111753|01|Jul/24/01| |S| | |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Buffer overflow vulnerability in cb_reset. 111754|01|Jul/24/01| |S| | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Buffer overflow vulnerability in cb_reset. +111755|02|Dec/10/02| | | | |Unbundled|sparc;|SUNWmdja:4.2.1,REV=1999.12.09.15.37;|Solstice DiskSuite 4.2.1: Product patch for Japanese +111756|02|Dec/10/02| | | | |Unbundled|i386;|SUNWmdja:4.2.1,REV=1999.12.09.15.42;|Solstice DiskSuite 4.2.1_x86: Product patch for Japanese 111762|01|Jun/29/01| | | | |Unbundled|sparc;|SUNWifbvt:2.7.0,REV=1999.10.11;SUNWifbvt:2.7.1,REV=2001.04.05;SUNWifbvt:8.0.0,REV=2000.09.18;|Expert3D IFB SunVTS Patch 111774|01|Oct/16/01| | | | |Unbundled|sparc;|SUNWvtsst:4.1;|StorTools: Updated StorTools 4.1 111775|01|Aug/30/01| | | | |8|sparc;|SUNWdclnt:1.0,REV=2000.10.25.13.07;|SunOS 5.8: smdiskless patch @@ -5964,36 +6105,36 @@ 111781|01|Aug/08/01| | |O| |8_x86|i386;|SUNWpppdu:11.8.0,REV=2001.02.21.14.14;|Obsoleted by: 111300-02 SunOS 5.8_x86: /usr/bin/pppd patch 111784|01|Aug/08/01| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: pr command doesn't work correctly on Japanese environme 111785|01|Aug/08/01| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: pr command works incorrectly on Japanese environmen -111786|01|Aug/10/01| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/format patch -111789|03|Jun/28/02| | | | |8|sparc.sun4u;sparc.sun4us;108528-11;|SUNWdrr:2000.01.08.18.12;SUNWdrr:2000.12.12.12.13;SUNWdrrx:2000.01.08.18.12;SUNWdrrx:2000.12.12.12.13;|SunOS 5.8: /platform/SUNW,Ultra-Enterprise-10000/kernel/drv/dr pat -111790|05|Feb/19/02| | | | |8|sparc.sun4u;108528-13;|SUNWdrr:11.8.0,REV=2000.01.08.18.12;SUNWdrrx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ngdr and ngdrmach drivers patch for Ultra-Enterprise-10 +111786|02|Apr/29/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/format patch +111789|04|Mar/05/03| | | | |8|sparc.sun4u;sparc.sun4us;108528-11;|SUNWdrr:11.8.0,REV=2000.01.08.18.12;SUNWdrr:11.8.0,REV=2000.12.12.12.13;SUNWdrrx:11.8.0,REV=2000.01.08.18.12;SUNWdrrx:11.8.0,REV=2000.12.12.12.13;|SunOS 5.8: /platform/SUNW,Ultra-Enterprise-10000/kernel/drv/dr pat +111790|14|Apr/25/03| | | | |8|sparc.sun4u;108528-13;|SUNWdrr:11.8.0,REV=2000.01.08.18.12;SUNWdrrx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ngdr and ngdrmach drivers patch for Ultra-Enterprise-10 111791|01|Oct/24/01| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr platform links patch for SUNW,Sun-Fire-480R -111792|05|Apr/02/02| | | | |8|sparc;110460-14;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: PICL plugins patch for SUNW,Sun-Fire-480R -111793|03|Feb/15/02| | | | |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libprtdiag_psr.so.1 patch for SUNW,Sun-Fire-480R -111794|01|Oct/24/01| | | | |8|sparc;|SUNWcpcu:11.8.0,REV=2000.01.08.18.12;SUNWcpcux:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libcpc.so.1 patch +111792|09|Jun/11/03|R| | | |8|sparc;110460-29;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: PICL plugins patch for SUNW,Sun-Fire-480R +111793|04|May/23/03| | |O| |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109873-22 SunOS 5.8: libprtdiag_psr.so.1 patch for S +111794|02|Dec/19/02| | | | |8|sparc;|SUNWcpcu:11.8.0,REV=2000.01.08.18.12;SUNWcpcux:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libcpc.so.1 patch 111795|01|Oct/24/01| | | | |8_x86|i386;|SUNWcpcu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libcpc.so.1 patch 111796|04|Apr/01/02| | | | |8|sparc;108528-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: Remote Shared Memory patch 111797|04|Apr/02/02| | | | |8_x86|i386;108529-11;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: Remote Shared Memory patch -111799|01|Jun/04/02| | | | |Unbundled|sparc;|SUNWsrmb:1999.07.07.11.24;|Solaris Resource Manager 1.1: /usr/srm/bin/liminfo patch +111799|01|Jun/04/02| | | | |Unbundled|sparc;|SUNWsrmb:1.1.0,REV=1999.07.07.11.24;|Solaris Resource Manager 1.1: /usr/srm/bin/liminfo patch 111800|01|Oct/30/01| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/sys/mhd.h patch 111801|01|Oct/30/01| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/sys/mhd.h patch -111802|01|Oct/23/01| | | | |8|sparc;108528-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/rcm/modules/SUNW_cluster_rcm.so patch -111803|01|Oct/17/01| | | | |8_x86|i386;108529-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/rcm/modules/SUNW_cluster_rcm.so patch -111804|02|Oct/29/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/rem_drv patch -111805|02|Oct/29/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/rem_drv patch +111802|02|Oct/01/03| | | | |8|sparc;108528-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/rcm/modules/SUNW_cluster_rcm.so patch +111803|02|Sep/29/03| | | | |8_x86|i386;108529-11;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/rcm/modules/SUNW_cluster_rcm.so patch +111804|03|Apr/18/03| | | | |8|sparc;108528-20;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/rem_drv patch +111805|03|Apr/23/03| | | | |8_x86|i386;108529-20;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/rem_drv patch 111806|01|Jul/27/01| |S| | |Trusted_Solaris_8|sparc;|SUNWdtbas:1.4,REV=10.2000.10.29;|Trusted Solaris 8: TS8 term sessions temporarily hang when cu atte 111807|01|Jul/27/01| |S| | |Trusted_Solaris_8_x86|i386;110763-01;|SUNWdtbas:1.4,REV=10.2000.10.29;|Trusted Solaris 8_x86: TS8 term sessions temporarily hang when cu -111808|01|Nov/14/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/adb/devinfo patch -111809|01|Nov/14/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/adb/devinfo patch +111808|02|Apr/18/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/adb/devinfo patch +111809|02|Apr/23/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/adb/devinfo patch 111822|01|Oct/15/01| | | | |8|sparc.sun4u;|SUNWfruip:11.8.0,REV=2001.01.19.01.02;|SunOS 5.8: libpiclfrudata.conf patch for SUNW,Sun-Fire-480R 111823|01|Feb/22/02| | | | |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWdesmc:1.0,REV=2000.11.3.10.00;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWessmc:1.0,REV=2000.11.3.10.00;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfris:8.0,REV=1999.12.13.18.54;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWfrsmc:1.0,REV=2000.11.3.10.00;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitsmc:1.0,REV=2000.11.3.10.00;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvis:8.0,REV=1999.12.13.19.09;SUNWsvos:11.5.1,REV=1999.12.17.14.47;SUNWsvsmc:1.0,REV=2000.11.3.10.00;|SunOS 5.8: New features UR6 European Support 111824|01|Feb/22/02| | | | |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWdesmc:1.0,REV=2000.11.3.10.00;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWessmc:1.0,REV=2000.11.3.10.00;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfris:8.0,REV=1999.12.13.19.03;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWfrsmc:1.0,REV=2000.11.3.10.00;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitsmc:1.0,REV=2000.11.3.10.00;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvis:8.0,REV=1999.12.23.15.13;SUNWsvos:11.5.1,REV=1999.12.17.15.00;SUNWsvsmc:1.0,REV=2000.11.3.10.00;|SunOS 5.8_x86: New features UR6 European Support -111825|02|Mar/27/02| | | | |Unbundled|sparc;sparcv9;|SUNWftabx:9.0;SUNWftama:9.0;SUNWftamb:9.0;|Solstice FTAM 9.0 patch +111825|06|May/27/03| | | | |Unbundled|sparc;sparcv9;|SUNWftabx:9.0;SUNWftama:9.0;SUNWftamb:9.0;|Solstice FTAM 9.0 patch 111826|01|Aug/15/01|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/sparcv7/whodo & /usr/sbin/sparcv9/whodo patch 111827|01|Aug/15/01|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/i86/whodo patch 111831|01|Aug/15/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/drv/dump patch 111832|01|Aug/15/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/drv/dump patch -111837|02|Jun/13/02| | | | |Unbundled|sparc;|SUNWemalb:4.0;SUNWemapp:4.0;SUNWemcpa:3.0;SUNWemipa:3.0;SUNWemjmk:3.0;SUNWemmis:3.0;SUNWemrdb:3.0;|Solstice Enterprise Manager 4.0 patch 2 +111837|08|Sep/23/03| | | | |Unbundled|sparc;|SUNWemalb:4.0;SUNWemapp:4.0;SUNWembc:3.0;SUNWemcpa:3.0;SUNWemdmn:3.0;SUNWemipa:3.0;SUNWemjmk:3.0;SUNWemmis:3.0;SUNWemrdb:3.0;|Solstice Enterprise Manager 4.0 patch 8 111838|01|Aug/15/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: Buffer overflow in whodo via $TZ 111839|01|Aug/15/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: Buffer overflow in whodo via $TZ 111840|01|Aug/15/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Buffer overflow in whodo via $TZ @@ -6002,88 +6143,90 @@ 111843|01|Aug/27/01|R| | | |2.5.1_x86|i386;|SUNWesu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: nawk line length limit corrupts patch dependency 111844|02|Sep/05/01| | | | |8|sparc;|SUNWxwopt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1 xdm patch 111845|02|Sep/05/01| | | | |8_x86|i386;|SUNWxwopt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: xdm patch -111846|04|May/23/02| | | | |8|sparc;111095-09;111097-09;111412-08;111413-08;|SUNWcfpl:11.8.0,REV=2001.07.14.21.42;SUNWcfplx:11.8.0,REV=2001.07.14.21.42;|SunOS 5.8: cfgadm fp plug-in library patch -111847|04|Mar/21/02| | | | |8|sparc;|SUNWsan:1.0;|SAN foundation kit patch -111848|01|Jul/31/01| | |O| |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-09;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;108528-10 (or newer)|Obsoleted by: SunOS 5.8: Supplemental Kernel Update -111850|02|Sep/17/01| | |O| |8|sparc;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;108528-10;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;108528-11 (or newer)|Obsoleted by: SunOS 5.8: Supplemental Kernel Update +111846|07|Nov/13/03| | | | |Unbundled|sparc;111095-14;111096-07;111097-13;111412-12;111413-11;|SUNWcfpl:11.8.0,REV=2001.07.14.21.42;SUNWcfplx:11.8.0,REV=2001.07.14.21.42;|SAN 4.3: cfgadm fp plug-in library patch +111847|08|Nov/13/03| | | | |Unbundled|sparc;|SUNWsan:1.0;|SAN foundation kit patch 111852|01|Aug/28/01| | | | |8|sparc;|SUNWsxow:8.0.0,REV=1999.12.07;|SunOS 5.8: SX Graphics Patch -111853|01|Aug/31/01| | | | |Unbundled|||Hardware/FCode: PCI Single/Dual FC Network Adapter -111854|02|Feb/15/02| | | | |Unbundled|sparc;|SUNWvts:4.4,REV=08.01.05.24,OE=5.8;SUNWvtsx:4.4,REV=08.01.05.24,OE=5.8;|SunVTS4.4 Test Patch -111857|05|May/13/02| |S| | |Unbundled|sparc;110648-15;|SUNWscucm:3.0.0,REV=2000.10.01.01.00;SUNWudlm:3.0.0,REV=2000.10.01.01.00;SUNWudlmr:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: OPS Core Patch +111853|02|Nov/13/03| | | | |Unbundled|||Hardware/FCode: PCI Single/Dual FC Network Adapter +111854|04|Mar/27/03| | | | |Unbundled|sparc;|SUNWvts:4.4,REV=08.01.05.24,OE=5.8;SUNWvtsx:4.4,REV=08.01.05.24,OE=5.8;|SunVTS4.4 Test Patch +111857|09|Dec/16/03| |S| | |Unbundled|sparc;110648-15;|SUNWscucm:3.0.0,REV=2000.10.01.01.00;SUNWudlm:3.0.0,REV=2000.10.01.01.00;SUNWudlmr:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: OPS Core Patch for Solaris 8 111859|01|Aug/27/01|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Buffer overflow in whodo via $TZ 111860|01|Aug/27/01|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Buffer overflow in whodo via $TZ 111861|01|Dec/05/01| | |O| |Unbundled|sparc;|SUNWcre:2.0;SUNWcrex:2.0;|Obsoleted by: 112015-01 HPC 4.0: PBS Integration with CRE -111862|01|Nov/12/01| | | | |Unbundled|sparc;|SUNWmpirt:5.0;SUNWmpix:5.0;|HPC 4.0: RSM and other fixes for MPI -111863|01|Sep/24/01| | | | |Unbundled|sparc;|SUNWpfs:2.1,REV=int31.0;SUNWpfsrt:2.1,REV=int31.0;SUNWpfsx:2.1,REV=int31.0;|HPC 4.0: PFS iod deadlock and other fixes for PFS +111862|03|Oct/31/02| | | | |Unbundled|sparc;|SUNWcre:2.0;SUNWcrex:2.0;SUNWmpirt:5.0;SUNWmpix:5.0;|HPC 4.0: RSM, CRE and other fixes for MPI +111863|02|Oct/07/02| | | | |Unbundled|sparc;|SUNWpfs:2.1,REV=int31.0;SUNWpfsrt:2.1,REV=int31.0;SUNWpfsx:2.1,REV=int31.0;|HPC 4.0: PFS iod deadlock and other fixes for PFS 111864|01|Jan/11/02| | |O| |Unbundled|sparc;|SUNWcre:2.0;SUNWcrex:2.0;|Obsoleted by: 112015-01 mpadmin: Need way of disabling "no_login" -111874|05|Apr/01/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr/bin/mail patch -111875|05|Apr/01/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: usr/bin/mail patch +111874|06|Jan/23/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr/bin/mail patch +111875|06|Jan/23/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: usr/bin/mail patch 111876|01|Sep/05/01| | | | |8|sparc;|SUNWweuos:1.0,REV=1999.12.13.13.24;SUNWweuox:1.0,REV=1999.12.13.14.44;|SunOS 5.8: nl.iso 15@euro locale incorrectly sets decimal precisio 111879|01|Aug/27/01|R| | | |8|sparc;|SUNWwsr:2.1.0,REV=1999.12.16.15.15;|SunOS 5.8: Solaris Product Registry patch SUNWwsr 111880|01|Aug/27/01|R| | | |8_x86|i386;|SUNWwsr:2.1.0,REV=1999.12.16.15.36;|SunOS 5.8_x86: Solaris Product Registry patch SUNWwsr -111881|02|Jun/04/02|R|S| | |8|sparc;|SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;|SunOS 5.8: /usr/kernel/strmod/telmod patch -111882|02|Jun/03/02| |S| | |8_x86|i386;|SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/strmod/telmod patch -111883|07|Mar/07/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcea:1.0,REV=2001.05.04;SUNWceax:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.17.12.10;SUNWcedu:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.17.12.10;|SunOS 5.8: Sun GigaSwift Ethernet 1.0 driver patch -111891|05|May/29/02| | | | |Unbundled|sparc;|SUNWuta:1.3_12.c,REV=2001.07.16.20.52;SUNWuto:1.3_12.c,REV=2001.07.16.20.52;SUNWutps:1.3_12.c,REV=2001.07.16.20.52;SUNWutu:1.3_12.c,REV=2001.07.16.20.52;|Sun Ray Server version 1.3 Patch Update +111881|03|Dec/24/02|R|S| | |8|sparc;108528-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/strmod/telmod patch +111882|03|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/strmod/telmod patch +111883|19|Sep/26/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcea:1.0,REV=2001.05.04;SUNWceax:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.17.12.10;SUNWcedu:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.17.12.10;|SunOS 5.8: Sun GigaSwift Ethernet 1.0 driver patch +111891|10|Aug/01/03| |S| | |Unbundled|sparc;108919;109354;109887;|SUNWbbchr:1.0_14.a,REV=2001.07.16.20.33;SUNWuta:1.3_12.c,REV=2001.07.16.20.52;SUNWutesa:1.3_12.c,REV=2001.07.16.20.52;SUNWuto:1.3_12.c,REV=2001.07.16.20.52;SUNWutps:1.3_12.c,REV=2001.07.16.20.52;SUNWutr:1.3_12.c,REV=2001.07.16.20.52;SUNWutscr:1.3_12.c,REV=2001.07.16.20.52;SUNWutu:1.3_12.c,REV=2001.07.16.20.52;|Sun Ray Server version 1.3 Patch Update 111893|04|Feb/06/02| | | | |Unbundled|sparc;|SUNWrasag:2.1;|NWSAgent patch update for permission issues -111904|05|May/31/02| | | | |Unbundled|sparc;|VRTSvmsa:07.27.2001.19.47;|VRTSvmsa 3.2: maintenance patch -111907|06|May/31/02| | | | |Unbundled|sparc;|VRTSvxvm:08.15.2001.23.27;|VxVM 3.2: general patch for Solaris 2.6 -111908|05|May/31/02| | | | |Unbundled|sparc;106541-19;107473-07;|VRTSvxvm:08.15.2001.23.27;VRTSvxvm:3.2,REV=08.15.2001.23.27;|VxVM 3.2: general patch for Solaris 7 -111909|06|May/31/02| | | | |Unbundled|sparc;111413-06;109529-06;108827-19;|VRTSvxvm:08.15.2001.23.27;|VxVM 3.2: general patch for Solaris 8 -111915|02|Jan/30/02| | | | |Unbundled|sparc;|VRTSvmsa:3.1.1-I,REV=06.04.2001.07.42;|VRTSvmsa 3.1.1-I: maintenance patch +111904|07|Jun/24/03| | | | |Unbundled|sparc;|VRTSvmsa:3.2,REV=07.27.2001.19.47;|VRTSvmsa 3.2: maintenance patch +111907|06|May/31/02| | |O| |Unbundled|sparc;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|Obsoleted by: 113201-02 VxVM 3.2: general patch for Solaris 2.6 +111908|05|May/31/02| | |O| |Unbundled|sparc;106541-19;107473-07;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|Obsoleted by: 113201-02 VxVM 3.2: general patch for Solaris 7 +111909|06|May/31/02| | |O| |Unbundled|sparc;111413-06;109529-06;108827-19;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|Obsoleted by: 113201-02 VxVM 3.2: general patch for Solaris 8 +111915|03|Mar/25/03| | | | |Unbundled|sparc;|VRTSvmsa:3.1.1-I,REV=06.04.2001.07.42;|VRTSvmsa 3.1.1-I: maintenance patch 111916|01|Sep/24/01|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: telmod could panic the system 111917|01|Sep/24/01|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: telmod could panic the system -111931|01|Feb/15/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/strmod/timod Patch -111932|01|May/31/02| | | | |7_x86|i386;|SUNWcsr:1998.09.01.04.53;|SunOS 5.7_x86: /kernel/strmod/timod Patch -111934|01|Aug/07/01| | | | |Unbundled|sparc;|SUNWesasm:3.0_Pack1_Build17,REV=2.5.2001.05.30;|Sun Management Center 3.0 Jumbo Patch for SysRM -111935|01|Aug/07/01| | | | |Unbundled|sparc;|SUNWesasm:3.0_Pack1_Build17,REV=2.6.2001.05.30;|Sun Management Center 3.0 Jumbo Patch for SysRM -111936|01|Aug/07/01| | | | |Unbundled|sparc;|SUNWesasm:3.0_Pack1_Build17,REV=2.7.2001.05.30;|Sun Management Center 3.0 Jumbo Patch for SysRM -111937|01|Aug/07/01| | | | |Unbundled|sparc;|SUNWesasm:3.0_Pack1_Build17,REV=2.8.2001.05.30;|Sun Management Center 3.0: Jumbo Patch for SysRM +111931|02|Apr/15/03| |S| | |7|sparc;sparc.sun4u;sparc.sun4us;106541-24;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/strmod/timod Patch +111932|02|Apr/15/03| |S| | |7_x86|i386;106542-24;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/strmod/timod Patch +111934|02|Apr/08/03| | | | |Unbundled|sparc;|SUNWesasm:3.0_Pack1_Build17,REV=2.5.2001.05.30;|Sun Management Center 3.0: Jumbo Patch for SysRM for Solaris 2.5.1 +111935|02|Apr/08/03| | | | |Unbundled|sparc;111109-02;|SUNWesasm:3.0_Pack1_Build17,REV=2.6.2001.05.30;|Sun Management Center 3.0: Jumbo Patch for SysRM for Solaris 2.6 +111936|02|Apr/08/03| | | | |Unbundled|sparc;111113-02;|SUNWesasm:3.0_Pack1_Build17,REV=2.7.2001.05.30;|Sun Management Center 3.0: Jumbo Patch for SysRM for Solaris 7 +111937|03|Mar/14/03| | | | |Unbundled|sparc;111111-03;|SUNWesasm:3.0_Pack1_Build17,REV=2.8.2001.05.30;|Sun Management Center 3.0: Patch for SysRM for Solaris 8 111938|01|Aug/28/01| | | | |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: Manual Pages Patch for Live Upgrade 111939|01|Aug/28/01| | | | |7|sparc;|SUNWman:40.0,REV=23;|SunOS 5.7: Manual Pages Patch for Live Upgrade 111940|01|Aug/28/01| | | | |7_x86|i386;|SUNWman:40.0,REV=23;|SunOS 5.7_x86: Manual Pages Patch for Live Upgrade 111941|01|Feb/15/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: clone Patch -111942|01|May/31/02| | | | |7_x86|i386;|SUNWcsr:1998.09.01.04.53;|SunOS 5.7_x86: clone Patch -111945|06|Jun/07/02| | | | |Unbundled|sparc;|SUNWscmr:5.8.0.2001.06.21;SUNWscmu:5.8.0.2001.06.21;|Data Services 3.0 SCM: nsctl/sdbc/nskern/dscfg Patch +111942|01|May/31/02| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: clone Patch +111945|09|Jun/17/03| | | | |Unbundled|sparc;|SUNWscmr:3.0.28,REV=5.8.0.2001.06.21;SUNWscmu:3.0.28,REV=5.8.0.2001.06.21;|Data Services 3.0 SCM: nsctl/sdbc/nskern/dscfg Patch 111946|05|Mar/04/02| | | | |Unbundled|sparc;|SUNWspsvr:3.0.28,REV=5.8.0.2001.06.21;SUNWspsvu:3.0.28,REV=5.8.0.2001.06.21;|Data Services 3.0 SV: svadm display wrong hostname/core dump Patch -111947|05|Jun/07/02| | | | |Unbundled|sparc;|SUNWii:5.8.0.2001.06.21;|Data Services 3.0 II: unit test panic/bitmap writing/kernel heap P -111948|07|Jun/07/02| | | | |Unbundled|sparc;|SUNWrdcu:5.8.0.2001.06.21;|Data Services 3.0 SNDR: sndradm/rdc/sndrd/rdcsrv fixes Patch -111952|02|Mar/14/02| | | | |Unbundled|111092-02;||Hardware/PROM: Netra X1 PROM upgrade patch +111947|08|Feb/12/03| | | | |Unbundled|sparc;|SUNWii:3.0.28,REV=5.8.0.2001.06.21;|Data Services 3.0 II: unit test panic/bitmap writing/kernel heap P +111948|08|Sep/11/02| | | | B|Unbundled|sparc;|SUNWrdcu:3.0.28,REV=5.8.0.2001.06.21;|WITHDRAWN PATCH Data Services 3.0 SNDR: sndradm/rdc/sndrd/rdcsrv f +111948|09|Jun/17/03| | | | |Unbundled|sparc;111945-09;|SUNWrdcu:3.0.28,REV=5.8.0.2001.06.21;|Data Services 3.0 SNDR: sndradm/rdc/sndrd/rdcsrv fixes Patch +111952|03|May/20/03| | | | |Unbundled|111092-02;||Hardware/PROM: Netra X1 / Sun Fire V100 PROM upgrade patch 111953|04|Feb/22/02| | | | |8|sparc;|SUNWale:8.0,REV=1999.11.22.11.48;SUNWciu8:8.0,REV=1999.11.05.13.31;SUNWciu8x:8.0,REV=1999.11.05.13.31;SUNWcudt:8.0,REV=1999.11.24.10.10;SUNWgddst:8.0,REV=1999.12.22.10.40;SUNWgddte:8.0,REV=1999.12.16.07.50;SUNWgdt:8.0,REV=1999.11.24.10.10;SUNWgdwm:8.0,REV=1999.12.27.13.59;SUNWgleu:8.0,REV=1999.12.07.14.54;SUNWgleux:8.0,REV=1999.10.26.10.33;|SunOS 5.8: zh_CN.GB18030 locale support 111954|04|Feb/22/02| | | | |8_x86|i386;|SUNWale:8.0,REV=1999.11.22.11.49;SUNWciu8:8.0,REV=1999.11.05.13.10;SUNWcudt:8.0,REV=1999.11.24.10.11;SUNWgddst:8.0,REV=1999.12.22.10.39;SUNWgddte:8.0,REV=1999.12.16.08.26;SUNWgdt:8.0,REV=1999.11.24.10.11;SUNWgdwm:8.0,REV=1999.12.27.14.01;SUNWgleu:8.0,REV=1999.12.07.14.28;|SunOS 5.8_x86: zh_CN.GB18030 locale support 111955|01|Sep/19/01| | | | |Unbundled|sparc;|SUNWjanb:3.4,REV=2001.03.06.08.51;|NetBackup 3.4 Japanese Msgs fix 111956|01|Aug/31/01| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: clone open does not set STRQNEXTLESS -111957|01|May/30/02| | | | |2.6_x86|i386;|SUNWcsr:1997.07.16.00.21;|SunOS 5.6_x86: clone open does not set STRQNEXTLESS +111957|01|May/30/02| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: clone open does not set STRQNEXTLESS +111958|01|Sep/05/01| | | | B|8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|WITHDRAWN SunOS 5.8: /usr/lib/nfs/statd patch 111958|02|May/13/02|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/nfs/statd patch +111959|01|Sep/05/01| | | | B|8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|WITHDRAWN SunOS 5.8_x86: /usr/lib/nfs/statd patch 111959|02|May/13/02|R| | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nfs/statd patch -111962|07|Jul/08/02| | | | |Unbundled|sparc;|SUNWsbuc:Build.186;SUNWsbum:Build.186;SUNWsbun:Build.186;SUNWsbus1:Build.186;SUNWsbus2:Build.186;|Solstice Backup 6.1: Product Patch -111963|02|Dec/11/01| | | | |Unbundled|i386;|SUNWsbuc:6.1,REV=Build.186;SUNWsbum:6.1,REV=Build.186;SUNWsbun:6.1,REV=Build.186;SUNWsbus1:6.1,REV=Build.186;SUNWsbus2:6.1,REV=Build.186;|Solstice Backup 6.1_x86: Product Patch +111962|09|Jan/14/03| | | | |Unbundled|sparc;|SUNWsbuc:6.1,REV=Build.186;SUNWsbum:6.1,REV=Build.186;SUNWsbun:6.1,REV=Build.186;SUNWsbus1:6.1,REV=Build.186;SUNWsbus2:6.1,REV=Build.186;|Solstice Backup 6.1: Product Patch +111963|03|Mar/19/03| | | | |Unbundled|i386;|SUNWsbuc:6.1,REV=Build.186;SUNWsbum:6.1,REV=Build.186;SUNWsbun:6.1,REV=Build.186;SUNWsbus1:6.1,REV=Build.186;SUNWsbus2:6.1,REV=Build.186;|Solstice Backup 6.1_x86: Product Patch 111964|02|Feb/07/02| | |O| |Unbundled|sparc;|LGTOnmo:rt_2000_1Q.Build.42;|Obsoleted by: 111966-01 Solstice Backup Oracle Module 3.0 Product 111966|01|Jun/06/02| | | | |Unbundled|sparc;|LGTOnmo:rt_2000_1Q.Build.42;|Solstice Backup Oracle Module 3.5 Product Patch 111967|01|Jul/15/02| | | | |Unbundled|sparc;|LGTOnmo:rt_2000_1Q.Build.42;|Solstice Backup Oracle Module 3.5 Product Patch 111968|01|Feb/01/02| | |O| |Unbundled|sparc;111962-05;|SUNWsbus1:6.1,REV=Build.186;|Obsoleted by: 111962-07 Solstice Backup 6.1: Product Patch -111969|02|Jan/23/02| | | | |Unbundled|sparc;|SUNWsbus1:6.1.1,REV=238;|Solstice Backup 6.1 L10N: Product Patch -111970|01|Nov/28/01| | | | |Unbundled|sparc;|SUNWsbuc:6.1.1,REV=238;SUNWsbun:6.1.1,REV=238;SUNWsbus1:6.1.1,REV=238;|Solstice Backup 6.1 L10N: Product Patch +111969|02|Jan/23/02| | |O| |Unbundled|sparc;|SUNWsbus1:6.1.1,REV=238;|Obsoleted by: 112465-01 Solstice Backup 6.1 L10N: Product Patch +111970|01|Nov/28/01| | |O| |Unbundled|sparc;|SUNWsbuc:6.1.1,REV=238;SUNWsbun:6.1.1,REV=238;SUNWsbus1:6.1.1,REV=238;|Obsoleted by: 112465-01 Solstice Backup 6.1 L10N: Product Patch 111971|03|Nov/28/01| | |O| |Unbundled|sparc;111962-03;|SUNWsbun:6.1,REV=Build.186;|Obsoleted by: 111962-07 Solstice Backup 6.1: Product Patch -111972|03|Apr/09/02| | | | |Unbundled|||L20/L40/L60 robotics firmware upgrade -111973|01|Aug/31/01| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ypbind's usage of timod induces BugIds 4336400 & 436526 -111974|01|May/31/02| | | | |2.6_x86|i386;|SUNWcsr:1997.07.16.00.21;|SunOS 5.6_x86: ypbind's usage of timod induces BugId 4336400 & 436 +111972|04|Apr/08/03| | | | |Unbundled|||L20/L40/L60 robotics firmware upgrade +111973|02|Mar/28/03| |S| | |2.6|sparc;105181-34;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: timod stream module patch +111974|02|Mar/25/03| |S| | |2.6_x86|i386;105182-34;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: timod stream module patch 111975|01|Aug/31/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: datasyncd fails to synchronize information between both S 111980|02|Mar/19/02|R|S| | |7|sparc;|SUNWipc:11.7.0,REV=1998.09.01.04.16;SUNWipcx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ipcs Patch 111981|02|Mar/19/02|R|S| | |7_x86|i386;|SUNWipc:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ipcs Patch 111984|01|Aug/31/01| | | | |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: machine_server core dumps when ssp is starting -111987|01|Aug/30/01| | | | |Unbundled|sparc;|SUNWspci2:2.2.2;|SunPCi 2.2.2: for Solaris 2.6, 7, 8 and sparc architectures +111987|02|Dec/06/02| | | | |Unbundled|sparc;|SUNWspci2:2.2.2;|SunPCi2 2.2.2: for Solaris 2.6, 2.7, 2.8 and sparc architectures 111988|01|Jan/18/02| | | | |Unbundled|sparc;111893-02;|SUNWrasag:2.1;|SUNWrasag2.1: patch to provide Carmel (D2) RASAgent support 111989|01|Sep/14/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr/bin/egrep patch 111990|01|Nov/14/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: usr/bin/egrep patch -111991|04|Jul/26/02| | | | |Unbundled|||Hardware/PROM: Netra T1 200 PROM upgrade patch +111991|07|Nov/03/03| | | | |Unbundled|||Hardware/PROM: Netra T1 200 PROM upgrade patch 111992|01|Oct/03/01| | | | |Unbundled|sparc;|SUNWkmntr:1.1,REV=1;|Multiple BugID patch fix - SUNWkmntr v1.1 111993|02|Feb/14/02| | | | |Unbundled|sparc;|SUNWafbgl:1.2.2,REV=2001.08.06;SUNWffbgl:1.2.2,REV=2001.08.06;SUNWglrt:1.2.2,REV=2001.08.06;SUNWglrtu:1.2.2,REV=2001.08.06;SUNWglsr:1.2.2,REV=2001.08.06;SUNWglsrz:1.2.2,REV=2001.08.06;SUNWifbgl:1.2.2,REV=2001.08.06;|OpenGL 1.2.2: OpenGL Patch for Solaris 2.6/7/8 (32-bit) 111994|02|Feb/14/02| | | | |Unbundled|sparc;111993-02;|SUNWafbgx:1.2.2,REV=2001.08.06;SUNWffbgx:1.2.2,REV=2001.08.06;SUNWglrtx:1.2.2,REV=2001.08.06;SUNWglsrx:1.2.2,REV=2001.08.06;SUNWifbgx:1.2.2,REV=2001.08.06;|OpenGL 1.2.2: OpenGL Patch for Solaris 7/8 (64-bit) 111996|01|Oct/23/01| | | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;SUNWesxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ptree Patch 111997|01|Oct/23/01| | | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ptree Patch 112003|03|Feb/01/02| | | | |8|sparc;|SUNWi15cs:2.0,REV=1999.12.09.13.36;SUNWi1cs:2.0,REV=1999.11.24.17.23;|SunOS 5.8: Unable to load fontset in 64-bit Solaris 8 iso-1 or iso -112015|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWcre:2.0;SUNWcrex:2.0;|HPC 4.0: PBS Integration and various CRE fixes +112014|02|Oct/24/02| | | | |Unbundled|sparc;|SUNWprism:6.2;SUNWprsmx:6.2;|HPC 4.0: Add prism support for Solaris 9 +112015|02|Aug/22/02| | | | |Unbundled|sparc;|SUNWcre:2.0;SUNWcrex:2.0;|HPC 4.0: PBS Integration and various CRE fixes 112016|02|Sep/07/01| | | | |Unbundled|sparc;|SUNWvts:4.3,REV=08.01.02.12,OE=5.8;|SunVTS 4.3: Changed disktest to ignore pseudo-LUN partitions on th 112032|02|Feb/22/02| | | | |8|sparc;|SUNWgxplt:8.0,REV=1999.12.09.17.53;SUNWgxplx:8.0,REV=1999.12.09.18.22;|SunOS 5.8: New locale zh_CN.GB18030 support 112033|02|Feb/22/02| | | | |8_x86|i386;|SUNWgxplt:8.0,REV=1999.12.09.17.44;|SunOS 5.8_x86: New locale zh_CN.GB18030 support @@ -6092,18 +6235,19 @@ 112037|02|Jan/25/02| | | | |8_x86|i386;|SUNWuxlcf:1.5,REV=1999.12.03.14.40;|SunOS 5.8_x86: en_US.UTF-8 locale XI18N patch 112039|01|Sep/17/01| |S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: usr/bin/ckitem patch 112040|01|Sep/17/01| |S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: usr/bin/ckitem patch -112045|03|Apr/05/02| |S| | |Unbundled|all;|SUNW2jddc:4.2;SUNW2jdrt:4.2;SUNW2jdtk:4.2;|Java DMK 4.2 patch -112050|01|Oct/12/01| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ptree patch -112051|01|Oct/12/01| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ptree patch -112054|03|Apr/05/02| |S| | |Unbundled|||Java DMK 4.2 patch +112041|02|Nov/13/03| | | | |Unbundled|sparc;|SUNWsecsn:1.0.0,REV=2000.08.09;|Sun Crypto Accelerator I Patch +112045|07|Oct/31/03| |S| | |Unbundled|all;|SUNW2jddc:4.2;SUNW2jdrt:4.2;SUNW2jdtk:4.2;|Java Dynamic Management Kit 4.2 patch +112050|02|Sep/29/03| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: ptree patch +112051|02|Sep/29/03| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: ptree patch +112054|07|Nov/14/03| |S| | |Unbundled|||Java Dynamic Management Kit 4.2 patch 112057|01|Sep/28/01| | | | |8|sparc;|SUNWale:8.0,REV=1999.11.22.11.48;|SunOS 5.8: Asian mailx and in.comsat update 112058|01|Sep/28/01| | | | |8_x86|i386;|SUNWale:8.0,REV=1999.11.22.11.49;|SunOS 5.8_x86: Asian mailx and in.comsat update -112060|01|Oct/12/01| | | | |8|sparc;|SUNWufu:3.1,REV=2001.08.24.10.58;|SunOS 5.8: /usr/include/uflash_if.h patch +112060|03|Mar/20/03| | | | |8|sparc;sparc.sun4u;|SUNWufrx:3.1,REV=2001.08.24.10.58;SUNWufu:3.1,REV=2001.08.24.10.58;|SunOS 5.8: user flash patch 112061|02|Nov/06/01|R|S| | |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: mailx Patch 112062|02|Nov/06/01|R|S| | |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: mailx Patch 112065|01|Sep/10/01| | |O| |Unbundled|sparc;110539-06;|SUNWnetbp:3.4,REV=2000.06.23.16.03;|Obsoleted by: 110539-13 NetBackup 3.4 UNIX server and client fix S 112066|01|Sep/07/01| | |O| |Unbundled|sparc;108261-08;|SUNWnetbp:3.2GA;|Obsoleted by: 108261-10 NetBackup 3.2 UNIX server and client fix S -112067|01|Oct/08/01| | | | |Unbundled|||Hardware, Flexipack DLT8000, desktop tape drive +112067|02|Dec/19/03| | | | |Unbundled|||Hardware, DLT8000 Tape Drive, Firmware Download Program, V87 112068|01|Oct/02/01| | | | |Unbundled|||StorEdge L20: Hardware, DLT8000 tape drive 112069|01|Feb/27/02| | | | |Unbundled|108437-04;||Hardware, Tape: L3500, Libraries 112070|01|Oct/15/01|R|S| | |2.5|sparc;|SUNWesu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: bdiff and sdiff Patches @@ -6112,8 +6256,8 @@ 112074|03|Feb/01/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/mailx patch 112075|01|Nov/30/01| | | | |Unbundled|sparc;|SUNWnbdb2:3.4,REV=2000.06.20.08.31;|Netbackup 3.4 Database extension patch for DB2 112076|01|Sep/10/01| | |O| |Unbundled|sparc;109096-08;|SUNWnetbp:3.2patchJ0820326;|Obsoleted by: 109096-10 NetBackup 3.2 L10N UNIX server and client -112077|04|Jul/15/02| | | | |8|sparc;|SUNWrsm:2001.06.21.13.21;SUNWrsmx:2001.06.21.13.21;|SunOS 5.8: usr/kernel/drv/rsm patch -112078|03|Apr/02/02| | | | |8_x86|i386;|SUNWrsm:11.8.0,REV=2001.06.21.13.13;|SunOS 5.8_x86: usr/kernel/drv/rsm patch +112077|09|Nov/10/03| | | | |8|sparc;|SUNWrsm:11.8.0,REV=2001.06.21.13.21;SUNWrsmx:11.8.0,REV=2001.06.21.13.21;|SunOS 5.8: usr/kernel/drv/rsm patch +112078|09|Nov/10/03| | | | |8_x86|i386;|SUNWrsm:11.8.0,REV=2001.06.21.13.13;|SunOS 5.8_x86: usr/kernel/drv/rsm patch 112080|07|May/21/02| | | | |Unbundled|sparc;|SUNWSMSpo:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: Patch IBIST for pause wafer change. 112084|01|Oct/03/01| | | | |8|sparc;|SUNWkdcst:8.0,REV=1999.12.22.14.28;SUNWkuxe:8.0,REV=1999.10.12.16.19;SUNWkxe:8.0,REV=1999.10.12.16.19;|SunOS 5.8: regression: sdthanja displays garbages using libXm.so.4 112085|01|Oct/03/01| | | | |8_x86|i386;|SUNWkdcst:8.0,REV=1999.12.22.14.27;SUNWkuxe:8.0,REV=1999.10.12.14.57;SUNWkxe:8.0,REV=1999.10.12.14.57;|SunOS 5.8_x86: regression: sdthanja displays garbages using libXm. @@ -6124,36 +6268,37 @@ 112092|01|Oct/23/01| | | | |Unbundled||108402-01|Hardware/Tape: DDS-3 4mm Tape Drive Firmware Download Program L007 112093|01|Oct/23/01| | | | |Unbundled|||Hardware DDS-3 4mm Tape Autoloader Firmware Version U007 112094|01|Nov/01/01| | | | |Unbundled|||Hardware, DDS-4 4mm Tape Drive, Firmware Download Program C005 -112097|01|Nov/05/01| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: /usr/bin/cpio patch -112098|01|Nov/05/01| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/bin/cpio patch +112097|04|Sep/01/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/cpio patch +112098|04|Sep/01/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/cpio patch 112099|07|Mar/22/02| | | | |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: DSMD should gracefully handle RStop that cannot be cleare 112100|07|Feb/06/02| | | | |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;SUNWSMSr:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: Periodic File propagation no longer works 112106|01|Nov/05/01|R| | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: mkfs Patch 112107|01|Nov/05/01|R| | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: mkfs Patch -112108|06|May/06/02| | | | |Unbundled|sparc;110648-09;|SUNWscvw:3.0.0,REV=2001.06.18.15.51;|Sun Cluster 3.0: SunPlex Manager Core Components Patch +112108|07|Jan/30/03| | | | |Unbundled|sparc;110648-09;|SUNWscvw:3.0.0,REV=2001.06.18.15.51;|Sun Cluster 3.0: SunPlex Manager Core Components Patch 112109|01|Oct/12/01| | | | |8|sparc;|SUNWi7cs:2.0,REV=1999.12.09.13.35;SUNWseuow:1.0,REV=1999.12.16.18.52;|SunOS 5.8: Some Greek characters are in wrong places +112113|02|Nov/18/03| | | | |Unbundled|sparc;|SUNWsspob:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: E10K OBP Enhancement for installing a domain over DHCP 112114|01|Oct/30/01| |S| | |Trusted_Solaris_8|sparc;|SUNWdtwm:1.4,REV=10.2000.10.29;|Trusted Solaris 8: dtwm consumes cpu after user logs out and logs 112115|01|Oct/30/01| |S| | |Trusted_Solaris_8_x86|i386;110763-01;|SUNWdtwm:1.4,REV=10.2000.10.29;|Trusted Solaris 8_x86: dtwm consumes cpu after user logs out and l 112116|02|Oct/18/01| | |O| |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|Obsoleted by: 112100-03 SMS 1.1: msgGen messages above 50100 not h 112117|01|Oct/18/01| | |O| |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|Obsoleted by: 112099-04 SMS 1.1: poweroff System board clears requ 112118|01|Oct/18/01| | | | |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: sc1: poweron sc0 fails to power on sc0 after poweroff iss -112119|01|Mar/28/02| | | | |8|sparc;|SUNWvld:1.0,REV=2001.05.04;SUNWvldx:1.0,REV=2001.05.04;|SunOS 5.8: vlan 1.0 driver patch +112119|04|May/27/03| | | | |8|sparc;|SUNWvld:1.0,REV=2001.05.04;SUNWvldu:1.0,REV=2001.05.04;SUNWvldx:1.0,REV=2001.05.04;|SunOS 5.8: vlan driver patch 112120|01|Nov/07/01| | | | |7|sparc;|SUNWarc:11.7.0,REV=1998.09.01.04.16;SUNWcsl:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7:: libmapmalloc Patch 112121|01|Nov/07/01| | | | |7_x86|i386;|SUNWarc:11.7.0,REV=1998.09.01.04.53;SUNWcsl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86:: libmapmalloc Patch 112123|01|Oct/18/01| | |O| |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|Obsoleted by: 112100-04 SMS 1.1: hpost(1M) hung in door_call(3DOOR -112125|04|Jul/24/02| | | | |Unbundled|sparc;|SUNWosafw:01.54;SUNWosar:01.54;SUNWosau:01.54;|RAID Manager 6.22.1: generic RM6.22.1 Solaris 2.6 and 7 patch -112126|04|Jul/24/02| | | | |Unbundled|sparc;|SUNWosafw:01.54;SUNWosar:01.54;SUNWosau:01.54;|RAID Manager 6.22.1: generic RM6.22.1 Solaris 8 patch -112127|03|Jul/31/02| | | | |Unbundled|||Hardware/PROM: Sun Fire 6800/4810/4800/3800 Systems flashprom upda +112125|08|Nov/26/03| | | | |Unbundled|sparc;|SUNWosafw:06.22,REV=01.54;SUNWosar:06.22,REV=01.54;SUNWosau:06.22,REV=01.54;|RAID Manager 6.22.1: generic RM6.22.1 Solaris 2.6 and 7 patch +112126|08|Nov/26/03| | | | |Unbundled|sparc;|SUNWosafw:06.22,REV=01.54;SUNWosar:06.22,REV=01.54;SUNWosau:06.22,REV=01.54;|RAID Manager 6.22.1: generic RM6.22.1 Solaris 8 and 9 patch +112127|03|Jul/31/02| | |O| |Unbundled|||Obsoleted by: 112884-01 Hardware/PROM: Sun Fire 6800/4810/4800/380 112132|01|Oct/30/01| | | | |Trusted_Solaris_8|sparc;|SUNWdtdte:1.4,REV=10.2000.10.29;|Trusted Solaris 8: dtlogin, extra spaces in user name result in wr 112133|01|Oct/30/01| | | | |Trusted_Solaris_8_x86|i386;110763-01;|SUNWdtdte:1.4,REV=10.2000.10.29;|Trusted Solaris 8_x86: dtlogin, extra spaces in user name result i 112134|02|Feb/14/02| | | | |Unbundled|sparc;|SUNWnbtrk:3.2GA_J0820226;|Netbackup 3.2 SQL-BackTrack Database Agent S0800492 112135|01|Nov/27/01| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: usr/lib/libmapmalloc.so.1 patch 112136|01|Nov/27/01| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: Fix for bugid 4039239 lost in 64-bit port -112137|02|Jun/12/02| | | | |8|sparc.sun4u;|SMEvplr:1999.10.19.10.29;SMEvplu:1999.10.19.10.29;|SunOS 5.8: Support for Network Equipment Provider platforms +112137|02|Jun/12/02| | | | |8|sparc.sun4u;|SMEvplr:3.2,REV=1999.10.19.10.29;SMEvplu:3.4,REV=1999.10.19.10.29;|SunOS 5.8: Support for Network Equipment Provider platforms 112138|01|Nov/05/01|R| | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: usr/bin/domainname patch -112139|01|Nov/05/01|R| | | |8_x86|i386;108992-18;108828-16;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: usr/bin/domainname patch -112140|01|Nov/15/01| | | | |Unbundled|110208-07;||Lomlite2 lom_update_eeprom patch -112141|01|Jan/14/02| | | | |Unbundled|||L9 robotics firmware upgrade +112139|01|Nov/05/01|R| | | |8_x86|i386;108992-18;108828-16;108994-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: usr/bin/domainname patch +112140|03|Jan/07/03| | | | |Unbundled|110208-07;||Netra Lights Out Management 2.0: Lomlite2 lom_update_eeprom patch +112141|02|Apr/08/03| | | | |Unbundled|||L9 robotics firmware upgrade 112142|01|Feb/26/02| | | | |8|sparc;|SUNWulcf:1.5,REV=1999.12.03.14.40;|SunOS 5.8: Configuration file fix for mp 112143|01|Feb/26/02| | | | |8_x86|i386;|SUNWulcf:1.5,REV=1999.12.03.14.40;|SunOS 5.8_x86: Configuration file fix for mp. 112144|01|Feb/22/02| | | | |8|sparc;|SUNWdews2:2.1.0,REV=2000.10.30.14.01;SUNWesws2:2.1.0,REV=2000.10.30.14.02;SUNWfrws2:2.1.0,REV=2000.10.30.14.01;SUNWitws2:2.1.0,REV=2000.10.30.14.02;SUNWsvws2:2.1.0,REV=2000.10.30.14.02;|SunOS 5.8: Packaging error in European Solaris Product Registry @@ -6163,85 +6308,91 @@ 112150|04|Nov/15/01| |S| | |Unbundled|sparc;|SRSsymod:1.4;|SRS 2.1 SunMC Agent stability 112152|01|Nov/08/01| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: check_host -b believes host is up incorrectly 112153|01|Oct/30/01| | | | |Unbundled|sparc;|SUNWesscp:3.0-1.0,REV=2.8.2001-08-17;SUNWesscs:3.0-1.0,REV=2.8.2001-08-17;|SunMC 3.0: re-enable PDSM module -112158|01|Feb/12/02| | | | |8|sparc;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch SUNWhea header files -112159|01|Feb/12/02| | | | |8|sparc;112158-01;|SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch wrsm.so wrsmd.so +112158|03|Jan/23/03| | | | |8|sparc;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch SUNWhea header files +112159|02|Jan/02/03| | | | |8|sparc;112158-01;|SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch wrsm.so wrsmd.so 112160|01|Feb/12/02| | | | |8|sparc;sparc.sun4u;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvmx:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWpstl:11.8.0,REV=2000.01.08.18.12;SUNWpstlx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: platform links SUNW,Netra-T12 SUNW,Netra-T4 -112161|02|Feb/13/02| | | | |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: remove libprtdiag_psr.so.1 of SUNW,Netra-T12 SUNW,Netra +112161|03|Dec/04/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.13.13.41;|SunOS 5.8: remove libprtdiag_psr.so.1 of SUNW,Netra-T12 SUNW,Netra 112162|03|Feb/13/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch Netra T12 Lw8 driver 112163|01|Feb/13/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch Netra T4 Lombus 112164|01|Feb/13/02| | | | |8|sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch Netra-T12 sgfru driver 112165|01|Feb/12/02| | | | |8|sparc;|SUNWbtool:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch usr/bin/rpcgen 112166|01|Feb/12/02| | | | |8_x86|i386;|SUNWbtool:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/rpcgen patch 112167|01|Feb/22/02| | | | |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch usr/platform/SUNW,UltraAX-i2 symlink -112168|01|Feb/22/02| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch dmfe and mii header file +112168|03|Nov/13/03| | | | |8|sparc;sparc.sun4u;|SUNWdmfex:11.8.0,REV=2001.08.24.14.48;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch dmfe and mii header file 112169|01|Feb/22/02| | | | |8|sparc.sun4u;112170-01;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch platform/SUNW,UltraAX-i2/kernel/misc/sparcv9/plat -112170|01|Feb/22/02| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: patch platform/sun4u/kernel/tod/sparcv9/todm5819 +112170|02|Feb/27/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: patch platform/sun4u/kernel/tod/sparcv9/todm5819 112171|01|Feb/13/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch usr/sbin/locator 112172|02|Feb/13/02| | | | |8|sparc.sun4u;|SUNWcti2x:11.8.0,REV=2000.04.20.22.44;|SunOS 5.8: patch SUNW,UltraSPARC-IIe-NetraCT-40 sc_nct 112173|01|Feb/14/02| | | | |8|sparc.sun4u;|SUNWcti2x:11.8.0,REV=2000.04.20.22.44;|SunOS 5.8: patch SUNW,UltraSPARC-IIe-NetraCT-40 acebus.conf 112174|01|Feb/14/02| | | | |8|sparc.sun4u;109793-09;|SUNWcti2x:11.8.0,REV=2000.04.20.22.44;SUNWctu:11.8.0,REV=2000.04.01.16.21;|SunOS 5.8: patch platform link -112178|01|Nov/14/01| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: ssp_config patch +112178|02|Aug/08/03| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: ssp_config patch 112179|01|Oct/30/01| | | | |Unbundled|sparc;|SUNWesadf:ssdr_Build16,REV=2.8.2001.08.21;SUNWessdf:ssdr_Build16,REV=2.6.2001.08.21;|Sun Management Center 3.0 Enable DR for Sun Fire 15K 112183|03|Feb/27/02| | | | |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWdelu:11.9,REV=2001.08.21.16.49;SUNWdeos:11.5.1,REV=1999.12.13.19.17;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWeslu:11.9,REV=2001.08.21.16.50;SUNWesos:11.5.1,REV=1999.12.13.19.16;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrlu:11.9,REV=2001.08.21.16.49;SUNWfros:11.5.1,REV=1999.12.13.19.15;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitlu:11.9,REV=2001.08.21.16.50;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvlu:11.9,REV=2001.08.21.16.51;SUNWsvos:11.5.1,REV=1999.12.17.14.47;|SunOS 5.8: translations for s8u7 112184|03|Feb/27/02| | | | |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdelu:11.9,REV=2001.08.21.16.43;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWeslu:11.9,REV=2001.08.21.16.46;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrlu:11.9,REV=2001.08.21.16.41;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitlu:11.9,REV=2001.08.21.16.49;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvlu:11.9,REV=2001.08.21.16.56;SUNWsvos:11.5.1,REV=1999.12.17.15.00;|SunOS 5.8_x86: translations for s8u7 112185|01|Mar/08/02| | | | |8_x86|i386;|SUNWrmodr:1.1.0,REV=1999.12.22.16.52;SYMhisl:1.1.0,REV=1999.12.22.14.01;|SunOS 5.8_x86: patch realmode -112186|05|Jun/13/02| | | | |Unbundled|||Hardware/PROM: Sun Fire 880 Flash PROM Update +112186|12|Dec/24/03| | | | |Unbundled|||Hardware/PROM: Sun Fire V880 Flash PROM Update 112187|01|Nov/29/01| | | | |8|sparc;|SUNWinst:11.8,REV=1999.12.16.15.15;|SunOS 5.8: Jumpstart patch 112188|01|Nov/29/01| | | | |8_x86|i386;|SUNWinst:11.8,REV=1999.12.16.15.36;|SunOS 5.8_x86: Jumpstart patch 112190|02|Apr/01/02| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: snmpd is not being updated for high temperatures -112191|01|Jun/14/02| | | | |Unbundled|sparc;|SUNWemalb:2001.09.16.07.27;SUNWemapp:2001.09.05.14.13;SUNWemcgd:2001.09.05.14.13;SUNWemcgs:2001.09.16.07.27;SUNWemcpa:2001.09.05.14.13;SUNWemdmn:2001.09.05.14.13;SUNWemipa:2001.09.05.14.13;SUNWemjme:2001.09.05.14.13;SUNWemjmk:2001.09.05.14.13;SUNWemmis:2001.09.16.07.27;SUNWemrdb:2001.09.05.14.13;|Solstice Enterprise Manager 4.1 Patch 1 +112191|04|Nov/11/03| | | | |Unbundled|sparc;|SUNWemalb:4.1,REV=2001.09.16.07.27;SUNWemapp:4.1,REV=2001.09.05.14.13;SUNWembc:4.1,REV=2001.09.05.14.13;SUNWemcgd:4.1,REV=2001.09.05.14.13;SUNWemcgs:4.1,REV=2001.09.16.07.27;SUNWemcpa:4.1,REV=2001.09.05.14.13;SUNWemdmn:4.1,REV=2001.09.05.14.13;SUNWemipa:4.1,REV=2001.09.05.14.13;SUNWemjme:4.1,REV=2001.09.05.14.13;SUNWemjmk:4.1,REV=2001.09.05.14.13;SUNWemmis:4.1,REV=2001.09.16.07.27;SUNWemrdb:4.1,REV=2001.09.05.14.13;|Solstice Enterprise Manager 4.1 Patch 4 112192|01|Nov/06/01| | |O| |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|Obsoleted by: 112099-06 SMS 1.1: dsmd leaks file descriptors 112193|01|Oct/26/01| | | | |Unbundled|||Update 3.2 for Forte for Java, release 3.0, Community Edition -112200|01|Jan/30/02| | | | |Unbundled|sparc;105375-26;105357-04;105181-28;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 2.6 -112201|01|Jan/30/02| | | | |Unbundled|sparc;106541-17;107473-07;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 7 -112202|01|Jan/30/02| | | | |Unbundled|sparc;111413-04;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 8 -112218|01|Nov/13/01|R|S| | |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: pam_ldap.so.1 patch -112219|01|Nov/13/01|R|S| | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: pam_ldap.so.1 patch -112220|01|Nov/27/01| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: kernel/misc/nfssrv patch -112221|01|Nov/27/01| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch kernel/misc/nfssrv -112237|05|Jul/15/02|R|S| | |8|sparc;109223-02;|SUNWcsl:2000.01.08.18.12;SUNWcslx:2000.01.08.18.12;|SunOS 5.8: mech_krb5.so.1 patch -112238|02|Apr/04/02|R|S| | |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mech_krb5.so.1 patch -112240|02|Apr/05/02| |S| | |8_x86|i386;|SUNWk5pu:11.8.0,REV=1999.12.07.03.31;|SunOS 5.8_x86: Supplemental Encryption Kerberos 5 mech_krb5.so.1 p +112200|03|Mar/25/03| | | | |Unbundled|sparc;105375-26;105357-04;105181-31;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 2.6 +112201|03|Mar/25/03| | | | |Unbundled|sparc;106541-19;107473-07;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 2.7 +112202|03|Mar/25/03| | | | |Unbundled|sparc;111413-06;109529-06;108827-19;108993-18;|VRTSvxvm:3.1.1,REV=06.06.2001.11.35;|Veritas Volume Manager 3.1.1m-ib: general patch for Solaris 2.8 +112218|01|Nov/13/01|R|S|O| |8|sparc;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-18 SunOS 5.8:: pam_ldap.so.1 patch +112219|01|Nov/13/01|R|S|O| |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86:: pam_ldap.so.1 patch +112220|04|Apr/22/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: kernel/misc/nfssrv patch +112221|03|Nov/13/02| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch kernel/misc/nfssrv +112230|01|Jan/13/03| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: showdevices does not display base address for system boar +112232|03|Sep/12/02| | |O| |8|sparc;sparc.sun4u;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 113263-05 SunOS 5.8: libprtdiag_psr.so.1 for NEP pla +112233|11|Dec/23/03|R|S| | |9|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcpr:11.9.0,REV=2002.04.06.15.27;SUNWcpr:11.9.0,REV=2002.04.09.12.25;SUNWcprx:11.9.0,REV=2002.04.06.15.27;SUNWcprx:11.9.0,REV=2002.04.09.12.25;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWdrcrx:11.9.0,REV=2002.04.06.15.27;SUNWefclx:11.9.0,REV=2002.04.06.15.27;SUNWefcux:11.9.0,REV=2002.04.06.15.27;SUNWefcx:11.9.0,REV=2002.04.06.15.27;SUNWefcx:11.9.0,REV=2003.01.10.11.57;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.09.12.25;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWmdbx:11.9.0,REV=2002.04.06.15.27;SUNWncar:11.9.0,REV=2002.04.06.15.27;SUNWncarx:11.9.0,REV=2002.04.06.15.27;SUNWncau:11.9.0,REV=2002.04.06.15.27;SUNWncaux:11.9.0,REV=2002.04.06.15.27;SUNWnfscr:11.9.0,REV=2002.04.06.15.27;SUNWnfscx:11.9.0,REV=2002.04.06.15.27;SUNWnisu:11.9.0,REV=2002.04.06.15.27;SUNWpd:11.9.0,REV=2002.04.06.15.27;SUNWpdx:11.9.0,REV=2002.04.06.15.27;SUNWpmu:11.9.0,REV=2002.04.06.15.27;SUNWpmux:11.9.0,REV=2002.04.06.15.27;SUNWsxr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Kernel Patch +112234|08|Aug/01/03|R|S| | |9_x86|i386;i386.i86pc;|SUNWcar:11.9.0,REV=2002.11.04.02.51;SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWmdb:11.9.0,REV=2002.11.04.02.51;SUNWnisu:11.9.0,REV=2002.11.04.02.51;SUNWpmu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Kernel Patch +112237|09|Nov/05/03|R|S| | |8|sparc;109223-02;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWgssk:11.8.0,REV=2000.01.08.18.12;SUNWgsskx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mech_krb5.so.1 patch +112238|08|Nov/05/03|R|S| | |8_x86|i386;109224-02;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWgssk:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: mech_krb5.so.1 patch +112240|07|Nov/06/03| |S| | |8_x86|i386;109224-02;|SUNWk5pk:11.8.0,REV=1999.12.07.03.31;SUNWk5pu:11.8.0,REV=1999.12.07.03.31;|SunOS 5.8_x86: Supplemental Encryption Kerberos V5: mech_krb5.so.1 112241|02|Feb/21/02| | | | |Unbundled|sparc;|SUNWSMSlp:1.1.0,REV=2001.08.23.11.39;|SMS 1.1: THCE traps cause E$ Tag ECC Test failure -112244|01|Jan/14/02| | | | |Unbundled|||Hardware/FCode: SBus Dual Fibre Channel Host Adapter +112244|03|Nov/13/03| | | | |Unbundled|||Hardware/FCode: SBus Dual Fibre Channel Host Adapter 112247|01|Dec/20/01| | | | |Unbundled|sparc;|SUNWsspdo:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: netcon_server dies if /etc/.syslog_door has wrong permits -112248|02|May/10/02| | | | |Unbundled|sparc;|SUNWsspdo:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: netcon_server dies if /etc/.syslog_door has wrong permits -112249|01|Feb/26/02| | | | |8|sparc;112161-02;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|SunOS 5.8: libprtdiag_psr.so.1 SUNW,Netra-T4 SUNW,Netra-T12 patch -112250|01|Feb/05/02| | | | |Unbundled|sparc;|SUNWvts:4.5,REV=08.01.08.15,OE=5.8;SUNWvtsx:4.5,REV=08.01.08.15,OE=5.8;|SunVTS4.5 Test patch +112248|03|Nov/19/02| | | | |Unbundled|sparc;|SUNWsspdo:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: netcon_server dies if /etc/.syslog_door has wrong permits +112249|04|Jun/20/03| | |O| |8|sparc;112161-02;|SUNWpiclu:11.8.0,REV=2000.08.15.00.06;|Obsoleted by: 109873-22 SunOS 5.8: libprtdiag_psr.so.1 SUNW,Netra- +112250|05|Jul/07/03| | | | |Unbundled|sparc;|SUNWvts:4.5,REV=08.01.08.15,OE=5.8;SUNWvtsx:4.5,REV=08.01.08.15,OE=5.8;|SunVTS4.5 Test patch 112254|01|Feb/27/02|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/sched/TS patch 112255|01|Feb/27/02|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/sched/TS patch 112260|01|Feb/11/02| | | | |Unbundled|sparc;|SUNWSMSod:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: hme0 and eri1 cannot be used in the same IPMP pathgroup 112261|02|Apr/03/02| | | | |Unbundled|sparc;|SUNWsspdr:3.5.0,REV=2001.08.21.20.45;SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: moveboard and addboard are core dumping -112264|02|Nov/27/01| | | | |Unbundled|sparc;110651-02;110651-08;110651-10;|SUNWscor:3.0.0,REV=2000.10.01.01.00;SUNWscorx:3.0.0,REV=2000.10.01.01.00;110651-06|Obsoleted by: Sun Cluster 3.0 HA-Oracle - Oracle 9 +112264|02|Nov/27/01| | |O| |Unbundled|sparc;110651-02;110651-08;110651-10;|SUNWscor:3.0.0,REV=2000.10.01.01.00;SUNWscorx:3.0.0,REV=2000.10.01.01.00;110651-06|Obsoleted by: Sun Cluster 3.0 HA-Oracle - Oracle 9 112265|01|Nov/20/01| | | | |Unbundled|sparc;|SDRMsp32:5.2.3;|Sun Grid Engine 5.2.3 maintenance patch 112266|01|Nov/20/01| | | | |Unbundled|sparc;|SDRMsp64:5.2.3;|Sun Grid Engine 5.2.3 maintenance patch -112270|04|May/07/02| | | | |Unbundled|sparc;|SUNWscsap:3.0.0,REV=2001.06.18.15.51;|Sun Cluster 3.0: HA-SAP Patch -112271|04|Jun/05/02| | | | |Unbundled|||SunMTP7.2 Patch 4 -112274|01|Dec/21/01| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/acctcom patch -112275|01|Dec/21/01| | | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/acctcom patch -112276|03|Apr/30/02| | | | |Unbundled||| T3+ 2.01.00: System Firmware Update -112279|02|May/31/02|R| | | |8|sparc;|SUNW5ttfe:1999.10.12.16.31;SUNWcbcp:1999.10.12.16.33;SUNWcttfe:1999.10.12.16.33;SUNWcwbcp:1999.10.12.16.33;SUNWcxoft:1999.10.12.16.33;SUNWgttfe:1999.10.12.16.38;SUNWhbcp:1999.10.12.16.26;SUNWhttfe:1999.10.12.16.26;SUNWhwbcp:1999.10.12.16.26;SUNWkbcp:1999.10.12.16.19;SUNWkttfe:1999.11.24.14.29;SUNWkwbcp:1999.10.12.16.19;|SunOS 5.8: pkgrm failed during upgrade from Solaris 8 to Solaris 9 -112280|02|May/31/02|R| | | |8_x86|i386;|SUNW5ttfe:1999.10.12.15.11;SUNWcttfe:1999.10.12.15.13;SUNWcxoft:1999.10.12.15.13;SUNWgttfe:1999.10.12.15.20;SUNWhttfe:1999.10.12.15.04;SUNWkttfe:1999.11.24.14.29;|SunOS 5.8_x86: pkgrm failed during upgrade from Solaris 8 to Solar +112270|05|May/12/03| | | | |Unbundled|sparc;|SUNWscsap:3.0.0,REV=2001.06.18.15.51;|Sun Cluster 3.0: HA-SAP Patch +112271|11|Sep/08/03| | | | |Unbundled|||SunMTP7.2 Patch 11 +112274|02|Jun/24/03| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/acctcom patch +112275|02|Jun/24/03| | | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/acctcom patch +112276|04|Sep/06/02| | |O| B|Unbundled|||WITHDRAWN PATCH Obsoleted by: 112276-06 T3+ 2.01.01: System Firmwa +112276|08|Oct/13/03| | |O| B|Unbundled|||Obsoleted by: 112276-09 WITHDRAWN PATCH T3B 2.01.05: System Firmwa +112276|09|Nov/25/03| | | | |Unbundled|||T3B 2.01.06: System Firmware Update +112279|02|May/31/02|R| | | |8|sparc;|SUNW5ttfe:8.0,REV=1999.10.12.16.31;SUNWcbcp:8.0,REV=1999.10.12.16.33;SUNWcttfe:8.0,REV=1999.10.12.16.33;SUNWcwbcp:8.0,REV=1999.10.12.16.33;SUNWcxoft:8.0,REV=1999.10.12.16.33;SUNWgttfe:8.0,REV=1999.10.12.16.38;SUNWhbcp:8.0,REV=1999.10.12.16.26;SUNWhttfe:8.0,REV=1999.10.12.16.26;SUNWhwbcp:8.0,REV=1999.10.12.16.26;SUNWkbcp:8.0,REV=1999.10.12.16.19;SUNWkttfe:8.0,REV=1999.11.24.14.29;SUNWkwbcp:8.0,REV=1999.10.12.16.19;|SunOS 5.8: pkgrm failed during upgrade from Solaris 8 to Solaris 9 +112280|02|May/31/02|R| | | |8_x86|i386;|SUNW5ttfe:8.0,REV=1999.10.12.15.11;SUNWcttfe:8.0,REV=1999.10.12.15.13;SUNWcxoft:8.0,REV=1999.10.12.15.13;SUNWgttfe:8.0,REV=1999.10.12.15.20;SUNWhttfe:8.0,REV=1999.10.12.15.04;SUNWkttfe:8.0,REV=1999.11.24.14.29;|SunOS 5.8_x86: pkgrm failed during upgrade from Solaris 8 to Solar 112282|01|Dec/21/01| | | | |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: accounting prints bad values 112283|01|Dec/21/01| | | | |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: accounting prints bad values 112300|01|Dec/13/01|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: usr/bin/login Patch 112301|01|Dec/13/01|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86:: usr/bin/login Patch -112305|03|Jul/30/02| | | | |Unbundled|||SunMBM9.2 Patch 3 -112319|01|Jan/22/02| | | | |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: System Accounting Software Patch -112320|01|Jan/22/02| | | | |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: System Accounting Software Patch +112305|05|Feb/12/03| | | | |Unbundled|||SunMBM9.2 Patch 5 +112319|02|Mar/17/03| | | | |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: System Accounting Software Patch +112320|02|Mar/17/03| | | | |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: System Accounting Software Patch 112325|01|Jan/22/02|R| | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWudfr:11.8.0,REV=2000.01.08.18.12;SUNWudfrx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/fs/udfs and /kernel/fs/sparcv9/udfs patch 112326|01|Jan/22/02|R| | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWudfr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/fs/udfs patch -112327|02|Mar/13/02| | | | |Unbundled|sparc;sparc.sun4u;|SUNWcea:1.0,REV=2001.05.04;SUNWceax:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.04;SUNWcedu:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.04;|Sun GigaSwift Ethernet 1.0: driver patch -112328|01|Jan/22/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: /usr/sbin/rpcbind patch -112329|01|Jan/22/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/sbin/rpcbind patch +112327|17|Dec/22/03| |S| | |Unbundled|sparc;sparc.sun4u;sparc.sun4u1;|SUNWcea:1.0,REV=2001.05.04;SUNWceax:1.0,REV=2001.05.04;SUNWced:1.0,REV=2001.05.01;SUNWced:1.0,REV=2001.05.04;SUNWcedu:1.0,REV=2001.05.04;SUNWcedx:1.0,REV=2001.05.04;|Sun GigaSwift Ethernet 1.0: driver patch +112328|02|Nov/07/02| | | | |8|sparc;108827-33;108993-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/rpcbind patch +112329|02|Nov/07/02| | | | |8_x86|i386;108828-34;108994-18;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/rpcbind patch 112334|02|Mar/05/02|R| |O| |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-14 SunOS 5.8: /usr/include/sys/archsystm.h pa -112336|02|Jun/17/02| | | | |Unbundled|sparc;|SUNWvts:08.01.11.22,OE=5.8;SUNWvtsx:08.01.12.04,OE=5.8;|SunVTS4.6 patch +112336|09|Sep/03/03| | | | |Unbundled|sparc;|SUNWvts:4.6,REV=08.01.11.22,OE=5.8;SUNWvtsx:4.6,REV=08.01.12.04,OE=5.8;|SunVTS4.6 patch 112339|03|May/22/02| | | | |Unbundled|sparc;|SUNWSMSpd:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: Sscpost does not support the TI pci2050 bridge -112345|01|Jan/18/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8:: /usr/bin/pax patch -112346|01|Jan/18/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/bin/pax patch +112345|03|Jan/23/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/pax patch +112346|03|Jan/31/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/pax patch 112347|01|Apr/02/02| | | | |2.6|sparc;|SUNWarc:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/eject patch for non-vold devices 112348|01|Apr/02/02| | | | |2.6_x86|i386;|SUNWarc:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/eject patch for non-vold devices -112352|01|Feb/15/02| | | | |8_x86|i386.i86pc;|SUNWcar:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/i8042 and /kernel/drv/kb8042 patch +112352|02|Jan/07/03| |S| | |8_x86|i386.i86pc;108529-18;|SUNWcar:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/i8042 and /kernel/drv/kb8042 patch 112359|01|Jan/22/02| | |O| |8|sparc;112003-02;|SUNWi15cs:2.0,REV=1999.12.09.13.36;|Obsoleted by: 112003-03 SunOS 5.8: 64-bit apps can't create fontse 112365|01|Mar/08/02| | | | |2.6|sparc;|SUNWipc:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Application using ipcs -m runs much slower 112366|01|Mar/08/02| | | | |2.6_x86|i386;|SUNWipc:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Application using ipcs -m runs much slower @@ -6249,93 +6400,114 @@ 112371|01|Feb/15/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/ruptime patch 112372|01|Feb/15/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/ruptime patch 112383|01|Apr/11/02| | |O| |Unbundled|sparc;111909-04;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|Obsoleted by: 111909-06 VxVM 3.2: supplemental general patch for S -112385|02|Jul/16/02| | | | |Unbundled|sparc;|VRTSvxvm:03.09.2002.11.43;|VxVM 3.2s9: patch for Solaris 9 -112390|05|Jul/15/02| |S| | |8|sparc;109223-02;|SUNWk5pu:1999.12.07.04.22;SUNWk5pux:1999.12.07.04.22;|SunOS 5.8: Supplemental Encryption Kerberos V5: mech_krb5.so.1 pat +112385|05|Jun/25/03| |S| | |Unbundled|sparc;|VRTSvxvm:3.2,REV=03.09.2002.11.43;|VxVM 3.2s9: general patch for Solaris 9 +112390|08|Nov/06/03| |S| | |8|sparc;109223-02;|SUNWk5pk:11.8.0,REV=1999.12.07.04.22;SUNWk5pu:11.8.0,REV=1999.12.07.04.22;SUNWk5pux:11.8.0,REV=1999.12.07.04.22;|SunOS 5.8: Supplemental Encryption Kerberos V5: mech_krb5.so.1 pat +112392|06|Aug/20/03| |S| | |Unbundled|sparc;|VRTSvmfrc:3.5,REV=11.27.2002.12.35;VRTSvmfrm:3.5,REV=11.27.2002.12.35;VRTSvmjac:3.5,REV=11.27.2002.12.35;VRTSvmjam:3.5,REV=11.27.2002.12.35;VRTSvmman:3.5,REV=06.21.2002.23.14;VRTSvmzhc:3.5,REV=11.27.2002.12.35;VRTSvmzhm:3.5,REV=11.27.2002.12.35;VRTSvxvm:3.5,REV=06.21.2002.23.14;|VxVM 3.5: general patch for Solaris 7, 8, and 9 112394|01|Mar/01/02| | | | |8|sparc;|SUNWceuow:1.0,REV=1999.11.02.17.15;SUNWeeudt:1.0,REV=1999.12.20.13.15;SUNWi13cs:2.0,REV=1999.12.09.13.33;SUNWi15cs:2.0,REV=1999.12.09.13.36;SUNWi2cs:2.0,REV=1999.12.09.13.34;SUNWi5cs:2.0,REV=1999.12.09.13.35;SUNWi9cs:2.0,REV=1999.12.09.13.36;SUNWmeaow:1.0,REV=1999.12.08.12.11;SUNWnafow:1.0,REV=1999.12.08.12.11;SUNWnamdt:1.0,REV=1999.12.21.13.12;SUNWneuow:1.0,REV=1999.11.02.17.15;SUNWseuow:1.0,REV=1999.12.16.18.52;SUNWweuow:1.0,REV=1999.11.02.17.15;|SunOS 5.8: Print euro and other ext. chars 112395|01|Mar/01/02| | | | |8_x86|i386;|SUNWceuow:1.0,REV=1999.11.02.17.10;SUNWeeudt:1.0,REV=1999.12.20.13.27;SUNWi13cs:2.0,REV=1999.12.09.13.58;SUNWi15cs:2.0,REV=1999.12.09.14.00;SUNWi2cs:2.0,REV=1999.12.09.13.58;SUNWi5cs:2.0,REV=1999.12.09.13.59;SUNWi9cs:2.0,REV=1999.12.09.14.00;SUNWmeaow:1.0,REV=1999.12.08.12.40;SUNWnafow:1.0,REV=1999.12.08.12.40;SUNWnamdt:1.0,REV=1999.12.21.13.17;SUNWneuow:1.0,REV=1999.11.02.17.10;SUNWseuow:1.0,REV=1999.12.16.18.52;SUNWweuow:1.0,REV=1999.11.02.17.10;|SunOS 5.8_x86: Print euro and other ext. chars 112396|02|Mar/28/02|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/fgrep patch 112397|02|Mar/28/02|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/fgrep patch -112398|01|Feb/14/02| | | | |Unbundled|sparc;|SUNWeswga:3.0_Build73,REV=2.5.2001.12.07;|SunOS 5.1: Sun Management Center 3.0 PU 4 WGS patch +112398|04|Jun/24/03| | | | |Unbundled|sparc;|SUNWeswga:3.0_Build73,REV=2.5.2001.12.07;SUNWeswgs:3.0_Build73,REV=2.5.2001.12.07;|SunOS 5.1: Sun Management Center 3.0 PU 4 WGS patch 112399|01|Feb/14/02| | | | |Unbundled|sparc;|SUNWeswga:3.0_Build73,REV=2.6.2001.12.07;SUNWeswgs:3.0_Build73,REV=2.6.2001.12.07;|SunOS 5.6: Sun Management Center 3.0 PU 4 WGS patch 112400|01|Feb/14/02| | | | |Unbundled|sparc;|SUNWeswga:3.0_Build73,REV=2.7.2001.12.07;SUNWeswgs:3.0_Build73,REV=2.7.2001.12.07;|SunOS 5.7: Sun Management Center 3.0 PU 4 WGS patch -112401|03|Jul/22/02| | | | |Unbundled|sparc;|SUNWeswga:2.8.2001.12.07;SUNWeswgs:2.8.2001.12.07;|SunOS 5.8: Sun Management Center 3.0 PU 4 WGS patch +112401|04|Jun/24/03| | | | |Unbundled|sparc;|SUNWeswga:3.0_Build73,REV=2.8.2001.12.07;SUNWeswgs:3.0_Build73,REV=2.8.2001.12.07;|Sun Management Center 3.0 PU 4 WGS patch for Solaris 8 and Solaris 112403|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWnblot:3.4,REV=2000.06.20.08.31;|NetBackup 3.4 Lotus Notes NB_LOT_34_2 fix 112404|02|Mar/07/02| | |O| |Unbundled|sparc;110539-10;|SUNWmmgr:3.4,REV=2000.06.23.16.09;SUNWnetbp:3.4,REV=2000.06.23.16.03;|Obsoleted by: 110539-13 NetBackup 3.4 UNIX support for HCART/LTO d 112405|01|Feb/07/02| | | | |Unbundled|sparc;|SUNWnbsyb:3.4,REV=2000.06.20.08.31;|NetBackup 3.4 Sybase NB_SYB_34_1 fix +112407|05|Aug/14/03| | | | |Unbundled|sparc;|VRTSnetbp:4.5,REV=2002.03.26.15.05;|NetBackup 4.5 files fix +112408|01|May/12/03| | | | |Unbundled|sparc;|VRTSnbora:4.5,REV=2002.03.21.10.14;|NetBackup 4.5 NB_ORA_45_4_M fix +112409|01|Jun/03/03| | | | |Unbundled|sparc;|VRTSnbfis:4.5,REV=2002.03.21.10.33;|NetBackup 4.5 NB_FIS_45_4_M fix +112410|01|May/15/03| | | | |Unbundled|sparc;|VRTSnbsap:4.5,REV=2002.03.21.10.14;|NetBackup 4.5 NB_SAP_45_4_M fix +112411|02|Jun/03/03| | | | |Unbundled|sparc;|VRTSnbvlt:4.5,REV=2002.03.21.10.42;|NetBackup 4.5 NB_VLT_45_4_M fix +112412|01|Jan/23/03| | | | |Unbundled|sparc;112407-02;112411-01;|VRTSnbvlt:4.5,REV=2002.03.21.10.42;|NetBackup 4.5 NB_VLT_45_2_S0850 fix 112413|01|Feb/15/02| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: ruptime Patch 112414|01|Feb/15/02| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86:: ruptime Patch 112417|01|Feb/15/02| | | | |7|sparc.sun4u;sparc.sun4us;|SUNWcar:11.7.0,REV=1998.09.01.04.16;SUNWcar:11.7.0,REV=1999.01.11.15.30;SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;|SunOS 5.7: environ Patch 112425|01|Feb/19/02|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fs/ufs/mount and /etc/fs/ufs/mount patch -112429|01|Jun/28/02| | | | |Unbundled|i86pc,sparc;|SUNWsmgr2:2002.05.10.09.31;|Sun StorEdge Network Fiber Channel 4.0: SANbox Manager Patch -112438|01|Mar/28/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/random patch -112439|01|Apr/16/02| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/random patch -112442|05|May/01/02| | | | |Unbundled|sparc;|SUNWcvm:3.0.0,REV=2000.10.01.01.00;SUNWcvmr:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: OPS w/CVM patch +112429|08|Jan/10/03| | | | |Unbundled|i86pc,sparc;|SUNWsmgr2:1.0, REV=2002.05.10.09.31;|Sun StorEdge Network Fiber Channel 4.0: SANbox Manager Patch +112433|03|Sep/26/03| | | | |Unbundled|i86pc,sparc;|SUNWsmgr2:2.1, REV=2003.03.05.14.20;|Sun StorEdge Network Fiber Channel 4.2: SANbox Manager Patch +112434|04|Sep/26/03| | | | |Unbundled|i86pc,sparc;|SUNWsmgr2:2.1, REV=2003.03.05.14.20;|Sun StorEdge Network Fiber Channel 4.2: SANbox Manager Patch +112438|02|Aug/15/03| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWmdb:11.8.0,REV=2000.01.08.18.12;SUNWmdbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/random patch +112439|02|Aug/15/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWmdb:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/random patch +112442|06|Sep/15/03| | | | |Unbundled|sparc;|SUNWcvm:3.0.0,REV=2000.10.01.01.00;SUNWcvmr:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: OPS w/CVM patch 112443|01|Jan/28/02| | | | |8|sparc;111846-02;|SUNWcfpl:11.8.0,REV=2001.07.14.21.42;108528-11|SunOS 5.8: cfgadm fp plug-in link generator 112446|02|Jul/12/02| | | | |Unbundled|sparc;|SUNWessrs:1.3;|SRS 2.2: Fruid fix for large systems. 112448|01|Mar/07/02| |S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: pt_chmod Patch 112449|01|Mar/07/02| |S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: pt_chmod Patch 112454|01|Mar/07/02| |S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: pt_chmod patch -112455|01|Mar/07/02| |S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: pt_chmod should call fdetach +112455|01|Mar/07/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: pt_chmod should call fdetach 112456|01|Mar/07/02| |S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: pt_chmod should call fdetach 112457|01|Mar/07/02| |S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: pt_chmod should call fdetach 112459|01|Mar/07/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/pt_chmod patch 112460|01|Mar/07/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/pt_chmod patch 112461|01|Feb/07/02| | | | |Unbundled|sparc;|SUNWessfp:3.0_build10a,REV=2.8.2000.11.16;|SunMC 3.0: can't get rid of the "Character String Failed To Update 112462|01|Apr/15/02| | | | |Unbundled|sparc;111365-04;|SUNWsbuc:6.0.1,REV=Build.174;|Solstice Backup 6.0: Product Patch -112463|01|Jun/04/02| | | | |Unbundled|solaris;|LGTOsap:rt_linuxnmo31.Build.90;|Solstice Backup Module for SAP R/3 2.1 Product Patch -112466|02|Jun/04/02| | |O| |Unbundled|sparc;111962-05;|SUNWsbus2:Build.186;|Obsoleted by: 111962-07 Solstice Backup 6.1: Product Patch +112463|01|Jun/04/02| | |O| |Unbundled|solaris;|LGTOsap:rt_linuxnmo31.Build.90;|Obsoleted by: 113557-01 Solstice Backup Module for SAP R/3 2.1 Pro +112465|03|Apr/18/03| |S| | |Unbundled|sparc;|SUNWsbuc:6.1.1,REV=238;SUNWsbum:6.1.1,REV=238;SUNWsbun:6.1.1,REV=238;SUNWsbus1:6.1.1,REV=238;SUNWsbus2:6.1.1,REV=238;|Solstice Backup 6.1 L10N: Product Patch +112466|02|Jun/04/02| | |O| |Unbundled|sparc;111962-05;|SUNWsbus2:6.1,REV=Build.186;|Obsoleted by: 111962-07 Solstice Backup 6.1: Product Patch +112467|02|Sep/17/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbuc:6.1,REV=Build.186;112469-01|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch +112468|01|Sep/10/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbun:6.1,REV=Build.186;|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch +112469|01|Sep/17/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbuc:6.1,REV=Build.186;112467-02|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch +112470|01|Aug/16/02| | | | |Unbundled|sparc;111365-04;|SUNWsbus1:6.0.1,REV=Build.174;|Solstice Backup 6.0: SBU 6.0.3 +112471|01|Sep/17/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbus1:6.1,REV=Build.186;|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch 112472|01|Mar/19/02| | | | |8|sparc;|SUNWtxfnt:8.0,REV=1999.10.12.16.41;|SunOS 5.8: Font2DTest2 abort when Lucida Sans Thai Typewriter sele 112473|01|Mar/19/02| | | | |8_x86|i386;|SUNWtxfnt:8.0,REV=1999.10.12.15.23;|SunOS 5.8_x86: Font2DTest2 abort if Lucida Sans Thai Typewriter se 112476|01|Feb/14/02| | |O| |Unbundled|||Obsoleted by: 112271-03 SunMTP7.2 Patch 2 (See WARNING below) -112477|02|Mar/29/02| | | | |Unbundled|||3270 Pathway1.5 Patch 2 -112481|04|Jun/28/02| | | | |Unbundled|sparc;|SUNWSMSop:2001.11.30.18.03;SUNWSMSr:2001.11.30.18.03;|SMS 1.2: AMX0=32768 and AMX1=0 on Centerplane 1 are not equal +112477|03|Jun/04/03| | | | |Unbundled|||3270 Pathway1.5 Patch 3 +112481|15|Dec/01/03| |S| | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: fomd, hwad, esmd, pcd patch 112482|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: rcfgadm exit error if -o unassign used when SB not in ACL -112483|04|Jul/26/02| | | | |Unbundled|sparc;|SUNWSMSop:2001.11.30.18.03;|SMS 1.2: hwad gethwadClientId can return wrong id -112484|02|Apr/19/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: esmd does not unregister w/ hwad in all transient threads +112483|05|Aug/19/02| | |O| |Unbundled|sparc;112481-05;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112481-06 SMS 1.2: hwad gethwadClientId can return w +112484|02|Apr/19/02| | |O| |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112483-05 SMS 1.2: esmd does not unregister w/ hwad 112485|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: addboard/moveboard platform or domain blacklist files che -112486|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: Error in chunk list updates on copy-rename events +112486|03|Mar/07/03| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: dxs patch 112487|01|Feb/06/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: kmd core dumps caused by memory corruption -112488|06|Jun/25/02| | | | |Unbundled|sparc;112483-01;|SUNWSMSpo:2001.11.30.18.03;|SMS 1.2: domain isolation not seen when degrading domain using set -112489|02|Jun/12/02| | | | |Unbundled|sparc;|SUNWsspop:2001.08.21.20.45;|SSP 3.5: failover reason should be logged at WARNING level -112490|01|Apr/09/02| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: lower Ambient Temperature Shutdown Setpoints and enable p +112488|13|Jul/22/03| | | | |Unbundled|sparc;112481-13;|SUNWSMSpo:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: hpost, redx, libxcpost Patch +112489|03|Aug/08/03| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP3.5: fod patch +112490|03|Aug/21/03| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: lower Ambient Temperature Shutdown Setpoints and enable p 112491|01|Apr/15/02| | | | |Unbundled|sparc;|SUNWsspst:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: ICT test "interconnect_test_cp" fails sb_conn.1 tests -112494|04|Jun/27/02| | | | |Unbundled|||Hardware/PROM: Sun Fire 6800/4810/4800/3800 Systems Firmware Updat -112499|03|Jul/19/02| | | | |Unbundled|sparc;|SUNWessda:2.8.2001.11.20;|SunMC 3.0: DCR is leaking memory -112500|01|Feb/15/02| | | | |Unbundled|||PROM: CP2040 OBP and SMC Flash PROM Update +112494|05|Sep/12/02| | | | B|Unbundled|||WITHDRAWN PATCH Hardware/PROM: Sun Fire 6800/4810/4800/3800 System +112494|08|Mar/12/03| | | | |Unbundled|||Hardware/PROM: Sun Fire 6800/4810/4800/3800 Systems Firmware Updat +112499|07|May/02/03| | | | |Unbundled|sparc;|SUNWesadf:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWessco:ser_pu4_Build08,REV=2.6.2001.11.20;SUNWessda:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWessdf:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWesspa:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWesspc:ser_pu4_Build08,REV=2.6.2001.11.20;SUNWessps:ser_pu4_Build08,REV=2.6.2001.11.20;|SunMC 3.0: libcfgserengeti.so pkgdr.so +112500|01|Feb/15/02| | | | B|Unbundled|||WITHDRAWN PATCH PROM: CP2040 OBP and SMC Flash PROM Update 112501|01|Feb/19/02| | | | |8|sparc;|SUNWdtdte:1.4,REV=10.1999.12.07;|CDE 1.4: dtcreate patch 112502|01|Feb/19/02| | | | |8_x86|i386;|SUNWdtdte:1.4,REV=10.1999.12.07;|CDE 1.4_x86: dtcreate patch -112504|01|Feb/15/02| | | | |Unbundled|||PROM Versions:OBP 4.0.48 (Sparc F/W version 1.0.2) and SMC 3.10.7 -112506|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhadm:2002.01.31.12.08;SUNWnhcdt:2002.01.31.12.08;SUNWnhcma:2002.01.31.12.08;SUNWnhcmb:2002.01.31.12.08;SUNWnhcmd:2002.01.31.12.08;SUNWnhfsa:2002.01.31.12.08;SUNWnhfsb:2002.01.31.12.08;SUNWnhpmb:2002.01.31.12.08;SUNWnhpms:2002.01.31.12.08;SUNWnhtp8:2002.01.31.12.08;|Netra HA Suite 2.0: Core Foundation Services Patch -112507|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhmaj:2002.01.31.12.08;SUNWnhmal:2002.01.31.12.08;|Netra HA Suite 2.0: Shared Foundation Services Patch +112504|03|Oct/31/03| | | | |Unbundled|||Hardware/PROM: CP2040 SPARC and SMC firmware update +112506|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhadm:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhcdt:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhcma:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhcmb:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhcmd:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhfsa:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhfsb:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhpmb:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhpms:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhtp8:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Core Foundation Services Patch +112507|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhmaj:2.0.2.2-5,REV=2002.01.31.12.08;SUNWnhmal:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Shared Foundation Services Patch 112508|01|Mar/28/02| | | | |Unbundled|sparc;|SUNWnhrbb:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Reliable Boot Service Patch -112510|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhccs:2002.01.31.12.08;|Netra HA Suite 2.0: Shared Application Services Patch -112511|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhins:2002.01.31.12.08;|Netra HA Suite 2.0: Installer Patch -112512|01|Jun/06/02| | | | |Unbundled|sparc;112511-02;|SUNWnhman:2002.01.31.12.08;|Netra HA Suite 2.0: Documentation Patch +112510|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhccs:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Shared Application Services Patch +112511|02|Jun/06/02| | | | |Unbundled|sparc;|SUNWnhins:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Installer Patch +112512|01|Jun/06/02| | | | |Unbundled|sparc;112511-02;|SUNWnhman:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Documentation Patch 112513|01|Mar/28/02| | | | |Unbundled|sparc;|SUNWnhmau:2.0.2.2-5,REV=2002.01.31.12.08;|Netra HA Suite 2.0: Contribution Patch 112516|01|Mar/22/02| | | | |Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.6.2000.01.03;|SunMC 2.1.1: System missing SSP platform information under SSP 3.4 +112516|02|Aug/12/02| | | | B|Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.6.2000.01.03;|WITHDRAWN SunMC 2.1.1: System missing SSP info under SSP 3.4 confi +112517|04|Oct/31/03| | | | |8|sparc;108528-13;|FJSVcpc:3.0,REV=2001.02.1301;FJSVcpcx:3.0,REV=2001.02.1301;|SunOS 5.8: Fujitsu CPU performance counters patch 112518|01|Feb/15/02| | | | |Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.7.2000.01.03;|SunMC 2.1.1: System missing SSP platform information under SSP 3.4 +112518|02|Aug/12/02| | | | B|Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.7.2000.01.03;|WITHDRAWN SunMC 2.1.1: System missing SSP platform info SSP 3.4 co 112519|01|Feb/15/02| | | | |Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.8.2000.01.03;|SunMC 2.1.1: System missing SSP platform information under SSP 3.4 +112519|02|Aug/12/02| | | | B|Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.8.2000.01.03;|WITHDRAWN SunMC 2.1.1: System missing SSP platform info SSP 3.4 co 112520|01|Feb/26/02| | | | |Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.5.2000.01.03;|SunMC 2.1.1: System missing SSP platform information under SSP 3.4 -112534|01|Apr/04/02| |S| | |Unbundled|sparc;|SUNWkrgdo:5.6.0,REV=99.06.23.12.09;SUNWkrggl:5.6.0,REV=99.06.23.12.09;|SEAM 1.0: Patch for Solaris 2.6 -112535|01|Apr/04/02| |S| | |Unbundled|i386;|SUNWkrgdo:5.6.0,REV=99.06.23.11.55;SUNWkrggl:5.6.0,REV=99.06.23.11.55;|SEAM 1.0: Patch for Solaris 2.6_x86 -112536|01|Apr/04/02| |S| | |Unbundled|sparc;|SUNWkrgdo:5.7.0,REV=1999.06.22.12.10;SUNWkrggl:5.7.0,REV=1999.06.22.12.10;|SEAM 1.0: Patch for Solaris 7 -112537|01|Apr/04/02| |S| | |Unbundled|i386;|SUNWkrgdo:5.7.0,REV=1999.06.22.12.11;SUNWkrggl:5.7.0,REV=1999.06.22.12.11;|SEAM 1.0: Patch for Solaris 7_x86 -112539|01|Apr/15/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: DSMD should increase POST level to handle repeated failur -112540|04|Jul/16/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWifb:2002.01.29;SUNWifbcf:2002.01.29;SUNWifbw:2002.01.29;SUNWifbx:2002.01.29;|SunOS 5.9: Expert3D IFB Graphics Patch +112520|02|Aug/12/02| | | | B|Unbundled|sparc;|SUNWessfp:2.1.1_build04,REV=2.5.2000.01.03;|WITHDRAWN SunMC 2.1.1: System missing SSP platform info SSP 3.4 co +112534|03|Nov/13/03| |S| | |Unbundled|sparc;|SUNWkrgdo:5.6.0,REV=99.06.23.12.09;SUNWkrggl:5.6.0,REV=99.06.23.12.09;|SEAM 1.0: patch for Solaris 2.6 +112535|03|Nov/13/03| |S| | |Unbundled|i386;|SUNWkrgdo:5.6.0,REV=99.06.23.11.55;SUNWkrggl:5.6.0,REV=99.06.23.11.55;|SEAM 1.0: patch for Solaris 2.6_x86 +112536|04|Nov/05/03| |S| | |Unbundled|sparc;|SUNWkrgdo:5.7.0,REV=1999.06.22.12.10;SUNWkrggl:5.7.0,REV=1999.06.22.12.10;|SEAM 1.0: Patch for Solaris 7 +112537|04|Nov/05/03| |S| | |Unbundled|i386;|SUNWkrgdo:5.7.0,REV=1999.06.22.12.11;SUNWkrggl:5.7.0,REV=1999.06.22.12.11;|SEAM 1.0: patch for Solaris 7_x86 +112539|04|Apr/30/03| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: DSMD patch +112540|18|Sep/02/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWifb:9.0.0,REV=2002.01.29;SUNWifbcf:9.0.0,REV=2002.01.29;SUNWifbw:9.0.0,REV=2002.01.29;SUNWifbx:9.0.0,REV=2002.01.29;|SunOS 5.9: Expert3D IFB Graphics Patch 112542|01|Mar/07/02|R| | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: fgrep fails with "wordlist too large" 112543|01|Mar/07/02|R| | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: fgrep fails with "wordlist too large" -112547|01|Feb/15/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: SMS software will not start after upgrade from SMS1.1 +112547|01|Feb/15/02| | |O| |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112481-08 SMS 1.2: SMS software will not start after 112552|02|May/23/02| | | | |Unbundled|sparc;|SUNWSMSpd:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: Sscpost does not support the TI pci2050 bridge 112560|01|Mar/20/02| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /kernel/drv/wc -112562|01|May/07/02| | | | |Unbundled|sparc;110648-15;|SUNWscnb:3.0.0,REV=2001.09.14.00.00;|Sun Cluster 3.0: HA-Netbackup Patch -112563|01|Jun/21/02| | | | |Unbundled|sparc;|SUNWscr:2002.04.18.03.00;SUNWscu:2002.04.18.03.00;|Sun Cluster 3.0: Core/Sys Admin Patch -112564|04|Aug/06/02| | | | |8|sparc;sparc.sun4u;|SUNWgfb:2002.03.04;SUNWgfbcf:2002.03.04;SUNWgfbr:2002.03.04;SUNWgfbw:2002.03.04;SUNWgfbx:2002.03.04;|SunOS 5.8: XVR-1000 GFB Graphics Patch -112565|04|Jul/25/02| | | | |9|sparc;sparc.sun4u;|SUNWgfb:2002.02.12;SUNWgfbcf:2002.02.12;SUNWgfbr:2002.02.12;SUNWgfbw:2002.02.12;SUNWgfbx:2002.02.12;|SunOS 5.9: XVR-1000 GFB Graphics Patch -112566|02|Jun/21/02| | | | |Unbundled|sparc;|SUNWscsyb:2001.06.18.15.51;|Sun Cluster 3.0: HA-Sybase patch -112567|01|May/09/02| | | | |Unbundled|sparc;|SUNWscbv:3.0.0,REV=2001.09.14.00.00;|Sun Cluster 3.0: HA-Broad Vision +112562|05|Aug/21/03| | | | |Unbundled|sparc;|SUNWscnb:3.0.0,REV=2001.09.14.00.00;|Sun Cluster 3.0: HA-Netbackup Patch +112563|11|Sep/15/03| | | | |Unbundled|sparc;|SUNWscdev:3.0.0,REV=2002.04.18.03.00;SUNWscr:3.0.0,REV=2002.04.18.03.00;SUNWscu:3.0.0,REV=2002.04.18.03.00;|Sun Cluster 3.0: Core/Sys Admin Patch +112564|15|Dec/01/03| | | | |8|sparc;sparc.sun4u;|SUNWgfb:8.0.0,REV=2002.03.04;SUNWgfbcf:8.0.0,REV=2002.03.04;SUNWgfbr:8.0.0,REV=2002.03.04;SUNWgfbw:8.0.0,REV=2002.03.04;SUNWgfbx:8.0.0,REV=2002.03.04;|SunOS 5.8: XVR-1000 GFB Graphics Patch +112565|13|Jun/09/03| | | | |9|sparc;sparc.sun4u;|SUNWgfb:9.0.0,REV=2002.02.12;SUNWgfbcf:9.0.0,REV=2002.02.12;SUNWgfbr:9.0.0,REV=2002.02.12;SUNWgfbw:9.0.0,REV=2002.02.12;SUNWgfbx:9.0.0,REV=2002.02.12;|SunOS 5.9: XVR-1000 GFB Graphics Patch +112566|04|May/12/03| | | | |Unbundled|sparc;|SUNWscsyb:3.0.0,REV=2001.06.18.15.51;|Sun Cluster 3.0: HA-Sybase patch +112567|02|May/12/03| | | | |Unbundled|sparc;|SUNWscbv:3.0.0,REV=2001.09.14.00.00;|Sun Cluster 3.0: HA-Broad Vision 112568|02|May/06/02| | | | |Unbundled|sparc;|SUNWscgds:3.0.0,REV=2001.09.14.00.00;|Sun Cluster 3.0: Generic Data Service -112570|02|Jul/18/02| | | | |Unbundled|sparc;|SUNWsrcet:5.8.01.12.19;|SRS 2.2: srs setup fails because SunMC is relocatable and SRS is n -112572|01|Jul/26/02| | | | |Unbundled|sparc;|SUNWlzlb:1.2.18;|PC NetLink 1.2 Legato Backup Extension fixes +112570|06|Feb/19/03| | | | |Unbundled|sparc;|SUNWsrcet:2.2,REV=5.8.01.12.19;|SRS 2.2: PersistentQueueException +112572|01|Jul/26/02| | | | |Unbundled|sparc;|SUNWlzlb:1.2,REV=1.2.18;|PC NetLink 1.2 Legato Backup Extension fixes 112575|01|Feb/22/02| | | | |Unbundled|sparc;112265-01;|SDRMsp32:5.2.3;|Sun Grid Engine 5.2.3 shadow master functionality patch 112576|01|Feb/22/02| | | | |Unbundled|sparc;112266-01;|SDRMsp64:5.2.3;|Sun Grid Engine 5.2.3 shadow master functionality patch 112580|02|Jun/26/02| | | | |Unbundled|sparc;|SUNWstade:2.0.06.010;|SUNWstade Brocade, T3 2.1 F/W, 3900SL and 6900SL Support patch @@ -6353,32 +6525,41 @@ 112593|01|Mar/04/02| |S|O| |Unbundled|sparc;109699-04;|SUNWesagt:2.1.1_Build05,REV=2.6.2000.01.12;|Obsoleted by: 109699-05 SunMC 2.1.1 Patch for the snmp security vu 112594|01|Mar/04/02| |S|O| |Unbundled|sparc;109696-04;|SUNWesagt:2.1.1_Build05,REV=2.7.2000.01.12;|Obsoleted by: 109696-05 SunMC 2.1.1 Patch for the snmp security vu 112595|01|Mar/04/02| |S|O| |Unbundled|sparc;109697-04;|SUNWesagt:2.1.1_Build05,REV=2.8.2000.01.12;|Obsoleted by: 109697-05 SunMC 2.1.1 Patch for the snmp security vu -112597|01|Apr/08/02| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/acct/runacct patch +112597|03|Nov/13/03| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/acct/runacct patch +112598|03|Nov/18/03| | | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/acct/runacct patch 112599|01|Mar/15/02| | |O| |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112481-02 SMS 1.2: PCD not being propagated to SPARE 112600|01|Apr/19/02| | | | |Unbundled|sparc;|SUNWbak:1.6,REV=2000.03.01.00.00;SUNWbakx:1.6,REV=2000.03.01.00.00;SUNWbau:1.6,REV=2000.03.01.00.00;|Bandwidth Manager 1.6: product patch -112601|02|Jun/27/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:2002.01.15;TSIpgxw:2002.01.15;TSIpgxx:2002.01.15;|SunOS 5.9: PGX32 Graphics -112604|01|Apr/02/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: le Patch -112605|03|Jun/27/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWatfsr:2000.01.08.18.12;SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;|SunOS 5.8: /kernel/fs/autofs and /kernel/fs/sparcv9/autofs patch +112601|05|Dec/10/02|R| | | B|9|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:9.0.0,REV=2002.01.15;TSIpgxw:9.0.0,REV=2002.01.15;TSIpgxx:9.0.0,REV=2002.01.15;|WITHDRAWN PATCH SunOS 5.9: PGX32 Graphics +112601|09|Oct/28/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|TSIpgx:9.0.0,REV=2002.01.15;TSIpgxw:9.0.0,REV=2002.01.15;TSIpgxx:9.0.0,REV=2002.01.15;|SunOS 5.9: PGX32 Graphics +112604|02|Sep/24/03|R|S| | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: le patch +112605|04|Sep/06/02| |S|O| |8|sparc;sparc.sun4u;sparc.sun4us;108993-11;111023-02;|SUNWatfsr:11.8.0,REV=2000.01.08.18.12;SUNWatfsu:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108993-18 SunOS 5.8: /kernel/fs/autofs and /usr/lib/ +112606|04|Sep/06/02| |S|O| |8_x86|i386;108994-10;111024-02;|SUNWatfsr:11.8.0,REV=2000.01.08.18.17;SUNWatfsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108994-18 SunOS 5.8_x86: /kernel/fs/autofs and /usr/ 112607|02|Apr/02/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/on patch 112608|02|Apr/02/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/on patch -112609|01|Apr/02/02| | | | |8|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/le and /kernel/drv/sparcv9/le patch -112611|01|Apr/16/02|R|S| | |8|sparc;|SUNWzlib:11.8.0,REV=2000.01.08.18.12;SUNWzlibx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libz.so.1 patch -112612|01|Apr/16/02|R|S| | |8_x86|i386;|SUNWzlib:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86:: /usr/lib/libz.so.1 patch +112609|02|May/29/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/le and /kernel/drv/sparcv9/le patch +112611|02|Oct/21/03|R|S| | |8|sparc;|SUNWzlib:11.8.0,REV=2000.01.08.18.12;SUNWzlibx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libz.so.1 patch +112612|02|Oct/21/03|R|S| | |8_x86|i386;|SUNWzlib:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libz.so.1 patch +112617|02|Jan/15/03|R|S| | |9|sparc;|SUNWdtdmn:1.5,REV=10.2002.03.13;|CDE 1.5: rpc.cmsd patch 112619|02|Jul/16/02| | | | |Unbundled|||SunMTP7.2 J3270 Patch 2 -112621|01|Jun/13/02| | | | |9|sparc;sparc.sun4u;|SUNWffb:2002.01.29;SUNWffbw:2002.01.29;SUNWffbx:2002.01.29;|SunOS 5.9: Creator 9 FFB Graphics Patch -112622|03|Jul/12/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:2002.01.29;SUNWm64w:2002.01.29;SUNWm64x:2002.01.29;|SunOS 5.9: M64 Graphics Patch -112628|05|Jul/26/02| | | | |Unbundled|sparc;|SUNWgfbgl:2002.03.04;SUNWglrt:2002.03.04;SUNWglrtu:2002.03.04;SUNWifbgl:2002.03.04;|OpenGL 1.2.3: OpenGL Patch for Solaris 2.6/7/8 (32-bit) -112629|05|Jul/26/02| | | | |Unbundled|sparc;112628-05;|SUNWgfbgx:2002.03.04;SUNWglrtx:2002.03.04;SUNWifbgx:2002.03.04;|OpenGL 1.2.3: OpenGL Patch for Solaris 7/8 (64-bit) -112632|01|Apr/16/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: Delay in I1 networking coming up after failover -112633|01|Mar/19/02| | | | |Unbundled|sparc;|SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: Env. values need to be modified for new fan tray +112620|09|Dec/16/03| | | | |9|sparc;sparc.sun4u;|SUNWafb:9.0.0,REV=2002.01.29;SUNWafbcf:9.0.0,REV=2002.01.29;SUNWafbw:9.0.0,REV=2002.01.29;SUNWafbx:9.0.0,REV=2002.01.29;|SunOS 5.9: Elite3D AFB Graphics Patch +112621|11|Dec/16/03| | | | |9|sparc;sparc.sun4u;|SUNWffb:9.0.0,REV=2002.01.29;SUNWffbcf:9.0.0,REV=2002.01.29;SUNWffbw:9.0.0,REV=2002.01.29;SUNWffbx:9.0.0,REV=2002.01.29;|SunOS 5.9: Creator and Creator3D: FFB Graphics Patch +112622|13|Dec/16/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWm64:9.0.0,REV=2002.01.29;SUNWm64cf:9.0.0,REV=2002.01.29;SUNWm64w:9.0.0,REV=2002.01.29;SUNWm64x:9.0.0,REV=2002.01.29;|SunOS 5.9: M64 Graphics Patch +112625|01|May/27/03| | | | |9|sparc;|SUNWfwdcx:9.0.0,REV=2002.01.29;|SunOS 5.9: Dcam1394 patch +112628|24|Nov/26/03| | | | |Unbundled|sparc;|SUNWafbgl:1.2.3,REV=2002.03.04;SUNWffbgl:1.2.3,REV=2002.03.04;SUNWgfbgl:1.2.3,REV=2002.03.04;SUNWgldoc:1.2.3,REV=2002.03.04;SUNWglrt:1.2.3,REV=2002.03.04;SUNWglrtu:1.2.3,REV=2002.03.04;SUNWifbgl:1.2.3,REV=2002.03.04;SUNWjfbgl:1.2.3,REV=2002.03.04;|OpenGL 1.2.3: OpenGL Patch for Solaris 7/8/9 (32-bit) +112629|24|Nov/26/03| | | | |Unbundled|sparc;112628-24;|SUNWafbgx:1.2.3,REV=2002.03.04;SUNWffbgx:1.2.3,REV=2002.03.04;SUNWgfbgx:1.2.3,REV=2002.03.04;SUNWglrtx:1.2.3,REV=2002.03.04;SUNWifbgx:1.2.3,REV=2002.03.04;SUNWjfbgx:1.2.3,REV=2002.03.04;|OpenGL 1.2.3: OpenGL Patch for Solaris 7/8/9 (64-bit) +112632|03|May/21/03| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: mand Patch +112633|01|Mar/19/02| | |O| |Unbundled|sparc;|SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112483-05 SMS 1.2: Env. values need to be modified f 112641|01|Mar/27/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: dsmd hold a lock during 18 domains boot 112644|01|May/20/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWdtbas:1.4,REV=10.2001.09.25;SUNWdtbax:1.4,REV=10.2001.09;|Trusted Solaris 8 4/01: Buffer overflow in CDE subprocess control 112645|01|Apr/19/02| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWnisu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: on and rpc.rexd Patch -112647|01|Apr/16/02| |S| | |Unbundled|all;|SUNW2jdrt:4.1;SUNW2jdtk:4.1;|Java DMK 4.1 patch -112648|01|Apr/16/02| |S| | |Unbundled|||Java DMK 4.1 patch +112646|01|Sep/04/02| | | | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWnisu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: on and rpc.rexd Patch +112647|02|Nov/05/02| |S| | |Unbundled|all;|SUNW2jdrt:4.1;SUNW2jdtk:4.1;|Java DMK 4.1 patch +112648|02|Nov/05/02| |S| | |Unbundled|||Java DMK 4.1 patch 112650|01|Mar/25/02| | | | |Unbundled|sparc;|SUNWescad:3.0_Build41,REV=2.6.2000.12.19;|Sun Management Center Patch for TNG integration ( General Availabi 112651|01|Mar/25/02| | | | |Unbundled|sparc;|SUNWescad:3.0_Build39,REV=2.6.2000.12.05;|Sun Management Center Patch for TNG integration ( Revenue Release -112663|01|Apr/29/02| | | | |8|sparc;108652-44;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: keyboards patch +112661|06|Oct/03/03|R|S| | |9|sparc;|JSatsvw:1.0,REV=2002.01.25.16.47;SUNWcleu:9.0,REV=2002.03.26.09.55;SUNWhkleu:9.0,REV=2002.03.22.11.11;SUNWhleu:9.0,REV=2002.02.06.15.54;SUNWiiimr:1.1,REV=1.0.58;SUNWiiimu:1.1,REV=1.0.58;SUNWj3irt:1.1,REV=1.0.55;SUNWjxplt:1.5,REV=2002.03.04.19.33;SUNWlccom:5.8,REV=2002.01.08.10.48;SUNWxi18n:4.1,REV=1.0.58;SUNWxi18x:4.1,REV=1.0.58;SUNWxim:4.1,REV=1.0.55;SUNWximx:4.1,REV=1.0.55;|SunOS 5.9: IIIM and X Input & Output Method patch +112662|04|Oct/03/03|R|S| | |9_x86|i386;|JSatsvw:1.0,REV=2002.11.01.17.06;SUNWcleu:9.0,REV=2002.08.19.13.15;SUNWhkleu:9.0,REV=2002.08.19.13.15;SUNWhleu:9.0,REV=2002.08.19.13.15;SUNWiiimr:1.1,REV=1.0.59;SUNWiiimu:1.1,REV=1.0.59;SUNWj3irt:1.1,REV=1.0.55;SUNWjxplt:1.5,REV=2002.03.04.19.40;SUNWlccom:5.8,REV=2002.01.08.10.48;SUNWxi18n:4.1,REV=1.0.59;SUNWxim:4.1,REV=1.0.59;|SunOS 5.9_x86: IIIM and X Input & Output Method patch +112663|02|Nov/13/03| | | | |8|sparc;108652-68;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: OWconfig patch 112666|01|Apr/26/02| | | | |8|sparc;|SUNWaccu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/acct/acctcon patch 112667|01|Apr/26/02| | | | |8_x86|i386;|SUNWaccu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/acct/acctcon patch 112668|01|May/14/02|R|S| | |8|sparc;|SUNWgzip:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/gzip patch @@ -6387,132 +6568,1594 @@ 112671|01|May/10/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/clinfo patch 112672|01|Apr/19/02| |S| | |7|sparc;|SUNWscpu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: vipw Patch 112673|01|Apr/19/02| |S| | |7_x86|i386;|SUNWscpu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: vipw Patch -112684|01|Aug/06/02| | | | |Unbundled|sparc;|SUNWkmsc2:1;|DATA_SERVICES appclass does not report correctly -112685|01|Aug/06/02| | | | |Unbundled|sparc;|SUNWkmsc3:1;|Multiple BugID fix -112686|01|Jul/17/02| | | | |Unbundled|||MTP7.2 Patch 4.1 -112694|02|Jun/18/02| | | | |Unbundled|sparc;|SUNWkmsnf:1;|SunFire KM -112697|02|Jun/06/02| | | | |8|sparc;|SUNWqus:11.8.0,REV=2001.11.29.10.46;SUNWqusu:11.8.0,REV=2001.11.29.10.46;SUNWqusux:11.8.0,REV=2001.11.29.10.46;SUNWqusx:11.8.0,REV=2001.11.29.10.46;|SunOS 5.8: qus driver patch -112706|01|Jun/25/02| | | | |9|sparc;|SUNWqus:11.9.0,REV=2002.05.10.17.11;SUNWqusx:11.9.0,REV=2002.05.10.17.11;|SunOS 5.9: qus driver patch +112684|01|Aug/06/02| | | | |Unbundled|sparc;|SUNWkmsc2:3.4,REV=1;|SunCluster 2.2 Knowledge Module for Patrol: DATA_SERVICES appclass +112685|01|Aug/06/02| | | | |Unbundled|sparc;|SUNWkmsc3:1.0,REV=1;|SunCluster 3.0 Knowledge Module for Patrol: Multiple BugID fix +112686|01|Jul/17/02| | |O| |Unbundled|||Obsoleted by: 112271-06 MTP7.2 Patch 4.1 +112689|02|Aug/28/02| | | | |7|sparc;|SUNWuiu8:1.2,REV=1998.08.07.10.00;SUNWuiu8x:1.0,REV=1998.08.07.10.00;|SunOS 5.7: UTF-8 locale ICONV patch +112690|01|Oct/10/02| | | | |7_x86|i386;|SUNWuiu8:1.2,REV=1998.08.07.10.00;|SunOS 5.7_x86: UTF-8 locale ICONV patch +112694|01|Jun/10/02| | | | B|Unbundled|sparc;|SUNWkmsnf:1.0,REV=1;|WITHDRAWN SunFire KM +112694|02|Jun/18/02| | | | |Unbundled|sparc;|SUNWkmsnf:1.0,REV=1;|SunFire KM +112697|04|Oct/03/03| | | | |8|sparc;|SUNWqus:11.8.0,REV=2001.11.29.10.46;SUNWqusu:11.8.0,REV=2001.11.29.10.46;SUNWqusux:11.8.0,REV=2001.11.29.10.46;SUNWqusx:11.8.0,REV=2001.11.29.10.46;|SunOS 5.8: qus driver patch +112706|03|Oct/03/03| | | | |9|sparc;|SUNWqus:11.9.0,REV=2002.05.10.17.11;SUNWqusx:11.9.0,REV=2002.05.10.17.11;|SunOS 5.9: qus driver patch 112709|01|May/22/02| |S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Savecore doesn't work if swap slice is over -112711|02|Apr/29/02| | | | |Unbundled|sparc;|SUNWesscd:3.0-PU4,REV=2.8.2001-11-20;SUNWesscp:3.0-PU4,REV=2.8.2001-11-20;SUNWesscs:3.0-PU4,REV=2.8.2001-11-20;SUNWscsca:3.0-PU4,REV=2.8.2001-11-20;SUNWscscs:3.0-PU4,REV=2.8.2001-11-20;|SunMC 3.0: domain status should gen alarm when domain in error sta -112717|01|Jun/04/02| | | | |Unbundled|sparc;|SUNWsrmb:2000.03.20.10.37;|Solaris Resource Manager 1.2: /usr/srm/bin/liminfo patch +112711|07|Oct/03/03| | | | |Unbundled|sparc;|SUNWesscd:3.0-PU4,REV=2.8.2001-11-20;SUNWesscp:3.0-PU4,REV=2.8.2001-11-20;SUNWesscs:3.0-PU4,REV=2.8.2001-11-20;SUNWscsca:3.0-PU4,REV=2.8.2001-11-20;SUNWscscs:3.0-PU4,REV=2.8.2001-11-20;|SunMC 3.0: essetup pkgconfigdsc pkgconfigdscd +112717|01|Jun/04/02| | | | |Unbundled|sparc;|SUNWsrmb:1.2.0,REV=2000.03.20.10.37;|Solaris Resource Manager 1.2: /usr/srm/bin/liminfo patch +112750|06|Dec/05/03| | | | |Unbundled|||MTP8.0 Patch 6 112751|01|May/22/02| | | | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: deadlock panics on ufs rwlocks -112752|02|Jul/19/02| | | | |Unbundled|sparc;|SUNWessda:2.8.2001.11.20;|SunMC 3.0: configd fails with diskcnt -112764|02|Jul/10/02| | | | |9|sparc;|SUNWqfed:2002.01.31.9.0;SUNWqfedu:2002.01.31.9.0;SUNWqfedx:2002.01.31.9.0;|SunOS 5.9: Sun Quad FastEthernet qfe driver +112752|03|Nov/14/02| | | | |Unbundled|sparc;|SUNWessda:ser_pu4_Build08,REV=2.8.2001.11.20;|SunMC 3.0: configd fails with diskcnt +112754|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplsx:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +112755|01|Feb/12/03| | | | |Unbundled|sparc;111733-01;|SPROplx:7.0;|Patch for Forte Developer 7 Performance Library 4.0 (libsunperf) +112756|06|Dec/12/03| | | | |Unbundled|i386;|SPROlang:8.0,REV=2003.03.13;|Patch for S1S8CC Sun Compiler Common 7.1 compiler backend_x86 +112757|01|May/08/03| | | | |8_x86|i386;|SUNWlibm:5.8,REV=1999.11.10;SUNWlibms:5.8,REV=1999.10.21;|SunOS 5.8_x86: Math Library (libm) patch +112758|02|Nov/26/03| | | | |Unbundled|sparc;|SPROdbx:8.0,REV=2003.03.13;SPROdbxx:8.0,REV=2003.03.13;SPROjdbx:8.0,REV=2003.03.13;SPROjdbxx:8.0,REV=2003.03.13;|dbx 7.1: Patch for S1S8CC Debugger +112759|02|Nov/26/03| | | | |Unbundled|i386;|SPROdbx:8.0,REV=2003.03.13;SPROjdbx:8.0,REV=2003.03.13;|dbx 7.1_x86: Patch for S1S8CC Debugger +112760|05|Dec/15/03| |S| | |Unbundled|sparc;112763-04;|SPROcc:8.0,REV=2003.03.13;|C 5.5: Patch for S1S8CC C compiler +112761|05|Dec/15/03| |S| | |Unbundled|i386;112756-03;|SPROcc:8.0,REV=2003.03.13;|C 5.5_x86: Patch for S1S8CC C compiler +112762|06|Dec/12/03| | | | |Unbundled|sparc;112763-06;114801-02;|SPROf90:8.0,REV=2003.03.13;SPROftool:8.0,REV=2003.03.13;SPROl90:8.0,REV=2003.03.13;SPROl90x:8.0,REV=2003.03.13;SPROlang:8.0,REV=2003.03.13;|F95 7.1: Patch for S1S8CC Fortran 95 compiler +112763|06|Dec/12/03| | | | |Unbundled|sparc;|SPROlang:8.0,REV=2003.03.13;SPROlangx:8.0,REV=2003.03.13;|Compiler Common S1S8CC: Patch for S1S8CC C C++ F77 F95 +112764|06|Apr/16/03|R| | | |9|sparc;|SUNWqfed:5.0,REV=2002.01.31.9.0;SUNWqfedu:5.0,REV=2002.01.31.9.0;SUNWqfedx:5.0,REV=2002.01.31.9.0;|SunOS 5.9: Sun Quad FastEthernet qfe driver 112765|01|Apr/26/02| |S| | |2.6|sparc;|SUNWscpu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: vipw changes the group of the passwd and shadow file 112766|01|Apr/26/02| |S| | |2.6_x86|i386;|SUNWscpu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: vipw changes the group of the passwd and shadow fil +112768|01|Oct/09/02| | |O| |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112481-07 SMS 1.2: fru_write_segment() fails. 112769|01|Apr/30/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: data corruption on PICL tree and in seeprom. 112770|01|Apr/26/02| |S| | |2.5.1|sparc;|SUNWxntp:1.1.0,REV=97.02.21.14.52;|SunOS 5.5.1: xntpd buffer overflow -112771|04|Jul/22/02| | | | |Unbundled|sparc;|SUNWdtbax:10.2002.03.13;SUNWmfrun:10.2002.03.13;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 9 -112775|01|Apr/23/02| | | | |Unbundled|sparc;|SUNWesadf:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWessdf:ser_pu4_Build08,REV=2.6.2001.11.20;|SunMC 3.0: Sun Fire 15000 ref changed to Sun Fire 15K/12K -112780|01|Jun/14/02| | | | |Unbundled|sparc.sun4u;|SUNWcpr:1997.07.15.21.46;SUNWftcar:1999.01.28.13.32;|FT1800 TOD fixes -112781|01|May/31/02| | | | |8|sparc;|SUNWxwopt:0.1999.12.15;|X11 6.4.1: twm patch -112782|01|May/31/02| | | | |8_x86|i386;|SUNWxwopt:0.1999.12.15;|X11 6.4.1_x86: twm patch -112783|01|Jun/21/02| | | | |Unbundled|sparc;|SUNWxwopt:0.2002.04.05;|X11 6.6.1: xterm patch -112785|05|Jul/29/02|R|S| | |Unbundled|sparc;|SUNWxwplt:0.2002.04.05;SUNWxwsrv:0.2002.04.05;|X11 6.6.1: Xsun patch -112787|01|Jun/11/02| | | | |Unbundled|sparc;|SUNWxwopt:0.2002.04.05;|X11 6.6.1: twm patch -112789|01|Jun/17/02| | | | |Unbundled|sparc;|SUNWscm:5.8.2001.12.10;|Netra HA Suite 2.0: RNFS Data Replication Core Patch -112790|01|Jun/17/02| | | | |Unbundled|sparc;112789-01;|SUNWrdcu:5.8.2001.12.10;|Netra HA Suite 2.0: RNFS Data Replication Utilities Patch -112792|01|Jul/09/02| |S| | |8|sparc;108968-06;|SUNWpcmcu:2000.01.08.18.12;|SunOS 5.8: /usr/lib/pcmciad patch -112793|01|Jul/09/02| |S| | |8_x86|i386;108969-06;|SUNWpcmcu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/pcmciad patch -112794|01|Jun/27/02| | | | |8|sparc;|SUNWpcmem:2000.01.08.18.12;|SunOS 5.8: /kernel/drv/pcram and /kernel/drv/sparcv9/pcram patch -112795|01|Jun/27/02| | | | |8_x86|i386;|SUNWpcmem:2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/pcram patch +112771|17|Oct/08/03| | | | |Unbundled|sparc;|SUNWdtbax:1.5,REV=10.2002.03.13;SUNWmfrun:2.1.2,REV=10.2002.03.13;|Motif 1.2.7 and 2.1.1: Runtime library patch for Solaris 9 +112775|01|Apr/23/02| | |O| |Unbundled|sparc;|SUNWesadf:ser_pu4_Build08,REV=2.8.2001.11.20;SUNWessdf:ser_pu4_Build08,REV=2.6.2001.11.20;|Obsoleted by: 112499-04 SunMC 3.0: Sun Fire 15000 ref changed to S +112780|01|Jun/14/02| | | | |Unbundled|sparc.sun4u;|SUNWcpr:11.6.0,REV=1997.07.15.21.46;SUNWftcar:5.6,REV=1999.01.28.13.32;|FT1800 TOD fixes +112781|01|May/31/02| | | | |8|sparc;|SUNWxwopt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: twm patch +112782|01|May/31/02| | | | |8_x86|i386;|SUNWxwopt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: twm patch +112783|01|Jun/21/02| | | | |9|sparc;|SUNWxwopt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: xterm patch +112785|05|Jul/29/02|R|S| | B|9|sparc;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwsrv:6.6.1.5800,REV=0.2002.04.05;|WITHDRAWN PATCH X11 6.6.1: Xsun patch +112785|06|Oct/10/02|R|S| | B|9|sparc;|SUNWxwfnt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplx:6.6.1.5800,REV=0.2002.04.05;SUNWxwsrv:6.6.1.5800,REV=0.2002.04.05;|WITHDRAWN PATCH X11 6.6.1: Xsun patch +112785|07|Oct/16/02|R|S| | B|9|sparc;|SUNWxwfnt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplx:6.6.1.5800,REV=0.2002.04.05;SUNWxwsrv:6.6.1.5800,REV=0.2002.04.05;|WITHDRAWN PATCH X11 6.6.1: Xsun patch +112785|30|Dec/19/03|R|S| | |9|sparc;113096-03;|SUNWxwfnt:6.6.1.5800,REV=0.2002.04.05;SUNWxwinc:6.6.1.5800,REV=0.2002.04.05;SUNWxwman:6.6.1.5800,REV=0.2002.04.05;SUNWxwopt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplx:6.6.1.5800,REV=0.2002.04.05;SUNWxwslb:6.6.1.5800,REV=0.2002.04.05;SUNWxwsrv:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: Xsun patch +112786|19|Dec/19/03|R|S| | |9_x86|i386;|SUNWxwfnt:6.6.1.6400,REV=0.2002.10.16;SUNWxwinc:6.6.1.6400,REV=0.2002.10.16;SUNWxwman:6.6.1.6400,REV=0.2002.10.16;SUNWxwopt:6.6.1.6400,REV=0.2002.10.16;SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;SUNWxwslb:6.6.1.6400,REV=0.2002.10.16;SUNWxwsrv:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: Xsun patch +112787|01|Jun/11/02| | | | |9|sparc;|SUNWxwopt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: twm patch +112789|01|Jun/17/02| | | | |Unbundled|sparc;|SUNWscm:1.1.27,REV=5.8.2001.12.10;|Netra HA Suite 2.0: RNFS Data Replication Core Patch +112790|01|Jun/17/02| | | | |Unbundled|sparc;112789-01;|SUNWrdcu:2.0.14,REV=5.8.2001.12.10;|Netra HA Suite 2.0: RNFS Data Replication Utilities Patch +112791|01|Nov/07/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: setbus should not run while hpost is running. +112792|01|Jul/09/02| |S| | |8|sparc;108968-06;|SUNWpcmcu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/pcmciad patch +112793|01|Jul/09/02| |S| | |8_x86|i386;108969-06;|SUNWpcmcu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/pcmciad patch +112794|01|Jun/27/02| | | | |8|sparc;|SUNWpcmem:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/pcram and /kernel/drv/sparcv9/pcram patch +112795|01|Jun/27/02| | | | |8_x86|i386;|SUNWpcmem:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/pcram patch 112796|01|May/27/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/in.talkd patch 112797|01|May/27/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/in.talkd patch -112798|01|Jun/03/02| | | | |8|sparc;|SUNWcsu:2000.01.08.18.12;SUNWcsxu:2000.01.08.18.12;|SunOS 5.8: /usr/kernel/strmod/rlmod patch -112799|01|Jun/03/02| | | | |8_x86|i386;|SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/strmod/rlmod patch +112798|01|Jun/03/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/strmod/rlmod patch +112799|01|Jun/03/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/strmod/rlmod patch 112802|01|May/20/02| | | | |Unbundled|sparc;|SUNWttymx:5.6,REV=1999.01.28.13.32;|Netra ft 1800 serial multiplexer patch -112808|01|Jun/05/02| | | | |Unbundled|sparc;|SUNWtltk:10.2002.03.13;SUNWtltkx:10.2002.03.13;|OpenWindows 3.6.3: Tooltalk patch +112804|01|Sep/17/02| | | | |9|sparc;|SUNWdtezt:1.5,REV=10.2002.03.13;|CDE 1.5: sdtname patch +112805|01|Sep/17/02| | | | |9|sparc;|SUNWdtab:1.5,REV=10.2002.03.13;SUNWdtbas:1.5,REV=10.2002.03.13;SUNWdthev:1.5,REV=10.2002.03.13;SUNWdthez:1.5,REV=10.2002.03.13;|CDE 1.5: Help volume patch +112806|01|Sep/17/02| | | | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;|CDE 1.5: sdtaudiocontrol patch +112807|07|Sep/25/03|R|S| | |9|sparc;|SUNWdtdte:1.5,REV=10.2002.03.13;|CDE 1.5: dtlogin patch +112808|06|Dec/01/03|R|S| | |9|sparc;|SUNWtltk:3.7.1,REV=10.2002.03.13;SUNWtltkx:3.7.1,REV=10.2002.03.13;|CDE1.5: Tooltalk patch +112809|02|Mar/27/03| | | | |9|sparc;|SUNWjmfp:1.5,REV=10.2002.03.13;|CDE:1.5 Media Player (sdtjmplay) patch +112810|05|Sep/01/03| | | | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;|CDE 1.5: dtmail patch +112811|01|Sep/04/02| | | | |Unbundled|sparc;|SUNWolrte:3.7.0,REV=1.2001.10.12;|OpenWindows 3.7.0: Xview Patch +112812|01|Oct/03/02| | | | |9|sparc;|SUNWdtbas:1.5,REV=10.2002.03.13;SUNWdtdte:1.5,REV=10.2002.03.13;|CDE 1.5: dtlp patch 112814|01|May/14/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: in.talkd has a "user format" security problem 112815|01|May/14/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: in.talkd has a "user format" security problem 112816|01|May/20/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: Mail patch +112817|12|Nov/05/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcea:1.0,REV=2002.02.06.9.0;SUNWceax:1.0,REV=2002.02.06.9.0;SUNWced:1.0,REV=2002.02.06.9.0;SUNWcedu:1.0,REV=2002.02.06.9.0;SUNWcedx:1.0,REV=2002.02.06.9.0;|SunOS 5.9: Sun GigaSwift Ethernet 1.0 driver patch +112819|02|Jan/24/03| | | | |Unbundled|sparc;sparc.sun4u;|SUNWipsm:1.0,REV=2001.12.04.13.54;SUNWipsut:1.0,REV=2001.12.04.13.54;SUNWipsx:1.0,REV=2001.12.04.13.54;|Sun OC-48 Packet Over Sonet Patch 112820|01|May/27/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: in.talkd Patch 112821|01|May/27/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: in.talkd Patch +112822|01|Oct/11/02| | | | |Unbundled|sparc;|SUNWSMSr:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: osdTimeDeltas missing from fomd_sys_datasync.cf 112827|01|May/09/02| | |O| |Unbundled|sparc;112481-02;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|Obsoleted by: 112481-03 SMS 1.2: libKeyswitch needs to deconfigure -112829|03|Jun/20/02| | | | |Unbundled|sparc;112488-03;|SUNWSMSlp:2001.11.28.18.46;|SMS 1.2: hpost fails intermittently with Invalid MADR -112835|01|Jun/27/02| | | | |9|sparc;|SUNWcsu:2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/clinfo -112836|01|Jun/26/02| | | | |9|sparc;|SUNWusb:2002.04.06.15.27;SUNWusbx:2002.04.06.15.27;|SunOS 5.9: patch scsa2usb -112838|01|Jun/25/02| | | | |9|sparc.sun4u;|SUNWefcx:2002.04.06.15.27;|SunOS 5.9: patch /platform/sun4u/kernel/misc/sparcv9/pcicfg.e -112839|01|Jul/26/02| | | | |9|sparc;|SUNWcsl:2002.04.06.15.27;SUNWcslx:2002.04.06.15.27;|SunOS 5.9: patch libthread.so.1 +112829|05|Oct/31/02| | | | |Unbundled|sparc;112488-03;|SUNWSMSlp:1.2.0,REV=2001.11.28.18.46;|SMS 1.2: SMS lpost patch +112831|02|Nov/25/03| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: OSD Patch +112834|03|Sep/01/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch scsi +112835|01|Jun/27/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/clinfo +112836|02|Jan/07/03| | | | |9|sparc;|SUNWusb:11.9.0,REV=2002.04.06.15.27;SUNWusbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch scsa2usb +112837|03|Dec/23/03| | | | |9|sparc;|SUNWdhcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/inet/in.dhcpd +112838|07|Jun/06/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWefcx:11.9.0,REV=2002.04.06.15.27;SUNWefcx:11.9.0,REV=2003.01.10.11.57;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: pcicfg Patch +112839|04|May/05/03| | | | |9|sparc;112874-13;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWmdbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libthread.so.1 +112840|03|Feb/27/03| | |O| |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: patch platform/SUNW,Sun-Fire-15 +112841|07|Aug/15/03| | |O| |9|sparc.sun4u;112233-05;112840-01;113445-01;114390-01;114391-01;113571-03;112233-11;|SUNWdrcrx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: drmach patch 112842|01|May/08/02| | | | |8|sparc;|SUNWjeuce:1.1,REV=1999.12.29.10.38;SUNWjpcke:1.1,REV=1999.12.29.10.38;SUNWju8e:1.1,REV=1999.12.29.10.38;|SunOS 5.8: JFP message files patch 112843|01|May/08/02| | | | |8_x86|i386;|SUNWjeuce:1.1,REV=1999.12.29.10.38;SUNWjpcke:1.1,REV=1999.12.29.10.38;SUNWju8e:1.1,REV=1999.12.29.10.39;|SunOS 5.8_x86: JFP message files patch -112844|01|Jun/03/02| | | | |8|sparc;|SUNWesu:2000.01.08.18.12;SUNWesxu:2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/pfiles and /usr/bin/sparcv9/pfiles pat -112845|01|Jun/03/02| | | | |8_x86|i386;|SUNWesu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/pfiles patch -112846|01|Jun/17/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsu:2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/rwall/rpc.rwalld patch -112847|01|Jun/17/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWcsu:2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/rwall/rpc.rwalld patch -112850|01|Jul/22/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;|SunOS 5.8: /kernel/drv/icmp6 and /kernel/drv/sparcv9/icmp6 Patch -112851|01|Jul/22/02| | | | |8_x86|i386;|SUNWcsr:2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/icmp6 Patch -112852|01|May/17/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-14;108528-15;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-15 (or newer)|SunOS 5.8: Supplemental Kernel Update Patch for 108528-14 -112854|01|Jun/19/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWcsr:2002.04.06.15.27;|SunOS 5.9: icmp should be QNEXTLESS -112858|01|Jul/17/02| | | | |Unbundled|sparc;|SUNWSMSop:2001.11.30.18.03;|SMS 1.2: flashupdate needs to understand new FPROM version scheme -112861|01|Jun/12/02| | | | |8|sparc.sun4u;110761-02;|SUNWcarx:2000.01.08.18.12;|SunOS 5.8: grbeep driver patch -112866|01|Jun/21/02| | | | |Unbundled|sparc;|SUNWscrdt:2002.04.08.00.29;|Sun Cluster 3.0: Reliable Datagram Transport patch -112867|01|Jun/21/02| | | | |Unbundled|sparc;|SUNWscrdt:2002.04.18.03.00;|Sun Cluster 3.0: Reliable Datagram Transport patch -112869|01|Aug/02/02| |S| | |Unbundled|sparc;|SUNWcrysu:2002.01.23.15.22;|Sun Crypto Accelerator 1000 Patch -112872|01|May/20/02| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcar:11.8.0,REV=2001.09.25.00.12;SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: Kernel patch -112874|01|Jun/21/02| |S| | |9|sparc;|SUNWarc:2002.04.06.15.27;SUNWarcx:2002.04.06.15.27;SUNWcsl:2002.04.06.15.27;SUNWcslx:2002.04.06.15.27;SUNWdpl:2002.04.06.15.27;SUNWdplx:2002.04.06.15.27;|SunOS 5.9: buffer overflow in dbm_open -112875|01|Jun/21/02|R|S| | |9|sparc;|SUNWrcmds:2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/netsvc/rwall/rpc.rwalld -112885|02|Jul/12/02| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Solaris): Product patch -112886|02|Jul/12/02| | | | |Unbundled|||StarOffice/StarSuite 6.0_x86 (Solaris): Product patch -112887|02|Jul/12/02| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Linux): Product patch -112888|02|Jul/12/02| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Windows): Product patch -112890|01|Jun/20/02| | | | |Unbundled|sparc;|SUNWkmesp:1;|ESP KM not functioning correctly with SunMC 3.0 PU4 Daemon -112891|01|Jun/14/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWcsu:96.05.02.21.09;|SunOS 5.5.1: rpc.rwalld has format string problem -112892|01|Jun/14/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWcsu:96.05.02.19.23;|SunOS 5.5.1_x86: rpc.rwalld has format string problem -112893|01|Jun/17/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWcsu:1997.07.15.21.46;|SunOS 5.6: rpc.rwalld has format string problem -112894|01|Jun/17/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: rpc.rwalld has format string problem -112895|01|Jul/22/02| | | | |2.5.1|sparc;|SUNWcsu:96.05.02.21.09;|SunOS 5.5.1: ruptime should accept uptimes > 365 days -112896|01|Jul/22/02| | | | |2.5.1_x86|i386;|SUNWcsu:96.05.02.19.23;|SunOS 5.5.1_x86: ruptime should accept uptimes > 365 days -112897|01|Jul/22/02| | | | |2.6|sparc;|SUNWcsu:1997.07.15.21.46;|SunOS 5.6: ruptime should accept uptimes > 365 days -112898|01|Jul/22/02| | | | |2.6_x86|i386;|SUNWcsu:1997.07.16.00.21;|SunOS 5.6_x86: ruptime should accept uptimes > 365 days -112899|01|Jun/17/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsu:1998.10.06.00.59;|SunOS 5.7: rwall Patch -112900|01|Jun/17/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWcsu:1998.10.06.01.22;|SunOS 5.7_x86: rwall Patch -112932|01|Jul/09/02| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWatfsr:2001.09.25.00.12;SUNWcarx:2001.09.25.00.12;|Trusted Solaris 8 4/01: /kernel/fs/autofs patch +112844|02|Oct/25/02| | | | |8|sparc;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: pfiles and plimit patch +112845|02|Oct/25/02| | | | |8_x86|i386;|SUNWesu:11.8.0,REV=2000.01.08.18.17;SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: pfiles and plimit patch +112846|01|Jun/17/02|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/netsvc/rwall/rpc.rwalld patch +112847|01|Jun/17/02|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/netsvc/rwall/rpc.rwalld patch +112849|01|Mar/24/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/qe and /kernel/drv/sparcv9/qe patch +112850|01|Jul/22/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/icmp6 and /kernel/drv/sparcv9/icmp6 Patch +112851|01|Jul/22/02| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/icmp6 Patch +112852|01|May/17/02| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;108528-14;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-15 (or newer)|Obsoleted by: SunOS 5.8: Supplemental Kernel Update +112854|02|Dec/24/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: icmp Patch +112858|01|Jul/17/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: flashupdate needs to understand new FPROM version scheme +112861|01|Jun/12/02| | | | |8|sparc.sun4u;110761-02;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: grbeep driver patch +112863|02|Aug/05/03| | | | |Unbundled|sparc;113656-01;|SUNWcre:2.0,REV=2003.02.10.5.37;SUNWhpctm:1.0,REV=2003.02.10.5.37;SUNWmpi:6.0,REV=2003.02.10.5.37;SUNWmpix:6.0,REV=2003.02.10.5.37;|HPC 5.0: MPI CRE RSM fixes +112866|08|Aug/18/03| | | | |Unbundled|sparc;|SUNWscrdt:3.0.0,REV=2002.04.08.00.29;|Sun Cluster 3.0: Reliable Datagram Transport patch for Solaris 8 +112867|08|Aug/18/03| | | | |Unbundled|sparc;|SUNWscrdt:3.0.0,REV=2002.04.18.03.00;|Sun Cluster 3.0: Reliable Datagram Transport patch for Solaris 9 +112868|09|Aug/25/03| | | | |9|sparc;|SUNWcos:9.0,REV=2002.03.21.09.10;SUNWdeos:11.6,REV=2002.03.26.09.45;SUNWesos:11.6,REV=2002.03.15.13.13;SUNWfros:11.6,REV=2002.03.15.12.20;SUNWhos:9.0,REV=2002.03.21.09.35;SUNWitos:11.6,REV=2002.03.15.12.37;SUNWjos:1.1,REV=2002.03.15.12.01;SUNWkos:9.0,REV=2002.03.26.17.43;SUNWsvos:11.6,REV=2002.03.15.12.55;|SunOS 5.9: OS Localization message patch +112869|02|Aug/14/02| |S| | |Unbundled|sparc;|SUNWcrysl:1.0.0,REV=2002.01.31.15.55;SUNWcrysu:1.0.0,REV=2002.01.23.15.22;|Sun Crypto Accelerator 1000 Patch +112872|02|Apr/15/03| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcar:11.8.0,REV=2001.09.25.00.12;SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: Kernel patch +112874|16|Sep/03/03|R|S| | |9|sparc;112233-05;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWdpl:11.9.0,REV=2002.04.06.15.27;SUNWdplx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libc +112875|01|Jun/21/02|R|S| | |9|sparc;|SUNWrcmds:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/netsvc/rwall/rpc.rwalld +112883|07|Jul/29/03| |S| | |Unbundled|||Hardware/PROM: Sun Fire 6800/4810/4800/3800 Systems Firmware Updat +112884|04|Oct/15/03| |S| | |Unbundled|||Hardware/PROM: Sun Fire 6800/4810/4800/3800 Systems Firmware Updat +112885|04|Apr/08/03| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Solaris): Product patch update +112886|04|Apr/04/03| | | | |Unbundled|||StarOffice/StarSuite 6.0_x86 (Solaris): Product update patch +112887|04|Apr/04/03| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Linux): Product update patch +112888|04|Apr/04/03| | | | |Unbundled|||StarOffice/StarSuite 6.0 (Windows): Product update patch +112890|01|Jun/20/02| | | | |Unbundled|sparc;|SUNWkmesp:2.6,REV=1;|ESP KM not functioning correctly with SunMC 3.0 PU4 Daemon +112891|01|Jun/14/02|R|S| | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: rpc.rwalld has format string problem +112892|01|Jun/14/02|R|S| | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: rpc.rwalld has format string problem +112893|01|Jun/17/02|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: rpc.rwalld has format string problem +112894|01|Jun/17/02|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: rpc.rwalld has format string problem +112895|01|Jul/22/02| | | | |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ruptime should accept uptimes > 365 days +112896|01|Jul/22/02| | | | |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: ruptime should accept uptimes > 365 days +112897|01|Jul/22/02| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ruptime should accept uptimes > 365 days +112898|01|Jul/22/02| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ruptime should accept uptimes > 365 days +112899|01|Jun/17/02|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: rwall Patch +112900|01|Jun/17/02|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: rwall Patch +112902|12|Apr/28/03|R|S|O| |9|sparc;sparc.sun4u;sparc.sun4us;112233-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112904-07 SunOS 5.9: kernel/drv/ip Patch +112903|03|Apr/29/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;112902-10;112904-07;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112904-07 SunOS 5.9: tun Patch +112904|09|Oct/14/03|R|S|O| |9|sparc;sparc.sun4u;sparc.sun4us;112233-07;113449-02;113453-04;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: tcp/ip Patch +112905|02|Sep/13/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;112233-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ippctl Patch +112906|02|Aug/26/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ipgpc Patch +112907|02|Oct/13/03|R| | | |9|sparc;|SUNWgss:11.9.0,REV=2002.04.06.15.27;SUNWgssk:11.9.0,REV=2002.04.06.15.27;SUNWgsskx:11.9.0,REV=2002.04.06.15.27;SUNWgssx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libgss Patch +112908|11|Nov/06/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;112907-01;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWgssk:11.9.0,REV=2002.04.06.15.27;SUNWgsskx:11.9.0,REV=2002.04.06.15.27;SUNWkrbu:11.9.0,REV=2002.04.06.15.27;SUNWkrbux:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: krb5 shared object Patch +112911|04|Aug/19/03| | | | |9|sparc;112912-01;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ifconfig Patch +112912|01|Sep/13/02| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libinetcfg Patch +112913|01|Sep/18/02| | | | |9|sparc.sun4u;|SUNWfruip:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: fruadm Patch +112914|04|Jan/08/03| | |O| |9|sparc;112911-02;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWroute:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113964-04 SunOS 5.9: in.routed in.mpathd Patch +112915|01|Sep/13/02| | | | |9|sparc;|SUNWrcmdc:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: snoop Patch +112916|01|Sep/13/02| | | | |9|sparc;|SUNWroute:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: rtquery Patch +112917|01|Sep/13/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ifrt Patch +112918|01|Sep/13/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: route Patch +112919|01|Sep/13/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: netstat Patch +112920|02|Sep/13/02| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWmdbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libipp Patch +112921|02|Nov/06/03|R|S| | |9|sparc;112908-01;|SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWkdcu:11.9.0,REV=2002.04.06.15.27;SUNWkrbu:11.9.0,REV=2002.04.06.15.27;SUNWkrbux:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libkadm5 Patch +112922|02|Apr/24/03|R|S| | |9|sparc;112908-01;|SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWkdcu:11.9.0,REV=2002.04.06.15.27;SUNWkrbu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: krb5 lib Patch +112923|03|Nov/06/03|R|S| | |9|sparc;112908-01;|SUNWkdcu:11.9.0,REV=2002.04.06.15.27;SUNWkrbu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: krb5 usr/lib Patch +112924|01|Sep/18/02| | | | |9|sparc;112908-01;|SUNWkrbu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kdestroy kinit klist kpasswd Patch +112925|03|Nov/06/03|R|S| | |9|sparc;112908-01;|SUNWkdcu:11.9.0,REV=2002.04.06.15.27;SUNWkrbu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ktutil kdb5_util kadmin kadmin.local kadmind Patch +112926|05|Nov/17/03|R|S| | |9|sparc;|SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWocf:11.9.0,REV=2002.04.06.15.27;SUNWocfh:11.9.0,REV=2002.04.06.15.27;SUNWocfr:11.9.0,REV=2002.04.06.15.27;SUNWocfx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: smartcard Patch +112927|01|Sep/13/02| | | | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: IPQos Header Patch +112928|02|Oct/01/03| | | | |9|sparc;|SUNWroute:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: in.ndpd Patch +112929|01|Sep/18/02| | | | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: RIPv2 Header Patch +112932|01|Jul/09/02| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWatfsr:11.8.0,REV=2001.09.25.00.12;SUNWcarx:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: /kernel/fs/autofs patch 112933|01|May/23/02| | | | |Unbundled|sparc;110971-06;|SUNWesdb:3.0_Build39,REV=2.6.2000.12.05;|Sun Management Center 3.0 Patch for Solaris 2.6 Revenue Release (R 112934|01|May/23/02| | | | |Unbundled|sparc;110972-06;|SUNWesdb:3.0_Build39,REV=2.7.2000.12.05;|Sun Management Center 3.0 Patch for Solaris 7 112935|01|May/23/02| | | | |Unbundled|sparc;110973-06;|SUNWesdb:3.0_Build39,REV=2.8.2000.12.05;|Sun Management Center 3.0 Patch for Solaris 8 and Solaris 9 112936|01|May/23/02| | | | |Unbundled|sparc;110936-06;|SUNWesdb:3.0_Build41,REV=2.6.2000.12.19;|Sun Management Center 3.0 Patch for Solaris 2.6 General Availabil 112937|01|May/23/02| | | | |Unbundled|sparc;110937-06;|SUNWesdb:3.0_Build41,REV=2.7.2000.12.19;|Sun Management Center 3.0 Patch for Solaris 7 112938|01|May/23/02| | | | |Unbundled|sparc;110938-06;|SUNWesdb:3.0_Build41,REV=2.8.2000.12.19;|Sun Management Center 3.0 Patch for Solaris 8 and Solaris 9 -112940|01|Jun/07/02| | | | |Trusted_Solaris_8_4/01|sparc;|SUNWusb:2001.09.25.00.12;SUNWusbx:2001.09.25.00.12;|Trusted Solaris 8 4/01: usb problem with TS8 4/01 on sunblade100 -112953|02|Jul/15/02| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-15;|FJSVhea:1999.12.23.19.10;SUNWcar:2000.01.08.18.12;SUNWcar:2000.01.13.13.40;SUNWcarx:2000.01.08.18.12;SUNWcarx:2000.01.13.13.40;SUNWcsr:2000.01.08.18.12;SUNWhea:2000.01.08.18.12;108528-16 (or newer)|SunOS 5.8: Supplemental Kernel Update Patch for 108528-15 -112955|01|Jul/30/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWatfsr:2002.04.06.15.27;SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;|SunOS 5.9: patch kernel/fs/autofs kernel/fs/sparcv9/autofs -112958|01|Jun/28/02| | | | |9|sparc;|SUNWcsl:2002.04.06.15.27;SUNWcslx:2002.04.06.15.27;SUNWcstl:2002.04.06.15.27;SUNWcstlx:2002.04.06.15.27;|SunOS 5.9: patch pci.so -112959|01|Jun/28/02| | | | |9|sparc;|SUNWfruid:2002.04.06.15.27;SUNWfruix:2002.04.06.15.27;|SunOS 5.9: patch libfru -112962|01|Jul/26/02| | | | |9|sparc;|SUNWcsl:2002.04.06.15.27;SUNWcslx:2002.04.06.15.27;|SunOS 5.9: patch libthread_db.so.1 -112966|01|Jun/24/02| | | | |9|sparc;|SUNWvolu:2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/vold -112969|01|Jun/28/02| | | | |9|sparc;|SUNWcsr:2002.04.06.15.27;|SunOS 5.9: vold slows down the boot process -112970|01|Jun/28/02| | | | |9|sparc;|SUNWcsl:2002.04.06.15.27;SUNWcslx:2002.04.06.15.27;|SunOS 5.9: patch libresolv.so.2 -112971|01|Jul/15/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWcsr:2002.04.06.15.27;|SunOS 5.9: patch kernel/fs/cachefs -112975|01|Jul/09/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWcsr:2002.04.06.15.27;SUNWhea:2002.04.06.15.27;|SunOS 5.9: patch /kernel/sys/kaio -113020|01|Jul/30/02| | | | |9|sparc;|SUNW5ttf:2001.12.04.10.20;SUNWcttf:2001.11.06.10.49;SUNWinleu:2002.01.23.13.09;SUNWinlex:2002.01.23.13.09;SUNWinttf:2002.03.01.16.21;SUNWkttf:2002.02.14.11.07;SUNWtleu:2002.01.16.15.05;SUNWtleux:2002.01.16.15.05;|SunOS 5.9: SUNW_LOC changes needed and Thai date format updated -113025|01|Jul/15/02| | | | |9|sparc;|SUNWpiclu:2002.04.06.15.27;|SunOS 5.9: libpsvcpolicy_psr.so.1 Patch -113026|01|Jul/15/02| | | | |9|sparc;|SUNWmdr:2002.04.06.15.27;SUNWmdx:2002.04.06.15.27;|SunOS 5.9: /kernel/drv/md Patch -113027|01|Jul/15/02| | | | |9|sparc;|SUNWfruid:2002.04.06.15.27;SUNWfruix:2002.04.06.15.27;|SunOS 5.9: libfrureg.so.1 Patch -113030|01|Jul/15/02| |S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWcsr:2002.04.06.15.27;|SunOS 5.9: /kernel/sys/doorfs Patch -113031|01|Jul/15/02| | | | |9|sparc;|SUNWcsu:2002.04.06.15.27;SUNWxcu4:2002.04.06.15.27;|SunOS 5.9: /usr/bin/edit Patch -113034|01|Jul/17/02| | | | |Unbundled|||Hardware/PROM: Sun Fire 480 Flash PROM Update -113039|01|Jun/11/02| | | | |9|sparc;|SUNWcsu:2002.04.06.15.27;SUNWcsxu:2002.04.06.15.27;SUNWhea:2002.04.06.15.27;SUNWmdi:2002.04.06.15.27;SUNWmdix:2002.04.06.15.27;113045-01|SunOS 5.9: Sun StorEdge Traffic Manager patch -113040|02|Jul/22/02| | | | |9|sparc;113039-01;|SUNWcsu:2002.04.06.15.27;SUNWcsxu:2002.04.06.15.27;SUNWfcp:2002.04.06.15.27;SUNWfcpx:2002.04.06.15.27;SUNWfctl:2002.04.06.15.27;SUNWfctlx:2002.04.06.15.27;SUNWhea:2002.04.06.15.27;113046-01|SunOS 5.9: fctl/fp/fcp/usoc driver patch -113041|01|Jun/11/02| | | | |9|sparc;113039-01;113040-01;|SUNWcsr:2002.04.06.15.27;SUNWcsu:2002.04.06.15.27;SUNWcsxu:2002.04.06.15.27;SUNWfcip:2002.04.06.15.27;SUNWfcipx:2002.04.06.15.27;SUNWhea:2002.04.06.15.27;113047-01|SunOS 5.9: fcip driver patch -113042|02|Jun/17/02| | | | |9|sparc;113039-01;113040-01;113041-01;|SUNWcsr:2002.04.06.15.27;SUNWcsu:2002.04.06.15.27;SUNWcsxu:2002.04.06.15.27;SUNWhea:2002.04.06.15.27;SUNWqlc:2002.04.06.15.27;SUNWqlcx:2002.04.06.15.27;113048-01|SunOS 5.9: qlc driver patch -113043|01|Jun/11/02| | | | |9|sparc;|SUNWluxop:2002.04.06.15.27;SUNWluxox:2002.04.06.15.27;113049-01|SunOS 5.9: luxadm, liba5k and libg_fc patch -113044|01|Jun/11/02| | | | |9|sparc;113039-01;113040-01;113041-01;113042-01;113043-01;|SUNWcfpl:2002.06.07.10.30;SUNWcfplx:2002.06.07.10.30;113050-01|SunOS 5.9: cfgadm fp plug-in library patch -113054|01|Aug/06/02| | | | |Unbundled|sparc;|SUNWscmu:2002.05.23;|Availability Suite 3.1 SCM: Patch -113068|01|Jul/22/02| | | | |9|sparc.sun4u;|SUNWcarx:2002.04.06.15.27;|SunOS 5.9: hpc3130 patch -113070|01|Jul/23/02| | | | |9|sparc;|SUNWbip:2002.04.06.15.27;|SunOS 5.9: ftp patch -113073|01|Jul/22/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWcsr:2002.04.06.15.27;|SunOS 5.9: ufs_log patch -113080|01|Jul/01/02| | | | |Unbundled|sparc;|SUNWkmE10:1;|E10K KM VDC core voltage in alarm -113128|01|Jul/25/02| | | | |8|sparc;|SUNWxwplt:0.1999.12.15;|X11 6.4.1: XKB patch -113129|01|Jul/25/02| | | | |8_x86|i386;|SUNWxwplt:0.1999.12.15;|X11 6.4.1_x86: XKB patch -113136|01|Jul/22/02| | | | |Unbundled|sparc;|SDRMsp32:2002.03.27.15.30;|Sun Grid Engine 5.3: maintenance patch for S2.6 -113137|01|Jul/22/02| | | | |Unbundled|sparc;|SDRMsp64:2002.03.27.15.30;|Sun Grid Engine 5.3: maintenance patch for S7, S8 and S9 -113138|01|Jul/22/02| | | | |Unbundled|i386;|SDRMsia:2002.03.27.15.30;|Sun Grid Engine 5.3 _x86: maintanance patch for S8_x86 -113139|01|Jul/25/02| | | | |Unbundled|sparc;|SDRMEsp32:2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: maintenance patch -113140|01|Jul/25/02| | | | |Unbundled|sparc;|SDRMEsp64:2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: maintenance patch -113146|01|Aug/06/02| |S| | |9|sparc;|SUNWapchS:2002.03.02.00.35;SUNWapchd:2002.03.02.00.35;SUNWapchr:2002.03.02.00.35;SUNWapchu:2002.03.02.00.35;|SunOS 5.9: Apache Security Patch -113176|01|Jul/31/02| |S| | |Unbundled|sparc,i386;|SUNWppmn:2.1;SUNWppro:2.1;|PatchPro patch engine corrections -113184|01|Jul/16/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:2002.04.09.12.25;SUNWcar:2002.04.06.15.27;SUNWcar:2002.04.09.12.25;SUNWcarx:2002.04.06.15.27;SUNWcarx:2002.04.09.12.25;SUNWhea:2002.04.06.15.27;112233-01 (or newer)|SunOS 5.9: Supplemental Kernel Update Patch for S9 FCS +112940|01|Jun/07/02| | | | |Trusted_Solaris_8_4/01|sparc;|SUNWusb:11.8.0,REV=2001.09.25.00.12;SUNWusbx:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: usb problem with TS8 4/01 on sunblade100 +112941|07|May/29/03| | | | |9|sparc;|SUNWadmap:11.9,REV=2002.04.14.23.49;SUNWsibi:11.9,REV=2002.04.14.23.49;|SunOS 5.9: sysidnet Utility Patch +112943|08|Jul/24/03| | | | |9|sparc;|SUNWlvma:1.0,REV=2002.04.14.23.49;SUNWlvmg:1.0,REV=2002.04.14.23.49;|SunOS 5.9: Volume Management Patch +112945|19|Aug/26/03|R| | | |9|sparc;|SUNWdclnt:1.0,REV=2002.04.14.23.49;SUNWlvma:1.0,REV=2002.04.14.23.49;SUNWmga:1.0,REV=2002.04.14.23.49;SUNWpmgr:3.0,REV=2002.04.14.23.49;SUNWwbapi:2.5,REV=2002.04.14.23.49;SUNWwbcor:2.5,REV=2002.04.14.23.49;SUNWwbcou:2.5,REV=2002.04.14.23.49;SUNWwbdev:2.5,REV=2002.04.14.23.49;SUNWwbpro:2.0,REV=2002.04.14.23.49;|SunOS 5.9: wbem Patch +112949|01|Sep/18/02| | |O| |9|sparc;|SUNWadmap:11.9,REV=2002.04.14.23.49;|Obsoleted by: 112941-03 SunOS 5.9: sys-unconfig Patch +112951|05|Apr/07/03|R| | | |9|sparc;|SUNWswmt:11.9,REV=2002.04.14.23.49;|SunOS 5.9: patchadd and patchrm Patch +112953|02|Jul/15/02| | |O| |8|sparc;sparc.sun4u;sparc.sun4us;108528-15;108528-16;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-16 (or newer)|Obsoleted by: SunOS 5.8: Supplemental Kernel Update +112954|04|Apr/30/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: uata Driver Patch +112955|01|Jul/30/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWatfsr:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: patch kernel/fs/autofs kernel/fs/sparcv9/autofs +112958|02|May/06/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch pci.so +112959|01|Jun/28/02| | | | |9|sparc;|SUNWfruid:11.9.0,REV=2002.04.06.15.27;SUNWfruix:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libfru +112960|10|Dec/23/03|R|S| | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWnisu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libsldap ldap_cachemgr libldap +112961|01|Sep/19/02| | | | |9|sparc.sun4u;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch platform/SUNW,Ultra-Enterprise/kernel/drv/sysctrl +112962|01|Jul/26/02| | |O| |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112839-04 SunOS 5.9: patch libthread_db.so.1 +112963|01|Aug/21/02|R| |O| B|9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWbtool:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWtoo:11.9.0,REV=2002.04.06.15.27;SUNWtoox:11.9.0,REV=2002.04.06.15.27;|WITHDRAWN PATCH Obsoleted by: 112963-04 SunOS 5.9: linker patch +112963|08|May/27/03|R| |O| B|9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWbtool:11.9.0,REV=2002.04.06.15.27;SUNWbtoox:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWosdem:11.9.0,REV=2002.04.06.15.27;SUNWtoo:11.9.0,REV=2002.04.06.15.27;SUNWtoox:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112963-09 WITHDRAWN PATCH SunOS 5.9: linker patch +112963|10|Oct/14/03|R|S| | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWbtool:11.9.0,REV=2002.04.06.15.27;SUNWbtoox:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWosdem:11.9.0,REV=2002.04.06.15.27;SUNWtoo:11.9.0,REV=2002.04.06.15.27;SUNWtoox:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: linker patch +112964|04|Apr/23/03|R| | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/ksh Patch +112965|02|Aug/01/03|R| | | |9|sparc;|SUNWeridx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/drv/sparcv9/eri +112966|02|Sep/15/03| | | | |9|sparc;|SUNWvolu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/vold +112967|05|Nov/17/03| | |O| |9|sparc;112233-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWncar:11.9.0,REV=2002.04.06.15.27;SUNWncarx:11.9.0,REV=2002.04.06.15.27;SUNWncau:11.9.0,REV=2002.04.06.15.27;SUNWncaux:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113453-05 SunOS 5.9: /kernel/drv/nca Patch +112968|01|Sep/19/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/bin/renice +112969|01|Jun/28/02| | |O| |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 114332-05 SunOS 5.9: vold slows down the boot proces +112970|05|Sep/03/03|R|S| | |9|sparc;113319-12;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWinamd:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libresolv +112971|04|Aug/07/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch kernel/fs/cachefs +112972|06|Oct/01/03| | | | |9|sparc;|SUNWmibii:11.9.0,REV=2002.04.06.15.27;SUNWsasnm:11.9.0,REV=2002.04.06.15.27;SUNWsasnx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch libssagent.so.1 libssasnmp.so.1 mibiisa snmpdx +112975|03|Oct/24/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/sys/kaio +112985|04|Oct/27/03| | | | |9|sparc;|SUNWclvmg:1.1,REV=2002.03.18.10.05;SUNWdlvmg:1.1,REV=2002.03.15.13.30;SUNWelvmg:1.1,REV=2002.03.15.13.13;SUNWflvmg:1.1,REV=2002.03.15.12.20;SUNWhklvmg:1.1,REV=2002.04.05.13.39;SUNWhlvmg:1.1,REV=2002.03.21.11.31;SUNWilvmg:1.1,REV=2002.03.15.12.37;SUNWjlvmg:1.1,REV=2002.03.15.12.01;SUNWklvmg:1.1,REV=2002.03.18.10.05;SUNWslvmg:1.1,REV=2002.03.15.12.55;|SunOS 5.9: Volume Management Localization message patch +112987|01|Sep/19/02| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: patch /platform/sun4u/kernel/tod/sparcv9/todsg +112989|01|Aug/16/02| | | | |8|sparc;|SUNWpcu:13.1,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/print/conv_lpd patch +112990|01|Aug/16/02| | | | |8_x86|i386;|SUNWpcu:13.1,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/print/conv_lpd patch +112991|01|Sep/11/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/prtvtoc patch +112992|01|Sep/11/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/prtvtoc patch +112993|01|Sep/11/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/passmgmt patch +112994|01|Oct/24/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/passmgmt patch +112996|01|Sep/11/02| | | | |8|sparc;|SUNWast:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/aset/tasks/sysconf patch +112997|01|Sep/11/02| | | | |8_x86|i386;|SUNWast:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/aset/tasks/sysconf patch +112998|03|May/29/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/syslogd +113008|01|Sep/24/02| | | | |Unbundled|sparc;|SUNWsasdk:1.3;|Solstice Enterprise Agent SDK 1.0.3: Patch +113009|01|Oct/16/02| | | | |Unbundled|i386;|SUNWsasdk:1.3;|Solstice Enterprise Agent SDK 1.0.3: Patch +113020|02|Sep/15/03| | | | |9|sparc;|SUNW5ttf:9.0,REV=2001.12.04.10.20;SUNWcttf:9.0,REV=2001.11.06.10.49;SUNWinleu:9.0,REV=2002.01.23.13.09;SUNWinlex:9.0,REV=2002.01.23.13.09;SUNWinttf:9.0,REV=2002.03.01.16.21;SUNWkttf:9.0,REV=2002.02.14.11.07;SUNWtleu:9.0,REV=2002.01.16.15.05;SUNWtleux:9.0,REV=2002.01.16.15.05;|SunOS 5.9: Fixing Asia and Thai locales related problems +113021|02|Sep/15/03| | | | |9|sparc;|SUNWcleex:9.0,REV=2002.01.08.13.03;SUNWcleu:9.0,REV=2002.03.26.09.55;SUNWcleue:9.0,REV=2002.01.08.13.03;SUNWcleux:9.0,REV=2002.03.26.09.55;SUNWhkeex:9.0,REV=2002.04.05.13.44;SUNWhkeue:9.0,REV=2002.04.05.13.44;SUNWhkleu:9.0,REV=2002.03.22.11.11;SUNWhklex:9.0,REV=2002.01.08.13.03;SUNWhleex:9.0,REV=2001.12.04.10.19;SUNWhleu:9.0,REV=2002.02.06.15.54;SUNWhleue:9.0,REV=2002.01.08.13.03;SUNWhleux:9.0,REV=2002.01.30.17.15;SUNWkleex:9.0,REV=2001.12.04.10.18;SUNWkleu:9.0,REV=2002.01.29.19.29;SUNWkleue:9.0,REV=2001.12.04.10.18;SUNWkleux:9.0,REV=2002.01.08.13.02;|SunOS 5.9: Sync with UTF-8 and correct yesstr/nostr definition +113023|01|Oct/24/02|R| | | |9|sparc;|SUNWcbcp:9.0,REV=2001.11.06.10.49;SUNWcwbcp:9.0,REV=2001.11.06.10.49;SUNWhbcp:9.0,REV=2001.11.06.10.45;SUNWhwbcp:9.0,REV=2001.11.06.10.45;SUNWkbcp:9.0,REV=2001.11.06.10.42;SUNWkwbcp:9.0,REV=2001.11.06.10.42;|SunOS 5.9: Broken preremove scripts in S9 ALC packages +113024|07|Jun/17/03| | | | |9|sparc.sun4u;112233-01;|SUNWwrsax:11.9.0,REV=2002.04.06.15.27;SUNWwrsdx:11.9.0,REV=2002.04.06.15.27;SUNWwrsmx:11.9.0,REV=2002.04.06.15.27;SUNWwrsux:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: wrsm Driver Patch +113025|01|Jul/15/02| | |O| |9|sparc;|SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113573-02 SunOS 5.9: libpsvcpolicy_psr.so.1 Patch +113026|10|Jul/28/03|R| | | |9|sparc;112233-07;113454-01;114127-01;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWmdr:11.9.0,REV=2002.04.06.15.27;SUNWmdu:11.9.0,REV=2002.04.06.15.27;SUNWmdx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/drv/md Patch +113027|02|Apr/04/03| | | | |9|sparc;|SUNWfruid:11.9.0,REV=2002.04.06.15.27;SUNWfruix:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libfrureg.so.1 Patch +113028|01|Sep/27/02| | | | |9|sparc;|SUNWosdem:11.9.0,REV=2002.04.06.15.27;SUNWqos:11.9.0,REV=2002.06.13.13.44;SUNWqosx:11.9.0,REV=2002.06.13.13.44;|SunOS 5.9: patch /kernel/ipp/flowacct +113029|04|Aug/26/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libaio.so.1 librt.so.1 and abi_libaio.so.1 Patch +113030|02|Dec/18/02|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/sys/doorfs Patch +113031|03|Dec/24/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWxcu4:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/edit Patch +113032|02|Apr/22/03| | | | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/init Patch +113033|03|Dec/24/02|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/drv/isp and /kernel/drv/sparcv9/isp +113034|10|Dec/24/03| | | | |Unbundled|||Hardware/PROM: Sun Fire V480 Flash PROM Update +113038|05|Aug/26/03| | | | |9|sparc;|SUNWjeman:1.2,REV=2002.03.18.16.10;SUNWjman:1.2,REV=2002.01.31.09.16;SUNWjmane:1.1,REV=2002.01.31.09.19;|SunOS 5.9: JFP manpages patch +113039|04|Nov/13/03| | | | |Unbundled|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWmdi:11.9.0,REV=2002.04.06.15.27;SUNWmdix:11.9.0,REV=2002.04.06.15.27;113045-01 (or newer)|SAN 4.3: Sun StorEdge Traffic Manager patch +113040|06|Nov/13/03|R| | | |Unbundled|sparc;113039-04;113046-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWfcp:11.9.0,REV=2002.04.06.15.27;SUNWfcpx:11.9.0,REV=2002.04.06.15.27;SUNWfctl:11.9.0,REV=2002.04.06.15.27;SUNWfctlx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;113046-02 (or newer)|SAN 4.3: fctl/fp/fcp driver patch +113041|04|Nov/13/03| | | | |Unbundled|sparc;113039-04;113040-06;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWfcip:11.9.0,REV=2002.04.06.15.27;SUNWfcipx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;113047-01 (or newer)|SAN 4.3: fcip driver patch +113042|05|Nov/13/03| | | | |Unbundled|sparc;113039-04;113040-06;113041-04;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWqlc:11.9.0,REV=2002.04.06.15.27;SUNWqlcx:11.9.0,REV=2002.04.06.15.27;113048-01 (or newer)|SAN 4.3: qlc driver patch +113043|05|Nov/13/03| | | | |Unbundled|sparc;113039-04;113040-06;113049-01;|SUNWluxop:11.9.0,REV=2002.04.06.15.27;SUNWluxox:11.9.0,REV=2002.04.06.15.27;113049-02 ( or newer)|SAN 4.3: luxadm, liba5k and libg_fc patch +113044|04|Nov/13/03| | | | |Unbundled|sparc;113039-04;113040-06;113041-04;113042-05;113043-05;|SUNWcfpl:11.9.0,REV=2002.06.07.10.30;SUNWcfplx:11.9.0,REV=2002.06.07.10.30;113050-01 (or newer)|SAN 4.3: cfgadm fp plug-in library patch +113046|01|Apr/28/03| | | | |9|sparc;|SUNWfcp:11.9.0,REV=2002.04.06.15.27;SUNWfcpx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: fcp Patch +113049|01|Apr/03/03| | | | |9|sparc;|SUNWluxop:11.9.0,REV=2002.04.06.15.27;SUNWluxox:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: luxadm & liba5k.so.2 Patch +113054|07|Dec/18/03| | | | |Unbundled|sparc;|SUNWscmu:3.1.31,REV=2002.05.23;SUNWspsvr:3.1.31,REV=2002.05.23;SUNWspsvu:3.1.31,REV=2002.05.23;|Availability Suite 3.1 SCM: Patch +113055|01|Aug/07/02| | |O| |Unbundled|sparc;|SUNWspsvu:3.1.31,REV=2002.05.23;|Obsoleted by: 113054-05 Sun StorEdge Availability Suite 3.1 SV: Pa +113056|06|Nov/05/03| | | | |Unbundled|sparc;113054-06;|SUNWiiu:3.1.31,REV=2002.05.23;|Availability Suite 3.1 II: Patch +113057|02|Sep/11/02| | | | B|Unbundled|sparc;|SUNWrdcu:3.1.31,REV=2002.05.23;|WITHDRAWN PATCH Availability Suite 3.1 SNDR: Patch +113057|07|Dec/17/03| | | | |Unbundled|sparc;113054-06;|SUNWrdcu:3.1.31,REV=2002.05.23;|Availability Suite 3.1 SNDR: Patch +113061|01|Sep/19/02| | |O| |9|sparc;|SUNWeuluf:1.5,REV=2002.02.02.16.55;SUNWeulux:1.5,REV=2002.02.02.16.55;|Obsoleted by: 113896-02 SunOS 5.9: UTF-8 locale UMLE patch +113063|01|Sep/16/02| |S| | |Trusted_Solaris_7|||Trusted Solaris 7: ttymon patch +113064|01|Sep/16/02| |S| | |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: ttymon patch +113068|04|May/16/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: hpc3130 patch +113069|04|Nov/11/02| | |O| |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWmdr:11.9.0,REV=2002.04.06.15.27;SUNWmdx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113026-05 SunOS 5.9: metadisk patch +113070|01|Jul/23/02| | | | |9|sparc;|SUNWbip:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ftp patch +113071|01|Sep/30/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/acctadm +113072|07|Jun/24/03| | | | |9|sparc;114127-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/format +113073|05|Sep/25/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;113454-08;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ufs_log patch +113074|04|Jun/02/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWdrr:11.9.0,REV=2002.04.06.15.27;SUNWdrr:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: ngdr.conf patch +113075|01|Jan/09/03| | | | |9|sparc;|SUNWesu:11.9.0,REV=2002.04.06.15.27;SUNWesxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: pmap patch +113076|02|Jan/08/03| | | | |9|sparc;|SUNWdhcm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: dhcpmgr.jar Patch +113077|09|Sep/24/03|R| | | |9|sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: /platform/sun4u/kernal/drv/su Patch +113078|01|Aug/07/02| | | | |7|sparc;|SUNWpmu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: pmconfig patch +113079|01|Aug/07/02| | | | |7_x86|i386;|SUNWpmu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: pmconfig patch +113080|01|Jul/01/02| | | | |Unbundled|sparc;|SUNWkmE10:2.6,REV=1;|E10K KM VDC core voltage in alarm +113081|01|Aug/12/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;SUNWxcu4:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: vi/ex/edit/view/vedit/adminvi patch +113082|01|Aug/15/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWdtwm:1.4,REV=10.2001.09.25;|Trusted Solaris 8 4/01: dtsession patch +113083|01|Sep/11/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWxwplt:3.8.1800,REV=0.99.03.23;SUNWxwplx:3.8.11,REV=0.98.11.03;|Trusted Solaris 8 4/01: Xsun patch +113084|01|Oct/04/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: Login patch +113085|02|Jan/10/03| | | | |9|sparc;|SUNWtxfnt:9.0,REV=2002.03.13.19.40;|SunOS 5.9: Thai font enhancement +113086|01|Oct/24/02| | | | |9|sparc;|SUNWciu8:9.0,REV=2001.11.13.15.43;SUNWciu8x:9.0,REV=2001.11.06.10.49;|SunOS 5.9: iconv modules between zh_CN.euc and UTF-8 are incompati +113087|01|Oct/24/02| | | | |9|sparc;|SUNWcxplt:9.0,REV=2002.03.23.10.38;SUNWhkplt:9.0,REV=2002.03.26.10.13;SUNWhxplt:9.0,REV=2002.03.26.10.01;SUNWkxplt:9.0,REV=2002.03.23.10.37;|SunOS 5.9: Cannot use other fonts to display Asian characters in x +113093|01|Oct/24/02| | | | |7|sparc;|SUNWkiu8:7.0,REV=1.0.21;SUNWkiu8x:7.0,REV=1.0.21;|SunOS 5.7: UTF-8 iconv modules generate/accept invalid ko 3byte va +113094|01|Oct/24/02| | | | |7_x86|i386;|SUNWkiu8:7.0,REV=1.0.21;|SunOS 5.7_x86: UTF-8 iconv modules generate/accept invalid ko 3byt +113096|03|May/01/03|R| | | |9|sparc;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: OWconfig patch +113098|04|Feb/27/03| | | | |9|sparc;112785-05;113096-01;|SUNWxwinc:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplx:6.6.1.5800,REV=0.2002.04.05;SUNWxwrtl:6.6.1.5800,REV=0.2002.04.05;SUNWxwrtx:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: X RENDER extension patch +113099|01|Feb/27/03| | | | |9_x86|i386;|SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: X RENDER extension patch +113100|01|Jan/09/03| | |O| B|9|sparc;113096-01;113096-01;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;SUNWxwsrv:6.6.1.5800,REV=0.2002.04.05;|Obsoleted by: 112785-15 WITHDRAWN PATCH X11 6.6.1: VFB loadable DD +113105|01|May/15/03| |S| | |Unbundled|sparc;|SUNWicam:2002.10.15.18.02;SUNWicapp:1.0.0,REV=2002.10.15.18.02;SUNWicsvc:2002.10.15.18.02;SUNWmcon:1.0,REV=2002.10.11.05.05;|Change Management 1.0: Patch for Solaris 8 +113106|01|May/21/03| |S| | |Unbundled|sparc;|SUNWicam:2002.10.15.18.07;SUNWicapp:1.0.0,REV=2002.10.15.18.07;SUNWicsvc:2002.10.15.18.07;SUNWmcon:1.0,REV=2002.10.11.05.02;|Change Management 1.0: Patch for Solaris 9 +113110|01|Dec/23/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: touch Patch +113111|01|Dec/23/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: touch Patch +113115|01|May/01/03| | | | |Unbundled|sparc;|SUNWsasdk:2002.06.19.13.31;|Solstice Enterprise Agent SDK 1.0.3: Patch +113116|03|Jul/11/03| | | | |Unbundled|sparc;|SUNWesarg:3.0_PRM_Build31,REV=2.6.2002.05.15;SUNWesdrg:3.0_PRM_Build31,REV=2.6.2002.05.15;|PRM Sun Management Center 3.0 PRM: Patch +113117|03|Jul/22/03| | | | |Unbundled|sparc;|SUNWesarg:3.0_PRM_Build31,REV=2.7.2002.05.15;SUNWesdrg:3.0_PRM_Build31,REV=2.7.2002.05.15;|Sun Management Center 3.0 PRM: Patch +113118|03|Aug/15/03| | | | |Unbundled|sparc;|SUNWesarg:3.0_PRM_Build31,REV=2.8.2002.05.15;SUNWesdrg:3.0_PRM_Build31,REV=2.8.2002.05.15;|Sun Management Center 3.0 PRM: Patch +113119|01|Dec/09/03| | | | |Unbundled|||Sun Management Center 3.5: Patch for Windows +113120|01|Nov/07/03| | | | |Unbundled|sparc;|SUNWesagt:3.5,REV=2.6.2003.05.08;SUNWescom:3.5,REV=2.6.2003.05.08;SUNWmeta:3.5,REV=2.6.2003.05.08;|Sun Management Center 3.5: Patch for Solaris 2.6 +113121|01|Nov/07/03| | | | |Unbundled|sparc;|SUNWesagt:3.5,REV=2.6.2003.05.08;SUNWescom:3.5,REV=2.7.2003.05.08;SUNWmeta:3.5,REV=2.6.2003.05.08;|Sun Management Center 3.5: Patch for Solaris 2.7 +113122|01|Nov/07/03| | | | |Unbundled|sparc;|SUNWesagt:3.5,REV=2.6.2003.05.08;SUNWescom:3.5,REV=2.8.2003.05.08;SUNWmeta:3.5,REV=2.6.2003.05.08;|Sun Management Center 3.5: Patch for Solaris 8 +113123|01|Nov/07/03| | | | |Unbundled|sparc;|SUNWesagt:3.5,REV=2.6.2003.05.08;SUNWescom:3.5,REV=2.9.2003.05.08;SUNWmeta:3.5,REV=2.6.2003.05.08;|Sun Management Center 3.5: Patch for Solaris 9 +113124|01|Oct/10/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /kernel/drv/devinfo patch +113125|01|Aug/23/02| | | | |9|sparc.sun4us;|SUNWkvmx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: missing libc_psr.so.1 symlink +113128|02|Jan/02/03| | | | |8|sparc;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: XKB patch +113129|02|Jan/02/03| | | | |8_x86|i386;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: XKB patch +113135|01|Jan/23/03| | | | |Unbundled|sparc;|SUNWatm:5.1,REV=2002.03.01.9.0;SUNWatmu:5.1,REV=2002.03.01.9.0;|SunATM 5.1: bug fixes +113136|04|Aug/01/03| |S| | |Unbundled|sparc;|SDRMsp32:5.3,REV=2002.03.27.15.30;|Sun Grid Engine 5.3: maintenance/security patch +113137|04|Aug/01/03| |S| | |Unbundled|sparc;|SDRMsp64:5.3,REV=2002.03.27.15.30;|Sun Grid Engine 5.3: maintenance/security patch +113138|04|Aug/01/03| |S| | |Unbundled|i386;|SDRMsia:5.3,REV=2002.03.27.15.30;|Sun Grid Engine 5.3 _x86: maintenance/security patch +113139|05|Dec/03/03| |S| | |Unbundled|sparc;|SDRMEsp32:5.3,REV=2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: maintenance/security patc +113140|05|Dec/03/03| |S| | |Unbundled|sparc;|SDRMEsp64:5.3,REV=2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: maintenance/security patc +113145|02|Aug/26/02| | | | |9|sparc.sun4u;|NATEvplr:5.9,REV=2002.04.09.21.53;|SunOS 5.9: Naturetech /platform links do not exist +113146|02|May/01/03|R|S| | |9|sparc;|SUNWapchS:11.9.0,REV=2002.03.02.00.35;SUNWapchd:11.9.0,REV=2002.03.02.00.35;SUNWapchr:11.9.0,REV=2002.03.02.00.35;SUNWapchu:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: Apache Security Patch +113167|01|Jan/09/03| | | | |9|sparc;|SUNWjxumn:1.5,REV=2002.03.22.11.40;|SunOS 5.9: JFP xhost manpage patch +113169|10|Mar/04/03| | | | |Unbundled|sparc;|SUNWvts:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsmn:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsx:5.1,REV=08.02.07.25,OE=5.8,5.9;| SunVTS 5.1 Patch Set 1 +113170|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.7.2002.07.29;|WITHDRAWN PATCH Utilization Suite 4.0 Solaris 7 Patch +113170|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.7.2002.07.29;|Utilization Suite 4.0 Solaris 7 Patch +113171|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.8.2002.07.29;|WITHDRAWN PATCH Utilization Suite 4.0 Solaris 8 Patch +113171|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.8.2002.07.29;|Utilization Suite 4.0 Solaris 8 Patch +113172|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.9.2002.07.29;|WITHDRAWN PATCH Utilization Suite 4.0 Solaris 9 Patch +113172|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWsamfs:4.0.5,REV=5.9.2002.07.29;|Utilization Suite 4.0 Solaris 9 Patch +113173|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.7.2002.07.29;|WITHDRAWN PATCH Performance Suite 4.0 Solaris 7 Patch +113173|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.7.2002.07.29;|Performance Suite 4.0 Solaris 7 Patch +113174|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.8.2002.07.29;|WITHDRAWN PATCH Performance Suite 4.0 Solaris 8 Patch +113174|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.8.2002.07.29;|Performance Suite 4.0 Solaris 8 Patch +113175|03|Apr/17/03| | | | B|Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.9.2002.07.29;|WITHDRAWN PATCH Performance Suite 4.0 Solaris 9 Patch +113175|06|Nov/21/03| |S| | |Unbundled|sparc;|SUNWqfs:4.0.5,REV=5.9.2002.07.29;|Performance Suite 4.0 Solaris 9 Patch +113176|03|Dec/17/03| |S| | |Unbundled|sparc,i386;|SUNWppmn:2.1;SUNWppro:2.1;|PatchPro patch engine corrections +113184|01|Jul/16/02| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWhea:11.9.0,REV=2002.04.06.15.27;112233-01 (or newer)|Obsoleted by: SunOS 5.9: Supplemental Kernel Update +113193|03|Nov/26/03| | | | |Unbundled|sparc,i386;|SUNWppro:2.2;|PatchPro 2.2:Display server connection error 113196|01|Jul/31/02| | | | |Unbundled|sparc,i386;|SUNWsdb:2.1;|Java SimpleDatabase corrections -113228|01|Aug/06/02| | | | |9|sparc;|SUNWceuox:2001.12.13.11.03.37;SUNWeeuox:2002.01.30.04.15.34;SUNWmeaox:2002.01.30.01.14.27;SUNWneuox:2002.01.14.03.19.25;SUNWseuox:2001.12.13.11.09.51;SUNWweuox:2001.12.13.11.11.33;|SunOS 5.9: 64 bit locale links missing in Solaris 9 +113201|04|Jul/11/03| |S| | |Unbundled|sparc;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|VxVM 3.2: general patch for Solaris 2.6, 7, and 8 +113203|03|May/22/03| |S| | |Unbundled|sparc;|VRTSob:3.0.2.261;|Veritas VA 2.5: VRTSob +113205|10|Aug/20/03| | | | |Unbundled|sparc;|VRTSjafs:3.5,REV=MP1f;VRTSvxfs:3.5,REV=GA06;|VERITAS File System 3.5: VxFS 3.5 Maintenance Patch 02 for Solaris +113206|10|Aug/20/03| | | | |Unbundled|sparc;|VRTSjafs:3.5,REV=MP1f;VRTSvxfs:3.5,REV=GA06;|VERITAS File System 3.5: VxFS 3.5 Maintenance Patch 02 for Solaris +113207|10|Aug/20/03| | | | |Unbundled|sparc;|VRTSjafs:3.5,REV=MP1f;VRTSvxfs:3.5,REV=GA06;|VERITAS File System 3.5: VxFS 3.5 Maintenance Patch 02 for Solaris +113209|03|Aug/20/03| | | | |Unbundled|sparc;|VRTSfspro:3.5,REV=GA06d;|Cummulative patch for VRTSfspro 3.5,REV=GA06d +113210|03|Aug/20/03| | | | |Unbundled|sparc;|VRTSfspro:3.5,REV=GA06d;|Cummulative patch for VRTSfspro 3.5,REV=GA06d for Solaris 8 +113211|03|Aug/20/03| | | | |Unbundled|sparc;|VRTSfspro:3.5,REV=GA06d;|Cummulative patch for VRTSfspro 3.5,REV=GA06d for Solaris 9 +113218|08|May/08/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;112233-02;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-07 SunOS 5.9: patch pcipsy +113219|01|Sep/13/02| | |O| |9|sparc.sun4u;sparc.sun4us;112233-01;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: patch /platform/SUNW,Ultra-Ente +113220|01|Sep/13/02| | | | |9|sparc.sun4u;sparc.sun4us;112233-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: patch /platform/sun4u/kernel/drv/sparcv9/upa64s +113221|03|May/23/03| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libprtdiag_psr.so.1 Patch +113222|03|Aug/26/03| | | | |9|sparc;|SUNWnfssr:11.9.0,REV=2002.04.06.15.27;SUNWnfssx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/misc/nfssrv and /kernel/misc/sparcv9/nfss +113223|02|Aug/26/03| | | | |9|sparc.sun4u;|SUNWidn:11.9.0,REV=2002.04.06.15.27;SUNWidnx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: idn Patch +113224|01|Jan/09/03| | | | |9|sparc;|SUNWefcux:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: efdaemon Patch +113225|01|Sep/11/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: 2002c Timezone Patch +113226|03|Aug/01/03| | | | |9|sparc;|SUNWhmd:11.9.0,REV=2002.04.06.15.27;SUNWhmdx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: hme Driver Patch +113227|02|Aug/08/02| | | | |7|sparc;|SUNWplcx:1.0,REV=1998.09.11.23.48;SUNWploc:2.0,REV=1998.09.11.21.27;|SunOS 5.7: Updating es_MX currency settings +113228|01|Aug/06/02| | | | |9|sparc;|SUNWceuox:1.1,REV=2001.12.13.11.03.37;SUNWeeuox:1.1,REV=2002.01.30.04.15.34;SUNWmeaox:1.1,REV=2002.01.30.01.14.27;SUNWneuox:1.1,REV=2002.01.14.03.19.25;SUNWseuox:1.1,REV=2001.12.13.11.09.51;SUNWweuox:1.1,REV=2001.12.13.11.11.33;|SunOS 5.9: 64 bit locale links missing in Solaris 9 +113230|02|Dec/04/02| | | | |Unbundled|sparc;|SUNWstade:2.1.05.003;|StorADE 2.1: SUNWstade Update Patch +113240|05|Jul/08/03|R|S| | |9|sparc;|SUNWdtwm:1.5,REV=10.2002.03.13;|CDE 1.5: dtsession patch +113241|05|Jul/08/03|R|S| | |9_x86|i386;|SUNWdtwm:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtsession patch +113242|01|Nov/26/02| | | | |8|sparc;108977-01;|SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4: libSDtRmedia patch +113243|01|Nov/26/02| | | | |8_x86|i386;108978-01;|SUNWdtdst:1.4,REV=10.1999.12.02;|CDE 1.4_x86: libSDtRmedia patch +113244|02|Aug/01/03| | | | |9|sparc;|SUNWdtwm:1.5,REV=10.2002.03.13;|CDE 1.5: dtwm patch +113245|02|Aug/01/03| | | | |9_x86|i386;|SUNWdtwm:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtwm patch +113246|02|Oct/16/02| |S| | |Unbundled|sparc;|SUNWfcprv:11.9.0,REV=2002.03.04.09.59;SUNWnsmat:1.0,REV=05.30.02;SUNWnsmu:1.0,REV=05.30.02;SUNWnsmut:1.0,REV=05.30.02;|Topology Reporter 1.0: Support for Leadville 6.1.2, StorADE bug fi +113258|02|Nov/01/02| | | | |7|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.7.0,REV=1998.09.01.04.16;SUNWcarx:11.7.0,REV=1998.11.30.15.02;SUNWcsr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /kernel/fs/tmpfs & /usr/lib/fs/tmpfs/mount patch +113259|02|Nov/12/02| | | | |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /kernel/fs/tmpfs & /usr/lib/fs/tmpfs/mount patch +113261|02|Feb/21/03| | | | |8|sparc;|SUNWuiu8:1.5,REV=1999.12.03.14.40;SUNWuiu8x:1.5,REV=1999.12.03.14.40;|SunOS 5.8: UTF-8 locale ICONV patch +113262|02|Feb/21/03| | | | |8_x86|i386;|SUNWuiu8:1.5,REV=1999.12.03.14.40;|SunOS 5.8_x86: UTF-8 locale ICONV patch +113273|04|Oct/08/03|R|S| | |9|sparc;|SUNWsshdu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/lib/ssh/sshd Patch +113274|01|Jan/10/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libdhcputil Patch +113275|02|May/05/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;112233-05;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: procfs Patch +113276|04|May/12/03| | |O| |9|sparc;113454-01;113026-03;|SUNWmdr:11.9.0,REV=2002.04.06.15.27;SUNWmdx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113026-10 SunOS 5.9: md_trans Patch +113277|17|Oct/24/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;112233-02;112834-02;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWssad:11.9.0,REV=2002.04.06.15.27;SUNWssadx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sd and ssd Patch +113278|01|Sep/17/02|R|S| | |9|sparc;|SUNWnfscu:11.9.0,REV=2002.04.06.15.27;SUNWnfssu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: NFS Daemon Patch +113279|01|Sep/17/02|R|S| | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWnfscr:11.9.0,REV=2002.04.06.15.27;SUNWnfscx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: klmmod Patch +113280|03|Aug/18/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/bin/cpio +113281|01|Jan/10/03| | | | |9|sparc;|SUNWnisu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/netsvc/yp/ypbind +113282|01|Sep/13/02| | |O| |9|sparc;|SUNWmdu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113026-05 SunOS 5.9: patch /usr/sbin/metaset +113283|01|Aug/08/02| | |O| |Unbundled|||Obsoleted by: 113285-02 SRM causes some SCSI controllers to genera +113284|01|Aug/12/02| | |O| |Unbundled|||Obsoleted by: 113285-02 Resource Management Suite for Windows 2000 +113285|04|Aug/08/03| | |O| |Unbundled|||Obsoleted by: 113876-01 Updated Install-fail on server name with h +113286|01|Oct/17/02| | |O| |Unbundled|||Obsoleted by: 113285-02 Capacity Report 6.0:Patch to replace setup +113304|01|Aug/16/02| | | | |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/fs/tmpfs patch +113305|01|Aug/16/02| | | | |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/fs/tmpfs patch +113312|02|Sep/25/03| | | | |Unbundled|sparc.sun4u;|SUNWfcbpl:1.0,REV=2002.02.06;|SunOS 5.9: Sun Fire 880 Fibre-Channel Backplane Firmware patch +113313|01|Sep/19/02| | |O| |9|sparc;|SUNWinst:11.9,REV=2002.04.14.23.49;|Obsoleted by: 113434-06 SunOS 5.9: /usr/sbin/install.d/pfinstall P +113318|07|Jul/09/03| | | | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWnfscr:11.9.0,REV=2002.04.06.15.27;SUNWnfscx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/fs/nfs and /kernel/fs/sparcv9/nfs +113319|17|Dec/15/03|R|S| | |9|sparc;112874-16;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWnisu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libnsl nispasswdd patch +113320|05|Aug/08/03| | | | |9|sparc;|SUNWpd:11.9.0,REV=2002.04.06.15.27;SUNWpdx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch se driver +113321|05|Sep/01/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWluxd:11.9.0,REV=2002.04.06.15.27;SUNWluxd:11.9.0,REV=2002.04.09.12.25;SUNWluxdx:11.9.0,REV=2002.04.06.15.27;SUNWluxdx:11.9.0,REV=2002.04.09.12.25;SUNWluxl:11.9.0,REV=2002.04.06.15.27;SUNWluxlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch sf and socal +113322|01|Sep/11/02| | | | |9|sparc;|SUNWbnuu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch uucp +113323|01|Dec/24/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/sbin/passmgmt +113324|03|Jan/07/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113277-08 SunOS 5.9: patch st driver +113325|01|Sep/24/02| | |O| |9|sparc;|SUNWpmu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: patch powerd +113326|01|Nov/06/02| | |O| |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWsutl:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 115336-01 SunOS 5.9: tar Patch +113327|02|Apr/16/03| | | | |9|sparc;|SUNWpppdu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: pppd Patch +113328|01|Sep/27/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: tmpfs Patch +113329|04|Nov/25/03|R|S| | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWpcu:13.1,REV=2002.04.06.15.27;SUNWpsu:13.1,REV=2002.04.06.15.27;|SunOS 5.9: lp Patch +113330|01|Feb/05/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: rpcbind Patch +113331|01|Oct/29/02| | | | |9|sparc;|SUNWnfssu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/nfs/rquotad Patch +113332|04|Jun/02/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.09.12.25;SUNWkvmx:11.9.0,REV=2002.04.06.15.27;SUNWkvmx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: libc_psr.so.1 Patch +113333|02|Nov/18/02|R| |O| |9|sparc;|SUNWmdu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113026-05 SunOS 5.9: libmeta Patch +113334|02|Aug/26/03| | | | |9|sparc;|SUNWudfr:11.9.0,REV=2002.04.06.15.27;SUNWudfrx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: udfs Patch +113335|02|Oct/10/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: devinfo Patch +113355|02|May/28/03| |S|O| B|Unbundled|sparc;|SUNWcrysl:1.1.0,REV=2002.05.29.15.18;SUNWcrysu:1.1.0,REV=2002.06.24.23.46;|WITHDRAWN PATCH Obsoleted by: 113355-03 Sun Crypto Accelerator 100 +113355|04|Oct/10/03| |S| | |Unbundled|sparc;|SUNWcrysl:1.1.0,REV=2002.05.29.15.18;SUNWcrysu:1.1.0,REV=2002.06.24.23.46;|Sun Crypto Accelerator 1000 Patch +113356|01|Sep/12/02| |S| | |Unbundled|sparc;|SUNWodu:4.2,REV=08.00.11.15,OE=5.8;|SunVTS4.2 UI patch +113357|01|Sep/12/02| |S| | |Unbundled|sparc;|SUNWodu:4.1,REV=10.00.08.09,OE=5.8;|SunVTS4.1 UI patch +113358|01|Sep/04/02| | |O| |9|sparc;|SUNWadmap:11.9,REV=2002.04.14.23.49;SUNWsibi:11.9,REV=2002.04.14.23.49;|Obsoleted by: 112941-03 SunOS 5.9: sysidtool Patch +113359|01|Apr/08/03| | | | |Unbundled|||Hardware, HP Ultrium-1 LTO Tape Drive, Firmware Download Program E +113361|06|Sep/12/03| | | | |9|sparc;|SUNWged:3.1,REV=2002.01.30.9.0;SUNWgedu:3.1,REV=2002.01.30.9.0;SUNWgedx:3.1,REV=2002.01.30.9.0;|SunOS 5.9: Sun Gigabit Ethernet 3.0 driver patch +113370|02|Feb/06/03| | | | |7|sparc;|SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1: Xpr Patch +113371|02|Feb/06/03| | | | |7_x86|i386;|SUNWxwman:3.7.2100,REV=0.98.08.05;SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1_x86: Xpr Patch +113372|02|Feb/06/03| | | | |8|sparc;|SUNWxwman:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: xpr patch +113373|02|Feb/06/03| | | | |8_x86|i386;|SUNWxwman:6.4.1.3800,REV=0.1999.12.15;SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: xpr patch +113374|02|Feb/06/03| | | | |9|sparc;|SUNWxwman:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: xpr patch +113375|01|Feb/06/03| | | | |9_x86|i386;|SUNWxwman:6.6.1.6400,REV=0.2002.10.16;SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: xpr patch +113388|02|Oct/29/02| |S| | |Unbundled|sparc;|SUNWrsc:2.2.1,REV=2002.02.11;SUNWrscd:2.2.1,REV=2002.02.11;SUNWrscj:2.2.1,REV=2002.02.11;|RSC 2.2.1 patch +113390|01|Sep/27/02| | |O| |9|sparc;|SUNWnafos:1.1,REV=2001.12.13.10.57.41;SUNWnafox:1.1,REV=2001.12.14.06.49.19;|Obsoleted by: 113584-05 SunOS 5.9 : CTYPE errors in "ar" locale +113391|01|Sep/27/02| | |O| |9|sparc;|SUNWmeaos:1.1,REV=2002.03.05.04.04.05;SUNWmeaox:1.1,REV=2002.01.30.01.14.27;|Obsoleted by: 113584-05 SunOS 5.9 : S9 : CTYPE errors in "He_IL"/" +113398|01|Oct/11/02| | | | |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;SUNWesxu:11.7.0,REV=1998.09.01.04.16;SUNWtoo:11.7.0,REV=1998.09.01.04.16;SUNWtoox:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: proc utils do not catch sigpipe +113399|01|Oct/11/02| | | | |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;SUNWtoo:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: proc utils do not catch sigpipe +113400|01|Jun/02/03| | | | |9|sparc;|SUNWcleux:9.0,REV=2002.03.26.09.55;|SunOS 5.9: zh_CN.GBK is incomplete for 64 bit +113401|01|Oct/24/02| | | | |8|sparc;|SUNWkiu8:8.0,REV=1999.10.12.16.19;SUNWkiu8x:8.0,REV=1999.10.12.16.19;|SunOS 5.8: UTF-8 iconv modules generate/accept invalid ko 3byte va +113402|01|Oct/24/02| | | | |8_x86|i386;|SUNWkiu8:8.0,REV=1999.10.12.14.57;|SunOS 5.8_x86: UTF-8 iconv modules generate/accept invalid ko 3byt +113403|04|Aug/22/03| | | | |9|sparc;113896-01;112661-03;112771-06;112785-10;|SUNWindt:9.0,REV=2002.02.01.08.23;SUNWinleu:9.0,REV=2002.01.23.13.09;SUNWinlex:9.0,REV=2002.01.23.13.09;SUNWinplt:9.0,REV=2002.02.07.16.39;SUNWinttf:9.0,REV=2002.03.01.16.21;|SunOS 5.9: Tamil/Kannada/Gujarati/Bengali support +113404|04|Aug/22/03| | | | |9_x86|i386;113897-01;112662-01;113867-01;112786-01;|SUNWindt:9.0,REV=2002.02.01.08.30;SUNWinleu:9.0,REV=2002.08.19.13.15;SUNWinplt:9.0,REV=2002.02.07.16.47;SUNWinttf:9.0,REV=2002.08.19.13.15;|SunOS 5.9_x86: Tamil/Kannada/Gujarati/Bengali support +113407|03|Aug/26/03| | | | |9|sparc;|SUNWcleu:9.0,REV=2002.03.26.09.55;SUNWhkleu:9.0,REV=2002.03.22.11.11;SUNWhleu:9.0,REV=2002.02.06.15.54;SUNWtleu:9.0,REV=2002.01.16.15.05;|SunOS 5.9: Added Five stroke input method support in S9UR +113408|03|Aug/26/03| | | | |9_x86|i386;|SUNWcleu:9.0,REV=2002.08.19.13.15;SUNWhkleu:9.0,REV=2002.08.19.13.15;SUNWhleu:9.0,REV=2002.08.19.13.15;SUNWtleu:9.0,REV=2002.08.19.13.15;|SunOS 5.9_x86: Added Five stroke input method support in S9UR +113413|01|Oct/11/02| | | | |8|sparc;|SUNWbtool:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/ccs/bin/lex patch +113414|01|Jan/31/03| | | | |8_x86|i386;|SUNWbtool:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ccs/bin/lex patch +113415|01|Nov/07/02| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWloc:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: gmsgfmt, msgfmt, gettext patch +113416|01|Nov/07/02| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;SUNWloc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: gmsgfmt, msgfmt, gettext patch +113417|01|Sep/16/02| | | | |8|sparc;|SUNWslpu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: slp.jar and slpd.jar patch +113418|01|Sep/16/02| | | | |8_x86|i386;|SUNWslpu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: slp.jar and slpd.jar patch +113419|01|Sep/16/02| | | | |8|sparc;108995-04;|SUNWesu:11.8.0,REV=2000.01.08.18.12;SUNWesxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv7/prun and /usr/bin/sparcv9/prun patch +113420|01|Sep/18/02| | | | |8_x86|i386;108996-04;|SUNWesu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/prun patch +113421|01|Oct/25/02| | |O| |8|sparc;|SUNWusb:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109896-15 SunOS 5.8: /etc/init.d/initusb patch +113422|01|Oct/25/02| | |O| |8_x86|i386;|SUNWusb:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 109897-15 SunOS 5.8_x86: /etc/init.d/initusb patch +113424|01|Nov/15/02| | | | |9|sparc;|SUNWjdwm:1.5,REV=2002.03.16.11.50;|CDE 1.5: message patch to add IM title in the workspace menu +113426|01|Sep/11/02| | | | |7|sparc;|SUNWpmu:11.7.0,REV=1998.09.01.04.16;SUNWpmux:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: pm Patch +113427|01|Nov/20/02| | | | |7_x86|i386;|SUNWpmu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: pm Patch +113428|01|Sep/06/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWarc:11.8.0,REV=2001.09.25.00.12;SUNWcsl:11.8.0,REV=2001.09.25.00.12;SUNWcslx:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: libnsl patch +113429|01|Sep/06/02| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: rpcmod patch +113430|01|Oct/04/02| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: tcp patch +113431|01|Oct/04/02| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: in.telnet patch +113432|08|Sep/26/03| | | | |9|sparc;sparc.sun4us;|FJSVcpc:3.0,REV=2002.04.09.12.25;FJSVcpcx:3.0,REV=2002.04.09.12.25;FJSVhea:11.9.0,REV=2002.04.09.12.25;FJSVmdb:11.9.0,REV=2002.04.09.12.25;FJSVvplr:11.9.0,REV=2002.04.09.12.25;FJSVvplu:11.9.0,REV=2002.04.09.12.25;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcpr:11.9.0,REV=2002.04.09.12.25;SUNWcprx:11.9.0,REV=2002.04.09.12.25;SUNWkvm:11.9.0,REV=2002.04.09.12.25;SUNWkvmx:11.9.0,REV=2002.04.09.12.25;SUNWpstl:11.9.0,REV=2002.04.09.12.25;SUNWpstlx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: Introduction Fujitsu SPARC64-V platforms patch +113433|04|Sep/15/03| | | | |Unbundled|||Sun[tm] ONE Studio 4 update 1, CE Patch, Multilanguage +113434|12|Oct/15/03| | | | |9|sparc;114482-01;|SUNWadmc:11.8,REV=2002.04.14.22.42;SUNWinst:11.9,REV=2002.04.14.23.49;SUNWsibi:11.9,REV=2002.04.14.23.49;|SunOS 5.9: /usr/snadm/lib Library and Differential Flash Patch +113435|01|Sep/06/02| | | | |Unbundled|sparc;|SUNWessfd:2.1.1_build04,REV=2.5.2000.01.03;|SunMC 2.1.1: Config-Reader4u1D fails with Assertion failed +113436|01|Sep/06/02| | | | |Unbundled|sparc;|SUNWessfd:2.1.1_build04,REV=2.6.2000.01.03;|SunMC 2.1.1: Config-Reader4u1D fails with Assertion failed +113437|01|Sep/06/02| | | | |Unbundled|sparc;|SUNWessfd:2.1.1_build04,REV=2.7.2000.01.03;|SunMC 2.1.1: Config-Reader4u1D fails with Assertion failed +113438|01|Sep/06/02| | | | |Unbundled|sparc;|SUNWessfd:2.1.1_build04,REV=2.8.2000.01.03;|SunMC 2.1.1: Config-Reader4u1D fails with Assertion failed +113445|02|May/06/03| | |O| |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: schpc Patch +113446|03|Nov/07/03| | | | |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: dman Patch +113447|01|Dec/09/02| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libprtdiag_psr Patch +113449|03|Oct/06/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: gld Patch +113451|03|Aug/13/03|R|S| | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: IKE Patch +113453|05|Nov/19/03|R| |O| |9|sparc;sparc.sun4u;sparc.sun4us;112233-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWncar:11.9.0,REV=2002.04.06.15.27;SUNWncarx:11.9.0,REV=2002.04.06.15.27;SUNWncau:11.9.0,REV=2002.04.06.15.27;SUNWncaux:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: sockfs/NCA library patch +113454|14|Nov/18/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ufs Patch +113456|01|Feb/10/03| | | | |9|sparc;113073-02;113276-02;113026-10;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: adb modules +113457|03|Sep/24/03| | | | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ufs headers +113459|02|Apr/22/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: udp patch +113464|06|Sep/29/03| | | | |9|sparc;|SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: IPMP Headers Patch +113467|01|Dec/24/02| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: seg_drv & seg_mapdev Patch +113470|02|Oct/13/03| | | | |9|sparc;|SUNWxwdv:11.9.0,REV=2002.04.06.15.27;SUNWxwdvx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: winlock Patch +113471|02|May/05/03| | | | |9|sparc;|SUNWcpcu:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWesu:11.9.0,REV=2002.04.06.15.27;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWrmwbu:11.9.0,REV=2002.04.06.15.27;SUNWscpu:11.9.0,REV=2002.04.06.15.27;SUNWtnfc:11.9.0,REV=2002.04.06.15.27;SUNWtoo:11.9.0,REV=2002.04.06.15.27;SUNWtoox:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: truss Patch +113472|01|Dec/24/02| | | | |9|sparc;|SUNWesu:11.9.0,REV=2002.04.06.15.27;SUNWesxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: madv & mpss lib Patch +113475|02|Feb/05/03| | | | |9|sparc;112874-06;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/security crypt Patch +113476|08|Sep/03/03| | | | |9|sparc;112874-06;112960-03;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/passwdutil.so.1 pam_ldap Patch +113480|02|Jan/24/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/security/pam_unix.so.1 Patch +113481|03|Jan/24/03| | |O| |9|sparc;|SUNWnisu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113319-11 SunOS 5.9: usr/sbin/rpc.nispasswdd Patch +113482|01|Jan/24/03| | | | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sbin/sulogin Patch +113483|02|Feb/28/03| | | | |9|sparc;|SUNWypu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/netsvc/yp/rpc.yppasswd Patch +113484|02|Jan/13/03| | | | |9|sparc;|SUNWcwdev:9.0,REV=2002.01.08.09.59;SUNWdwdev:12.0,REV=2002.03.15.13.30;SUNWewdev:12.0,REV=2002.03.15.13.13;SUNWfwdev:12.0,REV=2002.03.15.12.20;SUNWhwdev:9.0,REV=2002.03.15.20.43;SUNWiwdev:12.0,REV=2002.03.15.12.37;SUNWjwbd:2.0,REV=2002.03.07.18.44;SUNWkwdev:9.0,REV=2002.01.08.10.33;SUNWswdev:12.0,REV=2002.03.15.12.55;|SunOS 5.9: WBEM SDK Localization message patch +113485|01|Jun/04/03| | | | |9|sparc;113076-02;|SUNWcdhcm:9.0,REV=2002.02.06.22.16;SUNWddhcm:1.0,REV=2002.03.15.13.30;SUNWedhcm:1.0,REV=2002.03.15.13.13;SUNWfdhcm:1.0,REV=2002.03.15.12.20;SUNWhdhcm:9.0,REV=2002.02.06.22.34;SUNWidhcm:1.0,REV=2002.03.15.12.37;SUNWjdhcm:1.0,REV=2002.03.15.12.01;SUNWkdhcm:9.0,REV=2002.02.06.22.52;SUNWsdhcm:1.0,REV=2002.03.15.12.55;|SunOS 5.9: DHCP Manager Localization message patch +113486|04|May/12/03| | | | |Unbundled|sparc;|SUNWmmgr:3.4,REV=2000.06.23.16.09;|NetBackup 3.4 UNIX server mappings fix +113487|05|Aug/18/03| | | | |Unbundled|sparc;|VRTSnetbp:4.5,REV=2002.03.26.15.05;|NetBackup 4.5 UNIX server mappings fix +113488|01|Feb/12/03| | | | |9|sparc.sun4u;|SUNWfruip:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Field Replacement Unit ID Platform & Access Library Pat +113489|04|Aug/27/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: sbd & sbdp Patch +113490|02|Mar/21/03| | | | |9|sparc;|SUNWaudd:11.9.0,REV=2002.04.06.15.27;SUNWauddx:11.9.0,REV=2002.04.06.15.27;SUNWaudh:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Audio Device Driver Patch +113491|01|Oct/25/02| | |O| |9|sparc;|SUNWmdu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113026-05 SunOS 5.9: rpc Library Patch +113492|04|Dec/24/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: fsck Patch +113493|01|Oct/11/02| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libproc.so.1 Patch +113494|01|Dec/17/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: iostat Patch +113495|02|May/23/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.09.12.25;SUNWkvmx:11.9.0,REV=2002.04.06.15.27;SUNWkvmx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: cfgadm Library Patch +113496|01|Jan/14/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: inetd Patch +113498|03|May/12/03| | | | |Unbundled|sparc;|SUNWsclc:3.0.0,REV=2002.07.23.00.29;|Sun Cluster 3.0: HA-Livecache +113499|02|May/12/03| | | | |Unbundled|sparc;|SUNWscsbl:3.0.0,REV=2002.07.23.00.29;|Sun Cluster 3.0: HA-Siebel +113500|01|Sep/17/02| | | | |Unbundled|sparc;|SUNWvts:5.0,REV=58.02.02.21,OE=5.9;SUNWvtsx:5.0,REV=58.02.02.21,OE=5.9;|SunVTS5.0 Test Patch +113502|01|Sep/09/02| | | | |Unbundled|||Solaris Native: Sun[tm] ONE Studio 4, EE, Patch 113502-01 +113504|01|Jan/10/03| | |O| |9|sparc;|SUNWinst:11.9,REV=2002.04.14.23.49;|Obsoleted by: 113434-06 SunOS 5.9: flarcreate Patch +113505|01|Nov/25/02| |S| | |Unbundled|sparc;109234-09;|SUNWscva:3.0.0,REV=2001.05.29.11.07;|Sun Cluster 3.0: Apache SSL Components patch for Solaris 8 +113507|02|Jun/04/03| | | | |Unbundled|sparc;|SUNWWDRr:1.0.0,REV=2002.07.10.18.43;|WDR 1.0: WDR software patch +113508|01|Nov/25/02| |S| | |Unbundled|sparc;113146-01;|SUNWscva:3.0.0,REV=2002.02.18.09.44;|Sun Cluster 3.0: Apache SSL Components patch for Solaris 9 +113513|02|Jan/02/03| | | | |9|sparc;|SUNWxwpsr:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: platform support for new hardware +113530|01|May/01/03| | | | |Unbundled|sparc;|SUNWlznb:2.0,REV=rr24;|PC Netlink Netbios fixes +113531|04|Jul/10/03| |S| | |Unbundled|sparc;|SUNWlzha:2.0,REV=rr24;SUNWlzm:2.0,REV=rr24;SUNWlzs:2.0,REV=rr24;|PC NetLink 2.0 server fixes +113534|01|Dec/23/02| | | | |Unbundled|sparc;sparc.sun4u;|SUNWctac:1.0,REV=2000.04.26.19.27;SUNWcti2x:11.9.0,REV=2002.04.06.15.27;|Netra ct 1.0: OBP update for SUNW,UltraSPARC-IIi-Netract +113535|02|Dec/23/02| | | | |Unbundled|sparc;sparc.sun4u;113534-01;|SUNWcti2x:11.9.0,REV=2002.04.06.15.27;SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|Netra ct 1.0: S9 Dual Console TTYmux support +113538|06|Jun/12/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWdrr:11.9.0,REV=2002.04.06.15.27;SUNWdrr:11.9.0,REV=2002.04.09.12.25;SUNWdrrx:11.9.0,REV=2002.04.06.15.27;SUNWdrrx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: ngdr, ngdrmach Patch +113539|01|May/05/03| | |O| |9|sparc.sun4us;|SUNWpstl:11.9.0,REV=2002.04.09.12.25;SUNWpstlx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 114376-02 SunOS 5.9: Introducing Fujitsu FJSV,GPUSC- +113541|02|Mar/27/03| | | | |9|sparc;112785-12;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: XKB patch +113542|01|Mar/05/03| | | | |9_x86|i386;112786-03;|SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: XKB patch +113543|02|Sep/26/03| | |O| |9|sparc;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 114395-03 SunOS 5.9: Introduction Fujitsu SPARC64-V +113544|01|Sep/11/02| | | | |Unbundled|sparc;|SUNWSMSjh:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: SCDRhelp package missing from SUNWSMSjh for SMS 1.2 +113551|01|Oct/07/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbus2:6.1,REV=Build.186;|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch +113552|01|Oct/07/02| | |O| |Unbundled|sparc;111962-07;|SUNWsbuc:6.1,REV=Build.186;|Obsoleted by: 111962-09 Solstice Backup 6.1: Product Patch +113555|02|Apr/17/03| | | | |Unbundled|sparc;111962-09;|SUNWsbun:6.1,REV=Build.186;SUNWsbus2:6.1,REV=Build.186;|Solstice Backup 6.1: Product Patch +113557|01|Mar/26/03| | | | |Unbundled|solaris;|LGTOsap:rt_linuxnmo31.Build.90;|Solstice Backup Module for SAP R/3 2.1 Product Patch +113562|01|Mar/07/03| | | | |Unbundled|sparc;111962-09;|SUNWsbus1:6.1,REV=Build.186;|Solstice Backup 6.1: Product Patch +113563|01|Apr/17/03| | |O| |Unbundled|sparc;|SUNWebsd:7.0,REV=322;SUNWebsn:7.0,REV=322;|Obsoleted by: 113566-02 StorEdge EBS 7.0: Product Patch +113564|01|May/08/03| | | | |Unbundled|i386;111963-03;|SUNWsbus1:6.1,REV=Build.186;|Solstice Backup 6.1_x86: Product Patch +113565|01|May/09/03| | | | |Unbundled|sparc;112465-03;|SUNWsbus1:6.1.1,REV=238;|Solstice Backup 6.1: Product Patch +113566|02|May/14/03| | | | |Unbundled|sparc;|SUNWebsd:7.0,REV=322;SUNWebsn:7.0,REV=322;|StorEdge EBS 7.0: Product Patch +113567|01|May/12/03| | | | |Unbundled|sparc;112465-03;|SUNWsbun:6.1.1,REV=238;SUNWsbus2:6.1.1,REV=238;|Solstice Backup 6.1 L10N: Product Patch +113568|02|Aug/26/03| | | | |Unbundled|sparc;|SUNWebsd:7.0,REV=322;|StorEdge EBS 7.0: Product Patch +113569|01|Sep/03/03| | | | |Unbundled|sparc;111962-09;|SUNWsbun:6.1,REV=Build.186;|Solstice Backup 6.1: Product Patch +113570|01|Oct/17/03| | | | |Unbundled|sparc;111962-09;|SUNWsbus1:6.1,REV=Build.186;|Solstice Backup 6.1: Product Patch +113571|03|Jul/30/03| | |O| |9|sparc;sparc.sun4u;|SUNWdrcrx:11.9.0,REV=2002.04.06.15.27;SUNWefclx:11.9.0,REV=2002.04.06.15.27;SUNWefcux:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: efCode & fcgp2 Patch +113572|01|Oct/25/02| | | | |9|sparc;|SUNWdoc:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: docbook-to-man.ts Patch +113573|03|Aug/12/03|R| | | |9|sparc;|SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libpsvc Patch +113574|03|May/23/03|R| | | |9|sparc;sparc.sun4u;113573-02;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: SUNW,Sun-Fire-880 libpsvc Patch +113575|05|Sep/29/03|R|S| | |9|sparc;|SUNWsndmr:11.9.0,REV=2002.04.06.15.27;SUNWsndmu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sendmail Patch +113576|01|Jan/14/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/dd Patch +113577|01|Jan/14/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/kernel/sched/FX Patch +113578|01|Jan/14/03| | |O| |9|sparc.sun4m;sparc.sun4u;sparc.sun4us;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-08 SunOS 5.9: inetboot Patch +113579|01|Nov/08/02|R|S| | |9|sparc;|SUNWypu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ypserv/ypxfrd Patch +113580|01|Feb/11/03| | | | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: mount Patch +113581|01|Jan/14/03| | | | |9|sparc;|SUNWcddte:9.0,REV=2002.01.14.11.38;SUNWdedte:1.1,REV=2002.04.01.17.42;SUNWesdte:1.1,REV=2002.04.01.17.42;SUNWfrdte:1.1,REV=2002.04.01.17.43;SUNWhddte:9.0,REV=2002.01.09.17.30;SUNWitdte:1.1,REV=2002.04.01.17.43;SUNWjddte:1.5,REV=2002.04.01.17.44;SUNWkddte:9.0,REV=2002.03.26.17.44;SUNWsvdte:1.1,REV=2002.04.01.17.44;|CDE 1.5: message patch to add to /usr/dt/bin/dtlp +113584|05|Nov/25/03| | | | |9|sparc;|SUNWauaos:1.1,REV=2001.12.13.10.54.50;SUNWauaox:1.1,REV=2001.12.13.11.01.00;SUNWcamos:1.1,REV=2001.12.13.10.55.19;SUNWcamox:1.1,REV=2001.12.13.11.02.22;SUNWceuos:1.1,REV=2001.12.13.10.55.52;SUNWceuox:1.1,REV=2001.12.13.11.03.37;SUNWeeuos:1.1,REV=2002.01.30.04.14.56;SUNWeeuox:1.1,REV=2002.01.30.04.15.34;SUNWmeaos:1.1,REV=2002.03.05.04.04.05;SUNWmeaox:1.1,REV=2002.01.30.01.14.27;SUNWnafos:1.1,REV=2001.12.13.10.57.41;SUNWnafow:1.0,REV=2002.01.03.01.46.49;SUNWnafox:1.1,REV=2001.12.14.06.49.19;SUNWnamos:1.1,REV=2002.01.09.12.26.52;SUNWnamox:1.1,REV=2002.01.16.05.40.06;SUNWneuos:1.1,REV=2002.01.14.03.02.15;SUNWneuox:1.1,REV=2002.01.14.03.19.25;SUNWsamos:1.1,REV=2001.12.13.10.59.01;SUNWsamox:1.1,REV=2001.12.13.11.10.59;SUNWseuos:1.1,REV=2002.01.16.04.01.10;SUNWseuox:1.1,REV=2001.12.13.11.09.51;SUNWweuos:1.1,REV=2001.12.13.11.00.17;SUNWweuox:1.1,REV=2001.12.13.11.11.33;|SunOS 5.9: Bug fixes for EMEA locales +113586|01|Oct/11/02| | | | |7|sparc;|SUNWbtool:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/ccs/bin/lex patch +113587|01|Jan/31/03| | | | |7_x86|i386;|SUNWbtool:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/ccs/bin/lex patch +113590|03|Aug/27/03| | | | |9_x86|i386;|SUNWjeman:1.2,REV=2002.09.12.16.42;SUNWjman:1.2,REV=2002.01.31.09.18;SUNWjmane:1.1,REV=2002.09.12.16.42;|SunOS 5.9_x86: JFP manpages patch +113595|04|May/22/03| | | | |Unbundled|sparc;|VRTSobgui:3.0.2.261;|Veritas VEA 3.5: VRTSobgui +113596|03|Aug/20/03| | | | |Unbundled|sparc;|VRTSvmpro:3.5s,REV=06.26.2002.13.38;|VRTSvmpro 3.5: supplemental general patch for Solaris 7, 8, and 9 +113604|01|Feb/07/03| | | | |Unbundled|sparc;|VRTSvxfs:3.4,REV=PATCH03_BUILD2d;|VERITAS File System 3.4: VxFS 3.4 multiple fixes patch +113614|13|Oct/30/03| | | | |Unbundled|sparc;|SUNWvts:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsx:5.1,REV=08.02.07.25,OE=5.8,5.9;|SunVTS 5.1 Patch Set 2 +113615|01|Mar/21/03| | | | |Unbundled|sparc;|SUNWcst:1.5.1_AMS,REV=01.02.04.11;|Configuration and Service Tracker: Invalid System Model on Sun Fir +113616|04|Aug/13/03| | | | |Unbundled|sparc;|SUNWspci2:2.3.2;|SunPCi2 2.3.2: for Solaris 7, 8, 9 and sparc architectures +113618|01|Oct/08/02| | | | |Trusted_Solaris_8_4/01|sparc.sun4u;|SUNWcar:11.8.0,REV=2001.09.25.00.12;SUNWcarx:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: pci_pci and simba nexus patch +113627|01|Nov/22/02| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: datasyncd logs file propagation failures for single-SSP +113628|01|Jan/14/03| | |O| |9|sparc;|SUNWadmc:11.8,REV=2002.04.14.22.42;|Obsoleted by: 113434-06 SunOS 5.9: System Administration Core Libr +113633|01|Oct/23/03| | | | |9_x86|i386;|SUNWxwpls:6.4.2.0,REV=0.2002.01.16;|SunOS 5.9_x86: Updated video drivers and fixes +113634|03|Nov/17/03| | | | |Unbundled|all;|SUNWjdrt:5.0;SUNWjdtk:5.0;SUNWjsnmp:5.0;|Java Dynamic Management Kit 5.0 patch +113635|03|Nov/17/03| | | | |Unbundled|||Windows2000: Java Dynamic Management Kit 5.0 patch +113636|04|Dec/03/03| | | | |Unbundled|all;|SDRMEcomm:5.3,REV=2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: i18n and l10n patch +113637|01|Oct/25/02| | | | |Unbundled|all;|SDRMEdoc:5.3,REV=2002.03.27.15.30;|Sun Grid Engine, Enterprise Edition 5.3: maintenance patch +113638|04|Sep/15/03| | | | |Unbundled|||Sun[tm] ONE Studio 4 update 1, EE Patch, Multilanguage +113645|04|Sep/15/03| | | | |Unbundled|||Sun[tm] ONE Studio 4 update 1, ME Patch, Multilanguage +113648|03|Dec/10/03| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/mount patch +113649|03|Dec/10/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/mount patch +113650|02|May/28/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/utmp_update patch +113651|02|May/28/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/utmp_update patch +113652|03|Dec/23/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-17;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-18 (or newer)|SunOS 5.8: Supplemental Kernel Update Patch for 108528-17 +113653|01|Nov/15/02| |S| | |8_x86|i386;108529-17;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;108529-18 (or newer)|SunOS 5.8_x86: Supplement Kernel Update Patch for 108529-17 +113654|01|Dec/19/02| | | | |8|sparc.sun4u;108528-18;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/misc/sparcv9/zuluvm patch +113655|03|Jun/17/03| | | | |8|sparc.sun4u;|SUNWwrsax:11.8.0,REV=2001.08.10.04.15;|SunOS 5.8: /usr/platform/SUNW,Sun-Fire/lib/rsmlib/wrsm.so.1 patch +113656|04|Jun/17/03| | | | |8|sparc.sun4u;110838-06;|SUNWwrsdx:11.8.0,REV=2001.09.29.20.43;SUNWwrsmx:11.8.0,REV=2001.09.29.20.43;SUNWwrsux:11.8.0,REV=2001.09.29.20.43;|SunOS 5.8: WRSM Drivers and Commands +113663|02|Aug/01/03| | | | |Unbundled|all;|SDRMcomm:5.3,REV=2002.03.27.15.30;|Sun Grid Engine 5.3: i18n and l10n patch +113664|01|Oct/25/02| | | | |Unbundled|all;|SDRMdoc:5.3,REV=2002.03.27.15.30;|Sun Grid Engine 5.3: maintenance patch +113665|01|Oct/22/02| | | | |Unbundled|sparc;|SUNWesspa:ser_pu4_Build08,REV=2.8.2001.11.20;|SunMC 3.0: unable to save an action +113666|01|Oct/08/02| | | | |Unbundled|||Hardware, 18G 36G Disks: Download program and 0641, 0638 scsi firm +113667|01|Dec/23/03| | | | |Unbundled|||Hardware, 18G SCSI Disk: Download program and ST318404L.0103.fw fi +113668|04|Dec/01/03| | | | |Unbundled|||Hardware, FC-AL Disks: Download program and FC-AL Disk Drive firmw +113669|01|Jul/28/03| | | | |Unbundled|||Hardware, 9G 18G Disks: Download program and 074B, 074A scsi firmw +113679|05|Jun/24/03| | | | |8|sparc;sparc.sun4u;110460-26;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWkvm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: rmc_comm/rmcadm/rmclomv/librsc.so.1 patch +113680|03|Jun/27/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/bge patch +113681|02|Apr/23/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/mc-us3i patch +113682|02|Jun/20/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/sparcv9/pmugpio patch +113683|02|Jun/12/03| | | | |8|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;|SunOS 5.8: /platform/sun4u/kernel/tod/sparcv9/todm5819p_rmc patch +113684|04|Jul/18/03| | | | |8|sparc.sun4u;|SUNWkvm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/platform/SUNW,Sun-Fire-V240/sbin/scadm patch +113685|05|Oct/06/03| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: logindmux/ptsl/ms/bufmod/llc1/kb/zs/zsh/ptem patch +113686|04|Oct/06/03| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: logindmux/llc1/ptsl/bufmod/ptem patch +113687|01|Dec/24/02| |S| | |8|sparc;108528-18;|SUNWusb:11.8.0,REV=2000.01.08.18.12;SUNWusbx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/misc/kbtrans patch +113688|01|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/misc/kbtrans patch +113689|01|Oct/11/02| | |O| |Unbundled|sparc;|SUNWvts:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsx:5.1,REV=08.02.07.25,OE=5.8,5.9;|Obsoleted by: 113169-09 SunVTS5.1 patch +113695|02|Jun/24/03| | | | |Unbundled|sparc;|VRTSvmsa:3.2S9,REV=02.08.2002.14.00;|VRTSvmsa 3.2S9: maintenance patch +113698|02|Mar/14/03| | | | B|Unbundled|sparc;112392-04;|VRTSvxvm:3.5,REV=06.21.2002.23.14;|WITHDRAWN PATCH VxVM 3.5: supplemental general patch for Solaris 7 +113699|03|Aug/21/03| | | | |Unbundled|sparc;113201-02;|VRTSvxvm:3.2,REV=08.15.2001.23.27;|VxVM 3.2: supplemental general patch for Solaris 2.6, 7, and 8 +113713|11|Nov/04/03|R| | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: pkginstall Patch +113715|01|Jan/07/03| | | | |9|sparc;|SUNWk5pu:11.9.0,REV=2002.04.06.15.27;SUNWk5pux:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: do/mech_krb5.so.1 Patch +113716|01|Nov/19/02| | | | |9|sparc;|SUNWaccu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sar & sadc Patch +113718|02|Jun/04/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/utmp_update Patch +113718|03|Sep/01/03|R|S| | B|9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|WITHDRAWN PATCH SunOS 5.9: usr/lib/utmp_update Patch +113719|04|Apr/08/03|R|S| | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWnisu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libnsl & rpc.nispasswdd Patch +113720|01|Jun/04/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: rootnex Patch +113722|03|Oct/03/03| | | | |Unbundled|||SE3310 325S: StorEdge 3310 array controller firmware upgrade +113723|06|Dec/02/03| | | | |Unbundled|||SE3510 327Q: StorEdge 3510 array controller firmware upgrade +113725|01|Sep/16/03| | | | |Unbundled|sparc;|SUNWsccli:1.2.6,REV=2003.05.06.06.23;|Sun StorEdge 3000: sccli patch +113742|01|Nov/08/02| | | | |9|sparc;|SUNWmc:11.9,REV=2002.04.14.23.49;|SunOS 5.9: smcpreconfig.sh Patch +113746|01|Nov/15/02| | | | |9|sparc;|SUNWcos:9.0,REV=2002.03.21.09.10;SUNWdeos:11.6,REV=2002.03.26.09.45;SUNWesos:11.6,REV=2002.03.15.13.13;SUNWfros:11.6,REV=2002.03.15.12.20;SUNWhos:9.0,REV=2002.03.21.09.35;SUNWitos:11.6,REV=2002.03.15.12.37;SUNWjos:1.1,REV=2002.03.15.12.01;SUNWkos:9.0,REV=2002.03.26.17.43;SUNWsvos:11.6,REV=2002.03.15.12.55;|SunOS 5.9: uxlibc Localization message patch +113749|01|Dec/09/02| | | | |8|sparc;|SUNWmga:1.0,REV=2000.11.21.00.05;|SunOS 5.8: User Manager CLI Patch +113750|01|Dec/09/02| | | | |8_x86|i386;|SUNWmga:1.0,REV=2000.11.20.23.48;|SunOS 5.8_x86: User Manager CLI Patch +113751|01|Dec/06/02| | | | B|Unbundled|110208-12;110208-12;||WITHDRAWN PATCH WITHDRAWN Hardware/PROM: Sun Fire V1280 Systems fl +113751|05|Dec/15/03| | | | |Unbundled|110208-17;||Hardware/PROM: Sun 1280 Systems Firmware Update +113752|02|May/28/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: utmp_update patch +113753|02|May/28/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: utmp_update patch +113754|02|Jun/02/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: utmp_update patch +113755|02|Jun/02/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: utmp_update patch +113756|01|Dec/20/02| | | | |Unbundled|sparc;|SUNWwcfmu:1.0,REV=2002.10.16.05.53;|Sun Fire Link Fabric Manager 1.0: run fabrics in secure enviroment +113757|02|Sep/15/03| | | | |Unbundled|sparc;114786-01;|SUNWwcfmu:1.0,REV=2002.10.16.05.53;|Fabric Manager 1.0: patch for SUNWwcfmu +113759|02|Sep/15/03| | | | |Unbundled|sparc;114786-01;|SUNWrsmpu:1.0,REV=2002.10.16.05.53;|Fabric Manager 1.0: patch for SUNWrsmpu +113761|01|Sep/15/03| | | | |Unbundled|sparc;|SUNWrsmpu:1.0,REV=2002.10.16.05.53;|Fabric Manager 1.0: patch for SUNWrsmpu +113762|02|Mar/24/03| | |O| |9|sparc;|SUNWxwinc:6.6.1.5800,REV=0.2002.04.05;SUNWxwman:6.6.1.5800,REV=0.2002.04.05;SUNWxwopt:6.6.1.5800,REV=0.2002.04.05;SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|Obsoleted by: 112785-24 X11 6.6.1: xdm patch +113763|02|Mar/24/03| | |O| |9_x86|i386;|SUNWxwinc:6.6.1.6400,REV=0.2002.10.16;SUNWxwman:6.6.1.6400,REV=0.2002.10.16;SUNWxwopt:6.6.1.6400,REV=0.2002.10.16;SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|Obsoleted by: 112786-14 X11 6.6.1_x86: xdm patch +113764|03|Nov/13/03| | | | |9|sparc;112785-12;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: keyboard patch +113765|02|Mar/31/03| | | | |9_x86|i386;112786-03;|SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: keyboard patch +113766|02|Mar/31/03| | | | |8|sparc;|SUNWcfcl:11.8.0,REV=2002.08.02.16.59;SUNWcfclx:11.8.0,REV=2002.08.02.16.59;|SunOS 5.8: Common Fibre Channel HBA API Library +113767|03|Nov/13/03| | | | |Unbundled|sparc;114475-02;|SUNWfchba:11.8.0,REV=2002.08.02.16.59;SUNWfchbx:11.8.0,REV=2002.08.02.16.59;|SAN 4.3: SNIA Sun Fibre Channel Host Bus Adapter Library +113788|01|Oct/18/02| | |O| |Unbundled|sparc;|SUNWvts:4.6,REV=08.01.11.22,OE=5.8;SUNWvtsx:4.6,REV=08.01.12.04,OE=5.8;|Obsoleted by: 112336-09 SunVTS4.6 patch +113789|01|Nov/08/02| | | | |9|sparc;|SUNWdtbas:1.5,REV=10.2002.03.13;|CDE 1.5: dtexec patch +113790|01|Dec/18/02| | | | |9_x86|i386;|SUNWdtbas:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtexec patch +113792|01|Nov/25/02|R|S| | |8|sparc;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2: mailtool patch +113793|01|Nov/25/02|R|S| | |8_x86|i386;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2_x86: mailtool patch +113795|01|Apr/02/03| | |O| |9_x86|||Obsoleted by: 114210-03 CDE 1.5_x86: dtlogin feature patch +113796|02|Jul/08/03| | |O| |9|sparc;|SUNWtltk:3.7.1,REV=10.2002.03.13;SUNWtltkx:3.7.1,REV=10.2002.03.13;|Obsoleted by: 112808-04 CDE 1.5: Tooltalk patch +113797|04|Nov/07/03| | | | |9_x86|i386;|SUNWtltk:3.7.1,REV=10.2002.09.21;|CDE1.5_x86: Tooltalk patch +113798|01|Apr/15/03| | | | |9|sparc;|SUNWdtbas:1.5,REV=10.2002.03.13;SUNWdtbax:1.5,REV=10.2002.03.13;|CDE 1.5: libDtSvc patch +113799|01|Jan/14/03| | | | |9|sparc;|SUNWsregu:11.9,REV=2002.04.14.23.49;|SunOS 5.9: solregis Patch +113800|06|Oct/30/03| |S| | |Unbundled|sparc;|SUNWscdev:3.1.0,REV=2003.03.24.14.50;SUNWschwr:3.1.0,REV=2003.03.24.14.50;SUNWscman:3.1.0,REV=2003.03.24.14.50;SUNWscr:3.1.0,REV=2003.03.24.14.50;SUNWscsam:3.1.0,REV=2003.03.24.14.50;SUNWscu:3.1.0,REV=2003.03.24.14.50;SUNWscvm:3.1.0,REV=2003.03.24.14.50;SUNWscvr:3.1.0,REV=2003.03.24.14.50;SUNWscvw:3.1.0,REV=2003.03.24.14.50;|Sun Cluster 3.1: Core/Sys Admin Patch +113801|06|Oct/31/03| |S| | |Unbundled|sparc;|SUNWscdev:3.1.0,REV=2003.03.25.13.14;SUNWschwr:3.1.0,REV=2003.03.25.13.14;SUNWscman:3.1.0,REV=2003.03.25.13.14;SUNWscr:3.1.0,REV=2003.03.25.13.14;SUNWscsam:3.1.0,REV=2003.03.25.13.14;SUNWscu:3.1.0,REV=2003.03.25.13.14;SUNWscvm:3.1.0,REV=2003.03.25.13.14;SUNWscvr:3.1.0,REV=2003.03.25.13.14;SUNWscvw:3.1.0,REV=2003.03.25.13.14;|Sun Cluster 3.1: Core/Sys Admin Patch +113812|01|Nov/07/02| | | | |Unbundled|sparc;|SUNWSMSop:1.2.0,REV=2001.11.30.18.03;|SMS 1.2: TMD Patch +113813|02|Dec/03/02| | | | |9|sparc;|SUNWmcc:11.9,REV=2002.04.14.23.49;|SunOS 5.9: Gnome Integration Patch +113814|01|Oct/25/02| | | | |Unbundled|||Hardware/PROM: CP2140 SPARC and SMC firmware update +113817|03|Oct/30/03| | | | |Unbundled|sparc;112763-04;|SPROcpl:8.0,REV=2003.03.13;SPROcplx:8.0,REV=2003.03.13;SPROgc:8.0,REV=2003.03.13;SPROgcx:8.0,REV=2003.03.13;SPROlgc:8.0,REV=2003.03.13;SPROlgcx:8.0,REV=2003.03.13;SPROscl:8.0,REV=2003.03.13;SPROsclx:8.0,REV=2003.03.13;SPROstl4a:8.0,REV=2003.03.13;SPROstl4h:8.0,REV=2003.03.13;SPROstl4o:8.0,REV=2003.03.13;SPROstl4x:8.0,REV=2003.03.13;SPROstl4y:8.0,REV=2003.03.13;SPROtl7x:8.0,REV=2003.03.13;SPROtlbn7:8.0,REV=2003.03.13;SPROtll7:8.0,REV=2003.03.13;SPROtll7x:8.0,REV=2003.03.13;|C++ 5.5: Patch for S1S8CC C++ compiler +113819|03|Oct/30/03| | | | |Unbundled|i386;112756-04;|SPROcpl:8.0,REV=2003.03.13;SPROgc:8.0,REV=2003.03.13;SPROlgc:8.0,REV=2003.03.13;SPROscl:8.0,REV=2003.03.13;SPROstl4a:8.0,REV=2003.03.13;SPROstl4h:8.0,REV=2003.03.13;SPROstl4o:8.0,REV=2003.03.13;SPROtlbn7:8.0,REV=2003.03.13;SPROtll7:8.0,REV=2003.03.13;|C++ 5.5_x86: Patch for S1S8CC C++ compiler +113820|02|Dec/11/03| | | | |Unbundled|sparc;|SPROlang:8.0,REV=2003.03.13;SPROlangx:8.0,REV=2003.03.13;SPROsmpx:8.0,REV=2003.03.13;SPROsmsx:8.0,REV=2003.03.13;SPROsunms:8.0,REV=2003.03.13;|Compiler Common 7.1: Patch for S1S8CC Math Libraries +113821|01|May/23/03| | | | |Unbundled|i386;|SPROlang:8.0,REV=2003.03.13;SPROsunms:8.0,REV=2003.03.13;|Compiler Common 7.1_x86: Patch for S1S8CC Math Libraries +113822|01|Jun/04/03| | | | |Unbundled|i386;|SPROlang:6.2;SPROsunms:6.2;|Compiler Common 6.2_x86: Patch Forte Developer 6 update 2 Math Lib +113823|03|Sep/15/03| | | | |Unbundled|sparc;|SPROild:8.0,REV=2003.03.13;SPROildx:8.0,REV=2003.03.13;|ILD 4.1: Patch for S1S8CC Incremental Linker +113825|02|Jul/25/03| | | | |Unbundled|i386;|SPROild:8.0,REV=2003.03.13;|ILD 4.1_x86: Patch for S1S8CC Incremental Linker +113826|07|Dec/22/03| | | | |Unbundled|||MBM10.0 Patch 7 +113831|02|Dec/23/02| | |O| |9|sparc;|SUNWeeuos:1.1,REV=2002.01.30.04.14.56;SUNWeeuox:1.1,REV=2002.01.30.04.15.34;|Obsoleted by: 113584-05 SunOS 5.9: Estonian decimal point characte +113832|02|Dec/23/02| | | | |9_x86|i386;|SUNWeeuos:11.10.0,REV=2002.09.17.15.33;|SunOS 5.9_x86: Estonian decimal point character incorrect +113835|01|Nov/07/02| | | | |Unbundled|||SunMTP7.2 MTP Client Patch 1 +113838|01|Apr/15/03| | | | |9_x86|i386;|SUNWdtbas:1.5,REV=10.2002.09.21;|CDE 1.5_x86: libDtSvc patch +113839|01|Jun/05/03| | | | |9|sparc;|SUNWdtezt:1.5,REV=10.2002.03.13;|CDE 1.5: sdtwsinfo patch +113840|01|Jun/05/03| | | | |9_x86|i386;|SUNWdtezt:1.5,REV=10.2002.09.21;|CDE 1.5_x86: sdtwsinfo patch +113841|01|Apr/07/03| | | | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;|CDE 1.5: answerbook patch +113842|01|Apr/07/03| | | | |9_x86|i386;|SUNWdtdst:1.5,REV=10.2002.09.21;|CDE 1.5_x86: answerbook patch +113846|01|Apr/02/03| | | | |9_x86|i386;|SUNWjmfp:1.5,REV=10.2002.09.21;|CDE 1.5_x86: sdtjmplay patch +113848|01|Jun/27/03| | |O| |Unbundled|sparc;110208-15;|SUNWlomr:2.0,REV=2000.08.22.14.14;|Obsoleted by: 110208-18 Netra t140X reboot hang after sync fix +113849|03|Aug/01/03| |S| | |Unbundled|||Sun Grid Engine 5.3: maintenance/security patch +113850|03|Aug/01/03| |S| | |Unbundled|||Sun Grid Engine 5.3: maintenance/security patch +113851|03|Aug/01/03| |S| | |Unbundled|||Sun Grid Engine 5.3 _x86: maintenance/security patch +113852|02|Feb/19/03| |S|O| B|Unbundled|||WITHDRAWN PATCH Obsoleted by: 113852-03 Sun Grid Engine 5.3 Linux: +113852|04|Aug/01/03| |S| | |Unbundled|||Sun Grid Engine 5.3 Linux: maintenance/security patch +113853|02|Aug/01/03| | | | |Unbundled|||Sun Grid Engine 5.3: i18n and l10n patch +113854|01|Oct/28/02| | | | |Unbundled|||Sun Grid Engine 5.3: maintenance patch +113855|04|Dec/03/03| |S| | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3: maintenance/security patc +113856|04|Dec/03/03| |S| | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3: maintenance/security patc +113857|03|Dec/03/03| | | | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3: i18n and l10n patch +113858|01|Nov/21/02| | | | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3: maintenance patch +113859|03|Dec/24/03|R|S| | |9|sparc;|IPLTadcon:5.1,REV=2002.03.01.11.57;IPLTadmin:5.1,REV=2002.03.01.11.58;IPLTcons:5.1,REV=2002.03.01.11.58;IPLTdscon:5.1,REV=2002.03.01.11.58;IPLTdsu:5.1,REV=2002.03.01.12.01;IPLTjss:3.1,REV=2002.03.01.12.01;IPLTnls:3.1,REV=2002.03.01.12.02;IPLTnspr:4.1.2,REV=2002.03.01.12.02;IPLTnss:3.3.1,REV=2002.03.01.12.01;IPLTpldap:1.4.1,REV=2002.03.01.12.02;|SunOS 5.9: Sun ONE Directory Server 5.1 patch +113860|02|Feb/27/03| | | | |Unbundled|sparc;|SUNWSMSob:1.2.0,REV=2001.11.29.15.19;|SMS 1.2: Sun Fire 15K OBP Patch +113861|03|Oct/13/03| | | | |9|sparc;|SUNWdtbas:1.5,REV=10.2002.03.13;|CDE 1.5: dtksh patch +113862|03|Oct/13/03| | | | |9_x86|i386;|SUNWdtbas:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtksh patch +113863|01|Apr/02/03| | | | |9|sparc;|SUNWdtdte:1.5,REV=10.2002.03.13;|CDE 1.5: dtconfig patch +113864|01|Apr/02/03| | | | |9_x86|i386;|SUNWdtdte:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtconfig patch +113867|12|Oct/08/03| | | | |Unbundled|i386;|SUNWmfrun:2.1.2,REV=10.2002.09.21;|Motif 1.2.7_x86 and 2.1.1_x86: Runtime library patch for Solaris 9 +113868|02|Nov/13/03| | | | |9|sparc;|SUNWpdas:1.5,REV=10.2002.03.13;|CDE 1.5: PDASync patch +113869|02|Nov/13/03| | | | |9_x86|i386;|SUNWpdas:1.5,REV=10.2002.09.21;|CDE 1.5_x86: PDASync patch +113870|04|Sep/01/03| | | | |9_x86|i386;|SUNWdtdst:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtmail patch +113871|01|Feb/20/03| | | | |Unbundled|||CAPACITY REPORTER MXINET.OCX fixes for the 6.0.0 release of Capaci +113872|02|Feb/20/03| | |O| |Unbundled|||Obsoleted by: 113875-02 CAPACITY REPORTER File Reporter fixes for +113873|01|Nov/22/02| | |O| |Unbundled|||Obsoleted by: 113285-02 CAPACITY REPORTER 6.0: MXINET.OCX fixes fo +113874|02|Apr/15/03| | |O| |Unbundled|113285-03;||Obsoleted by: 113876-01 RMS 6.0: Roll up of fixes in NetApp plugin +113875|03|Mar/27/03| | | | |Unbundled|||File Reporter 2.0.2: Roll-up that fixes bugs 4785132, 4789349, and +113876|01|Aug/08/03| | | | |Unbundled|||Roll up of fixes in The RMS UI,The Solaris Agent, for SUN SVM and +113879|01|Nov/22/02| | |O| |Unbundled|||Obsoleted by: 113285-02 Capacity Reporter 6.0: Master Patch for St +113880|01|Mar/04/03| | |O| |Unbundled|113285-03;||Obsoleted by: 113874-02 Various Veritas Volume Manager and Veritas +113886|17|Dec/10/03|R| | | |Unbundled|sparc;|SUNWgldoc:1.3,REV=2002.12.16;SUNWgldp:1.3,REV=2002.12.16;SUNWglh:1.3,REV=2002.12.16;SUNWglrt:1.3,REV=2002.12.16;SUNWglrtu:1.3,REV=2002.12.16;SUNWglsr:1.3,REV=2002.12.16;SUNWglsrz:1.3,REV=2002.12.16;|OpenGL 1.3: OpenGL Patch for Solaris (32-bit) +113887|17|Dec/10/03|R| | | |Unbundled|sparc;113886-17;|SUNWgldpx:1.3,REV=2002.12.16;SUNWglrtx:1.3,REV=2002.12.16;SUNWglsrx:1.3,REV=2002.12.16;|OpenGL 1.3: OpenGL Patch for Solaris (64-bit) +113889|02|Jun/25/03| | | | |Unbundled|||MTP8.0 MSF1.0 Patch 2 +113896|05|Jul/09/03| | | | |9|sparc;|SUNWeu8os:1.5,REV=2002.02.02.16.55;SUNWeu8ox:1.5,REV=2002.02.02.16.55;SUNWeudda:1.5,REV=2002.02.02.16.55;SUNWeuluf:1.5,REV=2002.02.02.16.55;SUNWeulux:1.5,REV=2002.02.02.16.55;SUNWeuodf:1.5,REV=2002.02.08.16.30;SUNWeuxwe:1.5,REV=2002.02.02.16.55;SUNWmp:1.5,REV=2002.02.11.16.40;SUNWuiu8:1.5,REV=2002.02.02.16.55;SUNWuiu8x:1.5,REV=2002.02.02.16.55;SUNWulcf:1.5,REV=2002.02.08.16.30;SUNWuxlcf:1.5,REV=2002.03.01.11.40;|SunOS 5.9: en_US.UTF-8 locale patch +113897|05|Jul/09/03| | | | |9_x86|i386;|SUNWeu8os:1.5,REV=2002.02.02.17.01;SUNWeudda:1.5,REV=2002.02.02.17.01;SUNWeuluf:1.5,REV=2002.08.19.15.13;SUNWeuodf:1.5,REV=2002.02.08.16.35;SUNWeuxwe:1.5,REV=2002.02.02.17.01;SUNWmp:1.5,REV=2002.02.11.16.49;SUNWuiu8:1.5,REV=2002.02.02.17.01;SUNWulcf:1.5,REV=2002.02.08.16.35;SUNWuxlcf:1.5,REV=2002.03.01.11.47;|SunOS 5.9_x86: en_US.UTF-8 locale patch +113900|03|Dec/03/03| |S| | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3 Linux: maint/security patc +113902|03|Mar/12/03| | | | |9|sparc;|SUNWciu8:9.0,REV=2001.11.13.15.43;SUNWciu8x:9.0,REV=2001.11.06.10.49;SUNWhiu8:9.0,REV=2001.12.04.10.19;SUNWhiu8x:9.0,REV=2001.12.04.10.19;SUNWiniu8:9.0,REV=2002.03.27.11.25;SUNWiniu8x:9.0,REV=2002.03.27.11.25;SUNWkiu8:9.0,REV=2002.01.23.13.08;SUNWkiu8x:9.0,REV=2002.01.23.13.08;SUNWtiu8:9.0,REV=2001.11.13.15.43;SUNWtiu8x:9.0,REV=2001.07.18.10.49;|SunOS 5.9: Asian UTF-8 iconv modules enhancement +113903|03|Mar/12/03| | | | |9_x86|i386;|SUNWciu8:9.0,REV=2002.08.19.13.15;SUNWhiu8:9.0,REV=2001.12.04.10.28;SUNWiniu8:9.0,REV=2002.03.27.11.35;SUNWkiu8:9.0,REV=2002.01.23.13.17;SUNWtiu8:9.0,REV=2001.11.13.15.49;|SunOS 5.9_x86: Asian UTF-8 iconv modules enhancement +113904|03|Aug/27/03| | | | |9|sparc;113403-01;|SUNWcleu:9.0,REV=2002.03.26.09.55;SUNWcxplt:9.0,REV=2002.03.23.10.38;SUNWhkleu:9.0,REV=2002.03.22.11.11;SUNWhkplt:9.0,REV=2002.03.26.10.13;SUNWhleu:9.0,REV=2002.02.06.15.54;SUNWhxplt:9.0,REV=2002.03.26.10.01;SUNWkleu:9.0,REV=2002.01.29.19.29;SUNWkxplt:9.0,REV=2002.03.23.10.37;SUNWtxplt:9.0,REV=2002.02.15.21.19;|SunOS 5.9: 7 indic scripts support in Asian UTF-8 locales +113905|03|Aug/27/03| | | | |9_x86|i386;113404-01;|SUNWcleu:9.0,REV=2002.08.19.13.15;SUNWcxplt:9.0,REV=2002.08.19.13.15;SUNWhkleu:9.0,REV=2002.08.19.13.15;SUNWhkplt:9.0,REV=2002.08.19.13.15;SUNWhleu:9.0,REV=2002.08.19.13.15;SUNWhxplt:9.0,REV=2002.08.19.13.15;SUNWkleu:9.0,REV=2002.01.29.19.36;SUNWkxplt:9.0,REV=2002.08.19.13.14;SUNWtxplt:9.0,REV=2002.02.15.21.31;|SunOS 5.9_x86: 7 indic scripts support in Asian UTF-8 locales +113906|01|Feb/20/03| | | | |9|sparc;|SUNWcxplt:9.0,REV=2002.03.23.10.38;SUNWgxplx:9.0,REV=2001.11.14.18.13;SUNWhkleu:9.0,REV=2002.03.22.11.11;SUNWhklex:9.0,REV=2002.01.08.13.03;SUNWhkplt:9.0,REV=2002.03.26.10.13;SUNWhkplx:9.0,REV=2001.07.18.10.44;SUNWhleu:9.0,REV=2002.02.06.15.54;SUNWhleux:9.0,REV=2002.01.30.17.15;|SunOS 5.9: Fixed some functional problems in Chinese locales +113907|01|Feb/20/03| | | | |9_x86|i386;|SUNWcxplt:9.0,REV=2002.08.19.13.15;SUNWhkleu:9.0,REV=2002.08.19.13.15;SUNWhkplt:9.0,REV=2002.08.19.13.15;SUNWhleu:9.0,REV=2002.08.19.13.15;|SunOS 5.9_x86: Fixed some functional problems in Chinese locales +113910|01|Jan/10/03| | | | |9_x86|i386;|SUNWtxfnt:9.0,REV=2002.08.30.14.00;|SunOS 5.9_x86: Thai font enhancement +113911|01|Jun/05/03| | | | |9|sparc;|SUNWcbcp:9.0,REV=2001.11.06.10.49;SUNWhbcp:9.0,REV=2001.11.06.10.45;SUNWkbcp:9.0,REV=2001.11.06.10.42;|SunOS 5.9: BCP applications hangs with NIS in asian locales +113916|01|Apr/18/03| | | | |Unbundled|sparc;|SUNWwcsfi:1.12.30,REV=2002.09.11.08.59;|Fixes flashing switch from Solaris 9 server +113923|02|Dec/18/02|R|S| | |9|sparc;|SUNWxwfs:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: security font server patch +113924|02|Dec/18/02|R|S| | |9_x86|i386;|SUNWxwfs:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: security font server patch +113964|09|Aug/19/03| | | | |9|sparc;112904-07;112911-02;115016-01;112233-11;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWroute:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/in.routed patch +113965|01|Jan/14/03| | |O| |9|sparc;|SUNWsibi:11.9,REV=2002.04.14.23.49;|Obsoleted by: 113434-06 SunOS 5.9: usr/sbin/ttinstall Patch +113966|04|Aug/27/03| | | | |9_x86|i386;|SUNWcos:9.0,REV=2002.09.13.15.31;SUNWdeos:11.6,REV=2002.09.13.14.42;SUNWesos:11.6,REV=2002.09.13.14.51;SUNWfros:11.6,REV=2002.09.13.14.59;SUNWhos:9.0,REV=2002.09.13.15.36;SUNWitos:11.6,REV=2002.09.13.15.08;SUNWjos:1.1,REV=2002.09.13.14.35;SUNWkos:9.0,REV=2002.09.13.15.25;SUNWsvos:11.6,REV=2002.09.13.15.16;|SunOS 5.9_x86: OS Localization message patch +113968|03|Oct/27/03| | | | |9_x86|i386;|SUNWclvmg:1.1,REV=2002.08.17.06.53;SUNWdlvmg:1.1,REV=2002.08.17.04.48;SUNWelvmg:1.1,REV=2002.08.17.05.12;SUNWflvmg:1.1,REV=2002.08.17.05.35;SUNWhklvmg:1.1,REV=2002.08.17.07.06;SUNWhlvmg:1.1,REV=2002.08.17.07.06;SUNWilvmg:1.1,REV=2002.08.17.05.57;SUNWjlvmg:1.1,REV=2002.08.17.04.25;SUNWklvmg:1.1,REV=2002.08.17.06.41;SUNWslvmg:1.1,REV=2002.08.17.06.19;|SunOS 5.9_x86: Volume Management Localization message patch +113969|01|Dec/10/02| | | | |9_x86|i386;|SUNWcos:9.0,REV=2002.09.13.15.31;SUNWdeos:11.6,REV=2002.09.13.14.42;SUNWesos:11.6,REV=2002.09.13.14.51;SUNWfros:11.6,REV=2002.09.13.14.59;SUNWhos:9.0,REV=2002.09.13.15.36;SUNWitos:11.6,REV=2002.09.13.15.08;SUNWjos:1.1,REV=2002.09.13.14.35;SUNWkos:9.0,REV=2002.09.13.15.25;SUNWsvos:11.6,REV=2002.09.13.15.16;|SunOS 5.9_x86: uxlibc Localization message patch +113970|01|Jun/04/03| | | | |9_x86|i386;114238-01;|SUNWcdhcm:9.0,REV=2002.02.06.17.37;SUNWddhcm:1.0,REV=2002.03.15.13.50;SUNWedhcm:1.0,REV=2002.03.15.13.32;SUNWfdhcm:1.0,REV=2002.03.15.12.30;SUNWhdhcm:9.0,REV=2002.02.06.17.46;SUNWidhcm:1.0,REV=2002.03.15.12.49;SUNWjdhcm:1.0,REV=2002.03.07.18.02;SUNWkdhcm:9.0,REV=2002.02.06.17.55;SUNWsdhcm:1.0,REV=2002.03.15.13.09;|SunOS 5.9_x86: DHCP Manager Localization message patch +113971|01|Jan/14/03| | |O| |9|sparc;|JSatsvw:1.0,REV=2002.01.25.16.47;|Obsoleted by: 112661-05 SunOS 5.9: ATOK12 patch +113973|01|Feb/04/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: adb Patch +113974|01|Feb/18/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: adb Patch +113975|01|Mar/13/03| | | | |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ssm Patch +113977|01|Nov/26/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: awk/sed pkgscripts Patch +113978|01|Dec/05/02| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: syseventconfd Patch +113979|01|Dec/18/02| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: syseventconfd Patch +113981|02|Mar/31/03| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWscpu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: devfsadm Patch +113984|01|Jun/13/03| | | | |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: iosram Patch +113986|04|May/27/03|R| |O| B|9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWbtool:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWtoo:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 113986-05 WITHDRAWN PATCH SunOS 5.9_x86: linker Patc +113986|06|Oct/14/03|R|S| | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWbtool:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWtoo:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: linker Patch +113987|06|Jul/09/03| | | | |9_x86|i386;|SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWnfscr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: nfs Patch +113988|05|Jun/10/03|R|S| | |9_x86|i386;112234-05;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWdpl:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libc Patch +113990|04|Nov/05/03|R|S| | |9_x86|i386;|SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWgssk:11.9.0,REV=2002.11.04.02.51;SUNWkrbu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: krb5 Patch (mech_krb5.so.1 gl_kmech_krb5) +113991|01|Jan/21/03| | | | |9_x86|i386;|SUNWaccu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sar & sadc Patch +113992|05|Apr/29/03| | |O| |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 114337-06 SunOS 5.9_x86: ip Patch +113993|06|Sep/15/03|R| | | |9|sparc;114127-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: mkfs Patch +113994|09|Jul/25/03| | | | |9_x86|i386;112234-07;114419-02;|SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWmdr:11.9.0,REV=2002.11.04.02.51;SUNWmdu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: md_sp Patch +113995|01|Dec/16/02| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: doorfs Patch +113996|02|May/28/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: utmp_update Patch +113996|04|Sep/04/03|R|S| | B|9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|WITHDRAWN PATCH SunOS 5.9_x86: utmp_update Patch +113997|01|Mar/12/03| | |O| |9_x86|i386;|SUNWmdu:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 113994-04 SunOS 5.9_x86: libmeta.so.1 Patch +113998|05|Sep/15/03|R| | | |9_x86|i386;114419-02;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: mkfs Patch +113999|02|Jul/17/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWscpu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: devfsadm Patch +114002|01|Jun/13/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: awk/sed pkgscripts Patch +114003|01|Jan/15/03| | | | |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: bbc driver Patch +114004|01|Jan/03/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sed Patch +114005|01|Jan/03/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sed Patch +114006|01|Jan/02/03| | | | |9|sparc;|SUNWtftp:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: tftp Patch +114007|01|Jan/02/03| | | | |9_x86|i386;|SUNWtftp:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: tftp Patch +114008|01|Mar/19/03|R|S| | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: cachefsd Patch +114009|01|Mar/19/03|R|S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: cachefsd Patch +114010|02|May/23/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWxcu4:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: m4 Patch +114011|02|May/23/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWxcu4:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: m4 Patch +114012|02|Aug/20/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sockfs Patch +114014|03|Apr/01/03|R|S| | |9|sparc;|SUNWlxml:11.9.0,REV=2002.03.02.00.35;SUNWlxmlS:11.9.0,REV=2002.03.02.00.35;SUNWlxmlx:11.9.0,REV=2002.03.02.00.35;SUNWlxsl:11.9.0,REV=2002.11.01.16.47;SUNWlxslx:11.9.0,REV=2002.11.01.16.47;SUNWsfman:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: libxml, libxslt and Freeware man pages Patch +114014|04|Apr/04/03| |S|O| B|9|sparc;|SUNWlxml:11.9.0,REV=2002.03.02.00.35;SUNWlxmlS:11.9.0,REV=2002.03.02.00.35;SUNWlxmlx:11.9.0,REV=2002.03.02.00.35;SUNWlxsl:11.9.0,REV=2002.11.01.16.47;SUNWlxslx:11.9.0,REV=2002.11.01.16.47;SUNWsfman:11.9.0,REV=2002.03.02.00.35;|WITHDRAWN PATCH Obsoleted by: 114014-05 SunOS 5.9: libxml, libxslt +114014|05|May/27/03| |S|O| B|9|sparc;|SUNWlxml:11.9.0,REV=2002.03.02.00.35;SUNWlxmlS:11.9.0,REV=2002.03.02.00.35;SUNWlxmlx:11.9.0,REV=2002.03.02.00.35;SUNWlxsl:11.9.0,REV=2002.11.01.16.47;SUNWlxslx:11.9.0,REV=2002.11.01.16.47;SUNWsfman:11.9.0,REV=2002.03.02.00.35;|WITHDRAWN PATCH Obsoleted by: 114014-06 SunOS 5.9: libxml, libxslt +114014|06|Aug/05/03| |S| | B|9|sparc;|SUNWlxml:11.9.0,REV=2002.03.02.00.35;SUNWlxmlS:11.9.0,REV=2002.03.02.00.35;SUNWlxmlx:11.9.0,REV=2002.03.02.00.35;SUNWlxsl:11.9.0,REV=2002.11.01.16.47;SUNWlxslx:11.9.0,REV=2002.11.01.16.47;SUNWsfman:11.9.0,REV=2002.03.02.00.35;|WITHDRAWN PATCH SunOS 5.9: libxml, libxslt and Freeware man pages +114015|03|Apr/01/03|R|S| | |9_x86|i386;|SUNWlxml:11.9.0,REV=2002.03.02.00.30;SUNWlxmlS:11.9.0,REV=2002.03.02.00.30;SUNWlxsl:11.9.0,REV=2002.11.01.15.41;SUNWsfman:11.9.0,REV=2002.08.12.18.14;|SunOS 5.9_x86: libxml, libxslt and Freeware man pages Patch +114015|04|Apr/04/03| |S|O| B|9_x86|i386;|SUNWlxml:11.9.0,REV=2002.03.02.00.30;SUNWlxmlS:11.9.0,REV=2002.03.02.00.30;SUNWlxsl:11.9.0,REV=2002.11.01.15.41;SUNWsfman:11.9.0,REV=2002.08.12.18.14;|WITHDRAWN PATCH Obsoleted by: 114015-05 SunOS 5.9_x86: libxml, lib +114015|05|May/27/03| |S|O| B|9_x86|i386;|SUNWlxml:11.9.0,REV=2002.03.02.00.30;SUNWlxmlS:11.9.0,REV=2002.03.02.00.30;SUNWlxsl:11.9.0,REV=2002.11.01.15.41;SUNWsfman:11.9.0,REV=2002.08.12.18.14;|WITHDRAWN PATCH Obsoleted by: 114015-06 SunOS 5.9_x86: libxml, lib +114015|06|Aug/05/03| |S| | B|9_x86|i386;|SUNWlxml:11.9.0,REV=2002.03.02.00.30;SUNWlxmlS:11.9.0,REV=2002.03.02.00.30;SUNWlxsl:11.9.0,REV=2002.11.01.15.41;SUNWsfman:11.9.0,REV=2002.08.12.18.14;|WITHDRAWN PATCH SunOS 5.9_x86: libxml, libxslt and Freeware man pa +114016|01|May/01/03|R|S| | |9|sparc;|SUNWtcatS:11.9.0,REV=2002.03.02.00.35;SUNWtcatr:11.9.0,REV=2002.03.02.00.35;SUNWtcatu:11.9.0,REV=2002.03.02.00.35;|tomcat security patch +114017|01|May/01/03|R|S| | |9_x86|i386;|SUNWtcatS:11.9.0,REV=2002.03.02.00.30;SUNWtcatr:11.9.0,REV=2002.03.02.00.30;SUNWtcatu:11.9.0,REV=2002.03.02.00.30;|SunOS 5.9_x86: tomcat security patch +114018|01|Jan/06/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-18;108528-19;|FJSVhea:1.0,REV=1999.12.23.19.10;SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWhea:11.8.0,REV=2000.01.08.18.12;108528-19 (or newer)|SunOS 5.8: Supplemental Kernel Update Patch for 108528-18 +114020|03|Jun/24/03| | | | |9|sparc;|SUNWceuow:1.0,REV=2002.01.03.01.45.21;SUNWeeuow:1.0,REV=2002.01.03.01.46.05;SUNWmeaow:1.0,REV=2002.01.03.01.44.16;SUNWnafow:1.0,REV=2002.01.03.01.46.49;SUNWneuow:1.0,REV=2002.01.11.11.35.11;SUNWsamow:1.0,REV=2002.01.16.02.37.05;SUNWseuow:1.0,REV=2002.01.16.02.39.31;SUNWweuow:1.0,REV=2002.01.11.11.21.34;|5.9: Synching Euro UTF-8s +114021|03|Jun/24/03| | | | |9_x86|i386;|SUNWceuow:1.0,REV=2002.01.03.01.49.47;SUNWeeuow:1.0,REV=2002.01.03.01.50.32;SUNWmeaow:1.0,REV=2002.01.03.01.51.03;SUNWnafow:1.0,REV=2002.01.03.01.51.30;SUNWneuow:1.0,REV=2002.01.14.04.13.59;SUNWsamow:1.0,REV=2002.01.16.02.37.22;SUNWseuow:1.0,REV=2002.01.16.02.39.33;SUNWweuow:1.0,REV=2002.01.14.04.30.43;|5.9_x86: Synching Euro UTF-8s +114033|01|Dec/18/02| | |O| |9|sparc;|SUNWmeaos:1.1,REV=2002.03.05.04.04.05;|Obsoleted by: 113584-05 SunOS 5.9: Fixing hebrew input method prob +114034|02|Mar/24/03| | |O| |9_x86|i386;|SUNWmeaos:11.10.0,REV=2002.09.13.02.30;SUNWnafos:1.1,REV=2002.09.13.02.42;|Obsoleted by: 114615-03 SunOS 5.9_x86: Fixing hebrew/arabic dtlogi +114037|02|Aug/04/03| | | | |9|sparc;|SUNWjulcf:1.2,REV=2002.03.04.19.35;SUNWjxplt:1.5,REV=2002.03.04.19.33;|SunOS 5.9: patch for supporting Unicode3.2 & indic script +114038|02|Aug/04/03| | | | |9_x86|i386;|SUNWjulcf:1.2,REV=2002.03.04.19.42;SUNWjxplt:1.5,REV=2002.03.04.19.40;|SunOS 5.9_x86: patch for supporting Unicode3.2 & indic script +114039|02|Nov/13/03| | | | |9|sparc;|SUNWcdt:9.0,REV=2002.01.30.20.22;SUNWdedte:1.1,REV=2002.04.01.17.42;SUNWesdte:1.1,REV=2002.04.01.17.42;SUNWfrdte:1.1,REV=2002.04.01.17.43;SUNWhdt:9.0,REV=2002.01.30.20.23;SUNWhkdt:9.0,REV=2002.02.22.15.54;SUNWitdte:1.1,REV=2002.04.01.17.43;SUNWjedt:1.5,REV=2002.01.30.15.31;SUNWkdt:9.0,REV=2002.02.01.09.59;SUNWsvdte:1.1,REV=2002.04.01.17.44;|SunOS 5.9: Bug fix for dtpad column in Euro UTF-8 locales +114040|02|Nov/13/03| | | | |9_x86|i386;|SUNWcdt:9.0,REV=2002.01.30.20.30;SUNWdedte:1.1,REV=2002.09.18.13.24;SUNWesdte:1.1,REV=2002.09.18.13.24;SUNWfrdte:1.1,REV=2002.09.18.13.25;SUNWhdt:9.0,REV=2002.01.30.20.30;SUNWhkdt:9.0,REV=2002.02.22.15.56;SUNWitdte:1.1,REV=2002.09.18.13.26;SUNWjedt:1.5,REV=2002.01.30.15.39;SUNWkdt:9.0,REV=2002.02.01.10.09;SUNWsvdte:1.1,REV=2002.09.18.13.27;|SunOS 5.9_x86: Bug fix for dtpad column in Euro UTF-8 locales +114045|07|Dec/12/03| |S| | |8|sparc;|SUNWpr:4.1.2,REV=2002.09.03.00.17;SUNWprx:4.1.2,REV=2002.09.03.00.17;SUNWtls:3.3.2,REV=2002.09.18.12.49;SUNWtlsx:3.3.2,REV=2002.09.18.12.49;|SunOS 5.8: NSPR 4.1.4 / NSS 3.3.4.1 +114046|03|May/23/03| |S| | |8_x86|i386;|SUNWpr:4.1.3,REV=2003.01.09.13.59;SUNWtls:3.3.3,REV=2003.01.09.17.07;|SunOS 5.8_x86: Netscape Portable Runtime(4.1.4)/Network Security S +114049|07|Dec/12/03| |S| | |9|sparc;|SUNWpr:4.1.2,REV=2002.09.03.00.17;SUNWprx:4.1.2,REV=2002.09.03.00.17;SUNWtls:3.3.2,REV=2002.09.18.12.49;SUNWtlsx:3.3.2,REV=2002.09.18.12.49;114045-02|SunOS 5.9: NSPR 4.1.4 / NSS 3.3.4.1 +114050|07|Dec/12/03| |S| | |9_x86|i386;|SUNWpr:4.1.3,REV=2003.01.09.13.59;SUNWtls:3.3.3,REV=2003.01.09.17.07;114046-02|SunOS 5.9_x86: NSPR 4.1.4 / NSS 3.3.4.1 +114057|01|Dec/16/02| | | | |7|sparc;|SUNWeuxwe:1.3,REV=1998.08.07.10.00;|SunOS 5.7: en_US.UTF-8 locale patch +114058|01|Dec/16/02| | | | |7_x86|i386;|SUNWeuxwe:1.3,REV=1998.08.07.10.00;|SunOS 5.7_x86: en_US.UTF-8 locale patch +114059|02|Mar/03/03| | | | |8|sparc;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuluf:1.5,REV=1999.12.09.18.39;SUNWeulux:1.5,REV=1999.12.09.18.39;SUNWeuodf:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|SunOS 5.8: en_US.UTF-8 locale patch +114060|02|Mar/03/03| | | | |8_x86|i386;|SUNWeudda:1.5,REV=1999.12.03.14.40;SUNWeudlg:1.5,REV=1999.12.03.14.40;SUNWeuezt:1.5,REV=1999.12.03.14.40;SUNWeuluf:1.5,REV=1999.12.09.18.32;SUNWeuodf:1.5,REV=1999.12.03.14.40;SUNWeuxwe:1.5,REV=1999.12.03.14.40;|SunOS 5.8_x86: en_US.UTF-8 locale patch +114062|01|Mar/27/03| | | | |Unbundled|||WorkerGR_QueryRunDragon received error in Global Reporter +114063|01|Nov/14/03| | | | |Unbundled|||Capacity Reporter 6.0.1:Failed Solaris agent scans after installin +114125|01|Aug/13/03|R|S| | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: IKE config.sample patch +114126|02|Aug/27/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: todds1287 patch +114127|02|Dec/24/03|R| | | |9|sparc;114129-01;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: abi_libefi.so.1 Patch +114128|01|Mar/31/03| | | | |9|sparc;113277-06;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sd_lun patch +114129|01|Mar/31/03|R| | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: multi-terabyte disk support -libuuid patch +114131|01|Mar/31/03| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: multi-terabyte disk support - libadm.so.1 patch +114132|01|Mar/31/03| | | | |9|sparc;114127-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: fmthard patch +114133|01|Feb/03/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: mail Patch +114134|01|Feb/03/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: mail Patch +114135|01|Jan/22/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: at utility Patch +114136|01|Jan/22/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: at utility Patch +114137|04|Sep/29/03|R|S| | |9_x86|i386;|SUNWsndmr:11.9.0,REV=2002.11.04.02.51;SUNWsndmu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sendmail Patch +114143|01|Jan/23/03| | | | |Unbundled|sparc;|SUNWlzpm:2.0,REV=rr24;|PC NetLink 2.0 Password Sync. fixes +114145|01|Apr/30/03|R|S| | |9_x86|i386;|SUNWapchS:11.9.0,REV=2002.08.06.16.05;SUNWapchd:11.9.0,REV=2002.08.06.16.05;SUNWapchr:11.9.0,REV=2002.08.06.16.05;SUNWapchu:11.9.0,REV=2002.08.06.16.05;|SunOS 5.9_x86: Apache Security Patch +114146|01|Dec/09/02| |S| | |8|sparc;sparc.sun4u;sparc.sun4us;108528-16;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;108528-17 (or newer)|SunOS 5.8: Supplemental Kernel Update Patch for 108528-16 +114147|01|Dec/09/02| |S| | |8_x86|i386;108529-16;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;108529-17 (or newer)|SunOS 5.8_x86: Supplement Kernel Update Patch for 108529-16 +114148|01|Jan/07/03| | | | |Trusted_Solaris_8_4/01|sparc;|SUNWkpts:11.7.0,REV=2001.09.25.00.12;SUNWkptsx:11.7.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: tsol_policy genunix_policy patch +114150|01|Dec/18/02|R| | | |2.6|sparc;|SUNWjbcp:1.7,REV=1.0.78;|SunOS 5.6: Japanese SunOS 4.x Binary Compatibility(BCP) patch +114151|01|Dec/18/02|R| | | |7|sparc;|SUNWjbcp:1.8,REV=1.0.45;|SunOS 5.7: Japanese SunOS 4.x Binary Compatibility(BCP) patch +114152|01|Dec/10/02|R| | | |8|sparc;|SUNWjbcp:1.9,REV=1999.12.08.15.55;|SunOS 5.8: Japanese SunOS 4.x Binary Compatibility(BCP) patch +114153|01|Dec/10/02|R| | | |9|sparc;|SUNWjbcp:1.9,REV=2002.01.29.12.00;|SunOS 5.9: Japanese SunOS 4.x Binary Compatibility(BCP) patch +114154|01|Dec/24/02| |S| | |8_x86|i386;108529-18;|SUNWpsdcr:1.1.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: vuidm5p/vuidm4p/vuid3ps2/vuid2ps2 patch +114155|02|May/15/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWxcu4:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/ccs/bin/m4 patch +114156|02|May/15/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWxcu4:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ccs/bin/m4 patch +114157|01|Jun/17/03| | | | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcar:11.8.0,REV=2000.01.13.13.40;SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/sun4u/kernel/drv/power patch +114158|01|Jan/02/03| | | | |8|sparc;|SUNWbtool:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/ccs/bin/yacc patch +114159|01|Jan/31/03| | | | |8_x86|i386;|SUNWbtool:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ccs/bin/yacc patch +114160|01|Feb/21/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: avl_tree, avl_node and rnode patch +114161|01|Feb/21/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: avl_tree, avl_node and rnode patch +114162|01|Apr/07/03|R|S| | |8|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/drv/lofi drivers and /usr/sbin/lofiadm patch +114163|01|Apr/07/03|R|S| | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/lofi drivers and /usr/sbin/lofiadm patc +114165|01|Jun/16/03| | | | |9|sparc;|SUNWcreg:9.0,REV=2001.11.14.22.02;SUNWdereg:1.0.0,REV=2002.03.13.13.46;SUNWesreg:1.0.0,REV=2002.03.13.13.21;SUNWfrreg:1.0.0,REV=2002.03.13.13.23;SUNWhreg:9.0,REV=2001.11.14.22.04;SUNWitreg:1.0.0,REV=2002.03.13.13.25;SUNWjreg:1.2,REV=2002.01.30.15.31;SUNWkreg:9.0,REV=2002.02.06.22.52;SUNWsvreg:1.0.0,REV=2002.03.13.13.27;|CDE 1.5: SUNWsregu Localization message patch +114166|01|Jun/16/03| | | | |9_x86|i386;|SUNWcreg:9.0,REV=2001.11.14.22.06;SUNWdereg:1.0.0,REV=2002.03.13.13.47;SUNWesreg:1.0.0,REV=2002.03.13.13.20;SUNWfrreg:1.0.0,REV=2002.03.13.13.21;SUNWhreg:9.0,REV=2001.11.14.22.07;SUNWitreg:1.0.0,REV=2002.03.13.13.21;SUNWjreg:1.2,REV=2002.01.30.15.39;SUNWkreg:9.0,REV=2002.02.06.17.55;SUNWsvreg:1.0.0,REV=2002.03.13.13.22;|CDE 1.5_x86: SUNWsregu Localization message patch +114169|02|May/27/03| | |O| |Unbundled|sparc;|SUNWnhadm:2.1.12e,REV=2002.10.23.18.36;SUNWnhcdt:2.1.08c,REV=2002.10.30.16.52;SUNWnhcma:2.1.08c,REV=2002.10.30.16.52;SUNWnhcmb:2.1.08c,REV=2002.10.30.16.52;SUNWnhcmd:2.1.08c,REV=2002.10.30.16.52;SUNWnhfsa:2.1.08c,REV=2002.10.30.16.52;SUNWnhfsb:2.1.08c,REV=2002.10.30.16.52;SUNWnhnsb:2.1.08c,REV=2002.10.30.16.52;SUNWnhpma:2.1.08c,REV=2002.10.30.16.52;SUNWnhpmb:2.1.08c,REV=2002.10.30.16.52;SUNWnhtp8:2.1.08c,REV=2002.10.30.16.52;SUNWnhtp9:2.1.08c,REV=2002.10.30.17.13;|Obsoleted by: 114173-03 NHAS 2.1 foundation services: core patch +114171|05|Nov/05/03| | | | |Unbundled|sparc;|SUNWnhins:2.1.12e,REV=2002.10.23.18.36;SUNWnhsmc:2.1.12e,REV=2002.10.23.18.36;|NHAS 2.1 foundation services: Installer patch +114172|04|Nov/05/03| | | | |Unbundled|sparc;|SUNWnhrbb:2.1.08c,REV=2002.10.30.16.52;|NHAS 2.1 foundation services: Reliable Boot Service patch +114173|03|Nov/05/03| | | | |Unbundled|sparc;|SUNWnhadm:2.1.12e,REV=2002.10.23.18.36;SUNWnhcdt:2.1.08c,REV=2002.10.30.16.52;SUNWnhcma:2.1.08c,REV=2002.10.30.16.52;SUNWnhcmb:2.1.08c,REV=2002.10.30.16.52;SUNWnhcmd:2.1.08c,REV=2002.10.30.16.52;SUNWnhnsb:2.1.08c,REV=2002.10.30.16.52;SUNWnhpma:2.1.08c,REV=2002.10.30.16.52;SUNWnhpmb:2.1.08c,REV=2002.10.30.16.52;SUNWnhtp8:2.1.08c,REV=2002.10.30.16.52;SUNWnhtp9:2.1.08c,REV=2002.10.30.17.13;|NHAS 2.1 Foundation Services: Core Patch for all cluster nodes +114176|03|Sep/15/03| | | | |Unbundled|sparc;|SUNWscucm:3.0.0,REV=2000.10.01.01.00;SUNWudlm:3.0.0,REV=2000.10.01.01.00;SUNWudlmr:3.0.0,REV=2000.10.01.01.00;|Sun Cluster 3.0: OPS Core Patch for Solaris 9 +114177|01|Feb/10/03| | | | |Unbundled|i386;|SUNWbak:1.6,REV=2000.03.01.00.00;SUNWbau:1.6,REV=2000.03.01.00.00;|Bandwidth Manager 1.6: product patch +114185|01|Jan/15/03| | | | |9_x86|i386;|SUNWdtdmn:1.5,REV=10.2002.09.21;|CDE 1.5_x86: rpc.cmsd patch +114189|01|Feb/03/03| | | | |Unbundled|sparc;|SUNWscvw:3.0.0,REV=2002.04.18.03.00;|Sun Cluster 3.0: SunPlex Manager Core Components Patch +114191|03|Aug/27/03| | | | |9_x86|i386;|SUNWadmap:11.9,REV=2002.10.31.18.39;SUNWsibi:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: sysidnet Utility Patch +114192|05|Aug/25/03| | | | |9_x86|i386;|SUNWlvma:1.0,REV=2002.10.31.18.39;SUNWlvmg:1.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: Volume Management Patch +114193|12|Aug/27/03|R| | | |9_x86|i386;|SUNWdclnt:1.0,REV=2002.10.31.18.39;SUNWlvma:1.0,REV=2002.10.31.18.39;SUNWmga:1.0,REV=2002.10.31.18.39;SUNWpmgr:3.0,REV=2002.10.31.18.39;SUNWwbapi:2.5,REV=2002.10.31.18.39;SUNWwbcor:2.5,REV=2002.10.31.18.39;SUNWwbcou:2.5,REV=2002.10.31.18.39;SUNWwbdev:2.5,REV=2002.10.31.18.39;SUNWwbpro:2.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: wbem Patch +114194|02|Apr/07/03|R| | | |9_x86|i386;|SUNWswmt:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: patchadd and patchrm Patch +114196|11|Oct/15/03| | | | |9_x86|i386;114483-01;|SUNWadmc:11.8,REV=2002.10.31.17.09;SUNWinst:11.9,REV=2002.10.31.18.39;SUNWsibi:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: /usr/snadm/lib Library and Differential Flash Patch +114197|01|Feb/20/03| | |O| |9_x86|i386;|SUNWinst:11.9,REV=2002.10.31.18.39;|Obsoleted by: 114196-05 SunOS 5.9_x86: flarcreate Patch +114199|01|Dec/18/02| | | | |9_x86|i386;|SUNWmc:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: smcpreconfig.sh Patch +114200|01|Jun/17/03| | | | |9_x86|i386;|SUNWsregu:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: solregis Patch +114201|01|Dec/18/02| | | | |9_x86|i386;|SUNWmcc:11.9,REV=2002.10.31.18.39;|SunOS 5.9_x86: Gnome Integration Patch +114209|01|Jan/02/03| | |O| |9|sparc;|SUNWdtdte:1.5,REV=10.2002.03.13;|Obsoleted by: 112807-03 CDE 1.5: dtlogin patch +114210|06|Oct/13/03|R|S| | |9_x86|i386;|SUNWdtdte:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtlogin patch +114211|01|Jun/17/03| | | | |9|sparc;|SUNWcwbc:9.0,REV=2002.04.09.11.09;SUNWdewbc:12.0,REV=2002.03.21.16.35;SUNWeswbc:12.0,REV=2002.03.21.17.06;SUNWfrwbc:12.0,REV=2002.03.21.17.34;SUNWhwbc:9.0,REV=2002.03.28.15.21;SUNWitwbc:12.0,REV=2002.03.21.18.05;SUNWjwbc:2.0,REV=2002.03.15.12.01;SUNWkwbc:9.0,REV=2002.02.27.15.01;SUNWsvwbc:12.0,REV=2002.03.21.18.36;|SunOS 5.9: WBEM Localization message patch +114212|01|Jun/17/03| | | | |9_x86|i386;|SUNWcwbc:9.0,REV=2002.04.09.11.18;SUNWdewbc:12.0,REV=2002.03.21.15.58;SUNWeswbc:12.0,REV=2002.03.21.16.48;SUNWfrwbc:12.0,REV=2002.03.21.17.19;SUNWhwbc:9.0,REV=2002.03.28.15.31;SUNWitwbc:12.0,REV=2002.03.21.17.54;SUNWjwbc:2.0,REV=2002.03.07.18.02;SUNWkwbc:9.0,REV=2002.02.27.14.56;SUNWsvwbc:12.0,REV=2002.03.21.18.29;|SunOS 5.9_x86: WBEM Localization message patch +114215|03|Aug/29/03| | | | |9|sparc;|SUNWcadis:9.0,REV=2002.03.06.16.22;SUNWcadma:9.0,REV=2002.02.25.13.02;SUNWcwsr2:9.0,REV=2001.11.06.10.04;SUNWdedis:1.0,REV=2002.02.18.11.40;SUNWdedma:1.0,REV=2002.03.26.09.52;SUNWdews2:2.1.0,REV=2002.01.30.15.55;SUNWesdis:1.0,REV=2002.02.14.15.36;SUNWesdma:1.0,REV=2002.03.26.09.54;SUNWesws2:2.1.0,REV=2002.01.30.16.33;SUNWfrdis:1.0,REV=2002.02.14.15.51;SUNWfrdma:1.0,REV=2002.03.26.09.57;SUNWfrws2:2.1.0,REV=2002.01.30.17.27;SUNWhadis:9.0,REV=2002.03.06.16.23;SUNWhadma:9.0,REV=2002.02.25.13.06;SUNWhwsr2:9.0,REV=2002.03.13.00.07;SUNWitdis:1.0,REV=2002.02.14.16.03;SUNWitdma:1.0,REV=2002.03.26.09.59;SUNWitws2:2.1.0,REV=2002.01.30.18.29;SUNWjadis:1.5,REV=2002.02.21.15.04;SUNWjadma:1.4,REV=2002.01.30.15.31;SUNWjws2:1.0,REV=2002.01.30.15.31;SUNWkadis:9.0,REV=2002.03.21.10.01;SUNWkadma:9.0,REV=2002.02.25.13.01;SUNWkwsr2:9.0,REV=2001.11.06.10.34;SUNWsvdis:1.0,REV=2002.02.14.11.21;SUNWsvdma:1.4,REV=2002.03.26.10.02;SUNWsvws2:2.1.0,REV=2002.01.30.19.33;|SunOS 5.9: Install/admin Localization message patch +114216|03|Aug/29/03| | | | |9_x86|i386;|SUNWcadis:9.0,REV=2002.03.06.16.32;SUNWcadma:9.0,REV=2002.02.25.13.11;SUNWcwsr2:9.0,REV=2001.11.06.10.08;SUNWdedis:1.0,REV=2002.02.18.11.30;SUNWdedma:1.0,REV=2002.03.26.09.53;SUNWdews2:2.1.0,REV=2002.01.30.16.00;SUNWesdis:1.0,REV=2002.02.14.15.39;SUNWesdma:1.0,REV=2002.03.26.09.55;SUNWesws2:2.1.0,REV=2002.01.30.16.19;SUNWfrdis:1.0,REV=2002.02.14.15.53;SUNWfrdma:1.0,REV=2002.03.26.09.57;SUNWfrws2:2.1.0,REV=2002.01.30.16.35;SUNWhadis:9.0,REV=2002.03.06.16.33;SUNWhadma:9.0,REV=2002.02.25.13.13;SUNWhwsr2:9.0,REV=2002.03.12.20.35;SUNWitdis:1.0,REV=2002.02.14.16.06;SUNWitdma:1.0,REV=2002.03.26.09.59;SUNWitws2:2.1.0,REV=2002.01.30.16.54;SUNWjadis:1.5,REV=2002.02.21.13.54;SUNWjadma:1.4,REV=2002.01.30.15.39;SUNWjws2:1.0,REV=2002.01.30.15.39;SUNWkadis:9.0,REV=2002.03.21.09.51;SUNWkadma:9.0,REV=2002.02.25.13.10;SUNWkwsr2:9.0,REV=2001.11.06.10.25;SUNWsvdis:1.0,REV=2002.02.14.11.22;SUNWsvdma:1.4,REV=2002.03.26.10.01;SUNWsvws2:2.1.0,REV=2002.01.30.17.12;|SunOS 5.9_x86: Install/admin Localization message patch +114217|03|Aug/29/03| | | | |9|sparc;|SUNWdelu:11.9,REV=2002.02.26.13.14;SUNWeslu:11.9,REV=2002.02.22.13.19;SUNWfrlu:11.9,REV=2002.02.22.17.21;SUNWitlu:11.9,REV=2002.02.22.13.16;SUNWsvlu:11.9,REV=2002.02.21.18.07;|SunOS 5.9: Install/admin Localization message patch +114218|03|Aug/29/03| | | | |9_x86|i386;|SUNWdelu:11.9,REV=2002.02.26.13.21;SUNWeslu:11.9,REV=2002.02.22.13.22;SUNWfrlu:11.9,REV=2002.02.22.17.22;SUNWitlu:11.9,REV=2002.02.22.13.19;SUNWsvlu:11.9,REV=2002.02.21.17.24;|SunOS 5.9_x86: Install/admin Localization message patch +114219|05|Aug/04/03| | | | |9|sparc;|SUNWdtim:1.5,REV=10.2002.03.13;|CDE 1.5: sdtimage patch +114220|05|Aug/04/03| | | | |9_x86|i386;|SUNWdtim:1.5,REV=10.2002.09.21;|CDE 1.5_x86: sdtimage patch +114221|02|Aug/04/03| | | | |9|sparc;|SUNWceudt:1.0,REV=2002.03.04.11.56.41;SUNWeeudt:1.0,REV=2002.03.04.03.49.29;SUNWi5rf:3.6,REV=2002.01.16.15.29;SUNWmeadt:1.0,REV=20011004034640;SUNWnafdt:1.0,REV=2001.03.21.17.53;SUNWneudt:1.0,REV=2001.04.11.15.45;SUNWsamdt:1.0,REV=2001.03.21.18.01;SUNWseudt:1.0,REV=2001.04.11.15.45;SUNWweudt:1.0,REV=2001.04.11.15.45;|SunOS 5.9: UR bug fixes +114222|02|Aug/04/03| | | | |9_x86|i386;|SUNWceudt:1.0,REV=2001.04.11.15.52;SUNWeeudt:1.0,REV=2001.03.21.14.41;SUNWi5rf:3.6,REV=2002.01.16.16.04;SUNWmeadt:1.0,REV=20011004035605;SUNWnafdt:1.0,REV=2001.03.21.15.07;SUNWneudt:1.0,REV=2001.04.11.15.52;SUNWsamdt:1.0,REV=2001.03.21.15.22;SUNWseudt:1.0,REV=2001.04.11.15.52;SUNWweudt:1.0,REV=2001.04.11.15.52;|SunOS 5.9_x86: UR bug fixes +114224|01|Jan/02/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: csh Patch +114225|01|Jun/17/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: csh Patch +114226|01|Jan/29/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: zsh driver Patch +114227|01|Jan/02/03| | | | |9|sparc;|SUNWbtool:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: yacc Patch +114228|01|Jun/19/03| | | | |9_x86|i386;|SUNWbtool:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: yacc Patch +114229|01|Jan/03/03| | | | |9|sparc;|SUNWvolu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: action_filemgr.so.1 Patch +114230|01|Jan/03/03| | | | |9_x86|i386;|SUNWvolu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: action_filemgr.so.1 Patch +114231|02|Aug/20/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: rpcmod Patch +114232|02|Aug/29/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: rpcmod Patch +114233|05|Nov/10/03| | | | |9|sparc;|SUNWrsm:11.9.0,REV=2002.04.06.15.27;SUNWrsmx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: rsm Patch +114234|03|Jun/24/03| | | | |9_x86|i386;|SUNWrsm:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: rsm Patch +114235|01|May/07/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libsendfile.so.1 Patch +114236|01|May/07/03| | | | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libsendfile.so.1 Patch +114237|02|Aug/29/03| | | | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libaio Patch +114238|01|Jan/08/03| | | | |9_x86|i386;|SUNWdhcm:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: dhcpmgr.jar Patch +114240|01|Jul/07/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: cachefs Patch +114241|06|Dec/23/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWnisu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libsldap.so.1 Patch +114242|03|Jul/31/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: passwdutil.so.1 & pam_authtok Patch +114243|04|Sep/15/03|R| | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: st driver Patch +114244|01|Jun/25/03| | | | |9|sparc;|SUNWcxplt:9.0,REV=2002.03.23.10.38;|SunOS 5.9: some characters cannot be shown in GBK and GB18030 loca +114245|01|Jun/25/03| | | | |9_x86|i386;|SUNWcxplt:9.0,REV=2002.08.19.13.15;|SunOS 5.9_x86:some characters cannot be shown in GBK and GB18030 l +114246|01|Jan/31/03| | | | |8|sparc;|SUNWgttf:8.0,REV=2001.11.14.17.24;SUNWgttfe:8.0,REV=2001.11.14.17.24;|SunOS 5.8: Truetype fonts of GB18030 in S8U7 should replaced +114247|01|Jan/31/03| | | | |8_x86|i386;|SUNWgttf:8.0,REV=2001.11.14.17.25;SUNWgttfe:8.0,REV=2001.11.14.17.48;|SunOS 5.8_x86: Truetype fonts of GB18030 in S8U7 should replaced +114248|01|Sep/15/03| | | | |9_x86|i386;|SUNWcleu:9.0,REV=2002.08.19.13.15;SUNWcleue:9.0,REV=2002.08.19.13.15;SUNWhkeue:9.0,REV=2002.08.19.13.15;SUNWhkleu:9.0,REV=2002.08.19.13.15;SUNWhleu:9.0,REV=2002.08.19.13.15;SUNWhleue:9.0,REV=2002.08.19.13.15;SUNWkleu:9.0,REV=2002.01.29.19.36;SUNWkleue:9.0,REV=2001.12.04.10.28;SUNWtleu:9.0,REV=2002.08.19.13.15;|SunOS 5.9_x86: Sync with Unicode3.2 for Asia locales +114251|01|May/15/03|R| | | |8|sparc;|SUNWgttf:8.0,REV=2001.11.14.17.24;SUNWgttfe:8.0,REV=2001.11.14.17.24;SUNWgxfnt:8.0,REV=2001.09.29.15.42;|SunOS 5.8: pkgrm failed if upgrade from S8U7 to upper release with +114252|01|May/15/03|R| | | |8_x86|i386;|SUNWgttf:8.0,REV=2001.11.14.17.25;SUNWgttfe:8.0,REV=2001.11.14.17.48;SUNWgxfnt:8.0,REV=2001.09.29.15.47;|SunOS 5.8_x86: pkgrm failed if upgrade from S8U7 to upper release +114255|01|Mar/27/03| | | | |8|all;|SUNWaadm:47.11.104;|SunOS 5.8: System Administration documentation updates for Solaris +114256|01|Mar/27/03| | | | |8_x86|all;|SUNWaadm:47.11.104;|SunOS 5.8_x86: System Administration documentation for Solaris 8 +114263|01|Oct/13/03| | | | |9_x86|i386;|SUNWgss:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libgss.so.1 Patch +114266|01|Oct/24/03| | | | |9_x86|i386;|SUNWxwdv:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: winlock Patch +114271|02|Apr/10/03| | | | |Unbundled|sparc;|SUNWsci:3.0,REV=2001.12.10.08.44;|SC3.0u3 : SCI bug fixes, SCI diagnostics support, DR support +114272|02|Apr/10/03| | | | |Unbundled|sparc;|SUNWsci:3.0,REV=2001.12.10.08.44;|SC3.0u3 : SCI bug fixes, SCI diagnostics support, DR support for S +114273|02|Apr/17/03|R|S| | |9_x86|i386;|IPLTadcon:5.1,REV=2002.03.01.12.28;IPLTadmin:5.1,REV=2002.03.01.12.29;IPLTcons:5.1,REV=2002.03.01.12.30;IPLTdscon:5.1,REV=2002.03.01.12.30;IPLTdsu:5.1,REV=2002.03.01.12.34;IPLTjss:3.1,REV=2002.03.01.12.34;IPLTnls:3.1,REV=2002.03.01.12.37;IPLTnspr:4.1.2,REV=2002.03.01.12.37;IPLTnss:3.3.1,REV=2002.03.01.12.34;IPLTpldap:1.4.1,REV=2002.03.01.12.37;|SunOS 5.9_x86: Sun ONE Directory Server 5.1 patch +114274|02|Jan/15/03| | |O| |9|sparc;|SUNWeuodf:1.5,REV=2002.02.08.16.30;|Obsoleted by: 113896-02 SunOS 5.9: Add missing euro entries to UTF +114275|02|Jan/15/03| | |O| |9_x86|i386;|SUNWeuodf:1.5,REV=2002.02.08.16.35;|Obsoleted by: 113897-02 SunOS 5.9_x86: Add missing entries to UTF- +114276|02|Aug/29/03| | | | |9|sparc;|SUNWarrf:7.2,REV=2001.03.08.17.37;|SunOS 5.9: Extended Arabic support in UTF-8 +114277|02|Aug/29/03| | | | |9_x86|i386;|SUNWarrf:7.2,REV=2001.03.08.14.06;|SunOS 5.9_x86: Extended Arabic support in UTF-8 +114279|05|Nov/21/03| | | | |Unbundled|||MTP8.0 J3270 Patch 5 +114282|01|Feb/06/03| | | | |9|sparc;|SUNWdtbas:1.5,REV=10.2002.03.13;SUNWdtbax:1.5,REV=10.2002.03.13;|CDE 1.5: libDtWidget patch +114283|01|Feb/06/03| | | | |9_x86|i386;|SUNWdtbas:1.5,REV=10.2002.09.21;|CDE 1.5_x86: libDtWidget patch +114285|08|Oct/21/03| | | | |Unbundled|sparc,i386;|SUNWc6120:7.7;|6120 3.0.7: System Firmware Update +114286|01|Apr/04/03|R| | | |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: nei bug fixes +114287|01|Dec/19/02| | | | |Unbundled|sparc;|SUNWsspop:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: hostview patch +114312|01|Mar/06/03| | | | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;SUNWpdas:1.5,REV=10.2002.03.13;SUNWscgui:1.5,REV=10.2002.03.13;|CDE1.5: GNOME/CDE Menu for Solaris 9 +114313|01|Mar/06/03| | | | |9_x86|i386;|SUNWdtdst:1.5,REV=10.2002.09.21;SUNWpdas:1.5,REV=10.2002.09.21;|CDE1.5_x86: GNOME/CDE Menu for Solaris 9_x86 +114321|02|Aug/29/03| | | | |9|sparc;|SUNWcmga:8.0,REV=2002.03.22.14.36;SUNWdmgp:1.0,REV=2002.03.26.09.37;SUNWemgp:1.0,REV=2002.03.21.17.06;SUNWfmgp:1.0,REV=2002.03.21.17.34;SUNWhkmga:1.0,REV=2002.04.05.13.39;SUNWhmga:8.0,REV=2002.03.21.16.06;SUNWimgp:1.0,REV=2002.03.21.18.05;SUNWjmga:1.0,REV=2002.03.21.15.19;SUNWkmga:8.0,REV=2002.03.22.14.37;SUNWsmgp:1.0,REV=2002.03.21.18.36;|SunOS 5.9: Patch Manager Localization message patch +114322|02|Aug/29/03| | | | |9_x86|i386;|SUNWcmga:8.0,REV=2002.03.22.15.03;SUNWdmgp:1.0,REV=2002.03.26.09.28;SUNWemgp:1.0,REV=2002.03.21.16.48;SUNWfmgp:1.0,REV=2002.03.21.17.19;SUNWhkmga:1.0,REV=2002.04.05.13.52;SUNWhmga:8.0,REV=2002.03.21.16.03;SUNWimgp:1.0,REV=2002.03.21.17.54;SUNWjmga:1.0,REV=2002.03.21.14.45;SUNWkmga:8.0,REV=2002.03.22.15.04;SUNWsmgp:1.0,REV=2002.03.21.18.29;|SunOS 5.9_x86: Patch Manager Localization message patch +114324|03|Jun/27/03| | | | |9_x86|i386;|SUNWos86r:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: pcplusmp Patch +114325|01|Jan/31/03| | | | |9|sparc;|SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: psvcobj Patch +114326|02|Jun/27/03| | | | |9|sparc;|SUNWdcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/lib/dcs Patch +114327|01|May/29/03| | |O| |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 114332-02 SunOS 5.9: cron Patch +114328|02|Nov/03/03|R|S| | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: nss_ldap.so.1 Patch +114329|01|Jan/31/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/pax Patch +114330|01|Jan/31/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: pax Patch +114331|01|Jun/27/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: power Patch +114332|08|Dec/10/03|R| | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWvolr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: c2audit & *libbsm.so.1 Patch +114333|01|May/29/03| | |O| |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 114334-02 SunOS 5.9_x86: cron Patch +114334|03|Jun/06/03|R| |O| |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 114929-03 SunOS 5.9_x86: c2audit & *libbsm.so.1 Patc +114335|02|Jul/31/03| | | | |9|sparc;|SUNWvolu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/sbin/rmmount Patch +114336|02|Jul/31/03| | | | |9_x86|i386;|SUNWvolu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/rmmount patch +114337|08|Oct/14/03|R|S| | |9_x86|i386;114012-02;112234-07;115009-01;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/drv/tcp kernel/drv/ip patch +114338|01|Jun/27/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: todm5819 Patch +114339|01|Feb/27/03| | | | |9|sparc;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: wrsm header files Patch +114340|01|Jun/27/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: SUNW_filesys_rcm.so Patch +114341|01|Jun/27/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/rcm/modules/SUNW_filesys_rcm.so patch +114342|01|Feb/24/03| | | | |9_x86|i386;|SUNWypu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/netsvc/yp/rpc.yppasswdd patch +114343|02|Apr/23/03|R| | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ksh patch +114344|03|Dec/23/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kernel/drv/arp Patch +114345|02|Jul/24/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/drv/arp patch +114347|01|Feb/24/03| | | | |9|sparc;|SUNWefcr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: etc/init.d/efcode Patch +114348|03|Aug/06/03| | | | |9_x86|i386;|SUNWroute:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/sbin/in.routed patch +114349|01|Jul/07/03| | | | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sbin/dhcpagent Patch +114350|01|Feb/27/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sbin/dhcpagent patch +114352|03|Jul/11/03| | | | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /etc/inet/inetd.conf Patch +114353|03|Jul/11/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /etc/inet/inetd.conf Patch +114354|02|Aug/29/03|R|S| | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;SUNWinamd:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libresolv patch +114355|01|Mar/06/03| | | | |9_x86|i386;|SUNWesu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sort patch +114356|02|Oct/13/03| | | | |9|sparc;|SUNWsshu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/ssh Patch +114357|02|Oct/13/03| | | | |9_x86|i386;|SUNWsshu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/bin/ssh patch +114358|03|Sep/26/03| | | | |9_x86|i386;|SUNWmibii:11.9.0,REV=2002.11.04.02.51;SUNWsasnm:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: snmpdx mibiisa patch +114359|01|Mar/03/03|R| | | |9|sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: mc-us3 Patch +114360|01|Apr/07/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWcpr:11.9.0,REV=2002.04.06.15.27;SUNWcpr:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: platform/sun4u/cprboot Patch +114361|01|Apr/30/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/drv/lofi Patch +114362|01|Apr/30/03| |S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: lofi patch +114363|01|Mar/06/03| | | | |9|sparc;|SUNWesu:11.9.0,REV=2002.04.06.15.27;SUNWesxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: sort Patch +114364|01|Mar/25/03| | | | |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWpdas:1.4,REV=10.1999.12.02;SUNWscgui:1.4,REV=10.1999.12.02;|CDE1.4: GNOME/CDE Menu for Solaris 8 +114365|01|Mar/25/03| | | | |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWpdas:1.4,REV=10.1999.12.02;|CDE1.4_x86: GNOME/CDE Menu for Solaris 8_x86 +114369|01|Mar/31/03| | | | |9|sparc;114127-01;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: prtvtoc patch +114370|03|Nov/11/03| | | | |9|sparc;112874-13;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libumem.so.1 patch +114371|01|May/05/03| | | | |9|sparc;|SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWmdbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: UMEM - libumem (mdb components) patch +114372|01|May/05/03| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWarcx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: UMEM - llib-lumem patch +114373|01|May/05/03| | | | |9|sparc;|SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWcstlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: UMEM - abi_libumem.so.1 patch +114374|01|Jul/14/03| | | | |9|sparc;|SUNWpl5u:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Perl patch +114375|06|Jul/25/03|R| | | |9|sparc;sparc.sun4u;114385-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWfruip:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - PICL & FRUID +114376|03|Sep/26/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWkvmx:11.9.0,REV=2002.04.06.15.27;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWpstl:11.9.0,REV=2002.04.06.15.27;SUNWpstl:11.9.0,REV=2002.04.09.12.25;SUNWpstlx:11.9.0,REV=2002.04.06.15.27;SUNWpstlx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: Enchilada/Stiletto - platform links +114377|03|May/06/03| | | | |9|sparc;sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - BSC comms support +114378|02|May/06/03| | | | |9|sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto TOD driver +114379|02|Jul/24/03| | | | |9|sparc;|SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - libprtdiag support +114380|01|May/06/03| | | | |9|sparc;|SUNWcpcu:11.9.0,REV=2002.04.06.15.27;SUNWcpcux:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - rmc_comm/rmcadm/rmclomv/librsc sup +114381|05|Jun/02/03| | |O| |9|sparc;sparc.sun4u;114385-01;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 114375-06 SunOS 5.9: rmc_comm/rmcadm/rmclomv/librsc +114382|01|May/06/03| | |O| |9|sparc;sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-07 SunOS 5.9: Enchilada/Stiletto - bge driver +114383|02|May/06/03| | | | |9|sparc;sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - pca9556 driver +114384|02|May/06/03| | |O| |9|sparc;sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-07 SunOS 5.9: Enchilada/Stiletto - mc-us3i dr +114385|03|Aug/04/03| | | | |9|sparc;sparc.sun4u;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - pmugpio pmubus driver +114386|02|May/06/03| | | | |9|sparc.sun4u;114381-01;114375-06;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: todm5819p_rmc driver patch +114387|04|Jul/31/03| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Enchilada/Stiletto - scadm support +114388|03|Oct/27/03| | | | |9|sparc;sparc.sun4u;|SUNWdmfex:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: dmfe driver patch +114389|02|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: devinfo Patch +114390|01|May/06/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWefcx:11.9.0,REV=2002.04.06.15.27;SUNWefcx:11.9.0,REV=2003.01.10.11.57;|Obsoleted by: 112233-11 SunOS 5.9: Slot 1 DR - GPTWOCFG patch +114391|01|May/06/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: Slot 1 DR - Hotplug Patch +114392|01|May/06/03| | |O| |9|sparc;|SUNWefclx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113571-03 SunOS 5.9: Slot 1 DR - Efcode Patch +114393|02|Sep/26/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWcpc:11.9.0,REV=2002.04.06.15.27;SUNWcpcx:11.9.0,REV=2002.04.06.15.27;SUNWcpcx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: cpc Patch +114394|02|Sep/26/03| | | | |9|sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: trapstat Patch +114395|03|Sep/26/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: tod patch +114418|03|Aug/04/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWcpr:11.9.0,REV=2002.04.06.15.27;SUNWcpr:11.9.0,REV=2002.04.09.12.25;SUNWcprx:11.9.0,REV=2002.04.06.15.27;SUNWcprx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: cpr patch +114419|02|Jul/17/03| | | | |9_x86|i386;114420-01;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Multiterabyte Disk Support - abi_libefi.so.1 patch +114420|01|Jul/17/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: multi-terabyte disk support - libuuid patch +114421|01|Jul/17/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Multiterabyte Disk Support - libadm.so.1 patch +114422|01|Jul/17/03| | | | |9_x86|i386;114419-01;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Multiterabyte Disk Support - fmthard patch +114423|04|Jul/17/03| | | | |9_x86|i386;114419-02;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: format patch +114424|01|Jul/17/03| | | | |9_x86|i386;114419-01;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Multiterabyte Disk Support - prtvtoc patch +114425|01|Jul/18/03| | |O| |9_x86|i386;113994-02;|SUNWmdr:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 113994-09 SunOS 5.9_x86: md_trans patch +114426|05|Sep/29/03| | | | |9_x86|i386;|SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: header files patch +114427|03|Nov/25/03| | | | |9_x86|i386;113988-03;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Umem - libumem.so.1 patch +114428|01|May/07/03| | | | |9_x86|i386;|SUNWmdb:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Umem - libumem patch +114429|01|May/07/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Umem - llib-lumem patch +114430|01|May/07/03| | | | |9_x86|i386;|SUNWcstl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Umem - abi-libumeme.so.1 +114432|02|May/12/03| | | | |9_x86|i386;113988-03;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWmdb:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: stack overflow - libthread.so.1 patch +114433|01|May/07/03| | | | |9_x86|i386;|SUNWcpcu:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWesu:11.9.0,REV=2002.11.04.02.51;SUNWmdb:11.9.0,REV=2002.11.04.02.51;SUNWrmwbu:11.9.0,REV=2002.11.04.02.51;SUNWscpu:11.9.0,REV=2002.11.04.02.51;SUNWtnfc:11.9.0,REV=2002.11.04.02.51;SUNWtoo:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: stack overflow - truss patch +114434|01|May/12/03| | | | |9_x86|i386;112234-05;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: stack overflow - procfs patch +114435|01|Jun/13/03|R|S| | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: IKE Hardware - libike Patch +114436|01|Jun/13/03|R|S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ike hardware - config.sample patch +114437|02|Apr/29/03| | | | |9_x86|i386;114438-01;114337-06;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: 6to4 router - usr/sbin/6to4relay patch +114438|01|Apr/29/03| | |O| |9_x86|i386;113992-03;114337-06;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 114337-06 SunOS 5.9_x86: 6to4 router - tun patch +114439|01|Jul/14/03| | | | |9_x86|i386;|SUNWpl5u:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Perl patch +114440|02|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: devinfo Patch +114441|01|May/06/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Slot 1 DR - Hotplug +114442|01|Apr/29/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: 6to4 router - ifconfig patch +114469|07|Dec/15/03| | | | |8|sparc;sparc.sun4u;|SUNWzuluc:8.0.0,REV=2002.12.20;SUNWzuluw:8.0.0,REV=2002.12.20;SUNWzulux:8.0.0,REV=2002.12.20;|SunOS 5.8: Sun Fire V880z/XVR-4000 Graphics Patch +114470|07|Dec/15/03| | | | |9|sparc;sparc.sun4u;|SUNWzuluc:9.0.0,REV=2003.01.07;SUNWzuluw:9.0.0,REV=2003.01.07;SUNWzulux:9.0.0,REV=2003.01.07;|SunOS 5.9: Sun Fire V880z/XVR-4000 Graphics Patch +114472|01|Mar/21/03| | |O| |Unbundled|||Obsoleted by: 116346-02 Hardware/PROM: CP2160 SPARC and SMC firmwa +114473|05|Oct/23/03| | | | |9|sparc;113432-06;|FJSVcpc:3.0,REV=2002.04.09.12.25;FJSVcpcx:3.0,REV=2002.04.09.12.25;|SunOS 5.9: Fujitsu CPU performance counters patch +114474|01|Sep/26/03| | |O| |9|sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 114394-02 SunOS 5.9: Introduction Fujitsu SPARC64-V +114475|02|Nov/13/03| | | | |Unbundled|sparc;|SUNWfcsm:11.8.0,REV=2002.08.02.16.59;SUNWfcsmx:11.8.0,REV=2002.08.02.16.59;|SAN 4.3: fcsm driver patch +114476|02|Nov/13/03| | | | |Unbundled|sparc;|SUNWfcsm:11.9.0,REV=2002.10.15.08.47;SUNWfcsmx:11.9.0,REV=2002.10.15.08.47;|SAN 4.3: fcsm driver patch +114477|01|Mar/31/03| | | | |9|sparc;|SUNWcfcl:11.9.0,REV=2002.10.15.08.47;SUNWcfclx:11.9.0,REV=2002.10.15.08.47;|SunOS 5.9: Common Fibre Channel HBA API Library +114478|02|Nov/13/03| | | | |Unbundled|sparc;114476-02;|SUNWfchba:11.9.0,REV=2002.10.15.08.47;SUNWfchbx:11.9.0,REV=2002.10.15.08.47;|SAN 4.3: SNIA Sun Fibre Channel Host Bus Adapter Library +114479|11|Aug/01/03| | | | |Unbundled|sparc;|SUNWvts:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsx:5.1,REV=08.02.07.25,OE=5.8,5.9;| SunVTS 5.1 Patch Set 3 +114482|04|Sep/02/03|R| | | |9|sparc;|SUNWwsr2:3.0.0,REV=2002.04.14.23.49;|SunOS 5.9: Product Registry CLI Revision +114483|04|Sep/02/03|R| | | |9_x86|i386;|SUNWwsr2:3.0.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: Product Registry CLI Revision +114485|01|Jan/14/03| | |O| |8|sparc;|SUNWeuodf:1.5,REV=1999.12.03.14.40;|Obsoleted by: 114059-02 SunOS 5.8: Adds missing euro entries to UT +114486|01|Jan/14/03| | |O| |8_x86|i386;|SUNWeuodf:1.5,REV=1999.12.03.14.40;|Obsoleted by: 114060-02 SunOS 5.8_x86: Adds missing euro entries t +114487|01|Sep/26/03| | |O| |9|sparc;sparc.sun4us;|FJSVhea:11.9.0,REV=2002.04.09.12.25;SUNWcpcx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 114393-02 SunOS 5.9: Introduction Fujitsu SPARC64-V +114492|02|Aug/12/03| | | | |Unbundled|sparc;|SUNWsci:3.0.0.4,REV=2002.10.25.12.17;|SC3.1 : SCI bug fixes, SCI diagnostics support, DR support +114493|02|Aug/12/03| | | | |Unbundled|sparc;|SUNWsci:3.0.0.4,REV=2002.10.25.10.53;|SC3.1 : SCI bug fixes, SCI diagnostics support, DR support +114494|01|Apr/30/03| | | | |7_x86|||SunOS 5.7_x86: nei ITU patch +114495|01|Dec/03/03|R|S| | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;|CDE 1.5: dtprintinfo patch +114496|01|Dec/03/03|R|S| | |9_x86|i386;|SUNWdtdst:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtprintinfo patch +114497|01|Apr/02/03|R|S|O| B|9|sparc;|SUNWdtwm:1.5,REV=10.2002.03.13;|WITHDRAWN PATCH Obsoleted by: 113240-05 CDE 1.5: dtsession patch +114498|01|Apr/02/03|R|S|O| B|9_x86|i386;|SUNWdtwm:1.5,REV=10.2002.09.21;|WITHDRAWN PATCH Obsoleted by: 113241-05 CDE 1.5_x86: dtsession pat +114501|01|Jun/09/03| | | | |9|sparc;|SUNWlvma:1.0,REV=2002.04.14.23.49;|SunOS 5.9: drmproviders.jar Patch +114502|01|Jun/10/03| | | | |9_x86|i386;|SUNWlvma:1.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: drmproviders.jar Patch +114503|03|Aug/05/03| | | | |9|sparc;|SUNWmga:1.0,REV=2002.04.14.23.49;|SunOS 5.9: usr/sadm/lib/usermgr/VUserMgr.jar Patch +114504|03|Aug/05/03| | | | |9_x86|i386;|SUNWmga:1.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: usr/sadm/lib/usermgr/VUserMgr.jar Patch +114507|01|May/22/03| | |O| |9|sparc;|SUNWmeaos:1.1,REV=2002.03.05.04.04.05;SUNWmeaox:1.1,REV=2002.01.30.01.14.27;|Obsoleted by: 113584-05 SunOS 5.9: date problems in he_IL.UTF-8 lo +114508|01|Feb/27/03| | | | |8|sparc;|SUNWeeuow:1.0,REV=1999.12.13.20.39;SUNWi2cs:2.0,REV=1999.12.09.13.34;SUNWi5cs:2.0,REV=1999.12.09.13.35;SUNWseuow:1.0,REV=1999.12.16.18.52;|SunOS 5.8: Adds missing entries to euro fontpaths +114509|01|Aug/05/03| | | | |9|sparc;|SUNWceuos:1.1,REV=2001.12.13.10.55.52;|SunOS 5.9: cs_CZ Locale not usable +114510|03|Oct/06/03| | | | |9|sparc;|FJSVcpc:3.0,REV=2002.04.09.12.25;FJSVcpcx:3.0,REV=2002.04.09.12.25;|SunOS 5.9: Fujitsu libcpc.so.1 patch +114513|03|Aug/04/03| | | | |9|sparc;|SUNWjdma:1.1,REV=2002.03.22.11.08;SUNWjepmm:2.4,REV=2002.01.29.12.00;SUNWjfxmn:1.2,REV=2002.03.22.11.08;SUNWjxumn:1.5,REV=2002.03.22.11.40;|SunOS 5.9: patch for Japanese and English X man pages +114514|03|Aug/04/03| | | | |9_x86|i386;|SUNWjdma:1.1,REV=2002.03.22.11.06;SUNWjepmm:2.4,REV=2002.01.29.12.00;SUNWjfxmn:1.2,REV=2002.03.22.11.06;SUNWjxumn:1.5,REV=2002.08.17.20.35;|SunOS 5.9_x86: patch for Japanese and English X man pages +114516|01|Aug/04/03| | | | |9|sparc;|SUNWudct:1.2,REV=2002.03.22.11.08;|SunOS 5.9: patch for English sdtudctool man pages for S9UR3 +114517|01|Aug/04/03| | | | |9_x86|i386;|SUNWudct:1.2,REV=2002.03.22.11.06;|SunOS 5.9_x86: patch for English sdtudctool man pages for S9UR3 +114530|01|Feb/27/03| | | | |8_x86|i386;|SUNWeeuow:1.0,REV=1999.12.13.20.46;SUNWi2cs:2.0,REV=1999.12.09.13.58;SUNWi5cs:2.0,REV=1999.12.09.13.59;SUNWseuow:1.0,REV=1999.12.16.18.52;|SunOS 5.8_x86: Adds missing entries to euro fontpaths +114531|02|May/06/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.2.0,REV=2001.11.26.20.01;|SSC 1.2: echip/gchip/consbus Patch for Solaris 8 +114532|02|Sep/26/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.2.1,REV=2001.11.26.20.16;|SSC 1.2.1: echip/gchip/consbus Patch for Solaris 9 +114536|03|Nov/14/03| | | | |8|sparc.sun4us;|FJSVgid:2.0.0,REV=2002.10.04;FJSVgidx:2.0.0,REV=2002.10.04;|SunOS 5.8: FUJITSU PCI GigabitEthernet 2.0 patch +114537|19|Oct/28/03| | | | |8|sparc;sparc.sun4u;|SUNWpfbcf:8.0.0,REV=2003.02.19;SUNWpfbw:8.0.0,REV=2003.02.19;SUNWpfbx:8.0.0,REV=2003.02.19;|SunOS 5.8: Sun XVR-100 Graphics Accelerator Patch +114538|20|Nov/04/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWpfbcf:9.0.0,REV=2003.02.19;SUNWpfbw:9.0.0,REV=2003.02.19;SUNWpfbx:9.0.0,REV=2003.02.19;SUNWpfbx:9.0.0,REV=2003.04.15;|SunOS 5.9: Sun XVR-100 Graphics Accelerator Patch +114542|01|Mar/03/03| | | | |8|sparc;|SUNWarrf:6.6,REV=2000.13.28.10.30;|SunOS 5.8: Adds extended Arabic support +114543|01|Mar/03/03| | | | |8_x86|i386;|SUNWarrf:6.6,REV=2000.10.28.10.30;|SunOS 5.8_x86: Adds extended Arabic support +114554|12|Dec/02/03| | | | |8|sparc;sparc.sun4u;|SUNWjfbcf:8.0.0,REV=2003.01.14;SUNWjfbmn:8.0.0,REV=2003.01.14;SUNWjfbr:8.0.0,REV=2003.01.14;SUNWjfbw:8.0.0,REV=2003.01.14;SUNWjfbx:8.0.0,REV=2003.01.14;|SunOS 5.8: Sun XVR-1200 Graphics Accelerator Patch +114555|12|Dec/02/03| | | | |9|sparc;sparc.sun4u;|SUNWjfbcf:9.0.0,REV=2003.01.14;SUNWjfbmn:9.0.0,REV=2003.01.14;SUNWjfbr:9.0.0,REV=2003.01.14;SUNWjfbw:9.0.0,REV=2003.01.14;SUNWjfbx:9.0.0,REV=2003.01.14;|SunOS 5.9: Sun XVR-1200 Graphics Accelerator Patch +114557|01|Mar/03/03| | | | |8_x86|i386;|SUNWcamos:1.0,REV=1999.11.23.14.58;|SunOS 5.8_x86: Updating es_MX currency settings +114559|01|Mar/20/03| | | | |8|sparc;|SUNWceuos:1.0,REV=1999.12.13.13.25;SUNWceuox:1.0,REV=1999.11.24.13.29;SUNWneuos:1.0,REV=1999.12.13.14.44;SUNWneuox:1.0,REV=1999.12.13.14.44;SUNWseuos:1.0,REV=1999.12.16.18.57;SUNWseuox:1.0,REV=1999.12.16.17.36;SUNWweuos:1.0,REV=1999.12.13.13.24;SUNWweuox:1.0,REV=1999.12.13.14.44;|SunOS 5.8: some of ascii characters are not in punct class +114560|01|Mar/21/03| | | | |8_x86|i386;|SUNWceuos:1.0,REV=1999.12.13.12.57;SUNWneuos:1.0,REV=1999.12.13.15.06;SUNWseuos:1.0,REV=1999.12.16.19.05;SUNWweuos:1.0,REV=1999.12.13.15.06;|SunOS 5.8_x86: some of ascii characters are not in punct class +114561|01|Apr/30/03| | | | |9|sparc;|SUNWxwplt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: X splash screen patch +114562|01|Apr/30/03| | | | |9_x86|i386;|SUNWxwplt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: X splash screen patch +114563|07|Oct/21/03|R|S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ufs patch +114564|03|Nov/14/03|R|S| | |9|sparc;|SUNWftpu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/in.ftpd Patch +114565|03|Nov/25/03|R|S| | |9_x86|i386;|SUNWftpu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/sbin/in.ftpd Patch +114568|02|Mar/28/03|R| | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sadm/install/bin/pkginstall Patch +114569|02|Apr/24/03|R|S| | |9|sparc;|SUNWscpu:11.9.0,REV=2002.04.06.15.27;SUNWscpux:11.9.0,REV=2002.04.06.15.27;SUNWsra:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libdbm.so.1 Patch +114570|01|Mar/26/03|R|S| | |9_x86|i386;|SUNWscpu:11.9.0,REV=2002.11.04.02.51;SUNWsra:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libdbm.so.1 Patch +114571|01|Apr/04/03|R|S| | |9|sparc;|SUNWbcp:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libc.so.*.9/bcp Patch +114583|01|Feb/06/03| | | | |8|sparc.sun4u;|SUNWi2cr:4.2,REV=1999.10.19.10.29;SUNWi2cx:4.2,REV=1999.10.19.10.29;|SunOS 5.8: i2c driver patch +114584|01|Dec/09/03| | | | |9|sparc.sun4u;|SUNWi2cr:5.1,REV=2001.10.01.15.47;SUNWi2cx:5.1,REV=2001.10.01.15.47;|SunOS 5.9: i2c driver patch +114586|01|Mar/06/03| | | | |9|sparc;|SUNWbzip:11.9.0,REV=2002.03.02.00.35;SUNWbzipS:11.9.0,REV=2002.03.02.00.35;SUNWbzipx:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: bzip Patch +114587|01|Mar/06/03| | | | |9_x86|i386;|SUNWbzip:11.9.0,REV=2002.03.02.00.30;SUNWbzipS:11.9.0,REV=2002.03.02.00.30;|SunOS 5.9_x86: bzip Patch +114590|18|Nov/26/03| | | | |Unbundled|sparc;|SUNWstade:2.2.00.03;|SUNWstade Support patch +114591|18|Nov/26/03| | | | |Unbundled|sparc;|SUNWstads:2.2.00.03;|SUNWstads Support patch (Service Processor Only) +114596|03|Nov/25/03| | | | |Unbundled|sparc;|SUNWrsssp:1.1.1.9;|SSRR MIRE 1.3 RSS patch +114598|03|Aug/21/03| | | | |9|sparc;|SUNWceudt:1.0,REV=2002.03.04.11.56.41;SUNWeeudt:1.0,REV=2002.03.04.03.49.29;SUNWmeadt:1.0,REV=20011004034640;SUNWnafdt:1.0,REV=2001.03.21.17.53;SUNWneudt:1.0,REV=2001.04.11.15.45;SUNWsamdt:1.0,REV=2001.03.21.18.01;|5.9: UTF-8 dtcm chars not appearing, dtpad too wide +114599|03|Aug/25/03| | | | |9_x86|i386;|SUNWceudt:1.0,REV=2001.04.11.15.52;SUNWeeudt:1.0,REV=2001.03.21.14.41;SUNWmeadt:1.0,REV=20011004035605;SUNWnafdt:1.0,REV=2001.03.21.15.07;SUNWneudt:1.0,REV=2001.04.11.15.52;SUNWsamdt:1.0,REV=2001.03.21.15.22;|5.9_x86: UTF-8 dtcm chars not appearing, dtpad wrong size +114600|02|May/29/03| | | | |9|sparc;|SUNWvld:1.0,REV=2001.09.19.9.0;SUNWvldu:1.0,REV=2001.09.19.9.0;SUNWvldx:1.0,REV=2001.09.19.9.0;|SunOS 5.9: vlan driver patch +114601|03|Apr/16/03| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWsndmu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: sendmail patch +114602|03|Nov/14/03| | | | |9|sparc;|SUNWxwpsr:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: libmpg_psr patch +114603|01|Apr/23/03| | | | |8|sparc;|SUNWxwpsr:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1: libmpg_psr.so.1 patch +114608|05|Aug/07/03| | |O| B|Unbundled|sparc;|SUNWSMSpo:1.3.0,REV=2003.02.05.09.50;|Obsoleted by: 114608-06 WITHDRAWN PATCH SMS 1.3: hpost patch for S +114608|07|Nov/18/03| | | | |Unbundled|sparc;|SUNWSMSpo:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: hpost patch for SMS 1.3 +114609|02|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSpd:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: SSCPOST Patch for SMS 1.3 +114610|01|Mar/20/03| | | | |8|sparc;|SUNW1251f:1.0,REV=1999.10.13.15.03;|SUNOS 5.8: ANSI-1251 encodings file errors +114611|01|Mar/20/03| | | | |8_x86|i386;|SUNW1251f:1.0,REV=1999.10.13.15.11;|SUNOS 5.8_x86: ANSI-1251 encodings file errors +114612|01|Mar/26/03| | | | |9|sparc;|SUNW1251f:1.0,REV=2001.03.21.17.00;|SunOS 5.9: ANSI-1251 encodings file errors +114613|01|Mar/26/03| | | | |9_x86|i386;|SUNW1251f:1.0,REV=2001.03.21.13.30;|SunOS 5.9_x86: ANSI-1251 encodings file errors +114615|03|Nov/25/03| | | | |9_x86|i386;|SUNWceuos:11.10.0,REV=2002.09.13.01.32;SUNWeeuos:11.10.0,REV=2002.09.17.15.33;SUNWmeaos:11.10.0,REV=2002.09.13.02.30;SUNWnafos:1.1,REV=2002.09.13.02.42;SUNWsamos:11.10.0,REV=2002.09.13.03.35;SUNWseuos:11.10.0,REV=2002.09.13.04.29;SUNWweuos:11.10.0,REV=2002.09.13.05.23;|SUNOS 5.9_x86: s9ur,He, es, it bugfixes unicode3.2 +114616|04|Sep/15/03| | | | |Unbundled|sparc;|SUNWfcprv:1.2.0 ,REV=01.30.03;SUNWgre:1.2.0 ,REV=01.30.03;SUNWgret3:1.2.0 ,REV=01.30.03;SUNWgrui:1.2.0 ,REV=01.30.03;SUNWgrw:1.2.0 ,REV=01.30.03;SUNWgrwt3:1.2.0 ,REV=01.30.03;SUNWnsmat:1.2.0 ,REV=01.30.03;SUNWnsmau:1.2.0 ,REV=01.30.03;SUNWnsmbj:1.2.0 ,REV=01.30.03;SUNWnsmdb:1.2.0 ,REV=01.30.03;SUNWnsmu:1.2.0 ,REV=01.30.03;SUNWnsmut:1.2.0 ,REV=01.30.03;SUNWsade:1.2.03.004;SUNWstm:1.2.0 ,REV=02.13.03;114579-01|Enterprise Storage Manager 1.2: patch +114617|01|Mar/27/03|R|S| | |8_x86|i386;|SUNWscpu:11.8.0,REV=2000.01.08.18.17;SUNWsra:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ucblib/libdbm.a and /usr/ucblib/libdbm.so.1 pa +114620|01|Apr/23/03| | | | |7|sparc;|SUNWxwpsr:3.7.1400,REV=0.98.04.16;|OpenWindows 3.6.1: qmon Patch +114625|02|May/21/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.2.0,REV=2001.11.26.20.01;|SSC 1.2: scman patch for Solaris 8 +114626|01|May/15/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.2.1,REV=2001.11.26.20.16;|SSC 1.2.1: scman patch for Solaris 9 +114627|03|May/21/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.3.0,REV=2002.12.16.09.50;|SSC 1.3: echip scman patch for Solaris 8 +114628|02|Jul/24/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.3.1,REV=2002.12.16.09.56;|SSC 1.3: scman patch for Solaris 9 +114632|04|Dec/16/03| | | | |8|sparc.sun4us;|FJSVulsa:1.0,REV=2002.10.04;FJSVulsax:1.0,REV=2002.10.04;|SunOS 5.8: FUJITSU ULTRA LVD SCSI Host Bus Adapter Driver 1.0 Patc +114633|02|Sep/04/03| | | | |9|sparc;|SUNWjfpu:3.0,REV=2002.01.29.12.00;SUNWjfpux:1.1,REV=2002.01.29.12.00;|SunOS 5.9: ja_JP.UTF-8 locale patch +114634|02|Sep/04/03| | | | |9_x86|i386;|SUNWjfpu:3.0,REV=2002.01.29.12.00;|SunOS 5.9_x86: ja_JP.UTF-8 locale patch +114636|02|Aug/06/03|R|S| | |9|sparc;|SUNWkcspg:1.2,REV=2002.02.04;SUNWkcspx:1.2,REV=2002.02.04;SUNWkcsrt:1.2,REV=2002.02.04;SUNWkcsrx:1.2,REV=2002.02.04;|SunOS 5.9: KCMS security fix +114637|02|Aug/06/03|R|S| | |9_x86|i386;|SUNWkcspg:1.2,REV=2002.02.04;SUNWkcsrt:1.2,REV=2002.02.04;|SunOS 5.9_x86: KCMS security fix +114640|08|Nov/17/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;SUNWSMSr:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: Sun Fire 15K hwad Patch +114641|02|Sep/04/03| | | | |9|sparc;|SUNWjiu8:1.2,REV=2002.01.29.12.00;SUNWjiu8x:1.1,REV=2002.01.29.12.00;|SunOS 5.9: Japanese iconv for UTF-8 patch +114642|02|Sep/04/03| | | | |9_x86|i386;|SUNWjiu8:1.2,REV=2002.01.29.12.00;|SunOS 5.9_x86: Japanese iconv for UTF-8 patch +114643|02|Apr/04/03| |S| | |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: sendmail patch +114644|01|Apr/01/03| | | | |Unbundled|sparc;110934-13;|SUNWgnome-base-libs:1.0.0,REV=2003.01.14.12.39;SUNWgnome-base-libs-64:1.0.0,REV=2003.01.14.14.18;SUNWgnome-base-libs-64-root:1.0.0,REV=2003.01.14.12.39;SUNWgnome-base-libs-root:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Base GUI Libraries for Solaris 8 +114645|01|Apr/01/03| | | | |Unbundled|i386;110935-13;|SUNWgnome-base-libs:1.0.0,REV=2003.01.14.12.36;SUNWgnome-base-libs-root:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Base GUI Libraries for Solaris 8_x86 +114646|01|Mar/31/03| | | | |Unbundled|sparc;110934-12;|SUNWgnome-file-mgr:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: File Manager Patch +114647|01|Mar/31/03| | | | |Unbundled|i386;110935-12;|SUNWgnome-file-mgr:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: File Manager Patch +114648|01|Apr/01/03| |S| | |Unbundled|sparc;110934-12;|SUNWgnome-print:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Print Patch for Solaris 8 +114649|01|Apr/01/03| |S| | |Unbundled|i386;110935-12;|SUNWgnome-print:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Print Patch for Solaris 8_x86 +114650|03|Sep/25/03| | | | |Unbundled|sparc;110934-12;|SUNWgnome-vfs:1.0.0,REV=2003.01.14.12.39;SUNWgnome-vfs-share:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Virtual File System Patch for Solaris 8 +114651|03|Sep/25/03| | | | |Unbundled|i386;110935-12;|SUNWgnome-vfs:1.0.0,REV=2003.01.14.12.36;SUNWgnome-vfs-share:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Virtual File System Patch for Solaris 8_x86 +114652|01|Apr/01/03| | | | |Unbundled|sparc;110934-13;|SUNWgnome-dtlogin-integration:2.0,REV=2003.01.18.19.21;|GNOME 2.0.0: Dtlogin Integration Patch for Solaris 8 +114653|01|Apr/01/03| | | | |Unbundled|i386;110935-13;|SUNWgnome-dtlogin-integration:2.0,REV=2003.01.18.19.24;|GNOME 2.0.0_x86: Dtlogin Integration Patch for Solaris 8_x86 +114654|02|Sep/04/03| | | | |9|sparc;|SUNWscgui:1.5,REV=10.2002.03.13;|CDE 1.5: SmartCard patch +114656|01|Apr/18/03| | | | |Unbundled|sparc;|SUNWSMSob:1.3.0,REV=2002.12.12.09.10;|SMS 1.3: Sun Fire 15K OBP Patch +114660|02|Sep/04/03| | |O| |9|sparc;|SUNWpdas:1.5,REV=10.2002.03.13;|Obsoleted by: 113868-02 CDE 1.5: PDASync patch +114661|02|Sep/04/03| | |O| |9_x86|i386;|SUNWpdas:1.5,REV=10.2002.09.21;|Obsoleted by: 113869-02 CDE 1.5_x86: PDASync patch +114662|01|Mar/03/03| | |O| |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|Obsoleted by: 114640-08 SMS 1.3: libsmsext patch +114667|01|Apr/08/03| | | | |8|sparc;|SUNWbtool:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/ccs/bin/lorder patch +114668|01|Apr/08/03| | | | |8_x86|i386;|SUNWbtool:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/ccs/bin/lorder patch +114671|01|Apr/08/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/fs/pcfs patch +114672|01|Apr/08/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/fs/pcfs patch +114673|01|Apr/16/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/wall patch +114674|01|Apr/16/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/wall patch +114675|01|May/16/03| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: rwstlock.h, vfs.h and vnode.h headerfile patch +114676|01|May/16/03| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: rwstlock.h, vfs.h and vnode.h headerfile patch +114677|06|Dec/23/03| | | | |9|sparc;|SUNWicu:1.1,REV=2002.08.14.12.32;SUNWicud:1.1,REV=2002.08.14.12.32;SUNWicux:1.1,REV=2002.08.14.12.32;|SunOS 5.9: International Components for Unicode Patch +114678|06|Dec/23/03| | | | |9_x86|i386;|SUNWicu:1.1,REV=2002.08.14.12.33;SUNWicud:1.1,REV=2002.08.14.12.33;|SunOS 5.9_x86: International Components for Unicode Patch +114684|02|May/27/03|R|S| | |9|sparc;|SUNWsmbaS:11.9.0,REV=2002.03.02.00.35;SUNWsmbac:11.9.0,REV=2002.03.02.00.35;SUNWsmbar:11.9.0,REV=2002.03.02.00.35;SUNWsmbau:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: samba Patch +114685|02|May/23/03|R|S| | |9_x86|i386;|SUNWsmbaS:11.9.0,REV=2002.03.02.00.30;SUNWsmbac:11.9.0,REV=2002.03.02.00.30;SUNWsmbar:11.9.0,REV=2002.03.02.00.30;SUNWsmbau:11.9.0,REV=2002.03.02.00.30;|SunOS 5.9_x86: samba Patch +114686|01|Apr/01/03| | | | |Unbundled|sparc;113713-03;|SUNWgnome-base-libs:1.0.0,REV=2003.01.14.12.39;SUNWgnome-base-libs-64:1.0.0,REV=2003.01.14.14.18;SUNWgnome-base-libs-64-root:1.0.0,REV=2003.01.14.12.39;SUNWgnome-base-libs-root:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Base GUI Libraries for Solaris 9 +114687|01|Apr/01/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-base-libs:1.0.0,REV=2003.01.14.12.36;SUNWgnome-base-libs-root:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Base GUI Libraries for Solaris 9_x86 +114688|01|Apr/01/03| | | | |Unbundled|sparc;113713-03;|SUNWgnome-file-mgr:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: File Manager Patch for Solaris 9 +114689|01|Apr/01/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-file-mgr:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: File Manager Patch for Solaris 9_x86 +114690|01|Apr/01/03| |S| | |Unbundled|sparc;113713-03;|SUNWgnome-print:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Print Patch for Solaris 9 +114691|01|Apr/01/03| |S| | |Unbundled|i386;114568-02;|SUNWgnome-print:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Print Patch for Solaris 9_x86 +114692|03|Sep/15/03| | | | |Unbundled|sparc;113713-03;|SUNWgnome-vfs:1.0.0,REV=2003.01.14.12.39;SUNWgnome-vfs-share:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: Virtual File System Patch for Solaris 9 +114693|03|Sep/15/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-vfs:1.0.0,REV=2003.01.14.12.36;SUNWgnome-vfs-share:1.0.0,REV=2003.01.14.12.36;|GNOME 2.0.0_x86: Virtual File System Patch for Solaris 9 +114694|01|Apr/01/03| | | | |Unbundled|sparc;113713-03;|SUNWgnome-dtlogin-integration:2.0,REV=2003.01.18.19.21;|GNOME 2.0.0: Dtlogin Integration Patch for Solaris 9 +114695|01|Apr/01/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-dtlogin-integration:2.0,REV=2003.01.18.19.24;|GNOME 2.0.0_x86: Dtlogin Integration Patch for Solaris 9_x86 +114704|02|May/02/03| | | | |Unbundled|||T3 IBM DDYT369_F65Y DDYT183_F65Y Firmware Update +114708|01|Nov/03/03| | | | |Unbundled|sparc,i386;|SUNWsc702:2.0;|6120 Disk drive firmware +114709|01|Nov/03/03| | | | |Unbundled|sparc,i386;|SUNWsc701:2.0;|6120 Disk drive firmware +114711|02|Jun/05/03| | | | |9|sparc;|SUNWmga:1.0,REV=2002.04.14.23.49;|SunOS 5.9: usr/sadm/lib/diskmgr/VDiskMgr.jar Patch +114712|02|Jun/05/03| | | | |9_x86|i386;|SUNWmga:1.0,REV=2002.10.31.18.39;|SunOS 5.9_x86: usr/sadm/lib/diskmgr/VDiskMgr.jar Patch +114713|01|Mar/26/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: newtask Patch +114714|01|Mar/26/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: newtask Patch +114715|01|Mar/25/03|R|S| | |9_x86|i386;|SUNWkdcu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libdb2.so.1 Patch +114716|01|Sep/04/03| | | | |9|sparc;|SUNWrcmdc:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/bin/rcp Patch +114717|01|Sep/04/03| | | | |9_x86|i386;|SUNWrcmdc:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/bin/rcp Patch +114718|01|Mar/24/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/kernel/fs/pcfs Patch +114719|01|Mar/24/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/kernel/fs/pcfs Patch +114720|01|Mar/21/03| | | | |9_x86|i386;|SUNWaudd:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/misc/mixer Patch +114721|04|Sep/15/03|R| | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ufsrestore and ufsdump Patch +114722|04|Sep/25/03|R| | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ufsrestore and ufsdump Patch +114723|02|Nov/18/03| | | | |Unbundled|||3270 Pathway2.0 Patch 2 +114724|01|Apr/23/03|R| |O| |9|sparc;|SUNWwbcou:2.5,REV=2002.04.14.23.49;|Obsoleted by: 112945-19 SunOS 5.9: usr/sadm/lib/wbem/providerutili +114725|01|Apr/23/03|R| |O| |9_x86|i386;|SUNWwbcou:2.5,REV=2002.10.31.18.39;|Obsoleted by: 114193-12 SunOS 5.9_x86: usr/sadm/lib/wbem/provideru +114728|01|Sep/04/03| | | | |9_x86|i386.i86pc;|SUNWcar:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: mmu3* Patch +114729|01|May/29/03|R|S| | |9|sparc;|SUNWtnetd:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/sbin/in.telnetd Patch +114730|01|May/29/03|R|S| | |9_x86|i386;|SUNWtnetd:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/sbin/in.telnetd Patch +114731|03|Oct/28/03| | | | |9|sparc;|SUNWpd:11.9.0,REV=2002.04.06.15.27;SUNWpdu:11.9.0,REV=2002.04.06.15.27;SUNWpdx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kernel/drv/glm Patch +114732|01|Sep/04/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: sbin/init Patch +114733|03|Sep/25/03|R| | | |9_x86|i386;114563-04;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/misc/ufs_log Patch +114734|01|Apr/22/03| | | | |9|sparc;|SUNWbtool:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/ccs/bin/lorder Patch +114735|01|Apr/22/03| | | | |9_x86|i386;|SUNWbtool:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/ccs/bin/lorder Patch +114736|01|Apr/23/03| | | | |9|sparc;|SUNWnisu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/sbin/nisrestore Patch +114737|01|Apr/23/03| | | | |9_x86|i386;|SUNWnisu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/nisrestore Patch +114744|01|May/06/03| | | | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: auditd patch +114745|01|Apr/09/03| | | | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/rcp patch +114758|01|May/29/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch SUNW_ip_rcm.so and SUNW_network_rcm.so +114759|01|May/29/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch SUNW_network_rcm.so & SUNW_ip_rcm.so +114773|01|Apr/08/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/dd patch +114774|01|Apr/08/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/dd patch +114783|04|Dec/15/03| | | | |Unbundled|||Hardware/Switch: Sun Fire B1600 Switch Firmware Update +114786|01|Sep/15/03| | | | |Unbundled|sparc;|SUNWwcfms:1.0,REV=2002.10.16.05.53;|Fabric Manager 1.0: patch for SUNWwcfms +114787|01|Sep/15/03| | | | |Unbundled|sparc;|SUNWwcfms:1.0,REV=2002.10.16.05.53;|Fabric Manager 1.0: patch for SUNWwcfms +114788|01|Sep/15/03| | | | |Unbundled|sparc;114786-01;|SUNWrsmpu:1.0,REV=2002.10.16.05.53;|Fabric Manger 1.0: patch for SUNWrsmpu +114790|02|Aug/20/03| | | | |Unbundled|sparc;sparc.sun4u;112233-05;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWncarx:11.9.0,REV=2002.04.06.15.27;SUNWncau:11.9.0,REV=2002.04.06.15.27;|Sun Crypto Accelerator 1000 1.1: patch +114791|01|May/28/03| | | | B|Unbundled|sparc;|SUNWcstu:3.0;|WITHDRAWN PATCH CST 3.0 Agent Patch - 01 +114791|02|Jun/03/03| | | | |Unbundled|sparc;|SUNWcstu:3.0;|CST 3.0 Agent Patch +114795|02|Jul/11/03| | | | |Unbundled|sparc;|SUNWkcl2r:2.0.0,REV=2003.03.19.18.18;SUNWkcl2u:2.0.0,REV=2003.03.19.18.18;SUNWvcaa:1.0.0,REV=2003.03.19.18.25;SUNWvcafw:1.0.0,REV=2003.03.19.18.46;SUNWvcar:1.0.0,REV=2003.03.19.18.25;SUNWvcau:1.0.0,REV=2003.03.19.18.25;|Crypto Accelerator 4000 - 1.0: product patch +114801|02|Sep/25/03| | | | |Unbundled|sparc;|SPROl90s:8.0,REV=2003.03.13;SPROl90sx:8.0,REV=2003.03.13;|Patch for S1S8CC Fortran 95 Shared Libraries +114802|01|Sep/03/03| |S| | |8|sparc;|SUNWsprot:5.8,REV=1999.12.12.00.00;|SunOS 5.8: Patch for assembler +114803|01|Sep/01/03| |S| | |Unbundled|sparc;|SPROdmake:8.0,REV=2003.03.13;|Dmake 7.3: Patch for S1S8CC Distributed Make +114804|01|Sep/01/03| |S| | |Unbundled|i386;|SPROdmake:8.0,REV=2003.03.13;|Dmake 7.3_x86: Patch for S1S8CC Distributed Make +114806|01|Sep/10/03| | | | |Unbundled|sparc;|SPROplg:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +114807|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROpl:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +114808|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplm:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +114809|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplms:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +114814|01|Mar/31/03| |S| | |Unbundled|sparc;|SUNWlxml:1.0.0,REV=2003.01.10.16.08;SUNWlxmlx:1.0.0,REV=2003.01.10.17.08;SUNWlxsl:1.0.0,REV=2003.01.10.18.08;SUNWlxslx:1.0.0,REV=2003.01.10.19.08;|GNOME 2.0.0: XML & XSLT Library +114815|01|Mar/31/03| |S| | |Unbundled|i386;|SUNWlxml:1.0.0,REV=2003.01.10.16.08;SUNWlxsl:1.0.0,REV=2003.01.10.18.08;|GNOME 2.0.0_x86: XML & XSLT Library +114816|01|Sep/26/03| |S| | |Unbundled|sparc;|SUNWpng:6.4.1.40,REV=0.2002.12.09;SUNWpngx:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: libpng Patch +114817|01|Sep/26/03| |S| | |Unbundled|i386;|SUNWpng:6.4.1.40,REV=0.2002.12.09;|GNOME 2.0.0_x86: libpng Patch +114818|02|Sep/26/03| |S| | |Unbundled|sparc;|SUNWpng:11.9.0,REV=2002.03.02.00.35;SUNWsfman:11.9.0,REV=2002.03.02.00.35;|GNOME 2.0.0: libpng Patch +114819|02|Sep/26/03| |S| | |Unbundled|i386;|SUNWpng:11.9.0,REV=2002.03.02.00.30;SUNWsfman:11.9.0,REV=2002.08.12.18.14;|GNOME 2.0.0_x86: libpng Patch +114820|01|Sep/26/03| |S| | |Unbundled|sparc;|SUNWpngx:1.0.0,REV=2003.01.14.12.39;|GNOME 2.0.0: 64bit libpng Patch +114855|01|Apr/16/03| | | | |9|sparc;|SUNWpppd:11.9.0,REV=2002.04.06.15.27;SUNWpppdx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/kernel/drv/sppp Patch +114856|01|Apr/16/03| | | | |9_x86|i386;|SUNWpppd:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/kernel/drv/sppp Patch +114857|01|Apr/16/03| | | | |9_x86|i386;|SUNWpppdu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/bin/pppd Patch +114858|03|Oct/08/03|R|S| | |9_x86|i386;|SUNWsshdu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/ssh/sshd Patch +114859|01|Apr/22/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/drv/udp Patch +114860|02|Oct/24/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/sys/kaio Patch +114861|01|Apr/22/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/wall +114862|01|Apr/22/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/sbin/wall Patch +114863|01|Jun/19/03| | |O| |9|sparc.sun4u;sparc.sun4us;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|Obsoleted by: 112233-11 SunOS 5.9: /platform/sun4u/kernel/misc/for +114864|02|Jun/13/03|R| | | |9|sparc;113573-02;|SUNWpiclu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Sun-Fire-480R libpsvcpolicy_psr.so.1 Patch +114865|01|Mar/28/03| | | | |Unbundled|||MTP8.0 MAA Patch 1 +114866|01|Mar/28/03| | | | |Unbundled|||MTP8.0 MAT Patch 1 +114867|01|Mar/25/03| | | | |8|sparc;113615-01;|SUNWcst:1.5.1_AMS,REV=01.02.04.11;|Improves CPU performance while probing large number of disks or SA +114869|01|Mar/21/03| | |O| |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|Obsoleted by: 114640-08 SMS 1.3: esmd +114870|01|Mar/21/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: wcapp RMI java class +114871|01|Mar/21/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: wcapp +114872|01|Mar/21/03| | | | |Unbundled|sparc;|SUNWSMSr:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: ssd_start +114873|01|Mar/25/03| | | | |Unbundled|||Hardware/FCode: PCI-X Single 2Gbit FC Network Host Adapter +114874|01|Mar/25/03| | | | |Unbundled|||Hardware/FCode: PCI-X Dual 2Gbit FC Network Host Adapter +114875|01|Apr/22/03|R|S| | |9|sparc;|SUNWlxmlS:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: XML library source patch +114876|01|Apr/22/03|R|S| | |9_x86|i386;|SUNWlxmlS:11.9.0,REV=2002.03.02.00.30;|SunOS 5.9_x86: XML library source patch +114877|03|Dec/05/03| | | | |Unbundled|sparc;111095-14;|SUNWjfca:11.8.0,REV=2003.08.06.21.54;SUNWjfcau:11.8.0,REV=2003.08.06.21.54;SUNWjfcaux:11.8.0,REV=2003.08.06.21.54;SUNWjfcax:11.8.0,REV=2003.08.06.21.54;|SAN 4.3: JNI driver support patch +114878|03|Dec/05/03| | | | |Unbundled|sparc;113040-06;|SUNWjfca:11.9.0,REV=2003.08.06.22.56;SUNWjfcau:11.9.0,REV=2003.08.06.22.56;SUNWjfcaux:11.9.0,REV=2003.08.06.22.56;SUNWjfcax:11.9.0,REV=2003.08.06.22.56;|SAN 4.3: JNI driver support patch +114880|03|Dec/23/03| |S| | |Unbundled|sparc;|SUNWuta:2.0_37.b,REV=2002.12.19.07.46;SUNWutesa:2.0_37.b,REV=2002.12.19.07.46;SUNWuto:2.0_37.b,REV=2002.12.19.07.46;SUNWutps:2.0_37.b,REV=2002.12.19.07.46;SUNWutr:2.0_37.b,REV=2002.12.19.07.46;SUNWutscr:2.0_37.b,REV=2002.12.19.07.46;SUNWutu:2.0_37.b,REV=2002.12.19.07.46;SUNWutux:2.0_37.b,REV=2002.12.19.07.46;|Sun Ray Server version 2.0 Patch Update +114889|01|Apr/17/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/wall patch +114890|01|Apr/17/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/wall patch +114891|01|Apr/17/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/wall patch +114892|01|Apr/17/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/wall patch +114894|01|Apr/23/03| | |O| |Unbundled|||Obsoleted by: 113638-04 Sun[tm] ONE Studio 4 update 1, WebLogic Pl +114916|01|Apr/17/03| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;SUNWxcu4:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: ed patch +114917|01|Jul/09/03| | | | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWscpu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ps Patch +114918|01|Jul/09/03| | | | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWscpu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ps Patch +114923|01|Apr/25/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/kernel/drv/logindmux Patch +114924|01|Apr/25/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/kernel/drv/logindmux Patch +114925|03|Aug/19/03| | | | |9_x86|i386;115015-01;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/inet/in.mpathd Patch +114926|02|Jul/30/03| | | | |9|sparc;|SUNWaudd:11.9.0,REV=2002.04.06.15.27;SUNWauddx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kernel/drv/audiocs Patch +114927|01|Sep/04/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/sbin/allocate Patch +114928|01|Sep/04/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/allocate Patch +114929|06|Dec/09/03|R| | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: etc/security/bsmconv /usr/bin/crontab Patch +114930|01|May/23/03| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Sun-Fire-480R libprtdiag_psr.so.1 Patch +114932|01|May/29/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/syslogd Patch +114934|01|Aug/22/03| | | | |9|sparc.sun4u;|FJSVvplu:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: usr/platform links patch +114941|01|Oct/03/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: namefs patch +114942|01|Oct/03/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: namefs patch +114944|01|Jul/09/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWcsxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: namefs patch +114945|01|Sep/24/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: namefs patch +114950|04|Nov/26/03| | | | |Unbundled|sparc;116141-01;112945-19;|SUNWseetc:1.0;SUNWsem12p:1.0;SUNWsem12ui:1.0;SUNWseput:1.0;SUNWsesscs:1.0;|Add Storage Profiles and bug fixes +114951|03|Dec/16/03| | | | |9|sparc.sun4us;|FJSVulsa:1.0,REV=2003.01.22;FJSVulsax:1.0,REV=2003.01.22;|SunOS 5.9: FUJITSU ULTRA LVD SCSI Host Bus Adapter Driver 1.0 Patc +114952|01|Apr/18/03| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: sad patch +114953|01|May/01/03| |S| | |Trusted_Solaris_8_4/01|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2001.09.25.00.12;SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: ip patch +114954|01|May/01/03| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWcsr:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: exec_attr patch +114956|02|Jul/17/03| | | | |8|sparc;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4: dtksh patch +114957|02|Jul/17/03| | | | |8_x86|i386;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtksh patch +114960|04|Nov/26/03| | | | |Unbundled|sparc;112945-19;|SUNWseap:1.0;SUNWsedap:1.0;SUNWseetc:1.0;SUNWsefbru:1.0;SUNWsem3ui:1.0;SUNWsepsdx:1.0;SUNWseput:1.0;SUNWsepwr:1.0;SUNWsespfd:1.0;SUNWsesscs:1.0;|Add Storage Profiles and bug fixes +114961|01|Nov/26/03| | | | |Unbundled|sparc;|SUNWsesscs:1.0;|The se6x20 Midrange (Maserati) CLI +114967|01|Apr/25/03| | | | |9|sparc;|SUNWfdl:2.22;|SunOS 5.9: FDL patch +114968|01|Apr/25/03| | | | |9_x86|i386;|SUNWfdl:2.21;|SunOS 5.9_x86: FDL patch +114969|01|May/01/03| |S| | |Trusted_Solaris_8|sparc;|SUNWsndmu:11.8.0,REV=2000.10.30.04.48;|Trusted Solaris 8: sendmail patch +114970|01|May/01/03| |S| | |Trusted_Solaris_8_x86|i386;|SUNWsndmu:11.8.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: sendmail patch +114971|01|Sep/04/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/kernel/fs/namefs Patch +114972|01|Sep/04/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/kernel/fs/namefs Patch +114973|01|Aug/26/03| | | | |9_x86|i386;|SUNWnfssr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/misc/nfssrv Patch +114974|01|May/15/03| | | | |9|sparc;|SUNWifp:11.9.0,REV=2002.04.06.15.27;SUNWifpx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kernel/drv/ifp Patch +114975|01|May/23/03| | | | |9|sparc;|SUNWdhcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/inet/dhcp/svcadm/dhcpcommon.jar Patch +114976|01|May/23/03| | | | |9_x86|i386;|SUNWdhcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/inet/dhcp/svcadm/dhcpcommon.jar Patch +114977|01|May/16/03| | |O| |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 112233-11 SunOS 5.9: kernel/drv/ipsecah Patch +114978|01|May/16/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/drv/ipsecah Patch +114979|01|Aug/25/03| |S|O| |9|sparc;|SUNWpsu:13.1,REV=2002.04.06.15.27;|Obsoleted by: 113329-04 SunOS 5.9: usr/lib/lp/local/lpstat Patch +114980|04|Nov/26/03|R|S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWpcu:13.1,REV=2002.11.04.02.51;SUNWpsu:13.1,REV=2002.11.04.02.51;|SunOS 5.9_x86: lp Patch +114981|02|Sep/15/03| | | | |Unbundled|sparc;|SUNWfcprv:1.2.0 ,REV=04.08.03;SUNWgre:1.2.0 ,REV=04.08.03;SUNWgrui:1.2.0 ,REV=04.08.03;SUNWnsmat:1.2.0 ,REV=04.08.03;SUNWnsmau:1.2.0 ,REV=04.08.03;SUNWnsmdb:1.2.0 ,REV=04.08.03;SUNWnsmu:1.2.0 ,REV=04.08.03;SUNWnsmut:1.2.0 ,REV=04.08.03;SUNWsade:1.2.04.008;|Enterprise Storage Manager 1.2 patch +114982|01|May/16/03| | | | |8|sparc;108528-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/adb/rwstlock patch +114983|01|May/16/03| | | | |8_x86|i386;108529-21;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/adb/rwstlock patch +114984|01|Apr/29/03|R|S| | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/fs/namefs patch +114985|01|Oct/03/03|R|S| | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/fs/namefs patch +114986|01|Jun/19/03| | | | |8|sparc;|SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/rpc.rexd patch +114987|01|Jun/19/03| | | | |8_x86|i386;|SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/rpc.rexd patch +114988|02|Jul/17/03| | | | |8|sparc;|SUNWtoo:11.8.0,REV=2000.01.08.18.12;SUNWtoox:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/sparcv9/gcore and /usr/bin/sparcv7/gcore patch +114989|02|Jul/17/03| | | | |8_x86|i386;|SUNWtoo:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/gcore patch +114990|02|Sep/30/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/vmstat patch +114991|02|Sep/30/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/vmstat patch +114994|03|Nov/14/03| | | | |9|sparc.sun4us;|FJSVgid:2.1.0,REV=2003.1.20;FJSVgidx:2.1.0,REV=2003.1.20;|SunOS 5.9: FUJITSU PCI GigabitEthernet 2.0 patch +114995|01|Sep/22/03| | | | |Unbundled|sparc;|SUNWeswci:3.5.0,REV=2.8.2003.05.03;|Sun Management Center Sun Fire Link, 3.5, import XML config +115002|01|Nov/13/03| | | | |8_x86|i386;108653-57;|SUNWxwplt:6.4.1.3800,REV=0.1999.12.15;|X11 6.4.1_x86: OWconfig patch +115003|01|Jul/24/03| | | | |9_x86|i386;114929-02;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kbtrans patch +115004|01|Jul/24/03| | | | |9|sparc;114332-04;|SUNWusb:11.9.0,REV=2002.04.06.15.27;SUNWusbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/misc/kbtrans patch +115005|01|Aug/26/03| | | | |9_x86|i386;|SUNWqosu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ipqosconf patch +115006|01|Jul/24/03| | | | |9|sparc.sun4m;sparc.sun4u;sparc.sun4us;114332-04;|SUNWcar:11.9.0,REV=2002.04.06.15.27;SUNWcar:11.9.0,REV=2002.04.09.12.25;SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;|SunOS 5.9: kernel/strmod/kb patch +115007|01|Aug/26/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ipgpc patch +115008|01|Aug/26/03| | | | |9|sparc;|SUNWqosu:11.9.0,REV=2002.06.13.13.44;|SunOS 5.9: /usr/sbin/ipqosconf patch +115009|02|Oct/06/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: gld patch +115010|01|Jul/24/03| | | | |9|sparc;sparc.sun4u;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWkvm:11.9.0,REV=2002.04.06.15.27;SUNWmdb:11.9.0,REV=2002.04.06.15.27;SUNWpstl:11.9.0,REV=2002.04.06.15.27;SUNWpstlx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Providing Platform Support for Enchilada Tower Server +115011|01|Aug/26/03| | | | |9_x86|i386;|SUNWocf:11.9.0,REV=2002.11.04.02.51;SUNWocfh:11.9.0,REV=2002.11.04.02.51;SUNWocfr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: smartcard Patch +115012|01|Jul/24/03| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Sunfire-V250-Enchilada-Tower librsc patch +115013|01|Aug/19/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch if_mpadm +115014|01|Jul/24/03| | | | |9|sparc.sun4u;|SUNWkvm:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/platform/SUNW,Sun-Fire-V250/sbin/scadm patch +115015|01|Aug/19/03| | | | |9_x86|i386;115013-01;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;SUNWcstl:11.9.0,REV=2002.11.04.02.51;SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch ipmp lib +115016|01|Aug/19/03| | | | |9|sparc;112911-04;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcstl:11.9.0,REV=2002.04.06.15.27;SUNWhea:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch ipmp +115017|01|Sep/04/03| | | | |9_x86|i386.i86pc;|SUNWcar:11.9.0,REV=2002.11.04.02.51;SUNWkvm:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch boot/solaris/boot.bin +115018|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/adb/dqblk +115019|05|Oct/13/03| | | | |9_x86|i386;|SUNWrmodr:11.9.0,REV=2002.10.02.19.20;|SunOS 5.9_x86: patch boot/solaris/devicedb/master +115020|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/adb/ml_odunit +115021|01|Sep/15/03| | | | |9_x86|i386;|SUNWvolu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch vold +115022|02|Sep/25/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: quota utilities +115023|02|Sep/24/03| | | | |9_x86|i386;|SUNWhea:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: Multiterabyte UFS - patch headers +115024|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: file system identification utilities +115025|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch dqblk +115026|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Multiterabyte UFS file system maintenance tools +115027|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch ml_odunit +115028|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /usr/lib/fs/ufs/df +115029|02|Sep/25/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: quota utilities +115030|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: Multiterabyte UFS - patch mount +115031|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: file system identification utilities +115033|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: file system maintenance tools +115034|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/fs/ufs/df patch +115035|03|Dec/23/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/fs/ufs/fsck patch +115036|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/fs/ufs/mount patch +115058|03|Oct/29/03| | | | |Unbundled|sparc;|SUNWscrdt:3.1.0,REV=2003.03.24.14.50;|Sun Cluster 3.1: Reliable Datagram Transport patch for Solaris 8 +115059|04|Oct/29/03| | | | |Unbundled|sparc;|SUNWscrdt:3.1.0,REV=2003.03.25.13.14;|Sun Cluster 3.1: Reliable Datagram Transport patch for Solaris 9 +115062|02|Oct/31/03| | | | |Unbundled|sparc;113800-05;|SUNWcvm:3.1.0,REV=2003.03.24.14.50;SUNWcvmr:3.1.0,REV=2003.03.24.14.50;SUNWschwr:3.1.0,REV=2003.03.24.14.50;SUNWscucm:3.1.0,REV=2003.03.24.14.50;SUNWudlm:3.1.0,REV=2003.03.24.14.50;SUNWudlmr:3.1.0,REV=2003.03.24.14.50;|Sun Cluster 3.1: OPS Core Patch for Solaris 8 +115063|02|Oct/31/03| | | | |Unbundled|sparc;113801-05;|SUNWcvm:3.1.0,REV=2003.03.25.13.14;SUNWcvmr:3.1.0,REV=2003.03.25.13.14;SUNWschwr:3.1.0,REV=2003.03.25.13.14;SUNWscucm:3.1.0,REV=2003.03.25.13.14;SUNWudlm:3.1.0,REV=2003.03.25.13.14;SUNWudlmr:3.1.0,REV=2003.03.25.13.14;|Sun Cluster 3.1: OPS Core Patch for Solaris 9 +115064|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscapc:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Apache Patch +115065|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscapc:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Apache Patch +115066|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscdns:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-DNS Patch +115067|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscdns:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-DNS Patch +115070|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscnfs:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-NFS Patch +115071|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscnfs:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-NFS Patch +115072|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscnb:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Netbackup Pach +115073|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscnb:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Netbackup Patch +115076|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscor:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Oracle Patch +115077|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscor:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Oracle Patch +115078|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscsap:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-SAP Patch +115079|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscsap:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-SAP Patch +115080|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWschtt:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Sun One Web Server Patch +115081|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWschtt:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Sun One Web Server Patch +115082|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscwls:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-BEA Web Logic Patch +115083|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscwls:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-BEA Web Logic Patch +115084|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscs1as:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Sun One Application Server Patch +115085|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscs1as:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Sun One Application Server Patch +115086|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscs1mq:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Sun One Message Queue +115087|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscs1mq:3.1.0,REV=2003.04.02.15.55;|Sun Cluster 3.1: HA-Sun One Message Queue Patch +115089|01|Oct/31/03| | | | |Unbundled|sparc;|SUNWscsyb:3.1.0,REV=2003.04.02.16.04;|Sun Cluster 3.1: HA-Sybase Patch +115108|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROpls:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115109|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplmsx:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115110|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplmx:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115111|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplsx:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115112|01|Sep/10/03| | | | |Unbundled|sparc;114806-01;|SPROplx:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115113|01|Sep/10/03| | | | |Unbundled|sparc;|SPROmrpl:8.0,REV=2003.03.13;|Patch for S1S8CC Performance Library 4.1 (libsunperf) +115114|01|Oct/10/03| | | | |9_x86|i386;|SUNWsprot:5.9,REV=2002.8.02.00.00;|SunOS 5.9_x86: Patch for assembler +115117|01|Dec/22/03| | | | |Unbundled|sparc;|SPROdbx:6.2;SPROdbxx:6.2;SPROjdbx:6.2;SPROjdbxx:6.2;|Forte Developer 6 update 2: Patch for Debugger +115158|05|Nov/18/03|R|S| | |9|sparc;|SUNWxwsvr:4.05,REV=1.1;|X11 6.6.1: xscreensaver patch +115159|05|Nov/18/03|R|S| | |9_x86|i386;|SUNWxwsvr:4.05,REV=1.1;|X11 6.6.1_x86: xscreensaver patch +115161|01|Aug/04/03| | | | |9|sparc;|SUNWcscgu:9.0,REV=2002.03.21.17.56;SUNWdscgu:1.4,REV=2002.02.26.15.32;SUNWescgu:1.4,REV=2002.02.26.15.32;SUNWfscgu:1.4,REV=2002.02.26.15.33;SUNWhscgu:9.0,REV=2002.02.19.10.31;SUNWiscgu:1.4,REV=2002.02.26.15.33;SUNWjscag:1.5,REV=2002.02.26.15.34;SUNWkscgu:9.0,REV=2002.03.01.17.25;SUNWsscgu:1.4,REV=2002.02.26.15.34;|CDE 1.5: Addition of IFD card reader support for localization +115165|01|Sep/15/03| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWnisu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/libnisdb.so.2 Patch +115166|01|May/23/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWnisu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/libnisdb.so.2 Patch +115167|02|Sep/01/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/bin/cpio Patch +115168|02|Nov/05/03|R|S| | |9_x86|i386;|SUNWkrbu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/security/pam_krb5.so.1 Patch +115169|01|Sep/15/03| | | | |9|sparc;sparc.sun4u;|SUNWhea:11.9.0,REV=2002.04.06.15.27;SUNWusx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: us driver Patch +115172|01|Sep/15/03|R|S| | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: kernel/drv/le Patch +115173|01|Jun/10/03| | | | |9|sparc;|SUNWtoo:11.9.0,REV=2002.04.06.15.27;SUNWtoox:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/sparcv7/gcore /usr/bin/sparcv9/gcore Patch +115179|03|Dec/03/03| | | | |Unbundled|sparc,i386;|SUNWc6120:7.12;|6120 3.1.1: System Firmware Update +115180|03|Dec/23/03| | | | |Unbundled|||T3B 3.01.02: System Firmware Update +115193|01|May/02/03| | | | |Unbundled|||Hardware/PROM: CP2300 SPARC and SMC firmware update +115218|02|Aug/27/03| | | | |Unbundled|sparc;|VRTSnetbp:4.5FP,REV=2003.01.13.14.13;|NetBackup 4.5FP_3 files fix +115219|01|Sep/19/03| | | | |Unbundled|sparc;115218-02;|VRTSnbvlt:4.5FP,REV=2003.01.13.13.32;|NetBackup 4.5FP_3 Vault fix +115220|01|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbora:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_ORA_45_4_F fix +115221|01|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbsap:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_SAP_45_5_F fix +115222|01|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbsyb:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_SYB_45_5_F fix +115223|01|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnblot:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_LOT_45_5_F fix +115224|02|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbinx:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_INX_45_5_F fix +115225|02|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbdba:4.5FP,REV=2003.01.13.10.59;|NetBackup 4.5FP_3 NB_DBA_45_4_F fix +115226|01|Oct/08/03| | | | |Unbundled|sparc;115218-02;|VRTSnbdmp:4.5FP,REV=2003.01.13.13.31;|NetBackup 4.5FP_3 NB_DMP_45_5_F fix +115227|01|Oct/24/03| | | | |Unbundled|sparc;115218-02;|VRTSnbaro:NBAR_4.5FP_3_B075 (2002.12.27 15:30);|NetBackup 4.5FP_3 NetBackup Advanced Reporter fix +115228|01|May/27/03| | | | |7|sparc;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3: dtksh patch +115229|01|May/27/03| | | | |7_x86|i386;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtksh patch +115241|10|Oct/13/03| | | | |Unbundled|sparc;|SUNWvts:5.1,REV=08.02.07.25,OE=5.8,5.9;SUNWvtsx:5.1,REV=08.02.07.25,OE=5.8,5.9;|SunVTS 5.1 Patch Set 4 +115259|01|Oct/27/03| | | | |9|sparc;|SUNWaccu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch usr/lib/acct/acctcms +115265|01|Jun/11/03| | | | |9|sparc;|SUNWcstu:3.0;|CST 3.0 Server Patch 01 +115274|03|Nov/19/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/raidctl patch +115275|02|Sep/15/03| | | | |8|sparc;108528-03;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdu:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: mpt driver patch +115277|01|Jun/11/03| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: autoconf.h header patch +115285|02|Aug/07/03| | | | |Unbundled|sparc;|SUNWSMSlp:1.3.1,REV=2002.12.09.16.32;|SMS 1.3: lpost 5.14.6 +115287|02|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3:mand patch +115297|01|Jun/02/03| | | | |Unbundled|sparc;|SUNWcrypr:1.1.0,REV=2002.05.29.15.00;SUNWcrypu:1.1.0,REV=2002.05.29.15.00;SUNWdcar:1.1.0,REV=2002.05.29.15.02;|Sun Crypto Accelerator 1000 Patch +115301|01|Jul/08/03| | | | |Unbundled|||Hardware/PROM: CP2060/CP2080 SPARC and SMC firmware update +115302|01|Jul/08/03| | |O| B|Unbundled|||WITHDRAWN PATCH Obsoleted by: 115302-02 Hardware/PROM: CP2060/CP20 +115313|02|Aug/18/03| | | | |Unbundled|||Hardware/PROM: Sun Fire B100s PROM Update +115315|02|Jun/11/03| | | | |9|sparc;|SUNWmeadt:1.0,REV=20011004034640;SUNWnafdt:1.0,REV=2001.03.21.17.53;|SunOS 5.9: dtlogin issues +115316|02|Jun/11/03| | | | |9_x86|i386;|SUNWmeadt:1.0,REV=20011004035605;SUNWnafdt:1.0,REV=2001.03.21.15.07;|SunOS 5.9_x86: fixing dtlogin issues +115317|01|May/19/03| | | | |Unbundled|sparc;|SUNWrk6:1.1;SUNWrk6x:1.1;|Solstice RK6 1.1 patch +115318|01|Jun/10/03| | | | |9_x86|i386;|SUNWtoo:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/bin/i86/gcore Patch +115319|01|Oct/27/03| | | | |9_x86|i386;|SUNWaccu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/acct/acctcms Patch +115320|04|Sep/16/03| | | | |9_x86|i386;|SUNWintgige:11.9.0,REV=2003.03.26.18.19;|SunOS 5.9_x86: /kernel/drv/e1000g Patch +115321|01|Aug/18/03| | | | |9_x86|i386;|SUNWrmodr:11.9.0,REV=2002.10.02.19.20;|SunOS 5.9_x86: isa.125/ata.bef Patch +115330|01|Jun/10/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: librcm.so.1 Patch +115331|01|Jun/10/03| | | | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/librcm.so.1 Patch +115335|01|Jun/10/03| | | | |9_x86|i386;|SUNWos86r:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: kernel/drv/elxl Patch +115336|01|Oct/06/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWsutl:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/tar, /usr/sbin/static/tar Patch +115337|01|Oct/06/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWsutl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/bin/tar, /usr/sbin/static/tar Patch +115338|01|Jun/10/03| | | | |9|sparc;|SUNWusb:11.9.0,REV=2002.04.06.15.27;SUNWusbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/strmod/usbkbm Patch +115339|01|Jul/15/03| | | | |9_x86|i386;|SUNWusb:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /kernel/strmod/usbkbm Patch +115347|01|Aug/26/03| | | | |9_x86|i386;|SUNWudfr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: udfs Patch +115350|01|Jun/27/03| | | | |9|sparc;|SUNWudf:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ident_udfs.so.1 Patch +115351|01|Jun/27/03| | | | |9_x86|i386;|SUNWudf:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ident_udfs.so.1 Patch +115353|01|Sep/15/03| | | | |9_x86|i386;|SUNWrmodr:11.9.0,REV=2002.10.02.19.20;|SunOS 5.9_x86: elxl.bef Patch +115354|01|Jun/24/03| | | | |9|sparc;|SUNWslpr:11.9.0,REV=2002.04.06.15.27;SUNWslpu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: slpd Patch +115355|01|Jun/24/03| | | | |9_x86|i386;|SUNWslpr:11.9.0,REV=2002.11.04.02.51;SUNWslpu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: slpd Patch +115360|02|Sep/23/03| | | | |Unbundled|||Brocade SilkWorm 3200/3800 firmware upgrade +115361|03|Sep/23/03| | | | |Unbundled|||3900/12000: Brocade SilkWorm v4.1.1a firmware patch +115366|01|Jun/05/03| |S| | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWcsu:11.8.0,REV=2003.04.03.21.27;|Trusted Solaris 8 HW 12/02: wall patch +115367|01|Jun/05/03| |S| | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWcsu:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: wall patch +115368|02|Aug/29/03| |S| | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWcsu:11.8.0,REV=2003.04.03.21.27;SUNWsutl:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: tar patch +115369|02|Aug/29/03| |S| | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWcsu:11.8.0,REV=2003.04.03.19.26;SUNWsutl:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: tar patch +115370|02|Oct/31/03| |S| | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWsndmr:11.8.0,REV=2003.04.03.21.27;SUNWsndmu:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: sendmail patch +115371|02|Oct/31/03| |S| | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWsndmr:11.8.0,REV=2003.04.03.19.26;SUNWsndmu:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: sendmail patch +115372|01|Jun/10/03| | | | |Trusted_Solaris_8_HW_12/02|sparc.sun4u;110837-04;|SUNWdrcrx:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: Sun-Fire-15000 dr patch +115373|01|Jun/10/03| | | | |Trusted_Solaris_8_HW_12/02|sparc.sun4u;110837-04;|SUNWefcx:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: Sun-Fire-15000 gptwocfg patch +115374|01|Jun/10/03| | | | |Trusted_Solaris_8_HW_12/02|sparc.sun4u;110837-04;|SUNWcarx:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: Sun-Fire-15000 schpc patch +115375|01|Jun/10/03| | | | |Trusted_Solaris_8_HW_12/02|sparc.sun4u;110837-04;|SUNWcar:11.8.0,REV=2003.04.03.21.27;SUNWcarx:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: rootnex patch +115377|02|Sep/26/03| | | | |Unbundled|sparc;|SUNWencc:2.2.0,REV=2001.04.25.22.50;SUNWesmru:2.0.0,REV=2001.04.25.22.20;|Component Manager 2.2: Falsely states Battery Failure in T3+ Fixes +115383|02|Aug/01/03| | | | |8|sparc;|SUNWjpxpl:1.2,REV=1999.12.08.15.55;SUNWjpxpx:1.2,REV=1999.12.08.15.55;|SunOS 5.8: Japanese xlibi18n patch +115384|02|Aug/01/03| | | | |8_x86|i386;|SUNWjpxpl:1.2,REV=1999.12.08.15.55;|SunOS 5.8_x86: Japanese xlibi18n patch +115426|01|Dec/11/03| | | | |9|sparc;|SUNWcudc:9.0,REV=2002.01.08.09.59;SUNWhudc:9.0,REV=2002.01.08.10.16;SUNWjeudc:1.2,REV=2002.04.01.13.22;SUNWkudc:9.0,REV=2001.12.06.23.28;SUNWudct:1.2,REV=2002.03.22.11.08;|SunOS 5.9: UDC support for asian locales +115427|01|Dec/11/03| | | | |9_x86|i386;|SUNWcudc:9.0,REV=2002.01.08.10.06;SUNWhudc:9.0,REV=2002.01.08.10.15;SUNWjeudc:1.2,REV=2002.04.01.13.22;SUNWkudc:9.0,REV=2001.12.06.16.10;SUNWudct:1.2,REV=2002.03.22.11.06;|SunOS 5.9_x86: UDC support for zh.GBK and zh_TW.BIG5 locales +115428|03|Oct/16/03| |S| | |2.6_x86|i386;105182-34;|SUNWpcelx:1.1.0,REV=1997.06.13.11.51;SUNWpcser:1.1.0,REV=1997.06.13.11.51;SUNWpsdcr:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: asy pcelx pcser patch +115488|01|Jun/06/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: patch /kernel/misc/busra +115489|01|Jun/06/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: patch /kernel/misc/busra +115537|01|Jun/24/03| | | | |9|sparc;sparc.sun4u;sparc.sun4us;|SUNWcarx:11.9.0,REV=2002.04.06.15.27;SUNWcarx:11.9.0,REV=2002.04.09.12.25;SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /kernel/strmod/ptem patch +115538|01|Jun/25/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ptem Patch +115539|02|Dec/09/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/kernel/drv/fssnap Patch +115540|02|Dec/09/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/kernel/drv/fssnap patch +115542|01|Sep/03/03| | | | |9|sparc;113319-12;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: nss_user patch +115544|01|Sep/03/03| | | | |9|sparc;113319-12;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: nss_compat patch +115545|01|Sep/03/03| | | | |9|sparc;113319-12;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: nss_files patch +115548|01|Jun/18/03| | | | |Unbundled|sparc;|SUNWhwrd:2.0.0,REV=2000.07.07;SUNWhwrdx:2.0.0,REV=2000.07.07;|SunOS 5.9: SRC/P driver Patch +115553|03|Nov/25/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWusb:11.9.0,REV=2002.04.06.15.27;SUNWusbx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: USB drivers patch +115554|03|Nov/25/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWusb:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: USB drivers patch +115555|01|Jul/29/03| | |O| |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 113713-11 SunOS 5.9: pkgmk patch +115556|01|Jun/26/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/bin/pkgmk patch +115557|01|Nov/25/03| | |O| |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;SUNWusb:11.9.0,REV=2002.04.06.15.27;SUNWusbx:11.9.0,REV=2002.04.06.15.27;|Obsoleted by: 115553-03 SunOS 5.9: ohci, usba Patch +115558|01|Nov/25/03| | |O| |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWusb:11.9.0,REV=2002.11.04.02.51;|Obsoleted by: 115554-03 SunOS 5.9_x86: usba, ohci_state Patch +115559|01|Sep/10/03| | | | |9|sparc;|SUNWmddr:11.9.0,REV=2002.10.31.12.35;|SunOS 5.9:/usr/lib/rcm/modules/SUNW_svm_rcm.so Patch +115563|01|Nov/25/03|R|S| | |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ed creates tempfiles in an insecure manner +115564|01|Nov/25/03|R|S| | |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ed creates tempfiles in an insecure manner +115565|01|Nov/25/03|R|S| | |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;SUNWxcu4:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: ed creates tempfiles in an insecure manner +115566|01|Nov/25/03|R|S| | |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;SUNWxcu4:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: ed creates tempfiles in an insecure manner +115576|01|Jul/28/03|R| | | |8|sparc;sparc.sun4u;sparc.sun4us;108528-23;|SUNWcarx:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.13.13.40;SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /kernel/exec/elfexec and /kernel/exec/sparcv9/elfexec p +115577|01|Jul/28/03|R| | | |8_x86|i386;108529-23;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/exec/elfexec patch +115578|01|Jul/17/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/i86/adb patch +115579|01|Aug/12/03| | | | |8|sparc;|SUNWtnfc:11.8.0,REV=2000.01.08.18.12;SUNWtnfcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libtnfprobe.so.1 patch +115580|01|Aug/12/03| | | | |8_x86|i386;|SUNWtnfc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libtnfprobe.so.1 patch +115583|01|Oct/28/03| | | | |8|sparc;108993-27;|SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/nss_user.so.1 patch +115584|01|Dec/10/03| | | | |8_x86|i386;108994-27;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nss_user.so.1 patch +115589|03|Nov/26/03| | | | |Unbundled|sparc;|SUNWse6320:1.0.0,REV=2003.01.16;|Service Processor patch +115622|01|Sep/15/03| | |O| |9|sparc;|SUNWadmc:11.8,REV=2002.04.14.22.42;|Obsoleted by: 113434-12 SunOS 5.9: usr/snadm/lib/libspmisoft.so.1 +115623|01|Sep/15/03| | |O| |9_x86|i386;|SUNWadmc:11.8,REV=2002.10.31.17.09;|Obsoleted by: 114196-11 SunOS 5.9_x86: usr/snadm/lib/libspmisoft.s +115645|01|Jun/16/03| | | | |Unbundled|sparc;|SUNWspci3:3.0.1;|SunPCi3 3.0.1: for Solaris 7, 8, 9 and sparc architectures +115646|01|Aug/12/03| | | | |9|sparc;|SUNWtnfc:11.9.0,REV=2002.04.06.15.27;SUNWtnfcx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libtnfprobe shared library Patch +115647|01|Aug/12/03| | | | |9_x86|i386;|SUNWtnfc:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/libtnfprobe.so.1 patch +115648|01|Jun/16/03| | | | |Unbundled|sparc;|SUNWspci3:3.0;|SunPCi3 3.0: for Solaris 7, 8, 9 and sparc architectures +115651|02|Nov/13/03| | | | |9|sparc;|SUNWaccu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: usr/lib/acct/runacct Patch +115652|02|Nov/26/03| | | | |9_x86|i386;|SUNWaccu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/acct/runacct patch +115654|01|Aug/04/03| | | | |9|sparc;|SUNWi7rf:3.6,REV=2001.11.22.18.26;|SunOS 5.9: Some scalable ISO8859-7 Greek fonts are missing glyphs +115655|01|Aug/04/03| | | | |9_x86|i386;|SUNWi7rf:3.6,REV=2001.11.22.18.34;|SunOS 5.9_x86: Some scalable ISO8859-7 Greek fonts are missing gly +115662|01|Sep/24/03| | | | |Unbundled|||Hardware/Firmware: LSI1030 U320 SCSI controller +115693|01|Sep/01/03| | | | |9|sparc;|SUNWesu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/last Patch +115694|01|Sep/01/03| | | | |9_x86|i386;|SUNWesu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/bin/last Patch +115697|01|Sep/01/03| | | | |9|sparc;|SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: mtmalloc lib Patch +115698|01|Sep/02/03| | | | |9_x86|i386;|SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/lib/libmtmalloc.so.1 Patch +115703|01|Jun/18/03| | | | |Unbundled|||Sun-Fire B1600 System Controller (1.1) Firmware Update +115704|01|Jul/08/03| | | | |Unbundled|sparc;|SUNWstads:2.2.00.03;|SUNWstads Support patch (Service Processor Only) +115713|01|Aug/01/03| | | | |9|sparc;|SUNWdtdst:1.5,REV=10.2002.03.13;|CDE 1.5: dtfile patch +115714|01|Aug/01/03| | | | |9_x86|i386;|SUNWdtdst:1.5,REV=10.2002.09.21;|CDE 1.5_x86: dtfile patch +115715|02|Sep/19/03| | | | |Unbundled|sparc;|SUNWsrmr:1.2.0,REV=2000.03.20.10.37;|Solaris Resource Manager 1.2: pam_srm.so.1 patch +115725|01|Aug/01/03| | | | |Unbundled|||Hardware/BSC: Sun Fire B100s BSC Update +115734|02|Nov/06/03| | | | |Unbundled|sparc;|SUNWgnome-vfs:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Virtual File System Patch +115735|02|Nov/06/03| | | | |Unbundled|i386;|SUNWgnome-vfs:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Virtual File System Patch +115736|01|Aug/04/03| | | | |Unbundled|sparc;|SUNWgnome-wm:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Window Manager Patch +115737|01|Aug/04/03| | | | |Unbundled|i386;|SUNWgnome-wm:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Window Manager Patch +115738|03|Dec/01/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-base-libs:2.0.2,REV=9.4.2003.05.14.06.42;SUNWgnome-base-libs-64:2.0.2,REV=9.4.2003.05.14.06.42;SUNWgnome-base-libs-64-root:2.0.2,REV=9.4.2003.05.14.06.42;SUNWgnome-base-libs-root:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Base GUI Libraries Patch +115739|03|Nov/26/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-base-libs:2.0.2,REV=9.4.2003.05.14.06.50;SUNWgnome-base-libs-root:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Base GUI Libraries Patch +115740|02|Dec/17/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-print:2.0.2,REV=9.4.2003.05.14.06.42;SUNWgnome-print-share:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Printing Technology Patch +115741|02|Dec/17/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-print:2.0.2,REV=9.4.2003.05.14.06.50;SUNWgnome-print-share:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Print Technology Patch +115742|02|Dec/18/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-search-tool:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: File Search Tool Patch +115743|02|Dec/18/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-search-tool:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: File Search Tool Patch +115749|01|Jul/11/03| | | | |Unbundled|||3x00/12000: Brocade Fabric Manager 3.0.2c upgrade +115754|02|Oct/21/03|R|S| | |9|sparc;|SUNWzlib:11.9.0,REV=2002.03.02.00.35;SUNWzlibS:11.9.0,REV=2002.03.02.00.35;SUNWzlibx:11.9.0,REV=2002.03.02.00.35;|SunOS 5.9: zlib security Patch +115755|02|Oct/21/03|R|S| | |9_x86|i386;|SUNWzlib:11.9.0,REV=2002.03.02.00.30;SUNWzlibS:11.9.0,REV=2002.03.02.00.30;|SunOS 5.9_x86: zlib security Patch +115776|01|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: flashupdate sbbc driver fixes, othello+ support +115777|01|Oct/10/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: libSFL.so.1 +115780|01|Jul/31/03| | | | |Unbundled|sparc;110934-12;|SUNWgnome-wm:1.0.0,REV=2003.01.16.18.12;|GNOME 2.0.0: Window Manager Patch +115781|01|Jul/31/03| | | | |Unbundled|i386;110935-12;|SUNWgnome-wm:1.0.0,REV=2003.01.16.18.34;|GNOME 2.0.0_x86: Window Manager Patch +115782|01|Aug/01/03| | | | |Unbundled|sparc;113713-03;|SUNWgnome-wm:1.0.0,REV=2003.01.16.18.12;|GNOME 2.0.0: Window Manager Patch +115783|01|Aug/01/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-wm:1.0.0,REV=2003.01.16.18.34;|GNOME 2.0.0_x86: Window Manager Patch for Solaris 9_x86 +115786|01|Oct/03/03| | | | |Unbundled|||PSX1000 R02.00.01.140: StorEdge PSX1000 firmware upgrade +115789|01|Sep/15/03| | | | |Unbundled|||Hardware, 36G 72G 146G Disks: Download program and 0307 FC-AL firm +115795|01|Aug/01/03| | | | |8|sparc;|SUNWolimt:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2: xwdtopnm sdtimage +115796|01|Aug/01/03| | | | |8_x86|i386;|SUNWolimt:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2_x86: xwdtopnm sdtimage +115797|01|Aug/15/03| |S| | |8|sparc;|SUNWdtdmn:1.4,REV=10.1999.12.02;|CDE 1.4: dtspcd Patch +115798|01|Aug/15/03| |S| | |8_x86|i386;|SUNWdtdmn:1.4,REV=10.1999.12.02;|CDE 1.4_x86: dtspcd Patch +115803|01|Aug/18/03| | | | |Unbundled|sparc;112407-05;|VRTSnetbp:4.5,REV=2002.03.26.15.05;|NetBackup 4.5 UNIX server JNI fix +115804|01|Aug/18/03| | | | |7|sparc;|SUNWtnfd:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/tnfdump patch +115805|01|Sep/23/03| | | | |Unbundled|sparc;|SUNWscid:3.0,REV=2001.12.10.08.44;SUNWscidx:3.0,REV=2001.12.10.08.44;|SC3.0u3: scid fixes +115806|01|Sep/23/03| | | | |Unbundled|sparc;|SUNWscid:3.0,REV=2001.12.10.08.44;SUNWscidx:3.0,REV=2001.12.10.08.44;|SC3.0u3: scid fixes for Solaris 9 +115810|01|Aug/21/03| | | | |Unbundled|sparc;|SUNWessfp:3.5,REV=2.8.2003.04.24;|SunMC 3.5:SSP Status will incorrectly determine the SPARE SSP as M +115812|02|Nov/06/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-dtlogin-integration:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Dtlogin Integration Patch +115813|02|Nov/06/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-dtlogin-integration:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Dtlogin Integration Patch +115815|01|Oct/24/03| | | | |Unbundled|sparc;|SUNWsspid:3.5.0,REV=2001.08.21.20.45;|SSP 3.5: libidn.so +115823|01|Aug/20/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/logger patch +115824|01|Aug/20/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/logger patch +115825|01|Aug/18/03| | | | |8|sparc;|SUNWtnfd:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/tnfdump patch +115826|01|Aug/18/03| | | | |8_x86|i386;|SUNWtnfd:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/tnfdump patch +115827|01|Oct/27/03| | | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/sulogin and /sbin/netstrategy patch +115828|01|Oct/27/03| | | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/sulogin and /sbin/netstrategy patch +115829|01|Sep/29/03| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/fm/libdiagcode.so.1 patch +115830|01|Sep/29/03| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/fm/libdiagcode.so.1 patch +115831|01|Sep/29/03| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWarcx:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;SUNWcstl:11.8.0,REV=2000.01.08.18.12;SUNWcstlx:11.8.0,REV=2000.01.08.18.12;SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libuuid.so.1 patch +115832|01|Sep/29/03| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libuuid.so.1 patch +115833|01|Oct/10/03| |S| | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWarc:11.8.0,REV=2003.04.03.21.27;SUNWbtool:11.8.0,REV=2003.04.03.21.27;SUNWbtoox:11.8.0,REV=2003.04.03.21.27;SUNWcsl:11.8.0,REV=2003.04.03.21.27;SUNWcslx:11.8.0,REV=2003.04.03.21.27;SUNWcsr:11.8.0,REV=2003.04.03.21.27;SUNWcsu:11.8.0,REV=2003.04.03.21.27;SUNWcsxu:11.8.0,REV=2003.04.03.21.27;SUNWhea:11.8.0,REV=2003.04.03.21.27;SUNWosdem:11.8.0,REV=2003.04.03.21.27;SUNWtoo:11.8.0,REV=2003.04.03.21.27;SUNWtoox:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: linker patch +115834|01|Oct/10/03| |S| | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWarc:11.8.0,REV=2003.04.03.19.26;SUNWbtool:11.8.0,REV=2003.04.03.19.26;SUNWcsl:11.8.0,REV=2003.04.03.19.26;SUNWcsr:11.8.0,REV=2003.04.03.19.26;SUNWcsu:11.8.0,REV=2003.04.03.19.26;SUNWhea:11.8.0,REV=2003.04.03.19.26;SUNWosdem:11.8.0,REV=2003.04.03.19.26;SUNWtoo:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: linker patch +115835|01|Aug/18/03| | | | |9|sparc;|SUNWgscr:11.9.0,REV=2003.02.06.15.35;|SunOS 5.9: Ghostscript patch +115836|01|Aug/18/03| | | | |9_x86|i386;|SUNWgscr:11.9.0,REV=2003.02.06.14.31;|SunOS 5.9_x86: Ghostscript patch +115838|01|Aug/18/03| | | | |7_x86|i386;|SUNWtnfd:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/tnfdump patch +115839|01|Dec/04/03| | | | |Unbundled|sparc;|SUNWprism:7.0,REV=2003.02.10.5.37;SUNWprsmx:7.0,REV=2003.02.10.5.37;|HPC 5.0: Prism fixes +115841|01|Aug/18/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWtsu:2.5.0,REV=2003.04.03.21.27;SUNWtsux:2.5.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: mldrealpatch patch +115842|01|Aug/18/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWtsu:2.5.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: mldrealpath patch +115845|01|Nov/25/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: fomd +115846|02|Dec/02/03| | | | |Unbundled|||Hardware/PROM: Sun Fire V440 Flash PROM Update +115849|02|Dec/22/03| | | | |Unbundled|sparc;|SUNWscmtp:1.0.0p2;|MTP8.0 MTP_HA1.0.0 Patch 2 +115852|01|Aug/21/03| | | | |Unbundled|sparc;|SUNWessfs:3.5,REV=2.8.2003.04.24;|SunMC 3.5: SSP Status will incorrectly determine the SPARE SSP as +115853|01|Nov/11/03| | | | |Unbundled|sparc;|SUNWtrku:1.0,REV=2003.07.22.5.7;|Sun Trunking Utility 1.3 maintenance patch +115854|01|Nov/11/03| | | | |Unbundled|sparc;|SUNWtrku:1.0,REV=2003.07.22.5.8;|Sun Trunking Utility 1.3 maintenance patch +115855|01|Nov/11/03| | | | |Unbundled|sparc;|SUNWtrku:1.0,REV=2003.07.22.5.9;|Sun Trunking Utility 1.3 maintenance patch +115861|01|Nov/20/03| | | | |Unbundled|sparc;|SUNWstmdb:2.0.0 ,REV=09.25.03;SUNWstmsu:2.0.0 ,REV=09.25.03;SUNWstoba:2.0.0 ,REV=09.25.03;SUNWstui:2.0.0 ,REV=09.25.03;|SAN Manager management station patch +115862|01|Oct/02/03| | | | |Unbundled|||N1 Provisioning Server 3.0: Update 1 Release +115869|03|Nov/11/03| | | | |Unbundled|sparc;|SUNWemalb:5.0,REV=2003.04.08.23.26;SUNWemapp:5.0,REV=2003.04.08.23.26;SUNWembc:5.0,REV=2003.04.08.23.26;SUNWemcpa:5.0,REV=2003.04.08.23.26;SUNWemdmn:5.0,REV=2003.04.08.23.26;SUNWemmis:5.0,REV=2003.04.08.23.26;SUNWemth:5.0,REV=2003.04.08.23.26;|Solstice Enterprise Manager 5.0 Patch 3 +115874|01|Oct/16/03| | | | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /kernel/misc/scsi Patch +115875|01|Sep/25/03| | | | |9_x86|i386;|SUNWos86r:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86:/kernel/drv/ncrs Patch +115878|01|Sep/03/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/bin/logger Patch +115879|01|Sep/07/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /usr/bin/logger Patch +115881|01|Oct/03/03| | | | |9_x86|i386.i86pc;|SUNWcar:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: /kernel/misc/acpi_intp patch +115905|02|Nov/20/03| | | | |9_x86|i386;|SUNWnamos:11.10.0,REV=2002.09.13.02.42;|SunOS 5.9_x86: mexican monetary incorrect +115917|01|Sep/30/03| | | | |Unbundled|||Hardware, LTO-1 Tape Drive, Firmware Download Program V1527 +115920|01|Dec/11/03| | | | |9|sparc;|SUNWdehe:1.1,REV=2002.04.01.09.22;SUNWeshev:1.3,REV=2002.03.29.16.03;|SunOS 5.9: CDE 1.5 help patch +115921|01|Dec/11/03| | | | |9_x86|i386;|SUNWdehe:1.1,REV=2002.04.01.09.22;SUNWeshev:1.3,REV=2002.03.29.16.01;|SunOS 5.9_x86: CDE 1.5 help patch +115934|01|Aug/21/03| | | | |Unbundled|sparc;|SUNWessfp:3.5,REV=2.9.2003.04.24;|SunMC 3.5: SSP Status will incorrectly determine the SPARE SSP as +115935|01|Aug/21/03| | | | |Unbundled|sparc;|SUNWessfs:3.5,REV=2.9.2003.04.24;|SunMC 3.5: SSP Status will incorrectly determine the SPARE SSP as +115936|01|Nov/13/03| | | | |9|sparc;|SUNWkddte:9.0,REV=2002.03.26.17.44;|SunOS 5.9: Bug fix for Korean translation +115937|01|Nov/13/03| | | | |9_x86|i386;|SUNWkddte:9.0,REV=2002.09.18.13.27;|SunOS 5.9_x86: Bug fix for Korean translation +115949|02|Dec/11/03| | | | |9|sparc;|SUNWudct:1.2,REV=2002.03.22.11.08;|SunOS 5.9: UDC patch +115950|02|Dec/11/03| | | | |9_x86|i386;|SUNWudct:1.2,REV=2002.03.22.11.06;|SunOS 5.9_x86: UDC patch +115951|01|Aug/26/03| | | | |Unbundled|||Hardware/PROM: CP1500 OBP Firmware Update +115954|01|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSr:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: sms startup script must be Nordica/Othello+ aware +115955|01|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSop:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: smsconfig -m should use different defaults +115957|01|Nov/10/03| | | | |Unbundled|sparc;|SUNWSMSod:1.3.0,REV=2003.02.05.09.50;|SMS 1.3: Support Othello+ for SC OBP +115958|01|Nov/06/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-help-db:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Help Database Patch +115959|01|Nov/06/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-help-db:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Help Database Patch +115960|01|Aug/27/03| |S| | |Trusted_Solaris_8_4/01|sparc;|SUNWtltk:3.7.0,REV=10.2001.09.25;SUNWtltkx:3.7.0,REV=10.2001.09;|Trusted Solaris 8 4/01: ToolTalk patch +115964|01|Nov/06/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-text-editor-share:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: texteditorshare Patch +115965|01|Nov/06/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-text-editor-share:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: texteditorshare Patch +115966|01|Nov/06/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-terminal-share:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Terminal emulator Patch +115967|01|Nov/06/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-terminal-share:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Terminal emulator Patch +115968|01|Nov/13/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-perf-meter-share:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: Performance meter Patch +115969|01|Nov/13/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-perf-meter-share:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: Performance meter Patch +115974|01|Nov/20/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-user-docs:2.0.2,REV=9.4.2003.05.14.06.42;|GNOME 2.0.2: User documentation Patch +115975|01|Nov/20/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-user-docs:2.0.2,REV=9.4.2003.05.14.06.50;|GNOME 2.0.2_x86: User documentation Patch +115976|01|Dec/22/03| | | | |Unbundled|i386;|SPROdbx:6.2;SPROjdbx:6.2;|Forte Developer 6 update 2_x86: Patch for Debugger +115986|01|Sep/15/03| | | | |9|sparc;|SUNWesu:11.9.0,REV=2002.04.06.15.27;SUNWesxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ptree Patch +115987|01|Sep/15/03| | | | |9_x86|i386;|SUNWesu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/bin/i86/ptree patch +115988|01|Sep/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/lib/rcm/modules/SUNW_cluster_rcm.so Patch +115989|01|Sep/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/rcm/modules/SUNW_cluster_rcm.so patch +115997|01|Sep/04/03| | | | |Unbundled|sparc;|VRTSnetbp:4.5FP,REV=2003.01.13.14.13;|NetBackup 4.5FP_3 UNIX server mappings fix +115998|01|Sep/04/03| | | | |Unbundled|sparc;115218-02;|VRTSnetbp:4.5FP,REV=2003.01.13.14.13;|NetBackup 4.5FP_3 UNIX server JNI fix +116000|01|Sep/24/03| | | | |Unbundled|sparc.sun4u;|SUNWscdvr:1.3.1,REV=2002.12.16.09.56;|SSC 1.3.1: number of interrupt level 9 messages fixed +116001|02|Nov/18/03| | | | |Unbundled|||McDATA E/OS 05.02.00 upgrade +116006|01|Nov/06/03| | | | |Unbundled|sparc;113713-04;|SUNWgnome-libs:2.0.2,REV=9.4.2003.06.13.16.21;|GNOME 2.0.2: Libraries Patch +116007|01|Nov/06/03| | | | |Unbundled|i386;114568-02;|SUNWgnome-libs:2.0.2,REV=9.4.2003.06.13.16.38;|GNOME 2.0.2_x86: Libraries Patch +116012|01|Sep/29/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;SUNWcsxu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: ps utility patch +116013|01|Sep/29/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: ps utility patch +116014|01|Sep/30/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/usermod patch +116015|01|Sep/30/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/usermod patch +116016|01|Nov/26/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: /usr/sbin/logadm patch +116017|01|Nov/26/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/sbin/logadm patch +116018|01|Oct/01/03| | | | |9_x86|i386;|SUNWroute:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: usr/lib/inet/in.ndpd patch +116024|01|Oct/17/03| | | | |Unbundled|sparc;|SUNWesscd:3.5,REV=2.8.2003-05-12;|SunMC 3.5: Empty HPCI slot at C5V) reports UNKNOWN status +116025|01|Oct/17/03| | | | |Unbundled|sparc;|SUNWesscd:3.5,REV=2.9.2003-05-12;|SunMC 3.5: Empty HPCI slot at C5V) reports UNKNOWN status +116039|01|Oct/06/03| | | | |9|sparc;|SUNWxwpl:9.5,REV=2003.06.23.11.52;|SunOS 5.9: sun4u platform links patch +116044|01|Nov/05/03|R|S| | |9_x86|i386;|SUNWkdcu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: krbv5 Patch (kdb5_util) +116045|01|Nov/05/03|R|S| | |9_x86|i386;|SUNWkdcu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: krbv5 Patch (krb5kdc) +116046|03|Nov/05/03|R|S| | |9_x86|i386;|SUNWkdcu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: krbv5 Patch (libkadm5srv.so.1) +116051|01|Dec/15/03| | | | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: fssnap Patch +116052|01|Dec/15/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: fssnap Patch +116053|01|Nov/14/03| | | | |9_x86|i386;|SUNWatfsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: autofs Patch +116056|01|Oct/24/03| |S| | |Unbundled|||Hardware/PROM: Sun Fire V240 Flash PROM Update +116084|01|Nov/13/03| | | | |9|sparc;|SUNWxwfnt:6.6.1.5800,REV=0.2002.04.05;|X11 6.6.1: font patch +116085|01|Nov/13/03| | | | |9_x86|i386;|SUNWxwfnt:6.6.1.6400,REV=0.2002.10.16;|X11 6.6.1_x86: font patch +116097|01|Oct/17/03| | | | |Unbundled|sparc;|SUNWedacs:3.5,REV=2.8.2003.05.12;|SunMC 3.0: es-setup +116103|01|Dec/09/03| | | | |8|sparc;|SUNWicu:1.0,REV=2002.12.20.17.12;SUNWicud:1.0,REV=2002.12.20.17.12;SUNWicux:1.0,REV=2002.12.20.17.12;|SunOS 5.8: International Components for Unicode Patch +116107|01|Oct/17/03| | | | |Unbundled|sparc;|SUNWedacs:3.5,REV=2.9.2003.05.12;|SunMC 3.0: es-setup +116121|01|Oct/31/03| | | | |9|sparc;|SUNWxwpsr:6.6.1.5800,REV=0.2002.04.05;|X11 6.4.1: platform support for new hardware +116126|03|Dec/22/03| | | | |Unbundled|sparc,i386;|SUNWppcfg:2.2;SUNWppmn:2.2;SUNWppro:2.2;|Fixes to general release PatchPro 2.2 +116141|01|Nov/26/03| | | | |Unbundled|sparc;|SUNWseetc:1.0;SUNWseput:1.0;|Adding patch 114950-04 to a Solaris 8 machine needs this patch fir +116142|02|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;sparc.sun4u;|SUNWcarx:11.8.0,REV=2003.04.03.21.27;SUNWcsr:11.8.0,REV=2003.04.03.21.27;SUNWhea:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: ip patch +116143|02|Nov/05/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWcsr:11.8.0,REV=2003.04.03.19.26;SUNWhea:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: ip patch +116144|02|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWcsr:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: inetinit patch +116145|02|Nov/05/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWcsr:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: inetinit patch +116146|02|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;116142-02;|SUNWhea:11.8.0,REV=2003.04.03.21.27;SUNWkpsu:11.8.0,REV=2003.04.03.21.27;SUNWkpsux:11.8.0,REV=2003.04.03.21.27;SUNWkpts:11.7.0,REV=2003.04.03.21.27;SUNWkptsx:11.7.0,REV=2003.04.03.21.27;SUNWtsu:2.5.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: genunix_policy patch +116147|02|Nov/05/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;116143-02;|SUNWhea:11.8.0,REV=2003.04.03.19.26;SUNWkpsu:11.8.0,REV=2003.04.03.19.26;SUNWkpts:11.7.0,REV=2003.04.03.19.26;SUNWtsu:2.5.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: genunix_policy patch +116164|01|Dec/04/03| | | | |Unbundled|sparc;|SUNWeswci:3.5.0,REV=2.8.2003.05.03;SUNWeswfm:3.5.0,REV=2.8.2003.09.26;|SFL 3.5: +116166|01|Dec/10/03| | | | |Unbundled|||Hardware, SDLT320/SDLT220 Tape Drive, Firmware Download Program V7 +116174|01|Oct/24/03| | | | |9_x86|i386.i86pc;|SUNWcar:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: isa Patch +116175|01|Nov/06/03| | | | |9_x86|i386;|SUNWkrbu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: pam_krb5 Patch +116178|01|Dec/09/03| | | | |9|sparc;116229-01;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libcrypt Patch +116179|01|Dec/09/03| | | | |9_x86|i386;116230-01;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libcrypt Patch +116180|01|Nov/25/03| | | | |9|sparc;|SUNWloc:11.9.0,REV=2002.04.06.15.27;SUNWlocx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: geniconvtbl Patch +116181|01|Nov/25/03| | | | |9_x86|i386;|SUNWloc:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: iconv patch +116229|01|Dec/09/03| | | | |9|sparc;|SUNWarc:11.9.0,REV=2002.04.06.15.27;SUNWcsl:11.9.0,REV=2002.04.06.15.27;SUNWcslx:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: libgen Patch +116230|01|Dec/09/03| | | | |9_x86|i386;|SUNWarc:11.9.0,REV=2002.11.04.02.51;SUNWcsl:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: libgen Patch +116237|01|Nov/26/03|R|S| | |9|sparc;|SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: pfexec Patch +116238|01|Nov/26/03|R|S| | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: pfexec Patch +116243|01|Dec/11/03| |S| | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;SUNWcsu:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: umountall Patch +116244|01|Dec/11/03| |S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;SUNWcsu:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: umountall Patch +116247|01|Dec/09/03| |S| | |9|sparc;|SUNWcsr:11.9.0,REV=2002.04.06.15.27;|SunOS 5.9: audit_warn Patch +116248|01|Dec/09/03| |S| | |9_x86|i386;|SUNWcsr:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: audit_warn Patch +116251|01|Dec/02/03| | | | |Unbundled|sparc;|SUNWesmcm:2.0.0.198;SUNWesmcr:2.0.0.198;|Capacity Reporter Common Components patch +116252|01|Dec/02/03| | | | |Unbundled|sparc;113713-03;116251-01;|SUNWesm-container:2.0.0.198;SUNWesm-data-common:2.0.0.198;SUNWesm-platform:2.0.0.198;SUNWesm-scanners:2.0.0.198;SUNWesm-services:2.0.0.198;SUNWesm-ui-common:2.0.0.198;SUNWesmom:2.0.0.198;|Capacity Reporter Management Station patch +116253|01|Dec/02/03| | | | |Unbundled|sparc;116251-01;|SUNWcrpr8:2.0.0.198;SUNWeagcm:2.0.0.198;|Capacity Reporter Agent for Solaris 8/9 patch +116261|01|Nov/20/03| | | | |Unbundled|sparc;|SUNWstcli:2.0.0 ,REV=09.25.03;|SAN Manager CLI patch +116272|01|Nov/14/03| | | | |8|sparc;|SUNWcpcu:11.8.0,REV=2000.01.08.18.12;SUNWcpcux:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libpctx.so.1 and /usr/lib/sparcv9/libpctx.so.1 +116273|01|Nov/14/03| | | | |8_x86|i386;|SUNWcpcu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libpctx.so.1 patch +116274|01|Nov/26/03| | | | |8|sparc;|SUNWloc:11.8.0,REV=2000.01.08.18.12;SUNWlocx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/iconv/geniconvtbl.so patch +116275|01|Nov/26/03| | | | |8_x86|i386;|SUNWloc:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/iconv/geniconvtbl.so patch +116276|01|Dec/02/03| | | | |8|sparc;|SUNWxwdv:11.8.0,REV=2000.01.08.18.12;SUNWxwdvx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/kernel/drv/winlock and usr/kernel/drv/sparcv9/winl +116277|01|Dec/02/03| | | | |8_x86|i386;|SUNWxwdv:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/kernel/drv/winlock patch +116278|01|Dec/05/03| | | | |8|sparc;116378-01;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libcrypt_i.a patch +116279|01|Dec/05/03| | | | |8_x86|i386;116379-01;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libcrypt_i.a patch +116280|01|Nov/03/03| | | | |8|sparc;|SUNWhea:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/include/mon.h and /usr/include/limits.h patch +116281|01|Nov/03/03| | | | |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/mon.h and /usr/include/limits.h patch +116329|01|Nov/13/03| | | | |Unbundled|sparc;112041-02;|SUNWsecsn:1.0.0,REV=2000.08.09;|Sun Crypto Accelerator I Patch +116330|01|Oct/27/03| | | | |Unbundled|||Sun Fire B10n Content Load Balancing Patch +116332|01|Nov/14/03| | | | |8|sparc;|SUNWjfpue:1.1,REV=1999.12.29.10.38;|SunOS 5.8: kanji command patch +116333|01|Nov/14/03| | | | |8_x86|i386;|SUNWjfpue:1.1,REV=1999.12.29.10.38;|SunOS 5.8_x86: kanji command patch +116334|01|Dec/09/03| | | | |9|sparc;|SUNWjfpue:1.1,REV=2002.01.29.12.00;|SunOS 5.9: kanji command patch +116335|01|Dec/09/03| | | | |9_x86|i386;|SUNWjfpue:1.1,REV=2002.01.29.12.00;|SunOS 5.9_x86: kanji command patch +116336|02|Nov/05/03| |S| | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWdtwm:1.4,REV=10.2003.04.04;|Trusted_Solaris_8_HW_12/02: dtsession patch +116337|02|Nov/05/03| |S| | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWdtwm:1.4,REV=10.2003.04.04;|Trusted_Solaris_8_HW_12/02_x86: dtsession patch +116338|01|Oct/29/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWxwplt:3.8.1800,REV=0.99.03.23;|Trusted_Solaris_8_HW_12/02: Xsun patch +116339|01|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWxwplt:3.8.1800,REV=0.99.03.23;|Trusted_Solaris_8_HW_12/02_x86: Xsun patch +116342|01|Nov/20/03| | | | |Unbundled|sparc;|SUNWstas:2.0.0 ,REV=09.25.03;|SAN Manager agent station patch +116345|02|Nov/18/03| | | | |Unbundled||113814-01 (or newer)|Hardware/PROM: CP2140 SPARC and SMC firmware update +116346|03|Nov/25/03| | | | |Unbundled|||Hardware/PROM: CP2160 SPARC and SMC firmware update +116358|02|Dec/09/03| | | | |Unbundled|||Sun StorEdge Traffic Manager: 3.1 for Windows NT, 2000 and 2003 +116369|01|Dec/10/03| | | | |Unbundled|||Hardware 36GB SCSI Disk Drive Patch : Download program and SCSI Di +116370|01|Dec/10/03| | | | |Unbundled|||Hardware 72GB SCSI Disk Drive Patch : Download program and SCSI Di +116375|01|Nov/20/03| | | | |Unbundled|sparc;|SUNWstm:2.0.0 ,REV=09.25.03;|ESM common patch +116376|01|Nov/18/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/roles patch +116377|01|Nov/18/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/roles patch +116378|01|Dec/05/03| | | | |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWcsl:11.8.0,REV=2000.01.08.18.12;SUNWcslx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libgen.a patch +116379|01|Dec/05/03| | | | |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libgen.a patch +116380|01|Dec/16/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/traceroute patch +116381|01|Dec/16/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/traceroute patch +116382|01|Dec/10/03| | | | |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/touch and /usr/bin/settime patch +116383|01|Dec/10/03| | | | |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/touch and /usr/bin/settime patch +116403|01|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;|SUNWtsr:2.5.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: device_policy patch +116404|01|Nov/05/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;|SUNWtsr:2.5.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: device_policy patch +116405|01|Oct/31/03| | | | |Trusted_Solaris_8_HW_12/02|sparc;sparc.sun4u;116146-02;|SUNWcarx:11.8.0,REV=2003.04.03.21.27;SUNWcsr:11.8.0,REV=2003.04.03.21.27;|Trusted_Solaris_8_HW_12/02: tcp patch +116406|01|Nov/05/03| | | | |Trusted_Solaris_8_HW_12/02_x86|i386;116147-02;|SUNWcsr:11.8.0,REV=2003.04.03.19.26;|Trusted_Solaris_8_HW_12/02_x86: tcp patch +116413|01|Dec/19/03| | | | |Unbundled|sparc;109715-14;|SUNWhsip:3.0,REV=1999.09.24;|SunHSI/P 3.0: HSIP driver, fault detected in datapath +116423|01|Nov/12/03| | | | |Unbundled|||Hardware/FCode: JNI PCI Single + Dual 2Gbit FC Network Host Adapte +116431|01|Dec/03/03| | | | |Unbundled|||Sun[tm] ONE Studio 5 SE Patch +116462|01|Oct/31/03| |S| | |Unbundled|sparc;|SUNWkr5sv:5.9.0,REV=2002.06.03.20.48;|SEAM 1.0.2: patch for Solaris 9 +116479|01|Dec/24/03| | | | |9_x86|i386;|SUNWcsu:11.9.0,REV=2002.11.04.02.51;SUNWxcu4:11.9.0,REV=2002.11.04.02.51;|SunOS 5.9_x86: vi Patch +116513|01|Nov/10/03| | | | |Unbundled|sparc,i386;|SUNWfj001:2.0;|Hardware, 73G Disk: Download program andMAN3735FC 1004 firmware +116514|01|Nov/10/03| | | | |Unbundled|sparc,i386;|SUNWfj002:2.0;|Hardware, 73G Disk: Download program and MAP3735FC 1201 firmware +116515|01|Dec/19/03| | | | |Unbundled|||Hardware, 73G Disk and 36G Disk +116518|01|Dec/03/03| | |O| B|Unbundled|||Obsoleted by: 116518-02 WITHDRAWN PATCH StarOffice/StarSuite 7 (Li +116518|02|Dec/05/03| | | | |Unbundled|||StarOffice/StarSuite 7 (Linux): Product update patch +116519|01|Dec/03/03| | |O| B|Unbundled|||Obsoleted by: 116519-02 WITHDRAWN PATCH StarOffice/StarSuite 7 (So +116519|02|Dec/05/03| | | | |Unbundled|||StarOffice/StarSuite 7 (Solaris): Product patch update +116520|01|Dec/03/03| | |O| B|Unbundled|||Obsoleted by: 116520-02 WITHDRAWN PATCH StarOffice/StarSuite 7 (Wi +116520|02|Dec/05/03| | | | |Unbundled|||StarOffice/StarSuite 7 (Windows): Product update patch +116579|01|Dec/09/03| | | | |Unbundled|sparc;|SUNWesscp:3.5,REV=2.8.2003-05-12;|SunMC 3.5: Platfrom agent processes memory size increases +116580|01|Dec/18/03| | | | |Unbundled|sparc;|SUNWesscp:3.5,REV=2.9.2003-05-12;|SunMC 3.5: Platform agent processes memory size increases over tim +116602|01|Dec/10/03|R| | | |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /sbin/uadmin and /sbin/hostconfig patch +116603|01|Dec/10/03|R| | | |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /sbin/uadmin and /sbin/hostconfig patch +116624|01|Dec/22/03| | | | |Trusted_Solaris_8_4/01|sparc;|SUNWcsu:11.8.0,REV=2001.09.25.00.12;|Trusted Solaris 8 4/01: syslogd patch +116658|01|Dec/03/03| |S| | |Unbundled|i386;|SDRMEsia:5.3p4,REV=2003.08.27.15.00;|Sun Grid Engine, Enterprise Edition 5.3_x86:maintenance/security p +116659|01|Dec/03/03| |S| | |Unbundled|||Sun Grid Engine, Enterprise Edition 5.3 _x86: maint./security patc 800054|01|Mar/16/01| | |O| |Unbundled|||Obsoleted by: 111346-01 Hardware/PROM: Sun Fire 3800/4800/4810/680 --- tiger-3.2.1.orig/systems/SunOS/5/5.8/check +++ tiger-3.2.1/systems/SunOS/5/5.8/check @@ -0,0 +1,76 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# SunOS/5/5.8/check - 01/25/2004 +# +# Checks for SunOS 5.8 systems +# +# SunOS/5/5.8/check - 01/25/2004 - rbrad +# New file: Moved check_patches from check.tbl +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallfiles BASEDIR || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ + +haveallfiles BASEDIR || exit 1 + +SYSTEMDIR=$BASEDIR/systems/SunOS/5/5.8 + +[ "$Tiger_Check_PATCH" != 'N' ] && { + $SYSTEMDIR/check_patches +} --- tiger-3.2.1.orig/systems/SunOS/5/check +++ tiger-3.2.1/systems/SunOS/5/check @@ -19,6 +19,7 @@ # # Checks for Solaris systems # +# SunOS/5/check - 02/24/2004 - Fixed syntax error # SunOS/5/check - 08/26/2003 - Added ARSC's check implemented in TARA # #----------------------------------------------------------------------------- @@ -131,7 +132,6 @@ [ "$owner" != root ] && { message WARN misc017w "" "$file is defined with owner \`$owner' in /var/sadm/install/contents; should be \`root'." } - } } ;; esac @@ -140,5 +140,3 @@ } - - --- tiger-3.2.1.orig/systems/SunOS/5/5.9/CVS/Entries +++ tiger-3.2.1/systems/SunOS/5/5.9/CVS/Entries @@ -2,4 +2,5 @@ /services/1.1/Tue Aug 26 16:44:25 2003// /signatures/1.1/Tue Aug 26 16:44:25 2003// /suid_list/1.1/Tue Aug 26 16:44:25 2003// +/config/1.3/Sat Apr 16 20:18:38 2005// D --- tiger-3.2.1.orig/systems/SunOS/5/5.9/config +++ tiger-3.2.1/systems/SunOS/5/5.9/config @@ -0,0 +1,213 @@ +# -*- sh -*- +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# SunOS/5/5.9/config - 10/19/2003 +# +#----------------------------------------------------------------------------- +# +UUID="`/usr/bin/id | /usr/bin/sed -e 's/^uid=\([0-9][0-9]*\)[^0-9].*$/\1/'`" + +[ "$UUID" != '0' -a "$Tiger_TESTMODE" != 'Y' ] && { + echo 1>&2 + echo 'This script should be run from a super-user account.' 1>&2 + echo 1>&2 + exit 1 +} + +findcmd() +{ + CMD=$1 + + SRCH=/sbin:/usr/local/bin:/bin:/usr/bin:/etc:/usr/ucb:/usr/sbin:/usr/lib + + SAVEIFS=$IFS + IFS=: + set $SRCH + IFS=$SAVEIFS + for dir + do + [ $TESTEXEC $dir/$CMD ] && { + echo $dir/$CMD + return + } + done + } + +TESTEXEC=-x +[ $TESTEXEC /bin/sh ] && TESTEXEC=-f +TESTLINK=-h +export TESTEXEC TESTLINK +WHOAMI=`findcmd whoami` +CAT=/usr/bin/cat +CUT=/usr/bin/cut +HEAD=/usr/bin/head +LS=/usr/bin/ls +# -g to show group ownership +LSGROUP="-lg" +# -L to show file instead of symlink +LSLINK="-L" +RM=/usr/bin/rm +AWK=/usr/bin/awk +GREP=/usr/bin/grep +EGREP=/usr/bin/egrep +# Silent grep +SGREP="$EGREP -s" +SED=/usr/bin/sed +SORT=/usr/bin/sort +COMM=/usr/bin/comm +TAIL=/usr/ucb/tail +MV=/usr/bin/mv +TR=/usr/bin/tr +JOIN=/usr/bin/join +GROUPSS=/usr/ucb/groups +FILECMD=/usr/bin/file +IFCONFIG=/sbin/ifconfig +UNIQ=/usr/bin/uniq +BASENAME=/usr/bin/basename +CHMOD=/usr/bin/chmod +CHOWN=/etc/chown +LN=/usr/bin/ln +PASTE=/usr/bin/paste +DIFF=/usr/bin/diff +MAILER=/usr/bin/mail +ID=/usr/bin/id +WC=/usr/bin/wc +NDD=/usr/bin/ndd +EXPAND=/usr/bin/expand +SHOWREV=/usr/bin/showrev +NETSTAT=/usr/bin/netstat +PFILES=/usr/bin/pfiles +SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx" +SENDMAILCF="/etc/mail/sendmail.cf" +# +export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED CUT HEAD +export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME +export CHMOD CHOWN LN PASTE DIFF MAILER ID WC NDD IFCONFIG +export SHOWREV NETSTAT PFILES +export SENDMAILS SENDMAILCF EXPAND +# +UNAME=/usr/bin/uname +GETHOSTNAME=/usr/bin/hostname +EXPR=/usr/bin/expr +STRINGS=/usr/bin/strings +FIND=/usr/bin/find +FINDXDEV=-xdev +FMT=/usr/ucb/fmt +GETFS=/sbin/mount +CC=/usr/bin/cc +CC=`findcmd gcc` +if [ -z "$CC" ]; then + CC=`findcmd cc` +fi +CFLAGS="-DNEEDGETWD" +PS=/usr/bin/ps +DATE=/usr/bin/date +DATECMD="$DATE +%y%m%d" +TIMECMD="$DATE +%H:%M" +TESTLINK=-h +TESTEXEC=-x +# +# +export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV +export FMT GETFS CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC +# +# SunOS 4.x.x Bourne Shell has goofy 'wait' in regards to signals +# +WAIT=wait +#WAIT=simple_wait +# +# Using NIS (YP)? +YPCAT=/usr/bin/ypcat +NISCAT=`findcmd niscat` +# +YP= +($PS -ef | $GREP ypbind | $SGREP -v $GREP) && YP=Y +export YP +# +# +YPSERVER="NO" +($PS -ef | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES" +export WAIT YPCAT YPSERVER NISCAT +# Tcp wrappers +TCPD=`findcmd tcpd` +export TCPD +# +MAILSPOOL=/var/mail +# +CRONSPOOL=/var/spool/cron/crontabs +# +ETCSHELLS=/etc/shells +export MAILSPOOL CRONSPOOL ETCSHELLS +# egrep regex that defines a local filesystem +LOCFS="(ufs|tmpfs)" +export LOCFS +# +FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/" +export FS_WDIRSYS +# +SYSDEFAULTPATH="/usr/sbin:/usr/bin:/usr/ucb" +export SYSDEFAULTPATH +# +CDIR="$BASEDIR/systems" +eval ` + while read var file + do + if [ -f "$CONFIG_DIR/$file" ]; then + loc="$CONFIG_DIR" + elif [ -f "$CDIR/$OS/$REL/$REV/$ARCH/$file" ]; then + loc="$CDIR/$OS/$REL/$REV/$ARCH" + elif [ -f "$CDIR/$OS/$REL/$REV/$file" ]; then + loc="$CDIR/$OS/$REL/$REV" + elif [ -f "$CDIR/$OS/$REL/$file" ]; then + loc="$CDIR/$OS/$REL" + elif [ -f "$CDIR/$OS/$file" ]; then + loc="$CDIR/$OS" + else + loc="" + fi + if [ "$loc" != "" ]; then + echo $var="$loc/$file;" + else + echo "$var=;" + fi + echo "export $var;" + done << EOL +GETFS getfs +GEN_PASSWD_SETS gen_passwd_sets +GEN_GROUP_SETS gen_group_sets +GEN_ALIAS_SETS gen_alias_sets +CHECK_CRON check_cron +GEN_BOOTPARAM_SETS gen_bootparam_sets +GEN_EXPORT_SETS gen_export_sets +GEN_SERVICES_SETS gen_services +GET_MOUNTS gen_mounts +SIGNATURE_FILE signatures +SERVICESFILE services +INETDFILE inetd +FILE_ACL file_access_list +SUID_LIST suid_list +REL_FILE_EXCP rel_file_exp_list +GEN_CRON_FILES gen_cron +GETCLIENTDIRS gendlclients +GEN_INETD_SETS gen_inetd +GETDISKS getdisks +EMBEDDEDLIST embedlist +GETUSERHOME getuserhome +NDD_PARMS ndd_parms +NDD_PARMS_LOCAL ndd_parms_local +EOL +` --- tiger-3.2.1.orig/systems/SunOS/5/check_listeningprocs +++ tiger-3.2.1/systems/SunOS/5/check_listeningprocs @@ -0,0 +1,152 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2000-2002 Javier Fernandez-Sanguino Peña +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_listeningprocs: check which processes are listening in the +# local system. This check is based on the generic check but will use +# a Solaris-specific way to retrieve the information on processes. +# It can be used whenever 'lsof' is not available. +# +# check_listeningprocs - 14 April 2003 +# Added support for Solaris +# +# 04/21/2003 - jfs - Removed useless echo, use safe delete instead of RM +# Fixed typo in grep (USER instead of COMMAND) +# Fixed error in temporary file usage (empty openprocs.$$$ +# parsed instead of procs.$$$) +# +# TODO: +# - Use NETSTAT together with this program, might be useful to simplify +# it. +# - This script will not look for processes which are listening on an +# specific interface (not 0.0.0.0) or are listening on AF_INET6 sockets +# +#----------------------------------------------------------------------------- +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallcmds PS PFILES SED || exit 1 + haveallfiles BASEDIR WORKDIR || exit 1 + haveallvars TESTLINK HOSTNAME + + message CONFIG init003c "" "$0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ +echo +echo "# Checking listening processes " + +haveallcmds PS PFILES SED || exit 1 + +okprocessusers=$Tiger_Listening_ValidUsers +okprocess=$Tiger_Listening_ValidProcs +[ ! -n "$okprocessusers" ] && okprocessusers="root" +[ ! -n "$okprocess" ] && okprocess="" + +check_socket() +{ + proc=$1 + user=$2 + type=$3 + asocket=$4 + socket=`echo $asocket | $CUT -f 2 -d : | $SED -e 's/-.*$//'` + [ "$type" = "raw" ] && socket="(hex) $socket" + address=`echo $asocket | $CUT -f 1 -d :` + [ "$address" = "127.0.0.1" ] && address="loopback" + [ "$address" = "0.0.0.0" -o "$address" = "00000000" -o "$address" = "*" ] && address="every" +# Should address = 127.0.0.1 be considered harmful? +# TODO: This could be an option + case $proc in + $okprocess) + ;; + *) + case $user in + $okprocessuser) + [ "$address" = "every" -a "$Tiger_Listening_Every" != "N" ] && \ + message WARN lin002i "" "The process \`$proc' is listening on socket $socket ($type) on $address interface." || \ + message INFO lin002i "" "The process \`$proc' is listening on socket $socket ($type) on $address interface." + ;; + *) + [ "$address" != "127.0.0.1" ] && { + message WARN lin003w "" "The process \`$proc' is listening on socket $socket ($type on $address interface) is run by $user." + } + ;; + esac + ;; + esac +} + +> $WORKDIR/procs.$$ +# Note: The following will work for processes listening on all +# interfaces but not if listening in only one address, also +# ports are more than one +for pid in `$PS -ef -o pid` +do + $PFILES $pid 2>/dev/null | + $GREP "AF_INET 0\.0\.0\.0" | \ + $SED -e 's/.*port: \([0-9]*\).*/\1/g' | + while read port + do + name=`$PS -p $pid -o fname |$GREP -v COMMAND` + user=`$PS -p $pid -o user |$GREP -v USER` + echo "$name $user AF_INET 0.0.0.0:$port" >> $WORKDIR/procs.$$ + done +done + +$CAT $WORKDIR/procs.$$ | +$SORT | $UNIQ | +while read proc user type asocket +do + check_socket $proc $user $type $asocket + +done + +delete $WORKDIR/procs.$$ +exit 0 --- tiger-3.2.1.orig/systems/SunOS/5/check_patches +++ tiger-3.2.1/systems/SunOS/5/check_patches @@ -0,0 +1,129 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2002 Javier Fernandez-Sanguino Pen~a +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_patchref - 9 August 2002 +# +# Module to check patches (using showrev) against the patchdiag.xref file +# this file can be downloaded from: +# +# http://sunsolve.sun.com/pub-cgi/patchDownload.pl?target=patchdiag.xref&method=H +# +# DATE NAME DESCRIPTION_OF_CHANGES +# 08/09/2003 - jfs - Use delete instead of RM, safer temporary file usage. +# +#----------------------------------------------------------------------------- +# TODO: +# This script still needs to check: +# - that the architecture is the same as the one in the patchref.xref (field 9) +# - that the package (and version) affected is installed (field 10) +# - retrieve the description of the package +# +# This script could retrieve the patchdiag.xref file itself from the +# appropiate location if it's not available. +#----------------------------------------------------------------------------- +# +# This is the directory Tiger is installed on +TigerInstallDir='.' + +# For debugging purposes +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$CUT" ] && CUT=`which cut` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$SED" ] && SED=`which sed` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallcmds SHOWREV CUT SED CAT GREP RM || exit 1 + haveallfiles BASEDIR WORKDIR || exit 1 + haveallvars HOSTNAME || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ +echo +echo "# Performing check for patches not installed in the system.." + +haveallcmds SHOWREV CUT SED CAT GREP RM || exit 1 +haveallfiles CONFIG_DIR BASEDIR WORKDIR || exit 1 +haveallvars HOSTNAME || exit 1 + +# message FAIL XXXX0??f "" "MESSAGE TO WRITE IN REPORT" + +# Safe temporary file creation +safe_temp $WORKDIR/showrev.$$ +trap 'delete $WORKDIR/showrev.$$ ; exit 1' 1 2 3 15 + +# First extract the current patches to a file (faster than +# spawning a shell for showrev each time) +$SHOWREV -p > $WORKDIR/showrev.$$ + +# Now go throught the patch list and look for in the showrev output +if [ -f $CONFIG_DIR/patchdiag.xref ] +then + $CAT $CONFIG_DIR/patchdiag.xref | + $GREP -v "^#" | + $CUT -f 1 -d \| | + while read patchnumber + do + patchfound=`grep "^Patch: $patchnumber" $WORKDIR/showrev.$$` + if [ -z "$patchfound" ] + then + message WARN sig030w "" "Patch $patchnumber is not installed on this system" + fi + done +else + message FAIL sig022f "" "This system does not have a patchdiag.xref file (looked for it in $CONFIG_DIR)" +fi + +delete $WORKDIR/showrev.$$ + +exit 0 --- tiger-3.2.1.orig/systems/Tru64/CVS/Entries +++ tiger-3.2.1/systems/Tru64/CVS/Entries @@ -1,2 +1 @@ -/config/1.1/Mon Apr 21 07:43:05 2003// -D +D/5//// --- tiger-3.2.1.orig/systems/Tru64/5/CVS/Root +++ tiger-3.2.1/systems/Tru64/5/CVS/Root @@ -0,0 +1 @@ +jfs@subversions.gnu.org:/cvsroot/tiger --- tiger-3.2.1.orig/systems/Tru64/5/CVS/Repository +++ tiger-3.2.1/systems/Tru64/5/CVS/Repository @@ -0,0 +1 @@ +tiger/systems/Tru64/5 --- tiger-3.2.1.orig/systems/Tru64/5/CVS/Entries +++ tiger-3.2.1/systems/Tru64/5/CVS/Entries @@ -0,0 +1,15 @@ +/check/1.1/Sun Apr 4 01:55:32 2004// +/check_cron/1.1/Tue Apr 6 06:31:20 2004// +/check_passwdspec/1.1/Sun Apr 4 01:55:32 2004// +/check_trusted/1.1/Sun Apr 4 01:55:32 2004// +/gen_cron/1.1/Sun Apr 4 01:55:32 2004// +/gen_inetd/1.3/Thu Apr 8 08:22:50 2004// +/gen_mounts/1.1/Sun Apr 4 01:55:32 2004// +/gen_passwd_sets/1.1/Sun Apr 4 01:55:32 2004// +/getdisks/1.1/Sun Apr 4 01:55:32 2004// +/inetd/1.1/Sun Apr 4 01:55:32 2004// +/sgid_list/1.1/Tue Apr 6 06:32:55 2004// +/suid_list/1.1/Tue Apr 6 06:32:55 2004// +/gen_group_sets/1.2/Thu Mar 31 15:22:40 2005// +/config/1.6/Sat Apr 16 20:18:38 2005// +D --- tiger-3.2.1.orig/systems/Tru64/5/check_cron +++ tiger-3.2.1/systems/Tru64/5/check_cron @@ -0,0 +1,27 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file COPYING for the complete copyright notice. +# +# Tru64/5/check_Cron - 03/30/2004 +# +#----------------------------------------------------------------------------- +# +if [ -f "/var/spool/cron/$1" ]; then + echo "YES" +else + echo "NO" +fi --- tiger-3.2.1.orig/systems/Tru64/5/check +++ tiger-3.2.1/systems/Tru64/5/check @@ -0,0 +1,88 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/check - 06/25/2003 +# +# Checks for Tru64 systems. +# +# 03/25/2004 - rbradetich@uswest.net - Initial version +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} + +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallfiles BASEDIR WORKDIR || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} + +#------------------------------------------------------------------------ + +haveallfiles BASEDIR WORKDIR || exit 1 + +SYSTEMDIR=$BASEDIR/systems/Tru64/5 +# +# The following scripts have been added to provide platform +# specific checks for Tru64. This script was modified from +# the systems/HPUX/check script. +# + +# Verify the system is running in trusted mode. +[ "$Tiger_Check_TRUSTED" = 'Y' ] && { + $SYSTEMDIR/check_trusted +} + +# Perform system specific password checks. +[ "$Tiger_Check_PASSWD" != 'N' ] && { + $SYSTEMDIR/check_passwdspec +} --- tiger-3.2.1.orig/systems/Tru64/5/check_passwdspec +++ tiger-3.2.1/systems/Tru64/5/check_passwdspec @@ -0,0 +1,93 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 2003 Javier Fernandez-Sanguino +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_passwdspec: Perform system specific password checks here like +# password aging checks, etc. +# +# 03/30/2004 rbradetich@uswest.net - Initial release +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallfiles BASEDIR || exit 1 + haveallcmds AWK CUT PASSWD || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} +#------------------------------------------------------------------------ +haveallfiles BASEDIR || exit 1 +haveallcmds AWK CUT PASSWD || exit 1 + +echo +echo "# Verifying system specific password checks..." + +saveifs=$IFS +IFS=: +# Check for password aging +[ -r /etc/passwd ] && { + $CUT -f1,2 -d':' /etc/passwd | + while read user pwd + do + age=`$PASSWD -q $user | $AWK '{ print $5 }'` + if [ -z "$age" -o $age = 0 ] + then + message WARN pass19w "" "Login ID $user does not have password aging enabled." + fi + + [ "$Tiger_Check_PASSWD_SHADOW" = 'Y' -a -s /etc/passwd -a "$pwd" != "*" ] && { + message WARN pass20w "" "Login ID $user is not configured to use shadow passwords." + } + done +} +IFS=$saveifs + +exit 0 --- tiger-3.2.1.orig/systems/Tru64/5/check_trusted +++ tiger-3.2.1/systems/Tru64/5/check_trusted @@ -0,0 +1,78 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (c) 2004 Ryan Bradetich. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# check_trusted: Verifies the system is running in trusted mode. +# +# 03/30/2004 rbradetich@uswest.net - Initial release +# +#----------------------------------------------------------------------------- +# +TigerInstallDir='.' + +# Set default base directory. +# Order or preference: +# -B option +# TIGERHOMEDIR environment variable +# TigerInstallDir installed location +# +basedir=${TIGERHOMEDIR:=$TigerInstallDir} + +for parm +do + case $parm in + -B) basedir=$2; break;; + esac +done + +# +# Verify that a config file exists there, and if it does +# source it. +# +[ ! -r $basedir/config ] && { + echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." + exit 1 +} +. $basedir/config + +. $BASEDIR/initdefs + +# +# If run in test mode (-t) this will verify that all required +# elements are set. +# +[ "$Tiger_TESTMODE" = 'Y' ] && { + haveallfiles BASEDIR || exit 1 + haveallcmds GETPRDEF || exit 1 + + echo "--CONFIG-- [init003c] $0: Configuration ok..." + exit 0 +} +#------------------------------------------------------------------------ +haveallfiles BASEDIR || exit 1 +haveallcmds PASSWD AWK || exit 1 + +echo +echo "# Verifying trusted mode..." + +numfields=`$PASSWD -q | $AWK '{ print NF }'` +if [ $numfields -eq 2 ]; then + message WARN trust001w "" "The system is not running in trusted mode." + exit 0 +fi + +exit 0 --- tiger-3.2.1.orig/systems/Tru64/5/config +++ tiger-3.2.1/systems/Tru64/5/config @@ -0,0 +1,214 @@ +# -*- sh -*- +# +# tiger - A UN*X security checking system +# Copyright (C) 2003 Javier Fernandez-Sanguino +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/config - 04/15/2003 +# +# Preliminary version based on information provided by Florian Felgenhauer +# notice that all the gen_ scripts might need to be modified, specially +# gen_passwd_sets (since Tru64 seems to have a protected database instead +# of /etc/shadow) +# +# Also, the following files need to be generated: +# - services, using util/read_services +# - this config file can be regenerated with util/buildconf +# - mksig needs to be used to create SIGNATURE_FILE +# +#----------------------------------------------------------------------------- +# +UUID=`/usr/bin/id -u` +export UUID +[ "$UUID" = "0" -o "$UID" -eq 0 ] && ME="root" + +[ "$ME" != "root" ] && { + echo " " 1>&2 + echo "This script should be run from a super-user account." 1>&2 + echo " " 1>&2 +# exit 1 +} + +[ -z "$ME" ] && { + echo " " 1>&2 + echo "Unable to determine who is running Tiger, make sure you are root" 1>&2 + echo " " 1>&2 +} + +CAT=/usr/bin/cat +CUT=/usr/bin/cut +HEAD=/usr/bin/head +LS=/usr/bin/ls +# -l to show group ownership +LSGROUP="-l" +# -L to show file instead of symlink +LSLINK="-L" +RM=/usr/bin/rm +AWK=/usr/bin/awk +GREP=/usr/bin/grep +EGREP=/usr/bin/egrep +# Silent grep +SGREP="$EGREP -s" +SED=/usr/bin/sed +SORT=/usr/bin/sort +COMM=/usr/bin/comm +TAIL=/usr/ucb/tail +MV=/usr/bin/mv +TR=/usr/bin/tr +JOIN=/usr/bin/join +GROUPSS=/usr/ucb/groups +FILECMD=/usr/bin/file +UNIQ=/usr/bin/uniq +BASENAME=/usr/bin/basename +CHMOD=/usr/bin/chmod +CHOWN=/etc/chown +LN=/usr/bin/ln +PASTE=/usr/bin/paste +DIFF=/sbin/diff +MAILER=/usr/bin/mail +ID=/usr/bin/id +WC=/usr/bin/wc +EXPAND=/usr/bin/expand +NETSTAT=/usr/sbin/netstat +LSOF=/usr/sbin/LSOF +TEE=/usr/bin/tee +REALPATH=$BINDIR/realpath +SNEFRU=$BINDIR/snefru +PWCK=/usr/sbin/pwck +GRPCK=/usr/sbin/grpck +SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx" +SENDMAILCF="/var/adm/sendmail/sendmail.cf" +PASSWD=/usr/bin/passwd +EDAUTH=/usr/tcb/bin/edauth +WAIT=wait +INETDCONF=/etc/inetd.conf +NTPCONF=/etc/ntp.conf +# +export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED CUT HEAD +export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME +export CHMOD CHOWN LN PASTE DIFF MAILER ID WC TEE REALPATH SNEFRU +export NETSTAT SENDMAILS SENDMAILCF EXPAND LSOF PWCK GRPCK PASSWD +export EDAUTH WAIT INETDCONF NTPCONF +# +UNAME=/usr/bin/uname +GETHOSTNAME=/usr/bin/hostname +EXPR=/usr/bin/expr +STRINGS=/usr/bin/strings +FIND=/usr/bin/find +FINDXDEV=-xdev +FMT=/usr/ucb/fmt +GETFS=/sbin/mount +CC=/usr/bin/cc +PS=/usr/bin/ps +DATE=/usr/bin/date +DATECMD="$DATE +%y%m%d" +TIMECMD="$DATE +%H:%M" +TESTLINK=-h +TESTEXEC=-x +# +# +export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV +export FMT GETFS CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC +# +# Using NIS (YP)? +YPCAT=/usr/bin/ypcat +# +YP= +($PS -ef | $GREP ypbind | $SGREP -v $GREP) && YP=Y +export YP +# +# +YPSERVER="NO" +($PS -ef | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES" +export YPCAT YPSERVER +# +MAILSPOOL=/var/spool/mail +# +CRONSPOOL=/var/spool/cron/crontabs +# +ETCSHELLS=/etc/shells +# +export MAILSPOOL CRONSPOOL ETCSHELLS +# +# +DEVDIRSYS="/dev/ /devices/" +cdevs=`ls -d /cluster/members/member*/dev/` +[ -n "$cdevs" ] && { + cdevs=`echo $cdevs` + DEVDIRSYS="$DEVDIRSYS $cdevs" +} +export DEVDIRSYS +# +# +FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/" +wdirs=`ls -d /cluster/members/member*/tmp/` +[ -n "$wdirs" ] && { + wdirs=`echo $wdirs` + FS_WDIRSYS="$FS_WDIRSYS $wdirs" +} +export FS_WDIRSYS +# +# +SYSDEFAULTPATH="/usr/bin:/usr/ucb" +export SYSDEFAULTPATH +# +GETUSERHOME="$BASEDIR/systems/default/getuserhome" +export GETUSERHOME + +CDIR="$BASEDIR/systems" +eval ` + while read var file + do + if [ -f "$CONFIG_DIR/$file" ]; then + loc="$CONFIG_DIR" + elif [ -f "$CDIR/$OS/$REL/$REV/$ARCH/$file" ]; then + loc="$CDIR/$OS/$REL/$REV/$ARCH" + elif [ -f "$CDIR/$OS/$REL/$REV/$file" ]; then + loc="$CDIR/$OS/$REL/$REV" + elif [ -f "$CDIR/$OS/$REL/$file" ]; then + loc="$CDIR/$OS/$REL" + elif [ -f "$CDIR/$OS/$file" ]; then + loc="$CDIR/$OS" + else + loc="" + fi + if [ "$loc" != "" ]; then + echo $var="$loc/$file;" + else + echo "$var=;" + fi + echo "export $var;" + done << EOL +GEN_PASSWD_SETS gen_passwd_sets +GEN_GROUP_SETS gen_group_sets +GEN_ALIAS_SETS gen_alias_sets +CHECK_CRON check_cron +GEN_BOOTPARAM_SETS gen_bootparam_sets +GEN_EXPORT_SETS gen_export_sets +GEN_SERVICES_SETS gen_services +GET_MOUNTS gen_mounts +SIGNATURE_FILE signatures +SERVICESFILE services +INETDFILE inetd +FILE_ACL file_access_list +SUID_LIST suid_list +REL_FILE_EXCP rel_file_exp_list +GEN_CRON_FILES gen_cron +GETCLIENTDIRS gendlclients +GEN_INETD_SETS gen_inetd +GETDISKS getdisks +EMBEDDEDLIST embedlist +EOL +` --- tiger-3.2.1.orig/systems/Tru64/5/gen_cron +++ tiger-3.2.1/systems/Tru64/5/gen_cron @@ -0,0 +1,62 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/gen_cron - 06/14/93 +# +#----------------------------------------------------------------------------- +# TODO: Fix the check_crontabs and gen_cron files to perform the checks +# in the check_crontabs file so the following "BAD HACK" is not needed. +#----------------------------------------------------------------------------- +# + +## BAD HACK ## +TigerInstallDir="/opt/tiger" +. $TigerInstallDir/config +. $TigerInstallDir/initdefs + +outfile=$1 +> $outfile + +( + cd $CRONSPOOL + $LS -l $LSGROUP * +) | +while read x y owner a b c d e file +do + [ "$owner" != "root" ] && { + message WARN cron008w "" "CRON file \`$file' is owned by $owner." + } + case $file in + *[!a-zA-Z0-9]*) + message WARN cron009w "" "Unusual cron file \`$file' found." + ;; + *) + /bin/csh -c "echo ~$file" >/dev/null 2>/dev/null + + if [ $? = 0 ]; then + $SED -e 's/#.*$//' -e '/^$/d' $CRONSPOOL/$file | + while read a b c d e command + do + echo "$file $command" + done >> $outfile + else + message WARN cron009w "" "Unusual cron file \`$file' found." + fi + ;; + esac +done --- tiger-3.2.1.orig/systems/Tru64/5/gen_group_sets +++ tiger-3.2.1/systems/Tru64/5/gen_group_sets @@ -0,0 +1,54 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/gen_group_sets - 03/25/2004 +# +#----------------------------------------------------------------------------- +# + +$GREP -v '^[-+]' /etc/group | +$SORT > $WORKDIR/etc_group.$$ + +echo "/etc/group" > $WORKDIR/etc_group.$$.src +echo $WORKDIR/etc_group.$$ + +[ -n "$YPCAT" ] && { + $YPCAT group >$WORKDIR/nis_group.orig.$$ 2>/dev/null + if [ $? -eq 0 ] ; then + $SORT < $WORKDIR/nis_group.orig.$$ | + $AWK '{print substr($0, 1, 255);}' | + $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ + echo "NIS" > $WORKDIR/nis_group.$$.src + echo $WORKDIR/nis_group.$$ + fi + # Ypcat has not succeded (ouch), remove the temporary file + $RM $WORKDIR/nis_group.orig.$$ +} + +[ "$SERVERCHECK" = "Y" ] && { + $GETCLIENTDIRS | + while read client dir + do + [ -f "$dir/etc/group" ] && { + $GREP -v '^[-+]' $dir/etc/group | + $SORT > $WORKDIR/group.$$.$client + echo "$client:/etc/group" > $WORKDIR/group.$$.$client.src + echo $WORKDIR/group.$$.$client + } + done +} --- tiger-3.2.1.orig/systems/Tru64/5/gen_inetd +++ tiger-3.2.1/systems/Tru64/5/gen_inetd @@ -0,0 +1,61 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/gen_inetd - 04/01/2004 +# +#----------------------------------------------------------------------------- +# NOTE: Tru64 has both /etc/inetd.conf and /etc/inetd.conf.local. The +# /etc/inetd.conf is global to the cluster and is over-ridable by the +# /etc/inetd.conf.local file. A entry in the global /etc/inetd.conf +# file can be disabled by specifying "disable" as the serverpath. + +$GREP -v '^#' /etc/inetd.conf | +while read service socket protocol wait user path args +do + echo "$service:$socket:$protocol:$wait:$user $path $args" +done | +$SORT -u > $WORKDIR/etc_inetd.conf.$$ + +$GREP -v '^#' /etc/inetd.conf.local | +while read service socket protocol wait user path args +do + echo "$service:$socket:$protocol:$wait:$user $path $args" +done | +$SORT -u > $WORKDIR/etc_inetd.conf.local.$$ + +echo "/etc/inetd.conf /etc/inetd.conf.local" > $WORKDIR/etc_inetd.$$.src + +$JOIN -j 1 -v 1 -v 2 $WORKDIR/etc_inetd.conf.$$ $WORKDIR/etc_inetd.conf.local.$$ | +while read key path args +do + key=`echo $key | $TR ':' ' '` + echo "$key $path $args" +done > $WORKDIR/etc_inetd.$$ + + +$JOIN -j 1 -v 2 $WORKDIR/etc_inetd.$$ $WORKDIR/etc_inetd.conf.local.$$ | +while read key path args +do + [ "$path" = "disable" ] && continue + + key=`echo $key | $TR ':' ' '` + echo "$key $path $args" +done >> $WORKDIR/etc_inetd.$$ + +rm $WORKDIR/etc_inetd.conf.$$ $WORKDIR/etc_inetd.conf.local.$$ +echo $WORKDIR/etc_inetd.$$ --- tiger-3.2.1.orig/systems/Tru64/5/gen_mounts +++ tiger-3.2.1/systems/Tru64/5/gen_mounts @@ -0,0 +1,87 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/gen_mounts - 03/31/2004 +# +#----------------------------------------------------------------------------- +# + +dirname() +{ + _path="$1" + + saveifs=$IFS + IFS=/ + set X $_path + IFS=$saveifs + + shift + + if [ $# -eq 1 ]; then + _dirname='/' + else + _dirname= + while [ $# -ne 1 ] + do + _dirname="$_dirname/$1" + shift + done + fi + + echo "$_dirname" +} + +LOCAL_ONLY=$1 +CHKRO=$2 + +ronly() +{ + RO=1 + case "$1" in + *[!a-zA-Z]ro[!a-zA-Z]*) RO=0 + ;; + esac + return $RO +} + +localfs() +{ + LOCAL=1 + [ "$1" = "advfs" ] && LOCAL=0 + [ "$1" = "procfs" ] && LOCAL=1 + return $LOCAL +} + +# If run directly do this, just in case: +[ -z "$GETFS" ] && GETFS=`which mount` +[ -z "$BASENAME" ] && BASENAME=`which basename` + +$GETFS | +while read fs o mtpoint t fstype opts +do + PRINT=1 + [ "$CHKRO" = "rw" ] && { ronly "$opts" && PRINT=0; } + [ "$LOCAL_ONLY" = "local" ] && { localfs "$fstype" || PRINT=0; } + [ "$PRINT" = "1" ] && { + dir=`dirname $fs` + file=`$BASENAME $fs` + rfs="$dir/r$file" + echo "$mtpoint $fstype $fs" + } +done + --- tiger-3.2.1.orig/systems/Tru64/5/gen_passwd_sets +++ tiger-3.2.1/systems/Tru64/5/gen_passwd_sets @@ -0,0 +1,75 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# Copyright (C) 2004 Ryan Bradetich +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/gen_passwd_sets - 03/24/2003 +# +#----------------------------------------------------------------------------- +# + +local=0 +for parm +do + case "$parm" in + -p) ;; + -l) local=1;; + *) outfile="$parm";; + esac +done + +zappasswd() +{ + IFS=: + while read user passwd rest + do + passwd=`$EDAUTH -g $user | $AWK -F':' '/u_pwd=/ { print substr($4, 7) }'` + case $passwd in + # Normal UNIX passwds (13 chars) + [a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./][a-zA-Z0-9\./]) + passwd="crypt3" + ;; + "") + passwd="" + ;; + *) + passwd="*" + ;; + esac + echo "$user:$passwd:$rest" + done +} + +$GREP -v '^[-+]' /etc/passwd | +$SORT | +{ + if [ "$passwordflag" = 'Y' ]; then + $CAT + else + zappasswd + fi +} > $WORKDIR/etc_passwd.$$ + +echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src +echo $WORKDIR/etc_passwd.$$ >> $outfile + +[ -n "$YP" ] && { + $YPCAT passwd | + $SORT | + $COMM -23 - $WORKDIR/etc_passwd.$$ > $WORKDIR/nis_passwd.$$ + echo "NIS" > $WORKDIR/nis_passwd.$$.src + echo $WORKDIR/nis_passwd.$$ >> $outfile +} --- tiger-3.2.1.orig/systems/Tru64/5/getdisks +++ tiger-3.2.1/systems/Tru64/5/getdisks @@ -0,0 +1,25 @@ +#!/bin/sh +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +# Tru64/5/getdisks - 04/01/2004 +# +#----------------------------------------------------------------------------- +# + +$GET_MOUNTS local | +$AWK '{printf("%s ",$1)} +END {printf("\n")}' --- tiger-3.2.1.orig/systems/Tru64/5/suid_list +++ tiger-3.2.1/systems/Tru64/5/suid_list @@ -0,0 +1 @@ + --- tiger-3.2.1.orig/systems/UNICOS/CVS/Entries +++ tiger-3.2.1/systems/UNICOS/CVS/Entries @@ -1,15 +1,10 @@ -/check.tbl/1.1/Fri Jun 14 08:51:31 2002// /check_cron/1.1/Fri Jun 14 08:51:31 2002// /config/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// -/gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// /gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getdisks/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// @@ -17,3 +12,7 @@ /services/1.1/Fri Jun 14 08:51:31 2002// D/10//// D/7//// +/gen_group_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_services/1.2/Tue Feb 24 19:17:12 2004// +/gen_bootparam_sets/1.2/Sat Apr 16 20:18:38 2005// +/gen_mounts/1.2/Sat Apr 16 20:18:38 2005// --- tiger-3.2.1.orig/systems/UNICOS/7/CVS/Entries +++ tiger-3.2.1/systems/UNICOS/7/CVS/Entries @@ -1,4 +1,4 @@ /config/1.1/Fri Jun 14 08:51:31 2002// -/gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /suid_list/1.1/Fri Jun 14 08:51:31 2002// D/7.0.0//// +/gen_mounts/1.2/Sat Apr 16 20:18:38 2005// --- tiger-3.2.1.orig/systems/UNICOS/7/gen_mounts +++ tiger-3.2.1/systems/UNICOS/7/gen_mounts @@ -36,7 +36,3 @@ done exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/systems/UNICOS/gen_bootparam_sets +++ tiger-3.2.1/systems/UNICOS/gen_bootparam_sets @@ -3,7 +3,3 @@ # The Cray doesn't support diskless clients. exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/systems/UNICOS/gen_group_sets +++ tiger-3.2.1/systems/UNICOS/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/UNICOS/gen_mounts +++ tiger-3.2.1/systems/UNICOS/gen_mounts @@ -36,7 +36,3 @@ done exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/systems/UNICOS/gen_services +++ tiger-3.2.1/systems/UNICOS/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/UNICOSMK/CVS/Entries +++ tiger-3.2.1/systems/UNICOSMK/CVS/Entries @@ -1,16 +1,15 @@ /check_cron/1.1/Fri Jun 14 08:51:31 2002// /config/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// /gen_mounts/1.1/Fri Jun 14 08:51:31 2002// /gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// /gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getdisks/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// D/2//// -/check.tbl/1.2/Fri May 9 23:40:49 2003// +/gen_group_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_services/1.2/Tue Feb 24 19:17:12 2004// +/gen_bootparam_sets/1.2/Sat Apr 16 20:18:38 2005// --- tiger-3.2.1.orig/systems/UNICOSMK/gen_bootparam_sets +++ tiger-3.2.1/systems/UNICOSMK/gen_bootparam_sets @@ -3,7 +3,3 @@ # The Cray doesn't support diskless clients. exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/systems/UNICOSMK/gen_group_sets +++ tiger-3.2.1/systems/UNICOSMK/gen_group_sets @@ -25,7 +25,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/UNICOSMK/gen_services +++ tiger-3.2.1/systems/UNICOSMK/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/default/CVS/Entries +++ tiger-3.2.1/systems/default/CVS/Entries @@ -1,20 +1,19 @@ -/check.tbl/1.1/Fri Jun 14 08:51:31 2002// /check.template/1.1/Fri Jun 14 08:51:31 2002// /check_cron/1.1/Fri Jun 14 08:51:31 2002// /file_access_list/1.1/Fri Jun 14 08:51:31 2002// -/gen_alias_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_bootparam_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_cron/1.1/Fri Jun 14 08:51:31 2002// /gen_export_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_group_sets/1.1/Fri Jun 14 08:51:31 2002// /gen_inetd/1.1/Fri Jun 14 08:51:31 2002// -/gen_passwd_sets/1.1/Fri Jun 14 08:51:31 2002// -/gen_services/1.1/Fri Jun 14 08:51:31 2002// -/gendlclients/1.1/Fri Jun 14 08:51:31 2002// /getuserhome/1.1/Fri Jun 14 08:51:31 2002// /rel_file_exp_list/1.1/Fri Jun 14 08:51:31 2002// /services/1.1/Fri Jun 14 08:51:31 2002// /suid_list/1.1/Fri Jun 14 08:51:31 2002// -/check_ndd/1.1/Sat Aug 9 10:32:45 2003// /config/1.4/Fri Sep 19 14:19:10 2003// +/gen_alias_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_bootparam_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_group_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_passwd_sets/1.2/Tue Feb 24 19:17:12 2004// +/gen_services/1.2/Tue Feb 24 19:17:12 2004// +/check_ndd/1.2/Thu May 20 07:39:05 2004// +/gendlclients/1.2/Thu May 20 07:39:06 2004// D --- tiger-3.2.1.orig/systems/default/check_ndd +++ tiger-3.2.1/systems/default/check_ndd @@ -23,6 +23,8 @@ # # 07/11/2003 rbradetich@uswest.net - Initial version. # +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) # 08/09/2003 jfs - Placed in the generic default directory for Unix systems # so that systems can run them using 'check' # @@ -87,7 +89,7 @@ do ([ -z "$dev" ] || [[ $dev = \#* ]]) && continue val=`$NDD -get $dev $parm 2>/dev/null` - eval "case $val in + eval "case \"$val\" in $good) ;; *) --- tiger-3.2.1.orig/systems/default/gen_alias_sets +++ tiger-3.2.1/systems/default/gen_alias_sets @@ -53,7 +53,7 @@ echo $WORKDIR/etc_aliases.$$ } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/default/gen_bootparam_sets +++ tiger-3.2.1/systems/default/gen_bootparam_sets @@ -41,7 +41,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/default/gen_group_sets +++ tiger-3.2.1/systems/default/gen_group_sets @@ -31,7 +31,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SORT | $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$ --- tiger-3.2.1.orig/systems/default/gen_passwd_sets +++ tiger-3.2.1/systems/default/gen_passwd_sets @@ -17,9 +17,23 @@ # # default/gen_passwd_sets - 06/14/93 # +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. +# #----------------------------------------------------------------------------- # +[ ! -n "$SORT" ] && SORT=`which sort` +[ ! -n "$GREP" ] && GREP=`which grep` +[ ! -n "$AWK" ] && AWK=`which awk` +[ ! -n "$JOIN" ] && JOIN=`which join` +[ ! -n "$CAT" ] && CAT=`which cat` +[ ! -n "$RM" ] && RM=`which rm` +[ ! -n "$SED" ] && SED=`which sed` +[ ! -n "$YPCAT" ] && YPCAT=`which ypcat` +[ ! -n "$NISCAT" ] && NISCAT=`which niscat` +[ ! -n "$WORKDIR" ] && WORKDIR=/tmp + local=0 for parm do @@ -34,7 +48,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd > $WORKDIR/nis_passwd.$$ echo "NIS" > $WORKDIR/nis_passwd.$$.src echo $WORKDIR/nis_passwd.$$ >> $outfile --- tiger-3.2.1.orig/systems/default/gen_services +++ tiger-3.2.1/systems/default/gen_services @@ -28,7 +28,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/default/gendlclients +++ tiger-3.2.1/systems/default/gendlclients @@ -16,6 +16,8 @@ # Please see the file `COPYING' for the complete copyright notice. # # default/gendlclients - MM/DD/YY +# 05/02/2004 jfs Try to avoid eval problems if handling variables with +# special characters (such as space) # #----------------------------------------------------------------------------- # @@ -49,5 +51,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/MacOSX/5/gen_alias_sets +++ tiger-3.2.1/systems/MacOSX/5/gen_alias_sets @@ -28,7 +28,7 @@ echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src echo $WORKDIR/etc_aliases.$$ - [ -n "$YP" ] && { + [ -n "$YPCAT" ] && { $YPCAT -k aliases | $SED -e 's/ /:/' | $SORT | --- tiger-3.2.1.orig/systems/MacOSX/5/gen_bootparam_sets +++ tiger-3.2.1/systems/MacOSX/5/gen_bootparam_sets @@ -33,7 +33,7 @@ echo "$WORKDIR/etc_bootparams.$$" } -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT bootparams > $WORKDIR/nis_bootparams.$$ echo "NIS" > $WORKDIR/nis_bootparams.$$.src echo "$WORKDIR/nis_bootparams.$$" --- tiger-3.2.1.orig/systems/MacOSX/5/gen_group_sets +++ tiger-3.2.1/systems/MacOSX/5/gen_group_sets @@ -26,7 +26,7 @@ echo "/etc/group" > $WORKDIR/etc_group.$$.src echo $WORKDIR/etc_group.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT group | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/MacOSX/5/gen_passwd_sets +++ tiger-3.2.1/systems/MacOSX/5/gen_passwd_sets @@ -15,11 +15,24 @@ # GNU General Public License for more details. # Please see the file `COPYING' for the complete copyright notice. # -# MacOSX/5/gen_passwd_sets - 06/14/93 +# MacOSX/5/gen_passwd_sets - 08/26/2003 +# 11/18/2003 - jfs - Check if YPCAT is available before calling it. Also +# sanity checks for other commands. # #----------------------------------------------------------------------------- # +[ -z "$SORT" ] && SORT=`which sort` +[ -z "$GREP" ] && GREP=`which grep` +[ -z "$AWK" ] && AWK=`which awk` +[ -z "$JOIN" ] && JOIN=`which join` +[ -z "$CAT" ] && CAT=`which cat` +[ -z "$RM" ] && RM=`which rm` +[ -z "$SED" ] && SED=`which sed` +[ -z "$YPCAT" ] && YPCAT=`which ypcat` +[ -z "$NISCAT" ] && NISCAT=`which niscat` +[ -z "$WORKDIR" ] && WORKDIR=/tmp + local=0 passwordflag= @@ -90,7 +103,7 @@ echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src echo $WORKDIR/etc_passwd.$$ >> $outfile -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT passwd | $SED -e 's/:$/: /' | $SORT | --- tiger-3.2.1.orig/systems/MacOSX/5/gen_services +++ tiger-3.2.1/systems/MacOSX/5/gen_services @@ -24,7 +24,7 @@ echo "/etc/services" > $WORKDIR/etc_services.$$.src echo $WORKDIR/etc_services.$$ -[ -n "$YP" ] && { +[ -n "$YPCAT" ] && { $YPCAT services > $WORKDIR/nis_services.$$ echo "NIS" > $WORKDIR/nis_services.$$.src echo $WORKDIR/nis_services.$$ --- tiger-3.2.1.orig/systems/MacOSX/5/gendlclients +++ tiger-3.2.1/systems/MacOSX/5/gendlclients @@ -39,5 +39,5 @@ $SORT -u | while read client server filesys do - eval "case $server in $HOSTNAMESLIST) echo $client $filesys;; esac" + eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac" done --- tiger-3.2.1.orig/systems/MacOSX/5/CVS/Entries +++ tiger-3.2.1/systems/MacOSX/5/CVS/Entries @@ -1,28 +1,26 @@ -/check.tbl/1.1/Sun Jan 5 22:50:08 2003// /config/1.1/Sun Jan 5 22:50:08 2003// /datecmd/1.1/Sun Jan 5 22:50:08 2003// /embedlist/1.1/Sun Jan 5 22:50:08 2003// /file_access_list/1.1/Sun Jan 5 22:50:09 2003// -/gendlclients/1.1/Sun Jan 5 22:50:10 2003// /inetd/1.1/Sun Jan 5 22:50:12 2003// -/realpath/1.1/Sun Jan 5 22:50:13 2003// /rel_file_exp_list/1.1/Sun Jan 5 22:50:13 2003// /services/1.1/Sun Jan 5 22:50:13 2003// /suid_list/1.1/Sun Jan 5 22:50:15 2003// /testsuid.c/1.1/Sun Jan 5 22:50:15 2003// /check/1.2/Tue Aug 26 17:08:03 2003// /check_cron/1.2/Tue Aug 26 17:08:36 2003// -/gen_alias_sets/1.2/Tue Aug 26 17:08:52 2003// -/gen_bootparam_sets/1.2/Tue Aug 26 17:09:08 2003// /gen_cron/1.2/Tue Aug 26 17:09:22 2003// /gen_export_sets/1.2/Tue Aug 26 17:09:35 2003// -/gen_group_sets/1.2/Tue Aug 26 17:09:45 2003// /gen_inetd/1.2/Tue Aug 26 17:09:59 2003// /gen_mount/1.2/Tue Aug 26 17:10:10 2003// /gen_mounts/1.2/Tue Aug 26 17:10:23 2003// -/gen_passwd_sets/1.2/Tue Aug 26 17:10:34 2003// -/gen_services/1.2/Tue Aug 26 17:10:44 2003// /getdisks/1.2/Tue Aug 26 17:10:51 2003// /mkshells/1.2/Tue Aug 26 17:11:14 2003// /timecmd/1.2/Tue Aug 26 17:15:45 2003// +/gen_alias_sets/1.3/Tue Feb 24 19:16:28 2004// +/gen_bootparam_sets/1.3/Tue Feb 24 19:16:28 2004// +/gen_group_sets/1.3/Tue Feb 24 19:16:28 2004// +/gen_passwd_sets/1.3/Tue Feb 24 19:16:28 2004// +/gen_services/1.3/Tue Feb 24 19:16:28 2004// +/gendlclients/1.2/Thu May 20 07:38:20 2004// D --- tiger-3.2.1.orig/check.d/CVS/Root +++ tiger-3.2.1/check.d/CVS/Root @@ -0,0 +1 @@ +jfs@subversions.gnu.org:/cvsroot/tiger --- tiger-3.2.1.orig/check.d/CVS/Repository +++ tiger-3.2.1/check.d/CVS/Repository @@ -0,0 +1 @@ +tiger/check.d --- tiger-3.2.1.orig/check.d/CVS/Entries +++ tiger-3.2.1/check.d/CVS/Entries @@ -0,0 +1,2 @@ +/README/1.1/Mon Feb 2 23:52:31 2004// +D --- tiger-3.2.1.orig/check.d/README +++ tiger-3.2.1/check.d/README @@ -0,0 +1,22 @@ +# +# tiger - A UN*X security checking system +# Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 1, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Please see the file `COPYING' for the complete copyright notice. +# +#----------------------------------------------------------------------------- +# +# This directory is available for other packages to drop in additional check +# scripts that will be run during the check_system security check. +# +# Files in this directory should contain one script name per line. --- tiger-3.2.1.orig/tigercron +++ tiger-3.2.1/tigercron @@ -256,6 +256,7 @@ done >> $WORKDIR/tigcron.diff.$$ [ ! -n "$Tiger_Mail_RCPT" ] && Tiger_Mail_RCPT="root" +[ ! -n "$Tiger_Mail_FROM" ] && Tiger_Mail_FROM="root@$HOSTNAME" length=1 if [ ! -n "$EGREP" ] ; then @@ -271,7 +272,8 @@ } haveallcmds MAILER && [ "$send" = "Y" ] && { # Mail header (so it does not just say it's root - echo "From: Tiger automatic auditor at $HOSTNAME " + echo "From: \"Tiger automatic auditor at $HOSTNAME\" <$Tiger_Mail_FROM>" + echo "To: $Tiger_Mail_RCPT" echo "Subject: Tiger Auditing Report for $HOSTNAME" echo cat $WORKDIR/tigcron.diff.$$ --- tiger-3.2.1.orig/tigercron.in +++ tiger-3.2.1/tigercron.in @@ -248,6 +248,7 @@ done >> $WORKDIR/tigcron.diff.$$ [ ! -n "$Tiger_Mail_RCPT" ] && Tiger_Mail_RCPT="root" +[ ! -n "$Tiger_Mail_FROM" ] && Tiger_Mail_FROM="root@$HOSTNAME" length=1 if [ ! -n "$EGREP" ] ; then @@ -257,13 +258,13 @@ [ -s "$WORKDIR/tigcron.diff.$$" -a $length -gt 0 ] && { send="Y" [ "$Tiger_Cron_SendOKReports" = "N" ] && - [ -z "`grep ERR $WORKDIR/tigcron.diff.$$`" ] && + [ -z "`grep ERR $WORKDIR/tigcron.diff.$$`" ] && [ -z "`grep WARN $WORKDIR/tigcron.diff.$$`" ] && { send="N" } haveallcmds MAILER && [ "$send" = "Y" ] && { # Mail header (so it does not just say it's root - echo "From: Tiger automatic auditor at $HOSTNAME " + echo "From: \"Tiger automatic auditor at $HOSTNAME\" <$Tiger_Mail_FROM>" echo "Subject: Tiger Auditing Report for $HOSTNAME" echo cat $WORKDIR/tigcron.diff.$$ --- tiger-3.2.1.orig/tiger.in +++ tiger-3.2.1/tiger.in @@ -38,7 +38,7 @@ echo "Tiger UN*X security checking system" echo " Developed by Texas A&M University, 1994" echo " Updated by the Advanced Research Corporation, 1999" -echo " Further updated by Javier Fernandez-Sanguino, 2001-2003" +echo " Further updated by Javier Fernandez-Sanguino, 2001-2005" echo " Covered by the GNU General Public License (GPL)" echo TigerInstallDir="@tigerhome@" --- tiger-3.2.1.orig/install.sh +++ tiger-3.2.1/install.sh @@ -0,0 +1,312 @@ +## +## install -- Install a program, script or datafile +## Copyright (c) 1997-2004 Ralf S. Engelschall +## +## This file is part of shtool and free software; you can redistribute +## it and/or modify it 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. +## +## This file is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +## USA, or contact Ralf S. Engelschall . +## + +str_tool="install" +str_usage="[-v|--verbose] [-t|--trace] [-d|--mkdir] [-c|--copy] [-C|--compare-copy] [-s|--strip] [-m|--mode ] [-o|--owner ] [-g|--group ] [-e|--exec ] [ ...] " +arg_spec="1+" +opt_spec="v.t.d.c.C.s.m:o:g:e+" +opt_alias="v:verbose,t:trace,d:mkdir,c:copy,C:compare-copy,s:strip,m:mode,o:owner,g:group,e:exec" +opt_v=no +opt_t=no +opt_d=no +opt_c=no +opt_C=no +opt_s=no +opt_m="0755" +opt_o="" +opt_g="" +opt_e="" + +. ./sh.common + +# special case: "shtool install -d

[...]" internally +# maps to "shtool mkdir -f -p -m 755 [...]" +if [ "$opt_d" = yes ]; then + cmd="$0 mkdir -f -p -m 755" + if [ ".$opt_o" != . ]; then + cmd="$cmd -o '$opt_o'" + fi + if [ ".$opt_g" != . ]; then + cmd="$cmd -g '$opt_g'" + fi + if [ ".$opt_v" = .yes ]; then + cmd="$cmd -v" + fi + if [ ".$opt_t" = .yes ]; then + cmd="$cmd -t" + fi + for dir in "$@"; do + eval "$cmd $dir" || shtool_exit $? + done + shtool_exit 0 +fi + +# determine source(s) and destination +argc=$# +srcs="" +while [ $# -gt 1 ]; do + srcs="$srcs $1" + shift +done +dstpath="$1" + +# type check for destination +dstisdir=0 +if [ -d $dstpath ]; then + dstpath=`echo "$dstpath" | sed -e 's:/$::'` + dstisdir=1 +fi + +# consistency check for destination +if [ $argc -gt 2 ] && [ $dstisdir = 0 ]; then + echo "$msgprefix:Error: multiple sources require destination to be directory" 1>&2 + shtool_exit 1 +fi + +# iterate over all source(s) +for src in $srcs; do + dst=$dstpath + + # if destination is a directory, append the input filename + if [ $dstisdir = 1 ]; then + dstfile=`echo "$src" | sed -e 's;.*/\([^/]*\)$;\1;'` + dst="$dst/$dstfile" + fi + + # check for correct arguments + if [ ".$src" = ".$dst" ]; then + echo "$msgprefix:Warning: source and destination are the same - skipped" 1>&2 + continue + fi + if [ -d "$src" ]; then + echo "$msgprefix:Warning: source \`$src' is a directory - skipped" 1>&2 + continue + fi + + # make a temp file name in the destination directory + dsttmp=`echo $dst |\ + sed -e 's;[^/]*$;;' -e 's;\(.\)/$;\1;' -e 's;^$;.;' \ + -e "s;\$;/#INST@$$#;"` + + # verbosity + if [ ".$opt_v" = .yes ]; then + echo "$src -> $dst" 1>&2 + fi + + # copy or move the file name to the temp name + # (because we might be not allowed to change the source) + if [ ".$opt_C" = .yes ]; then + opt_c=yes + fi + if [ ".$opt_c" = .yes ]; then + if [ ".$opt_t" = .yes ]; then + echo "cp $src $dsttmp" 1>&2 + fi + cp $src $dsttmp || shtool_exit $? + else + if [ ".$opt_t" = .yes ]; then + echo "mv $src $dsttmp" 1>&2 + fi + mv $src $dsttmp || shtool_exit $? + fi + + # adjust the target file + if [ ".$opt_e" != . ]; then + sed='sed' + OIFS="$IFS"; IFS="$ASC_NL"; set -- $opt_e; IFS="$OIFS" + for e + do + sed="$sed -e '$e'" + done + cp $dsttmp $dsttmp.old + chmod u+w $dsttmp + eval "$sed <$dsttmp.old >$dsttmp" || shtool_exit $? + rm -f $dsttmp.old + fi + if [ ".$opt_s" = .yes ]; then + if [ ".$opt_t" = .yes ]; then + echo "strip $dsttmp" 1>&2 + fi + strip $dsttmp || shtool_exit $? + fi + if [ ".$opt_o" != . ]; then + if [ ".$opt_t" = .yes ]; then + echo "chown $opt_o $dsttmp" 1>&2 + fi + chown $opt_o $dsttmp || shtool_exit $? + fi + if [ ".$opt_g" != . ]; then + if [ ".$opt_t" = .yes ]; then + echo "chgrp $opt_g $dsttmp" 1>&2 + fi + chgrp $opt_g $dsttmp || shtool_exit $? + fi + if [ ".$opt_m" != ".-" ]; then + if [ ".$opt_t" = .yes ]; then + echo "chmod $opt_m $dsttmp" 1>&2 + fi + chmod $opt_m $dsttmp || shtool_exit $? + fi + + # determine whether to do a quick install + # (has to be done _after_ the strip was already done) + quick=no + if [ ".$opt_C" = .yes ]; then + if [ -r $dst ]; then + if cmp -s $src $dst; then + quick=yes + fi + fi + fi + + # finally, install the file to the real destination + if [ $quick = yes ]; then + if [ ".$opt_t" = .yes ]; then + echo "rm -f $dsttmp" 1>&2 + fi + rm -f $dsttmp + else + if [ ".$opt_t" = .yes ]; then + echo "rm -f $dst && mv $dsttmp $dst" 1>&2 + fi + rm -f $dst && mv $dsttmp $dst + fi +done + +shtool_exit 0 + +## +## manual page +## + +=pod + +=head1 NAME + +B - B install(1) command + +=head1 SYNOPSIS + +B +[B<-v>|B<--verbose>] +[B<-t>|B<--trace>] +[B<-d>|B<--mkdir>] +[B<-c>|B<--copy>] +[B<-C>|B<--compare-copy>] +[B<-s>|B<--strip>] +[B<-m>|B<--mode> I] +[B<-o>|B<--owner> I] +[B<-g>|B<--group> I] +[B<-e>|B<--exec> I] +I [I ...] +I + +=head1 DESCRIPTION + +This command installs a one or more Is to a given target I +providing all important options of the BSD install(1) command. +The trick is that the functionality is provided in a portable way. + +=head1 OPTIONS + +The following command line options are available. + +=over 4 + +=item B<-v>, B<--verbose> + +Display some processing information. + +=item B<-t>, B<--trace> + +Enable the output of the essential shell commands which are executed. + +=item B<-d>, B<--mkdir> + +To maximize BSD compatiblity, the BSD "B C" usage is +internally mapped to the "B C" command. + +=item B<-c>, B<--copy> + +Copy the I to the target I. Default is to move. + +=item B<-C>, B<--compare-copy> + +Same as B<-c> except if the destination file already exists and is +identical to the source file, no installation is done and the target +remains untouched. + +=item B<-s>, B<--strip> + +This option strips program executables during the installation, see +strip(1). Default is to install verbatim. + +=item B<-m>, B<--mode> I + +The file mode applied to the target, see chmod(1). Setting mode to +"C<->" skips this step and leaves the operating system default which is +usually based on umask(1). Some file modes require superuser privileges +to be set. Default is 0755. + +=item B<-o>, B<--owner> I + +The file owner name or id applied to the target, see chown(1). This +option requires superuser privileges to execute. Default is to skip this +step and leave the operating system default which is usually based on +the executing uid or the parent setuid directory. + +=item B<-g>, B<--group> I + +The file group name or id applied to the target, see chgrp(1). This +option requires superuser privileges to execute to the fullest extend, +otherwise the choice of I is limited on most operating systems. +Default is to skip this step and leave the operating system default +which is usually based on the executing gid or the parent setgid +directory. + +=item B<-e>, B<--exec> I + +This option can be used one or multiple times to apply one or more +sed(1) commands to the file contents during installation. + +=back + +=head1 EXAMPLE + + # Makefile + install: + : + shtool install -c -s -m 4755 foo $(bindir)/ + shtool install -c -m 644 foo.man $(mandir)/man1/foo.1 + shtool install -c -m 644 -e "s/@p@/$prefix/g" foo.conf $(etcdir)/ + +=head1 HISTORY + +The B B command was originally written by Ralf S. +Engelschall Erse@engelschall.comE in 1997 for B. It +was prompted by portability issues in the installation procedures of +B libraries. + +=head1 SEE ALSO + +shtool(1), umask(1), chmod(1), chown(1), chgrp(1), strip(1), sed(1). + +=cut + --- tiger-3.2.1.orig/tigerrc-all +++ tiger-3.2.1/tigerrc-all @@ -9,6 +9,7 @@ # TigerNoBuild=Y # C files are corrupted (ouch.) Tiger_Check_PASSWD=Y # Fast +Tiger_Check_PASSWD_FORMAT=N # Fast - not needed if on systems with pwck Tiger_Check_PASSWD_SHADOW=Y # Time varies on # of users Tiger_Check_PASSWD_NIS=N # Time varies on # of users Tiger_Check_GROUP=Y # Fast @@ -274,6 +275,11 @@ # Tiger_Crack_Local=Y # +# Who sends output from 'tigercron'? +# Default is "root@$HOSTNAME" (gets expanded by tigercron) +# +# Tiger_Mail_FROM="root@`uname -n`" +# # Who gets output from 'tigercron'? # Tiger_Mail_RCPT=root --- tiger-3.2.1.orig/tigerrc-dist +++ tiger-3.2.1/tigerrc-dist @@ -9,6 +9,7 @@ # TigerNoBuild=Y # C files are corrupted (ouch.) Tiger_Check_PASSWD=Y # Fast +Tiger_Check_PASSWD_FORMAT=N # Fast - not needed if on systems with pwck Tiger_Check_PASSWD_SHADOW=Y # Time varies on # of users Tiger_Check_PASSWD_NIS=N # Time varies on # of users Tiger_Check_GROUP=Y # Fast @@ -209,6 +210,11 @@ # Tiger_Crack_Local=Y # +# Who sends output from 'tigercron'? +# Default is "root@$HOSTNAME" (gets expanded by tigercron) +# +# Tiger_Mail_FROM="root@`uname -n`" +# # Who gets output from 'tigercron'? # Tiger_Mail_RCPT=root --- tiger-3.2.1.orig/tigerrc-TAMU +++ tiger-3.2.1/tigerrc-TAMU @@ -15,6 +15,7 @@ # you don't want performed. # Tiger_Check_PASSWD=Y # Fast +Tiger_Check_PASSWD_FORMAT=N # Fast - not needed if on systems with pwck Tiger_Check_GROUP=Y # Fast Tiger_Check_ACCOUNTS=Y # Time varies on # of users Tiger_Check_RHOSTS=Y # Time varies on # of users @@ -141,6 +142,11 @@ # Tiger_Crack_Local=N # +# Who sends output from 'tigercron'? +# Default is "root@$HOSTNAME" (gets expanded by tigercron) +# +# Tiger_Mail_FROM="root@`uname -n`" +# # Who gets output from 'tigercron'? # Tiger_Mail_RCPT=root --- tiger-3.2.1.orig/tigexp +++ tiger-3.2.1/tigexp @@ -19,7 +19,7 @@ # tigexp - 05/23/2003 - changed so that it is managed by autoconf # # This program retrieves information explaining what a given message -# (INFO, WARN, ALERT, FAIL or ERR) given out by Tiger means. +# (INFO, WARN, ALERT, FAIL or ERROR) given out by Tiger means. # #----------------------------------------------------------------------------- TigerInstallDir="." --- tiger-3.2.1.orig/TODO +++ tiger-3.2.1/TODO @@ -1,4 +1,3 @@ - Note: the up-to-date TODO list is maintained through Savannah's Task Manager (http://savannah.nongnu.org/pm/?group=tiger) this list is provided for the commodity of those browsing the source code @@ -43,12 +42,12 @@ the code of some checks or new checks written for them . Integrated the secaudit database manager patch provided by the Center for Information Technology, National Institutes of Health - . Integration of checks/bug fixes from TARA 3.0.3 version. NOTE: Mostly done for all checks (except for check_sendmail) Other utilities, such as buildbins changes, need to be checked. . Full documentation and user manual describing checks, policy (BS-7799) compliance and comparison with other tools and checks. + - Include tigerrc and cronrc manpages . Provide other logging mechanisms (syslog, snmp) if tools are available. . Checks for SANS's Top 10 (generic) and Top 20 (UNIX) vulnerabilities @@ -57,8 +56,9 @@ NOTE: Already included an annotated CERT list which determines which are done and which are lacking . Redhat (rpm) packages - NOTE: The spec file provided as a patched is now included but it has - not been tested (by me) to build RPM packages. + NOTE: The spec file provided as a patched is now included, I have tested + it to build RPM packages but I have not tested the RPM packages + themselves. Released: - Version 3.2 (stable): major bug fix version @@ -84,38 +84,6 @@ (such as http://lists.insecure.org/lists/bugtraq/1998/Jun/0160.html from Marc Heuse dated Fri Jun 26 1998 - 08:24:17 BST) -- Convert scripts/check_network (RedHat based) into a number of tests. - This is a script provided by Bryan Gartner from HP - It currently checks for: - - Inetd configuration files (are xinetd or inetd files writable? - are they owned by the proper user? does inetd use -l? does - xinetd have filelog or syslog?) - (Note: some checks moved to check_tcpd) - - Does /etc/securetty exist? Does it have other entries besides vc/tty? - Is ownership of the file ok? - - Is ip forwarding enabled? - - Which version of DNS/Wu-ftpd is it running? - (Note: this might not be completely feasible since the check_network - scripts connects to the server to retrieve the banner which is - something that Tiger should leave to other, remote, VA tools) - - PermitRooLogin or Rhosts in sshd? - - EXPN/VRFY support in mail host? - Necessary services: - - Is syslog running? - - Is omniback running? - Not allowed (per policy): - - Is fingerd running? - - Is identd runnig? - - Are inetd internal services running? - - Is a routing daemon enabled? - - R-commands? - - X server - - Tftpd - - NIS - - UUCP - - R-exd? - - NFS - - Update signatures using TAMU's (and maybe knowngoods.org's) signature database. See http://savannah.nongnu.org/pm/task.php?group_project_id=472&group_id=2247&func=browse @@ -123,88 +91,6 @@ - Improve support non-Linux OSs https://savannah.nongnu.org/pm/task.php?group_id=2247&group_project_id=632 -- Modified the rhosts check so that it will check for shosts files too - (or create a new check_shosts file) - -- Modify check_network to include hosts.lpd in the tests - -- Add .bash_profile into check_path - -- Create the following scripts: - - Detect promiscous mode - - Check root $HOME files (might be redundant with check_path's) - - Do alias give the same as check_aliases? - - writable/executable check + word writable? (in find_files) - - Check for SAMBA configuration (checklist #20 SANS): - . encrypted passwords. - . 600 /etc/smbpasswd or /etc/samba/smbpasswd - . shares enabled/disabled - . guest access - . create mask (770) - - Check newer FTP (/etc/ftpaccess in newer Linux systems, ftpusers - is deprecated) see checklist #22 of SANS. - - The check_inetd script should be improved to warn if echo/chargen.. - services are enabled (SANS unix checklist #3 and Linux #4) - - SANS unix checklist #18 - . Solaris /etc/system (noexec stack) - . Solaris locked accounts (#18 and #21) - . Solaris default/login - . Solaris /etc/default/kbd - - Partition checks (in Linux /etc/fstab, in Solars /etc/vfstab, - if there is a /usr, /opt then read-only, if /var - or /tmp nosuid. Separate /var,/usr,/tmp from / - - Solaris /etc/notrouter to disable - - Rootkits check, like chkrootkit - Note: partially done - Reference: - http://linux.oreillynet.com/pub/a/linux/2002/02/07/rootkits.html - - - Suggested by Bob Hall: - * Check if any local file systems are being exported to - 'localhost'. Also check if the local host is in a netgroups - entry in its own exports file. - * Look for (unexpected) normal files under /dev. - (Note: include in 'check_devices') - * Check for user startup files that call 'umask' with weak - settings. (Should be 022 or 027.) - (Note: include in 'check_umask' using GENPASSWDSETS) - * Check that '-' is not the first character in a /etc/hosts.equiv - /etc/hosts.lpd, or .rhosts files. Also check for a '+' entry in - hosts.lpd file. - (Note: include in 'check_rhosts') - * If a system allows it, check for an /etc/shells file and look - if the permitted shells are in the system directories. - References: - http://www.cert.org/tech_tips/usc20.html - http://www.cert.org/advisories/CA-2001-30.html - http://www.ciac.org/ciac/bulletins/b-37.shtml - http://www.nswc.navy.mil/ISSEC/Docs/Ref/GeneralInfo/unixsecurity.nrl.txt - - -- Possible integration with other security tools: - - Tripwire: the 'tripwire_run' script has not been tested thoroughly - (mainly because in Debian it is already configured to execute - regular checks standalone) - - Crack: same for 'crack_run' (for the same reason as for tripwire - it has not been tested thoroughly yet) - - Other integrity checkers: aide, samhain, integrit... - (Note: done for aide and integrit for the moment) - - Other password crackers: john - - Logcheckers: swatch, logcheck, loganalysis, snort-logcheck - Tiger currently does not do any log checking (see below) - I'm not sure if Tiger should provide a new one or re-use - existing ones and include them as an 'external' program to run - through a Tiger module. The benefit of using an accepted and use - log analysis tool is that Tiger can benefit from the database of - signatures of known attacks/non-issues. The problem is that the - sysadmin has to install yet another tool (if he is not using an OS - that already includes them) and, probably, some other stuff - (like Perl) on which the tool itself is based. - - - User anaylisis: sac, hostsentry (part of Abacus, but non-free) - - Network checks: Arpwatch, Snort - - Other tools: chkrootkit - - Compare checks against other tools' - Bastille/Titan: verify that each thing that they 'fix' (harden) is checked by Tiger. Provide a relationship of modules in @@ -218,8 +104,6 @@ to make simple checks than if using other monolythic tools (like CIS's, OpenBSD's or SuSE's) -- Implement logging to syslog (TARA 3.0.3 does it through logger) - - Implement IDMEF to send message on alerts. Consider the use of the XML library available at http://www.silicondefense.com/idwg/snort-idmef/ or Prelude's libprelude @@ -237,12 +121,16 @@ - IDEA http://idea-arch.sourceforge.net/ - Prelude http://www.prelude-ids.org/ -- Implement a check for configuration files for user's password policies - and other sensible configuration such as /etc/login.access, /etc/login.defs, - /etc/login.conf +(DONE)- Implement logging to syslog (TARA 3.0.3 does it through logger) + +BUGS +---- -- Add more information to the messages outputed for inetd services which - might expose password information (Unix CERT configuration list item #2.4) +- Gen_passwd_sets (all systems) sorts the passwd/shadow before joining, + if there are "similar" userfields with non-word characters (*, !) sorting + might not work as expected and the join will not show some of the users. + This needs to be fixed by sorting the userfield first and then using that + sort to sort the passwd fileS --- Javier Fernandez-Sanguino Pen~a --- tiger-3.2.1.orig/USING +++ tiger-3.2.1/USING @@ -72,7 +72,7 @@ there *is* new information. This can be helpful to make Tiger behave as a Host Intrusion Detection -System (HIDS) but it has some caveats, make sure to read README.hids +System (HIDS) but it has some caveats, make sure to read README.hostids if your intention is to use Tiger in this way. ------------------------------------------------------------------------ --- tiger-3.2.1.orig/util/CVS/Entries +++ tiger-3.2.1/util/CVS/Entries @@ -1,10 +1,5 @@ /convert2html/1.2/Mon Apr 21 08:02:04 2003// /doc2html/1.2/Mon Apr 21 08:02:04 2003// -/getfs-amd/1.2/Mon Apr 21 08:02:04 2003// -/getfs-automount/1.2/Mon Apr 21 08:02:04 2003// -/getfs-nfs/1.2/Mon Apr 21 08:02:04 2003// -/getfs-std/1.2/Mon Apr 21 08:02:04 2003// -/getnetgroup/1.2/Mon Apr 21 08:02:04 2003// /installsig/1.4/Mon Apr 21 07:52:04 2003// /logit/1.2/Mon Apr 21 08:02:05 2003// /setsh/1.2/Mon Apr 21 08:02:05 2003// @@ -12,14 +7,19 @@ /consistency-check/1.3/Wed May 14 19:44:14 2003// /read_services.sh/1.3/Wed May 14 19:47:55 2003// /buildbins/1.3/Mon Aug 11 14:11:08 2003// -/buildconf/1.5/Thu Aug 14 22:20:41 2003// /mkfilelst/1.1/Thu Aug 14 00:25:29 2003// /facl.lst/1.1/Thu Aug 14 22:49:50 2003// /facl.tmpl/1.1/Wed Aug 13 00:16:01 2003// /flogit/1.3/Tue Aug 12 23:37:40 2003// /getpermit/1.4/Mon Aug 11 13:41:21 2003// -/gethostinfo/1.6/Tue Aug 19 17:28:21 2003// /mksig/1.8/Tue Aug 26 17:47:36 2003// /genmsgidx/1.4/Fri Sep 19 00:30:37 2003// /difflogs/1.5/Sat Sep 20 16:09:45 2003// +/getnetgroup/1.3/Tue Feb 24 19:17:12 2004// +/gethostinfo/1.7/Thu May 20 07:39:06 2004// +/buildconf/1.6/Sat Apr 16 20:18:38 2005// +/getfs-amd/1.3/Sat Apr 16 20:18:38 2005// +/getfs-automount/1.3/Sat Apr 16 20:18:38 2005// +/getfs-nfs/1.3/Sat Apr 16 20:18:38 2005// +/getfs-std/1.3/Sat Apr 16 20:18:38 2005// D --- tiger-3.2.1.orig/util/buildconf +++ tiger-3.2.1/util/buildconf @@ -126,7 +126,6 @@ GETFS mount GETHOSTNAME hostname GREP grep -GROUPC groups GROUPSS groups HEAD head ID id --- tiger-3.2.1.orig/util/getfs-amd +++ tiger-3.2.1/util/getfs-amd @@ -79,7 +79,3 @@ $RM -f $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ # exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/util/getfs-automount +++ tiger-3.2.1/util/getfs-automount @@ -86,7 +86,3 @@ $RM -f $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ # exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/util/getfs-nfs +++ tiger-3.2.1/util/getfs-nfs @@ -58,7 +58,3 @@ done # exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/util/getfs-std +++ tiger-3.2.1/util/getfs-std @@ -20,6 +20,8 @@ #----------------------------------------------------------------------------- # +[ -z "$SED" ] && SED=`which sed` + haveallof() { retval=0 @@ -44,7 +46,3 @@ # exit 0 -# -exit 0 -# -exit 0 --- tiger-3.2.1.orig/util/gethostinfo +++ tiger-3.2.1/util/gethostinfo @@ -17,6 +17,7 @@ # # util/gethostinfo - 04/22/93 # +# 03/25/2004 rbrad Added support for Tru64. # 08/14/2003 jfs Applied code from TARA 3.0.3 to recognise MacOS # 08/09/2003 jfs Applied patch from Ryan Braderitch which fixes a bug so the # directory structure works for HPUX. @@ -114,7 +115,9 @@ else if($1 == "Jaguar"){ printf("MacOSX %s %s\n",$3, $11); } - + else if($1 == "OSF1"){ + printf("Tru64 %s %s\n",substr($3,2), $5); + } } ' # In some uname's we might need this ... --- tiger-3.2.1.orig/util/getnetgroup +++ tiger-3.2.1/util/getnetgroup @@ -25,7 +25,7 @@ done } -[ "$YP" = "" ] && { +[ "$YPCAT" = "" ] && { echo "$targets" exit 0 }